diff --git a/.git-blame-ignore-revs b/.git-blame-ignore-revs index 8b4535ba69..391bf41308 100644 --- a/.git-blame-ignore-revs +++ b/.git-blame-ignore-revs @@ -61,3 +61,6 @@ e9bbe03354079cfcef65a77b0c33f57b047a7c93 # replace `frappe.flags.in_test` with `frappe.in_test` 653c80b8483cc41aef25cd7d66b9b6bb188bf5f8 + +# another ruff update +6ca4d4d167a1a009d99062747711de7a994aa633 diff --git a/.github/workflows/server-tests.yml b/.github/workflows/server-tests.yml index 7145312192..efaedcb6d3 100644 --- a/.github/workflows/server-tests.yml +++ b/.github/workflows/server-tests.yml @@ -93,7 +93,7 @@ jobs: - frappe/hrms steps: - name: Dispatch Downstream CI (if supported) - uses: peter-evans/repository-dispatch@v3 + uses: peter-evans/repository-dispatch@v4 with: token: ${{ secrets.CI_PAT }} repository: ${{ matrix.repo }} diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index ef3d02e220..3606b63941 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,5 +1,6 @@ exclude: 'node_modules|.git' default_stages: [pre-commit] +default_install_hook_types: [pre-commit, commit-msg] fail_fast: false @@ -21,7 +22,7 @@ repos: exclude: ^frappe/tests/classes/context_managers\.py$ - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.8.1 + rev: v0.13.2 hooks: - id: ruff name: "Run ruff import sorter" @@ -69,6 +70,13 @@ repos: frappe/public/js/lib/.* )$ + - repo: https://github.com/alessandrojcm/commitlint-pre-commit-hook + rev: v9.22.0 + hooks: + - id: commitlint + stages: [commit-msg] + additional_dependencies: ['conventional-changelog-conventionalcommits'] + ci: autoupdate_schedule: weekly skip: [] diff --git a/babel_extractors.csv b/babel_extractors.csv index f5f96c914b..b7bf582783 100644 --- a/babel_extractors.csv +++ b/babel_extractors.csv @@ -1,6 +1,7 @@ **/hooks.py,frappe.gettext.extractors.navbar.extract **/doctype/*/*.json,frappe.gettext.extractors.doctype.extract **/workspace/*/*.json,frappe.gettext.extractors.workspace.extract +**/web_form/*/*.json,frappe.gettext.extractors.web_form.extract **/onboarding_step/*/*.json,frappe.gettext.extractors.onboarding_step.extract **/module_onboarding/*/*.json,frappe.gettext.extractors.module_onboarding.extract **/report/*/*.json,frappe.gettext.extractors.report.extract diff --git a/cypress/integration/form.js b/cypress/integration/form.js index 1ddf365c71..d40b0d5c89 100644 --- a/cypress/integration/form.js +++ b/cypress/integration/form.js @@ -75,14 +75,15 @@ context("Form", () => { cy.get('.frappe-control[data-fieldname="email_ids"]').as("table"); cy.get("@table").find("button.grid-add-row").click(); - cy.get("@table").find("button.grid-add-row").click(); cy.get("@table").find('[data-idx="1"]').as("row1"); - cy.get("@table").find('[data-idx="2"]').as("row2"); + cy.get("@row1").click(); cy.get("@row1").find("input.input-with-feedback.form-control").as("email_input1"); cy.get("@email_input1").type(website_input, { waitForAnimations: false }); + cy.get("@table").find("button.grid-add-row").click(); + cy.get("@table").find('[data-idx="2"]').as("row2"); cy.get("@row2").click(); cy.get("@row2").find("input.input-with-feedback.form-control").as("email_input2"); cy.get("@email_input2").type(valid_email, { waitForAnimations: false }); diff --git a/frappe/app.py b/frappe/app.py index e5a1fba4a7..49cacb9a46 100644 --- a/frappe/app.py +++ b/frappe/app.py @@ -321,7 +321,10 @@ def set_authenticate_headers(response: Response): def make_form_dict(request: Request): request_data = request.get_data(as_text=True) if request_data and request.is_json: - args = orjson.loads(request_data) + try: + args = orjson.loads(request_data) + except orjson.JSONDecodeError: + frappe.throw(_("Invalid request body"), frappe.DataError) else: args = {} args.update(request.args or {}) diff --git a/frappe/auth.py b/frappe/auth.py index f667138ea1..03b28f0dc5 100644 --- a/frappe/auth.py +++ b/frappe/auth.py @@ -66,6 +66,9 @@ class HTTPRequest: elif frappe.get_request_header("REMOTE_ADDR"): frappe.local.request_ip = frappe.get_request_header("REMOTE_ADDR") + elif frappe.request and getattr(frappe.request, "remote_addr", None): + frappe.local.request_ip = frappe.request.remote_addr + else: frappe.local.request_ip = "127.0.0.1" @@ -666,7 +669,7 @@ def validate_oauth(authorization_header): required_scopes = frappe.db.get_value("OAuth Bearer Token", token, "scopes").split( get_url_delimiter() ) - valid, oauthlib_request = get_oauth_server().verify_request( + valid, _oauthlib_request = get_oauth_server().verify_request( uri, http_method, body, headers, required_scopes ) if valid: diff --git a/frappe/cache_manager.py b/frappe/cache_manager.py index ed68b2b518..fed740dae2 100644 --- a/frappe/cache_manager.py +++ b/frappe/cache_manager.py @@ -147,17 +147,26 @@ def _clear_doctype_cache_from_redis(doctype: str | None = None): clear_single(doctype) # clear all parent doctypes - for dt in frappe.get_all( - "DocField", "parent", dict(fieldtype=["in", frappe.model.table_fields], options=doctype) - ): - clear_single(dt.parent) - - # clear all parent doctypes - if not frappe.flags.in_install: + try: for dt in frappe.get_all( - "Custom Field", "dt", dict(fieldtype=["in", frappe.model.table_fields], options=doctype) + "DocField", + "parent", + dict(fieldtype=["in", frappe.model.table_fields], options=doctype), + ignore_ddl=True, ): - clear_single(dt.dt) + clear_single(dt.parent) + + # clear all parent doctypes + if not frappe.flags.in_install: + for dt in frappe.get_all( + "Custom Field", + "dt", + dict(fieldtype=["in", frappe.model.table_fields], options=doctype), + ignore_ddl=True, + ): + clear_single(dt.dt) + except frappe.DoesNotExistError: + pass # core doctypes getting migrated. # clear all notifications delete_notification_count_for(doctype) diff --git a/frappe/commands/redis_utils.py b/frappe/commands/redis_utils.py index 884c4400ff..e4e83a87d9 100644 --- a/frappe/commands/redis_utils.py +++ b/frappe/commands/redis_utils.py @@ -61,7 +61,7 @@ def create_rq_users(set_admin_password=False, use_rq_auth=False): ) click.secho(f"`export {env_key}={user_credentials['default'][1]}`") click.secho( - "NOTE: Please save the admin password as you " "can not access redis server without the password", + "NOTE: Please save the admin password as you can not access redis server without the password", fg="yellow", ) diff --git a/frappe/commands/site.py b/frappe/commands/site.py index 7a2a690033..3e920cc0c2 100644 --- a/frappe/commands/site.py +++ b/frappe/commands/site.py @@ -336,7 +336,7 @@ def restore_backup( # Check if the backup is of an older version of frappe and the user hasn't specified force if is_downgrade(sql_file_path, verbose=True) and not force: warn_message = ( - "This is not recommended and may lead to unexpected behaviour. " "Do you want to continue anyway?" + "This is not recommended and may lead to unexpected behaviour. Do you want to continue anyway?" ) click.confirm(warn_message, abort=True) diff --git a/frappe/commands/test_commands.py b/frappe/commands/test_commands.py index de9f154cd4..cde28456ca 100644 --- a/frappe/commands/test_commands.py +++ b/frappe/commands/test_commands.py @@ -297,7 +297,7 @@ class TestCommands(BaseTestCommands): self.execute("bench --site {test_site} backup --exclude 'ToDo'", site_data) site_data.update({"kw": "\"{'partial':True}\""}) self.execute( - "bench --site {test_site} execute" " frappe.utils.backups.fetch_latest_backups --kwargs {kw}", + "bench --site {test_site} execute frappe.utils.backups.fetch_latest_backups --kwargs {kw}", site_data, ) site_data.update({"database": json.loads(self.stdout)["database"]}) diff --git a/frappe/commands/utils.py b/frappe/commands/utils.py index f09bc49474..bfbd1b1052 100644 --- a/frappe/commands/utils.py +++ b/frappe/commands/utils.py @@ -435,8 +435,7 @@ def import_doc(context: CliCtxObj, path, force=False): type=click.Path(exists=True, dir_okay=False, resolve_path=True), required=True, help=( - "Path to import file (.csv, .xlsx)." - "Consider that relative paths will resolve from 'sites' directory" + "Path to import file (.csv, .xlsx). Consider that relative paths will resolve from 'sites' directory" ), ) @click.option("--doctype", type=str, required=True) diff --git a/frappe/core/doctype/audit_trail/test_audit_trail.py b/frappe/core/doctype/audit_trail/test_audit_trail.py index 41dadc92b5..820651e751 100644 --- a/frappe/core/doctype/audit_trail/test_audit_trail.py +++ b/frappe/core/doctype/audit_trail/test_audit_trail.py @@ -25,7 +25,7 @@ class TestAuditTrail(IntegrationTestCase): re_amended_doc = amend_document(amended_doc, changed_fields, {}, 1) comparator = create_comparator_doc("Test Custom Doctype for Doc Comparator", re_amended_doc.name) - documents, results = comparator.compare_document() + _documents, results = comparator.compare_document() test_field_values = results["changed"]["Field"] self.check_expected_values(test_field_values, ["first value", "second value", "third value"]) @@ -41,7 +41,7 @@ class TestAuditTrail(IntegrationTestCase): amended_doc = amend_document(doc, {}, rows_updated, 1) comparator = create_comparator_doc("Test Custom Doctype for Doc Comparator", amended_doc.name) - documents, results = comparator.compare_document() + _documents, results = comparator.compare_document() results = frappe._dict(results) self.check_rows_updated(results.row_changed) diff --git a/frappe/core/doctype/communication/communication.py b/frappe/core/doctype/communication/communication.py index 9e6907edd6..2c5cf4889a 100644 --- a/frappe/core/doctype/communication/communication.py +++ b/frappe/core/doctype/communication/communication.py @@ -565,11 +565,11 @@ def parse_email(email_strings): for email in email_string.split(","): local_part = email.split("@", 1)[0].strip('"') - user, detail = None, None + _user, detail = None, None if "+" in local_part: - user, detail = local_part.split("+", 1) + _user, detail = local_part.split("+", 1) elif "--" in local_part: - detail, user = local_part.rsplit("--", 1) + detail, _user = local_part.rsplit("--", 1) if not detail: continue diff --git a/frappe/core/doctype/custom_docperm/custom_docperm.json b/frappe/core/doctype/custom_docperm/custom_docperm.json index eb9dcdfe0a..00a47a0113 100644 --- a/frappe/core/doctype/custom_docperm/custom_docperm.json +++ b/frappe/core/doctype/custom_docperm/custom_docperm.json @@ -23,6 +23,7 @@ "submit", "cancel", "amend", + "mask", "additional_permissions", "report", "export", @@ -153,6 +154,16 @@ "print_width": "32px", "width": "32px" }, + { + "default": "0", + "fieldname": "mask", + "fieldtype": "Check", + "label": "Mask", + "oldfieldname": "mask", + "oldfieldtype": "Check", + "print_width": "32px", + "width": "32px" + }, { "fieldname": "additional_permissions", "fieldtype": "Section Break", @@ -214,11 +225,13 @@ "label": "Select" } ], + "grid_page_length": 50, "links": [], - "modified": "2024-03-23 16:02:14.726078", + "modified": "2025-05-22 16:59:35.484376", "modified_by": "Administrator", "module": "Core", "name": "Custom DocPerm", + "naming_rule": "Random", "owner": "Administrator", "permissions": [ { @@ -235,8 +248,9 @@ } ], "read_only": 1, + "row_format": "Dynamic", "sort_field": "creation", "sort_order": "ASC", "states": [], "title_field": "parent" -} \ No newline at end of file +} diff --git a/frappe/core/doctype/custom_docperm/custom_docperm.py b/frappe/core/doctype/custom_docperm/custom_docperm.py index 77f2524159..485e187c5e 100644 --- a/frappe/core/doctype/custom_docperm/custom_docperm.py +++ b/frappe/core/doctype/custom_docperm/custom_docperm.py @@ -21,6 +21,7 @@ class CustomDocPerm(Document): email: DF.Check export: DF.Check if_owner: DF.Check + mask: DF.Check parent: DF.Data | None permlevel: DF.Int print: DF.Check diff --git a/frappe/core/doctype/docfield/docfield.json b/frappe/core/doctype/docfield/docfield.json index 92d48fa182..3b68df8485 100644 --- a/frappe/core/doctype/docfield/docfield.json +++ b/frappe/core/doctype/docfield/docfield.json @@ -20,6 +20,7 @@ "is_virtual", "search_index", "not_nullable", + "mask", "column_break_18", "options", "sort_options", @@ -607,6 +608,13 @@ "fieldname": "sticky", "fieldtype": "Check", "label": "Sticky" + }, + { + "default": "0", + "depends_on": "eval:[\"Select\", \"Read Only\", \"Phone\", \"Percent\", \"Password\", \"Link\", \"Int\", \"Float\", \"Dynamic Link\", \"Duration\", \"Datetime\", \"Currency\", \"Data\", \"Date\"].includes(doc.fieldtype)", + "fieldname": "mask", + "fieldtype": "Check", + "label": "Mask" } ], "grid_page_length": 50, diff --git a/frappe/core/doctype/docfield/docfield.py b/frappe/core/doctype/docfield/docfield.py index 43542427f6..3f6d642e55 100644 --- a/frappe/core/doctype/docfield/docfield.py +++ b/frappe/core/doctype/docfield/docfield.py @@ -90,6 +90,7 @@ class DocField(Document): link_filters: DF.JSON | None make_attachment_public: DF.Check mandatory_depends_on: DF.Code | None + mask: DF.Check max_height: DF.Data | None no_copy: DF.Check non_negative: DF.Check diff --git a/frappe/core/doctype/docperm/docperm.json b/frappe/core/doctype/docperm/docperm.json index 1b6e7fffc7..3c6591f3d4 100644 --- a/frappe/core/doctype/docperm/docperm.json +++ b/frappe/core/doctype/docperm/docperm.json @@ -22,6 +22,7 @@ "submit", "cancel", "amend", + "mask", "additional_permissions", "report", "export", @@ -205,18 +206,27 @@ "fieldtype": "Check", "in_list_view": 1, "label": "Select" + }, + { + "default": "0", + "fieldname": "mask", + "fieldtype": "Check", + "label": "Mask" } ], + "grid_page_length": 50, "idx": 1, + "index_web_pages_for_search": 1, "istable": 1, "links": [], - "modified": "2024-03-23 16:02:18.443496", + "modified": "2025-05-20 16:50:32.679113", "modified_by": "Administrator", "module": "Core", "name": "DocPerm", "owner": "Administrator", "permissions": [], + "row_format": "Dynamic", "sort_field": "creation", "sort_order": "ASC", "states": [] -} \ No newline at end of file +} diff --git a/frappe/core/doctype/docperm/docperm.py b/frappe/core/doctype/docperm/docperm.py index d014d7dae1..8aa54845c2 100644 --- a/frappe/core/doctype/docperm/docperm.py +++ b/frappe/core/doctype/docperm/docperm.py @@ -20,6 +20,7 @@ class DocPerm(Document): email: DF.Check export: DF.Check if_owner: DF.Check + mask: DF.Check parent: DF.Data parentfield: DF.Data parenttype: DF.Data diff --git a/frappe/core/doctype/doctype/doctype.json b/frappe/core/doctype/doctype/doctype.json index 6a035986b3..95f85fd9e8 100644 --- a/frappe/core/doctype/doctype/doctype.json +++ b/frappe/core/doctype/doctype/doctype.json @@ -702,7 +702,7 @@ "label": "Protect Attached Files" }, { - "default": "0", + "default": "20", "depends_on": "istable", "fieldname": "rows_threshold_for_grid_search", "fieldtype": "Int", @@ -792,7 +792,7 @@ "link_fieldname": "document_type" } ], - "modified": "2025-07-19 12:23:16.296416", + "modified": "2025-09-23 06:48:13.555017", "modified_by": "Administrator", "module": "Core", "name": "DocType", diff --git a/frappe/core/doctype/doctype/doctype_list.js b/frappe/core/doctype/doctype/doctype_list.js index 81ca7b1ea3..46b5e5b99d 100644 --- a/frappe/core/doctype/doctype/doctype_list.js +++ b/frappe/core/doctype/doctype/doctype_list.js @@ -24,6 +24,7 @@ frappe.listview_settings["DocType"] = { fieldtype: "Data", reqd: 1, default: doctype_name, + length: 61, }, { fieldtype: "Column Break" }, { diff --git a/frappe/core/doctype/doctype/test_doctype.py b/frappe/core/doctype/doctype/test_doctype.py index 5677098fa8..20820fbaa6 100644 --- a/frappe/core/doctype/doctype/test_doctype.py +++ b/frappe/core/doctype/doctype/test_doctype.py @@ -856,6 +856,16 @@ class TestDocType(IntegrationTestCase): ) self.assertRaises(frappe.ValidationError, doctype.insert) + def test_delete_doc_clears_cache(self): + dt = new_doctype( + fields=[{"fieldname": "test_fdname", "fieldtype": "Data", "label": "Test Field"}], + ).insert() + frappe.get_meta(dt.name) + frappe.delete_doc("DocType", dt.name, force=1, delete_permanently=False) + frappe.db.commit() + with self.assertRaises(frappe.DoesNotExistError): + frappe.get_meta(dt.name) + def new_doctype( name: str | None = None, diff --git a/frappe/core/doctype/file/file.py b/frappe/core/doctype/file/file.py index b49ae51036..ebf884daa1 100755 --- a/frappe/core/doctype/file/file.py +++ b/frappe/core/doctype/file/file.py @@ -25,6 +25,7 @@ from frappe.utils import ( get_url, ) from frappe.utils.file_manager import is_safe_path +from frappe.utils.html_utils import escape_html from frappe.utils.image import optimize_image, strip_exif_data from frappe.utils.pdf import pdf_contains_js @@ -141,7 +142,6 @@ class File(Document): self.validate_file_url() self.validate_file_on_disk() self.file_size = frappe.form_dict.file_size or self.file_size - self.check_content() def validate_attachment_references(self): if not self.attached_to_doctype: @@ -785,7 +785,7 @@ class File(Document): def create_attachment_record(self): icon = ' ' if self.is_private else "" file_url = quote(frappe.safe_encode(self.file_url), safe="/:") if self.file_url else self.file_name - file_name = self.file_name or self.file_url + file_name = escape_html(self.file_name or self.file_url) self.add_comment_in_reference_doc( "Attachment", diff --git a/frappe/core/doctype/file/file_list.js b/frappe/core/doctype/file/file_list.js new file mode 100644 index 0000000000..94ec9760cf --- /dev/null +++ b/frappe/core/doctype/file/file_list.js @@ -0,0 +1,7 @@ +frappe.listview_settings["File"] = { + formatters: { + file_name: function (value) { + return frappe.utils.escape_html(value || ""); + }, + }, +}; diff --git a/frappe/core/doctype/submission_queue/submission_queue.py b/frappe/core/doctype/submission_queue/submission_queue.py index d76ff80e52..29d1afec57 100644 --- a/frappe/core/doctype/submission_queue/submission_queue.py +++ b/frappe/core/doctype/submission_queue/submission_queue.py @@ -164,6 +164,18 @@ class SubmissionQueue(Document): def queue_submission(doc: Document, action: str, alert: bool = True): + if existing_queue := frappe.db.get_value( + "Submission Queue", {"ref_doctype": doc.doctype, "ref_docname": doc.name, "status": "Queued"} + ): + frappe.msgprint( + _( + "This document has already been queued for submission. You can track the progress over {0}." + ).format(f"here"), + indicator="orange", + alert=True, + ) + return + queue = frappe.new_doc("Submission Queue") queue.ref_doctype = doc.doctype queue.ref_docname = doc.name diff --git a/frappe/core/doctype/system_settings/system_settings.json b/frappe/core/doctype/system_settings/system_settings.json index 987ec66dde..13f4ee83f5 100644 --- a/frappe/core/doctype/system_settings/system_settings.json +++ b/frappe/core/doctype/system_settings/system_settings.json @@ -30,6 +30,7 @@ "apply_strict_user_permissions", "column_break_21", "allow_older_web_view_links", + "show_external_link_warning", "security_tab", "security", "session_expiry", @@ -744,12 +745,19 @@ "fieldtype": "Int", "label": "Max signups allowed per hour", "non_negative": 1 + }, + { + "default": "Never", + "fieldname": "show_external_link_warning", + "fieldtype": "Select", + "label": "Show External Link Warning", + "options": "Never\nAsk\nAlways" } ], "icon": "fa fa-cog", "issingle": 1, "links": [], - "modified": "2025-09-03 10:52:38.096662", + "modified": "2025-09-24 16:04:02.016562", "modified_by": "Administrator", "module": "Core", "name": "System Settings", diff --git a/frappe/core/doctype/system_settings/system_settings.py b/frappe/core/doctype/system_settings/system_settings.py index 5e0e57f096..b78395ce5e 100644 --- a/frappe/core/doctype/system_settings/system_settings.py +++ b/frappe/core/doctype/system_settings/system_settings.py @@ -97,6 +97,7 @@ class SystemSettings(Document): session_expiry: DF.Data | None setup_complete: DF.Check show_absolute_datetime_in_timeline: DF.Check + show_external_link_warning: DF.Literal["Never", "Ask", "Always"] store_attached_pdf_document: DF.Check strip_exif_metadata_from_uploaded_images: DF.Check time_format: DF.Literal["HH:mm:ss", "HH:mm"] diff --git a/frappe/core/page/permission_manager/permission_manager.js b/frappe/core/page/permission_manager/permission_manager.js index 47e0fcc865..b216bcfd3a 100644 --- a/frappe/core/page/permission_manager/permission_manager.js +++ b/frappe/core/page/permission_manager/permission_manager.js @@ -280,7 +280,7 @@ frappe.PermissionEngine = class PermissionEngine { add_check(cell, d, fieldname, label, description = "") { if (!label) label = toTitle(fieldname.replace(/_/g, " ")); - if (d.permlevel > 0 && ["read", "write"].indexOf(fieldname) == -1) { + if (d.permlevel > 0 && ["read", "write", "mask"].indexOf(fieldname) == -1) { return; } @@ -331,6 +331,7 @@ frappe.PermissionEngine = class PermissionEngine { "import", "export", "share", + "mask", ]; } diff --git a/frappe/custom/doctype/customize_form/customize_form.json b/frappe/custom/doctype/customize_form/customize_form.json index 03ac4d1761..c41de205a5 100644 --- a/frappe/custom/doctype/customize_form/customize_form.json +++ b/frappe/custom/doctype/customize_form/customize_form.json @@ -13,6 +13,7 @@ "label", "search_fields", "grid_page_length", + "rows_threshold_for_grid_search", "link_filters", "column_break_5", "istable", @@ -43,6 +44,7 @@ "force_re_route_to_default_view", "column_break_29", "show_preview_popup", + "show_name_in_global_search", "email_settings_section", "default_email_template", "column_break_26", @@ -422,6 +424,19 @@ "fieldname": "recipient_account_field", "fieldtype": "Data", "label": "Recipient Account Field" + }, + { + "depends_on": "istable", + "fieldname": "rows_threshold_for_grid_search", + "fieldtype": "Int", + "label": "Rows Threshold for Grid Search", + "non_negative": 1 + }, + { + "default": "0", + "fieldname": "show_name_in_global_search", + "fieldtype": "Check", + "label": "Make \"name\" searchable in Global Search" } ], "hide_toolbar": 1, @@ -430,7 +445,7 @@ "index_web_pages_for_search": 1, "issingle": 1, "links": [], - "modified": "2025-07-19 12:23:41.564203", + "modified": "2025-09-23 07:13:52.631903", "modified_by": "Administrator", "module": "Custom", "name": "Customize Form", diff --git a/frappe/custom/doctype/customize_form/customize_form.py b/frappe/custom/doctype/customize_form/customize_form.py index 584882a754..1fa7a1c4aa 100644 --- a/frappe/custom/doctype/customize_form/customize_form.py +++ b/frappe/custom/doctype/customize_form/customize_form.py @@ -75,9 +75,11 @@ class CustomizeForm(Document): queue_in_background: DF.Check quick_entry: DF.Check recipient_account_field: DF.Data | None + rows_threshold_for_grid_search: DF.Int search_fields: DF.Data | None sender_field: DF.Data | None sender_name_field: DF.Data | None + show_name_in_global_search: DF.Check show_preview_popup: DF.Check show_title_field_in_link: DF.Check sort_field: DF.Literal[None] @@ -306,6 +308,8 @@ class CustomizeForm(Document): ) def set_property_setters_for_doctype(self, meta): + if self.get("show_name_in_global_search") != meta.get("show_name_in_global_search"): + self.flags.rebuild_doctype_for_global_search = True for prop, prop_type in doctype_properties.items(): if self.get(prop) != meta.get(prop): self.make_property_setter(prop, self.get(prop), prop_type) @@ -735,6 +739,7 @@ doctype_properties = { "track_views": "Check", "allow_auto_repeat": "Check", "allow_import": "Check", + "show_name_in_global_search": "Check", "show_preview_popup": "Check", "default_email_template": "Data", "email_append_to": "Check", @@ -748,6 +753,7 @@ doctype_properties = { "force_re_route_to_default_view": "Check", "translated_doctype": "Check", "grid_page_length": "Int", + "rows_threshold_for_grid_search": "Int", } docfield_properties = { diff --git a/frappe/database/database.py b/frappe/database/database.py index c3c6d90265..f0049152e6 100644 --- a/frappe/database/database.py +++ b/frappe/database/database.py @@ -1192,6 +1192,7 @@ class Database: self.sql("commit") self.begin() + self.value_cache.clear() self.after_commit.run() def rollback(self, *, save_point=None, chain=False): @@ -1206,10 +1207,12 @@ class Database: if chain: self.sql("rollback and chain") + self.value_cache.clear() else: self.sql("rollback") self.begin() + self.value_cache.clear() self.after_rollback.run() else: warnings.warn(message=TRANSACTION_DISABLED_MSG, stacklevel=2) diff --git a/frappe/database/postgres/schema.py b/frappe/database/postgres/schema.py index 926f9e0edd..75b944f74a 100644 --- a/frappe/database/postgres/schema.py +++ b/frappe/database/postgres/schema.py @@ -147,7 +147,7 @@ class PostgresTable(DBTable): if isinstance(default, str): default = frappe.db.escape(default) change_nullability.append( - f"ALTER COLUMN \"{col.fieldname}\" {'SET' if col.not_nullable else 'DROP'} NOT NULL" + f'ALTER COLUMN "{col.fieldname}" {"SET" if col.not_nullable else "DROP"} NOT NULL' ) change_nullability.append(f'ALTER COLUMN "{col.fieldname}" SET DEFAULT {default}') diff --git a/frappe/database/query.py b/frappe/database/query.py index 809b884182..41e3e9cd05 100644 --- a/frappe/database/query.py +++ b/frappe/database/query.py @@ -288,6 +288,8 @@ class Engine: doctype: str | None = None, ) -> "Criterion | None": """Builds a pypika Criterion object for a simple filter condition.""" + import operator as builtin_operator + _field = self._validate_and_prepare_filter_field(field, doctype) _value = convert_to_value(value) _operator = operator @@ -323,7 +325,7 @@ class Engine: operator_fn = OPERATOR_MAP[_operator.casefold()] if _value is None and isinstance(_field, Field): - return _field.isnull() + return _field.isnotnull() if operator_fn == builtin_operator.ne else _field.isnull() else: return operator_fn(_field, _value) diff --git a/frappe/database/schema.py b/frappe/database/schema.py index 647b28fb49..9bd0a1e45b 100644 --- a/frappe/database/schema.py +++ b/frappe/database/schema.py @@ -443,6 +443,9 @@ def get_definition(fieldtype, precision=None, length=None, *, options=None): if length: if coltype == "varchar": + # Reference: https://mariadb.com/docs/server/server-usage/storage-engines/innodb/innodb-row-formats/troubleshooting-row-size-too-large-errors-with-innodb + if cint(length) < 64: + length = 64 size = length elif coltype == "int" and length < 11: # allow setting custom length for int if length provided is less than 11 diff --git a/frappe/database/sqlite/database.py b/frappe/database/sqlite/database.py index 94124171a8..2bb21c9a76 100644 --- a/frappe/database/sqlite/database.py +++ b/frappe/database/sqlite/database.py @@ -107,6 +107,7 @@ class SQLiteDatabase(SQLiteExceptionUtil, Database): conn = self.create_connection(read_only) conn.isolation_level = None conn.create_function("regexp", 2, regexp) + conn.create_function("regexp_replace", 3, regexp_replace) pragmas = { "journal_mode": "WAL", "synchronous": "NORMAL", @@ -583,3 +584,10 @@ def regexp(expr: str, item: str) -> bool: Although it works in the CLI - doesn't work through python """ return re.search(expr, item) is not None + + +def regexp_replace(item: str, pattern: str, repl: str) -> str: + """ + Define regexp_replace implementation for SQLite + """ + return re.sub(pattern, repl, item) diff --git a/frappe/database/sqlite/schema.py b/frappe/database/sqlite/schema.py index 94a7417bda..cc7d389489 100644 --- a/frappe/database/sqlite/schema.py +++ b/frappe/database/sqlite/schema.py @@ -125,7 +125,7 @@ class SQLiteTable(DBTable): if self.meta.sort_field == "modified" and not frappe.db.get_column_index( self.table_name, "modified", unique=False ): - index_queries.append(f"CREATE INDEX `modified` ON `{self.table_name}` (`modified`)") + index_queries.append(f"CREATE INDEX IF NOT EXISTS `modified` ON `{self.table_name}` (`modified`)") for query in index_queries: frappe.db.sql_ddl(query) diff --git a/frappe/deprecation_dumpster.py b/frappe/deprecation_dumpster.py index 6f6e743620..bdf91e9a38 100644 --- a/frappe/deprecation_dumpster.py +++ b/frappe/deprecation_dumpster.py @@ -899,7 +899,7 @@ def tests_utils_get_dependencies(doctype): import frappe from frappe.tests.utils.generators import get_modules - module, test_module = get_modules(doctype) + _module, test_module = get_modules(doctype) meta = frappe.get_meta(doctype) link_fields = meta.get_link_fields() diff --git a/frappe/desk/form/linked_with.py b/frappe/desk/form/linked_with.py index 7dbea54d95..072dcc8433 100644 --- a/frappe/desk/form/linked_with.py +++ b/frappe/desk/form/linked_with.py @@ -622,8 +622,7 @@ def get_linked_fields(doctype, without_ignore_user_permissions_enabled=False): "DocField", fields=["parent", "options"], filters=child_filters, as_list=1 ): ret[parent] = {"child_doctype": options, "fieldname": links_dict[options]} - if options in ret: - del ret[options] + ret.pop(options, None) virtual_doctypes = frappe.get_all("DocType", {"is_virtual": 1}, pluck="name") for dt in virtual_doctypes: diff --git a/frappe/desk/form/meta.py b/frappe/desk/form/meta.py index 3009fa6fe3..d2022215c7 100644 --- a/frappe/desk/form/meta.py +++ b/frappe/desk/form/meta.py @@ -76,6 +76,9 @@ class FormMeta(Meta): for k in ASSET_KEYS: d[k] = __dict.get(k) + # add masked fields (per-user, per-meta) + d["masked_fields"] = [df.fieldname for df in self.get_masked_fields()] + return d def add_code(self): diff --git a/frappe/desk/listview.py b/frappe/desk/listview.py index 9c91026aa6..94af0a06aa 100644 --- a/frappe/desk/listview.py +++ b/frappe/desk/listview.py @@ -83,7 +83,7 @@ def get_group_by_count(doctype: str, current_filters: str, field: str) -> list[d break if owner_idx: - data = [data.pop(owner_idx)] + data[0:49] + data = [data.pop(owner_idx), *data[0:49]] else: data = data[0:50] else: diff --git a/frappe/desk/page/backups/backups.html b/frappe/desk/page/backups/backups.html index ff10f1bd06..b18552197b 100644 --- a/frappe/desk/page/backups/backups.html +++ b/frappe/desk/page/backups/backups.html @@ -1,7 +1,7 @@ -
+
{% for f in files %} -
+
{{ f[1] }} diff --git a/frappe/desk/page/backups/backups.py b/frappe/desk/page/backups/backups.py index 3e1c1fb20f..c6cf366f07 100644 --- a/frappe/desk/page/backups/backups.py +++ b/frappe/desk/page/backups/backups.py @@ -10,7 +10,7 @@ from frappe.utils.data import convert_utc_to_system_timezone def get_time(path: Path): return convert_utc_to_system_timezone( - datetime.datetime.fromtimestamp(path.stat().st_mtime, tz=datetime.UTC) + datetime.datetime.fromtimestamp(path.stat().st_mtime, tz=datetime.timezone.utc) ).strftime("%a %b %d %H:%M %Y") diff --git a/frappe/desk/query_report.py b/frappe/desk/query_report.py index 5b5c6a2218..e403f9db86 100644 --- a/frappe/desk/query_report.py +++ b/frappe/desk/query_report.py @@ -674,9 +674,20 @@ def get_filtered_data(ref_doctype, columns, data, user): shared = frappe.share.get_shared(ref_doctype, user) columns_dict = get_columns_dict(columns) - role_permissions = get_role_permissions(frappe.get_meta(ref_doctype), user) + ref_doctype_meta = frappe.get_meta(ref_doctype) + + role_permissions = get_role_permissions(ref_doctype_meta, user) if_owner = role_permissions.get("if_owner", {}).get("report") + if ref_doctype_meta.get_masked_fields(): + from frappe.model.db_query import mask_field_value + + # Apply masking to the fields + for field in ref_doctype_meta.get_masked_fields(): + for row in data: + val = row.get(field.fieldname) + row[field.fieldname] = mask_field_value(field, val) + if match_filters_per_doctype: for row in data: # Why linked_doctypes.get(ref_doctype)? because if column is empty, linked_doctypes[ref_doctype] is removed diff --git a/frappe/desk/reportview.py b/frappe/desk/reportview.py index b51753bb2b..c56bcdadb1 100644 --- a/frappe/desk/reportview.py +++ b/frappe/desk/reportview.py @@ -376,6 +376,7 @@ def export_query(): form_params = get_form_params() form_params["limit_page_length"] = None + form_params["as_list"] = True csv_params = pop_csv_params(form_params) export_in_background = int(form_params.pop("export_in_background", 0)) @@ -547,7 +548,7 @@ def get_field_info(fields, doctype): if parenttype != doctype: # If the column is from a child table, append the child doctype. # For example, "Item Code (Sales Invoice Item)". - label += f" ({ _(parenttype) })" + label += f" ({_(parenttype)})" field_info.append( {"name": name, "label": label, "fieldtype": fieldtype, "translatable": translatable} diff --git a/frappe/desk/treeview.py b/frappe/desk/treeview.py index 2f315924b5..3e73db2806 100644 --- a/frappe/desk/treeview.py +++ b/frappe/desk/treeview.py @@ -9,8 +9,7 @@ from frappe import _ def get_all_nodes(doctype, label, parent, tree_method, **filters): """Recursively gets all data from tree nodes""" - if "cmd" in filters: - del filters["cmd"] + filters.pop("cmd", None) filters.pop("data", None) tree_method = frappe.get_attr(tree_method) @@ -20,8 +19,7 @@ def get_all_nodes(doctype, label, parent, tree_method, **filters): data = tree_method(doctype, parent, **filters) out = [dict(parent=label, data=data)] - if "is_root" in filters: - del filters["is_root"] + filters.pop("is_root", None) to_check = [d.get("value") for d in data if d.get("expandable")] while to_check: diff --git a/frappe/email/doctype/email_queue/test_email_queue.py b/frappe/email/doctype/email_queue/test_email_queue.py index 5dc76096f4..bcbf91d249 100644 --- a/frappe/email/doctype/email_queue/test_email_queue.py +++ b/frappe/email/doctype/email_queue/test_email_queue.py @@ -54,7 +54,7 @@ class TestEmailQueue(IntegrationTestCase): Subject: {subject} From: Test To: - Date: {frappe.utils.now_datetime().strftime('%a, %d %b %Y %H:%M:%S %z')} + Date: {frappe.utils.now_datetime().strftime("%a, %d %b %Y %H:%M:%S %z")} Reply-To: test@example.com X-Frappe-Site: {frappe.local.site} """ diff --git a/frappe/email/doctype/notification/notification.py b/frappe/email/doctype/notification/notification.py index cc9222301e..a094c3f1b5 100644 --- a/frappe/email/doctype/notification/notification.py +++ b/frappe/email/doctype/notification/notification.py @@ -352,7 +352,9 @@ def get_context(context): To queue a notification from a server script: ```python - notification = frappe.get_doc("Notification", "My Notification", ignore_permissions=True) + notification = frappe.get_doc( + "Notification", "My Notification", ignore_permissions=True + ) notification.queue_send(customer) ``` diff --git a/frappe/email/email_body.py b/frappe/email/email_body.py index 7a2256fdda..e02ae105b0 100755 --- a/frappe/email/email_body.py +++ b/frappe/email/email_body.py @@ -237,7 +237,7 @@ class EMail: """Append the message with MIME content to the root node (as attachment)""" from email.mime.text import MIMEText - maintype, subtype = mime_type.split("/") + _maintype, subtype = mime_type.split("/") part = MIMEText(message, _subtype=subtype, policy=policy.SMTP) if as_attachment: @@ -445,7 +445,7 @@ def add_attachment(fname, fcontent, content_type=None, parent=None, content_id=N from email.mime.text import MIMEText if not content_type: - content_type, encoding = mimetypes.guess_type(fname) + content_type, _encoding = mimetypes.guess_type(fname) if not parent: return @@ -597,7 +597,7 @@ def get_header(header=None): if not title: title = frappe.get_hooks("app_title")[-1] - email_header, text = get_email_from_template( + email_header, _text = get_email_from_template( "email_header", {"header_title": title, "indicator": indicator} ) diff --git a/frappe/email/receive.py b/frappe/email/receive.py index a2598546e2..6733c2d246 100644 --- a/frappe/email/receive.py +++ b/frappe/email/receive.py @@ -205,7 +205,7 @@ class EmailServer: readonly = self.settings.email_sync_rule != "UNSEEN" self.imap.select(folder, readonly=readonly) - response, message = self.imap.uid("search", None, self.settings.email_sync_rule) + _response, message = self.imap.uid("search", None, self.settings.email_sync_rule) if message[0]: email_list = message[0].split() else: @@ -217,7 +217,7 @@ class EmailServer: # compare the UIDVALIDITY of email account and imap server uid_validity = self.settings.uid_validity - response, message = self.imap.status(folder, "(UIDVALIDITY UIDNEXT)") + _response, message = self.imap.status(folder, "(UIDVALIDITY UIDNEXT)") current_uid_validity = self.parse_imap_response("UIDVALIDITY", message[0]) or 0 uidnext = int(self.parse_imap_response("UIDNEXT", message[0]) or "1") @@ -270,7 +270,7 @@ class EmailServer: def retrieve_message(self, uid, msg_num, folder): try: if cint(self.settings.use_imap): - status, message = self.imap.uid("fetch", uid, "(BODY.PEEK[] BODY.PEEK[HEADER] FLAGS)") + _status, message = self.imap.uid("fetch", uid, "(BODY.PEEK[] BODY.PEEK[HEADER] FLAGS)") raw = message[0] self.get_email_seen_status(uid, raw[0]) diff --git a/frappe/geo/languages.csv b/frappe/geo/languages.csv index ce220cd3ee..be0fdf2be4 100644 --- a/frappe/geo/languages.csv +++ b/frappe/geo/languages.csv @@ -52,7 +52,7 @@ ml,മലയാളം,0 mn,Монгол,0 mr,मराठी,0 ms,Melayu,0 -my,မြန်မာ,0 +my,မြန်မာ1 nb,Norsk Bokmål,1 nl,Nederlands,0 no,Norsk,0 diff --git a/frappe/gettext/extractors/web_form.py b/frappe/gettext/extractors/web_form.py new file mode 100644 index 0000000000..6fae006d25 --- /dev/null +++ b/frappe/gettext/extractors/web_form.py @@ -0,0 +1,73 @@ +import json + + +def extract(fileobj, *args, **kwargs): + """ + Extract messages from Web Form JSON files. To be used to babel extractor + :param fileobj: the file-like object the messages should be extracted from + :rtype: `iterator` + """ + data = json.load(fileobj) + + if isinstance(data, list): + return + + if data.get("doctype") != "Web Form": + return + + web_form_name = data.get("name") + + # Extract main web form fields + if title := data.get("title"): + yield None, "_", title, [f"Title of the {web_form_name} Web Form"] + + if introduction_text := data.get("introduction_text"): + yield None, "_", introduction_text, [f"Introduction text of the {web_form_name} Web Form"] + + if success_message := data.get("success_message"): + yield None, "_", success_message, [f"Success message of the {web_form_name} Web Form"] + + if success_title := data.get("success_title"): + yield None, "_", success_title, [f"Success title of the {web_form_name} Web Form"] + + if list_title := data.get("list_title"): + yield None, "_", list_title, [f"List title of the {web_form_name} Web Form"] + + if button_label := data.get("button_label"): + yield None, "_", button_label, [f"Button label of the {web_form_name} Web Form"] + + if meta_title := data.get("meta_title"): + yield None, "_", meta_title, [f"Meta title of the {web_form_name} Web Form"] + + if meta_description := data.get("meta_description"): + yield None, "_", meta_description, [f"Meta description of the {web_form_name} Web Form"] + + # Extract web form fields + for field in data.get("web_form_fields", []): + if label := field.get("label"): + yield None, "_", label, [f"Label of a field in the {web_form_name} Web Form"] + + if description := field.get("description"): + yield None, "_", description, [f"Description of a field in the {web_form_name} Web Form"] + + # Extract options for Select fields + if field.get("fieldtype") == "Select" and (options := field.get("options")): + skip_options = ( + web_form_name == "edit-profile" and field.get("fieldname") == "time_zone" + ) # Dumb workaround for avoiding a flood of strings from this field + if isinstance(options, str) and not skip_options: + # Handle both single values and newline-separated values + option_list = options.split("\n") if "\n" in options else [options] + for option in option_list: + if option.strip(): + yield ( + None, + "_", + option.strip(), + [f"Option in a Select field in the {web_form_name} Web Form"], + ) + + # Extract list columns + for column in data.get("list_columns", []): + if isinstance(column, dict) and (label := column.get("label")): + yield None, "_", label, [f"Label of a list column in the {web_form_name} Web Form"] diff --git a/frappe/integrations/doctype/geolocation_settings/providers/here.py b/frappe/integrations/doctype/geolocation_settings/providers/here.py index 0ecac02d9c..9234d528d7 100644 --- a/frappe/integrations/doctype/geolocation_settings/providers/here.py +++ b/frappe/integrations/doctype/geolocation_settings/providers/here.py @@ -34,7 +34,7 @@ class Here: "label": address["label"], "value": json.dumps( { - "address_line1": f'{address.get("street", "")} {address.get("houseNumber", "")}'.strip(), + "address_line1": f"{address.get('street', '')} {address.get('houseNumber', '')}".strip(), "city": address.get("city", ""), "state": address.get("state", ""), "pincode": address.get("postalCode", ""), diff --git a/frappe/integrations/doctype/geolocation_settings/providers/nomatim.py b/frappe/integrations/doctype/geolocation_settings/providers/nomatim.py index c02e14ad68..c7d74b9510 100644 --- a/frappe/integrations/doctype/geolocation_settings/providers/nomatim.py +++ b/frappe/integrations/doctype/geolocation_settings/providers/nomatim.py @@ -37,7 +37,7 @@ class Nomatim: "label": result["display_name"], "value": json.dumps( { - "address_line1": f'{address.get("road")} {address.get("house_number", "")}'.strip(), + "address_line1": f"{address.get('road')} {address.get('house_number', '')}".strip(), "city": address.get("city") or address.get("town") or address.get("village"), "state": address.get("state"), "pincode": address.get("postcode"), diff --git a/frappe/integrations/doctype/ldap_settings/ldap_settings.py b/frappe/integrations/doctype/ldap_settings/ldap_settings.py index fafd155bb8..bb84b7241f 100644 --- a/frappe/integrations/doctype/ldap_settings/ldap_settings.py +++ b/frappe/integrations/doctype/ldap_settings/ldap_settings.py @@ -278,13 +278,14 @@ class LDAPSettings(Document): elif self.ldap_directory_server.lower() == "openldap": ldap_object_class = "posixgroup" ldap_group_members_attribute = "memberuid" - user_search_str = getattr(user, self.ldap_username_field).value + user_search_str = escape_filter_chars(getattr(user, self.ldap_username_field).value) elif self.ldap_directory_server.lower() == "custom": ldap_object_class = self.ldap_group_objectclass ldap_group_members_attribute = self.ldap_group_member_attribute ldap_custom_group_search = self.ldap_custom_group_search or "{0}" - user_search_str = ldap_custom_group_search.format(getattr(user, self.ldap_username_field).value) + user_value = escape_filter_chars(getattr(user, self.ldap_username_field).value) + user_search_str = ldap_custom_group_search.format(user_value) else: # NOTE: depreciate this else path @@ -308,6 +309,7 @@ class LDAPSettings(Document): if not self.enabled: frappe.throw(_("LDAP is not enabled.")) + username = escape_filter_chars(username) user_filter = self.ldap_search_string.format(username) ldap_attributes = self.get_ldap_attributes() conn = self.connect_to_ldap(self.base_dn, self.get_password(raise_exception=False)) @@ -335,7 +337,8 @@ class LDAPSettings(Document): except LDAPInvalidCredentialsResult: frappe.throw(_("Invalid username or password")) - def reset_password(self, user, password, logout_sessions=False): + def reset_password(self, user: str, password: str, logout_sessions: int = 0): + user = escape_filter_chars(user) search_filter = f"({self.ldap_email_field}={user})" conn = self.connect_to_ldap(self.base_dn, self.get_password(raise_exception=False), read_only=False) @@ -420,7 +423,7 @@ def login(): @frappe.whitelist() -def reset_password(user, password, logout): +def reset_password(user: str, password: str, logout: int): ldap: LDAPSettings = frappe.get_doc("LDAP Settings") if not ldap.enabled: frappe.throw(_("LDAP is not enabled.")) diff --git a/frappe/integrations/doctype/ldap_settings/test_ldap_settings.py b/frappe/integrations/doctype/ldap_settings/test_ldap_settings.py index 85bf3b4af9..ef22e1ff6f 100644 --- a/frappe/integrations/doctype/ldap_settings/test_ldap_settings.py +++ b/frappe/integrations/doctype/ldap_settings/test_ldap_settings.py @@ -240,7 +240,7 @@ class LDAP_TestCase: function_return = self.test_class.connect_to_ldap( base_dn=self.base_dn, password=self.base_password ) - args, kwargs = ldap3_connection_method.call_args + _args, kwargs = ldap3_connection_method.call_args for connection_arg in kwargs: if ( @@ -305,7 +305,7 @@ class LDAP_TestCase: base_dn=self.base_dn, password=self.base_password, read_only=False ) - args, kwargs = ldap3_connection_method.call_args + _args, kwargs = ldap3_connection_method.call_args self.assertFalse( kwargs["read_only"], diff --git a/frappe/integrations/oauth2.py b/frappe/integrations/oauth2.py index 96224f4c5a..063bd2a3bc 100644 --- a/frappe/integrations/oauth2.py +++ b/frappe/integrations/oauth2.py @@ -72,7 +72,7 @@ def approve(*args, **kwargs): frappe.flags.oauth_credentials, ) = get_oauth_server().validate_authorization_request(r.url, r.method, r.get_data(), r.headers) - headers, body, status = get_oauth_server().create_authorization_response( + headers, _body, _status = get_oauth_server().create_authorization_response( uri=frappe.flags.oauth_credentials["redirect_uri"], body=r.get_data(), headers=r.headers, @@ -144,7 +144,7 @@ def authorize(**kwargs): def get_token(*args, **kwargs): try: r = frappe.request - headers, body, status = get_oauth_server().create_token_response( + _headers, body, _status = get_oauth_server().create_token_response( r.url, r.method, r.form, r.headers, frappe.flags.oauth_credentials ) body = frappe._dict(json.loads(body)) @@ -165,7 +165,7 @@ def get_token(*args, **kwargs): def revoke_token(*args, **kwargs): try: r = frappe.request - headers, body, status = get_oauth_server().create_revocation_response( + _headers, _body, status = get_oauth_server().create_revocation_response( r.url, headers=r.headers, body=r.form, @@ -184,7 +184,7 @@ def revoke_token(*args, **kwargs): def openid_profile(*args, **kwargs): try: r = frappe.request - headers, body, status = get_oauth_server().create_userinfo_response( + _headers, body, _status = get_oauth_server().create_userinfo_response( r.url, headers=r.headers, body=r.form, diff --git a/frappe/locale/ar.po b/frappe/locale/ar.po index 2db85995e6..bf59a3e7ce 100644 --- a/frappe/locale/ar.po +++ b/frappe/locale/ar.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: developers@frappe.io\n" -"POT-Creation-Date: 2025-09-21 09:33+0000\n" -"PO-Revision-Date: 2025-09-21 19:57\n" +"POT-Creation-Date: 2025-10-05 09:33+0000\n" +"PO-Revision-Date: 2025-10-06 22:59\n" "Last-Translator: developers@frappe.io\n" "Language-Team: Arabic\n" "MIME-Version: 1.0\n" @@ -78,7 +78,7 @@ msgstr "\"في البحث العام\" غير مسموح للنوع {0} في ا msgid "'In List View' is not allowed for field {0} of type {1}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:363 +#: frappe/custom/doctype/customize_form/customize_form.py:367 msgid "'In List View' not allowed for type {0} in row {1}" msgstr "'في عرض القائمة' غير مسموح للنوع {0} في الصف {1}" @@ -122,7 +122,7 @@ msgstr "0 - مسودّة؛ 1 - تأكيد؛ 2 - إلغاء" msgid "0 is highest" msgstr "0 أعلى قيمة" -#: frappe/public/js/frappe/form/grid_row.js:892 +#: frappe/public/js/frappe/form/grid_row.js:893 msgid "1 = True & 0 = False" msgstr "" @@ -140,11 +140,11 @@ msgstr "" msgid "1 Google Calendar Event synced." msgstr "تمت مزامنة حدث تقويم Google واحد." -#: frappe/public/js/frappe/views/reports/query_report.js:955 +#: frappe/public/js/frappe/views/reports/query_report.js:963 msgid "1 Report" msgstr "" -#: frappe/tests/test_utils.py:739 +#: frappe/tests/test_utils.py:845 msgid "1 day ago" msgstr "" @@ -153,17 +153,17 @@ msgid "1 hour" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:52 -#: frappe/tests/test_utils.py:737 +#: frappe/tests/test_utils.py:843 msgid "1 hour ago" msgstr "منذ 1 ساعة" #: frappe/public/js/frappe/utils/pretty_date.js:48 -#: frappe/tests/test_utils.py:735 +#: frappe/tests/test_utils.py:841 msgid "1 minute ago" msgstr "منذ 1 دقيقة" #: frappe/public/js/frappe/utils/pretty_date.js:66 -#: frappe/tests/test_utils.py:743 +#: frappe/tests/test_utils.py:849 msgid "1 month ago" msgstr "قبل شهر" @@ -185,37 +185,37 @@ msgctxt "User added row to child table" msgid "1 row to {0}" msgstr "" -#: frappe/tests/test_utils.py:734 +#: frappe/tests/test_utils.py:840 msgid "1 second ago" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:62 -#: frappe/tests/test_utils.py:741 +#: frappe/tests/test_utils.py:847 msgid "1 week ago" msgstr "1 قبل أسبوع" #: frappe/public/js/frappe/utils/pretty_date.js:70 -#: frappe/tests/test_utils.py:745 +#: frappe/tests/test_utils.py:851 msgid "1 year ago" msgstr "منذ سنة" -#: frappe/tests/test_utils.py:738 +#: frappe/tests/test_utils.py:844 msgid "2 hours ago" msgstr "" -#: frappe/tests/test_utils.py:744 +#: frappe/tests/test_utils.py:850 msgid "2 months ago" msgstr "" -#: frappe/tests/test_utils.py:742 +#: frappe/tests/test_utils.py:848 msgid "2 weeks ago" msgstr "" -#: frappe/tests/test_utils.py:746 +#: frappe/tests/test_utils.py:852 msgid "2 years ago" msgstr "" -#: frappe/tests/test_utils.py:736 +#: frappe/tests/test_utils.py:842 msgid "3 minutes ago" msgstr "" @@ -231,7 +231,7 @@ msgstr "" msgid "5 Records" msgstr "5 السجلات" -#: frappe/tests/test_utils.py:740 +#: frappe/tests/test_utils.py:846 msgid "5 days ago" msgstr "" @@ -267,6 +267,16 @@ msgstr "" 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 "" +#. Introduction text of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "
" +msgstr "" + +#. Introduction text of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "

Send a request to delete your account and personally identifiable information (PII) that is stored on our system. You will receive an email to verify your request. Once the request is verified we will take care of deleting your PII. If you just want to check what PII we have stored, you can request your data.

" +msgstr "" + #. Content of the 'Help HTML' (HTML) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -578,6 +588,11 @@ msgstr "" msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three." msgstr "" +#. Success message of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "A download link with your data will be sent to the email address associated with your account." +msgstr "" + #: frappe/custom/doctype/custom_field/custom_field.py:175 msgid "A field with the name {0} already exists in {1}" msgstr "" @@ -704,7 +719,7 @@ msgstr "" #. 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.js:452 frappe/core/doctype/user/user.json +#: frappe/core/doctype/user/user.js:459 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 @@ -723,7 +738,7 @@ msgstr "" msgid "API Key cannot be regenerated" msgstr "" -#: frappe/core/doctype/user/user.js:449 +#: frappe/core/doctype/user/user.js:456 msgid "API Keys" msgstr "" @@ -747,7 +762,7 @@ msgstr "" #. 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.js:459 frappe/core/doctype/user/user.json +#: frappe/core/doctype/user/user.js:466 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" @@ -833,7 +848,7 @@ msgstr "رمز وصول" msgid "Access Token URL" msgstr "رابط رمز الدخول" -#: frappe/auth.py:491 +#: frappe/auth.py:494 msgid "Access not allowed from this IP Address" msgstr "الوصول غير مسموح به من عنوان IP هذا" @@ -949,7 +964,7 @@ msgstr "" #: 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:842 +#: frappe/public/js/frappe/views/reports/query_report.js:850 msgid "Actions" msgstr "الإجراءات" @@ -1006,7 +1021,7 @@ msgstr "سجل النشاط" #: 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:501 +#: frappe/public/js/frappe/form/grid_row.js:502 #: 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 @@ -1017,7 +1032,7 @@ msgstr "سجل النشاط" msgid "Add" msgstr "إضافة" -#: frappe/public/js/frappe/form/grid_row.js:454 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Add / Remove Columns" msgstr "" @@ -1062,8 +1077,8 @@ msgid "Add Child" msgstr "إضافة الطفل" #: frappe/public/js/frappe/views/kanban/kanban_board.html:4 -#: frappe/public/js/frappe/views/reports/query_report.js:1832 -#: frappe/public/js/frappe/views/reports/query_report.js:1835 +#: frappe/public/js/frappe/views/reports/query_report.js:1840 +#: frappe/public/js/frappe/views/reports/query_report.js:1843 #: frappe/public/js/frappe/views/reports/report_view.js:360 #: frappe/public/js/frappe/views/reports/report_view.js:385 #: frappe/public/js/print_format_builder/Field.vue:112 @@ -1157,7 +1172,7 @@ msgstr "إضافة المشتركين" msgid "Add Tags" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2149 +#: frappe/public/js/frappe/list/list_view.js:2151 msgctxt "Button in list view actions menu" msgid "Add Tags" msgstr "" @@ -1538,11 +1553,11 @@ msgstr "إنذار" msgid "Alerts and Notifications" msgstr "" -#: frappe/database/query.py:1608 +#: frappe/database/query.py:1610 msgid "Alias cannot be a SQL keyword: {0}" msgstr "" -#: frappe/database/query.py:1533 +#: frappe/database/query.py:1535 msgid "Alias must be a string" msgstr "" @@ -1989,6 +2004,12 @@ msgstr "إضافة حقل تبعية الحالة أيضًا {0}" msgid "Alternative Email ID" msgstr "" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Always" +msgstr "" + #. Label of the always_bcc (Data) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Always BCC Address" @@ -2065,6 +2086,11 @@ msgstr "" msgid "Amendment naming rules updated." msgstr "" +#. Success message of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "An email to verify your request has been sent to your email address. Please verify your request to complete the process." +msgstr "" + #: frappe/public/js/frappe/ui/toolbar/toolbar.js:354 msgid "An error occurred while setting Session Defaults" msgstr "حدث خطأ أثناء إعداد الإعدادات الافتراضية للجلسة" @@ -2247,7 +2273,7 @@ msgstr "تم التطبيق" msgid "Apply" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2134 +#: frappe/public/js/frappe/list/list_view.js:2136 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" msgstr "تطبيق قاعدة الواجب" @@ -2332,7 +2358,7 @@ msgstr "أعمدة من الأرشيف" msgid "Are you sure you want to cancel the invitation?" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2113 +#: frappe/public/js/frappe/list/list_view.js:2115 msgid "Are you sure you want to clear the assignments?" msgstr "" @@ -2368,7 +2394,7 @@ msgstr "" msgid "Are you sure you want to discard the changes?" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:969 +#: frappe/public/js/frappe/views/reports/query_report.js:977 msgid "Are you sure you want to generate a new report?" msgstr "" @@ -2376,7 +2402,7 @@ msgstr "" msgid "Are you sure you want to merge {0} with {1}?" msgstr "هل أنت متأكد من رغبتك في دمج {0} مع {1}؟" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:108 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:118 msgid "Are you sure you want to proceed?" msgstr "" @@ -2431,6 +2457,12 @@ msgstr "" msgid "As per your request, your account and data on {0} associated with email {1} has been permanently deleted" msgstr "" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Ask" +msgstr "" + #. Label of the assign_condition (Code) field in DocType 'Assignment Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Assign Condition" @@ -2440,7 +2472,7 @@ msgstr "تعيين الشرط" msgid "Assign To" msgstr "تكليف إلى" -#: frappe/public/js/frappe/list/list_view.js:2095 +#: frappe/public/js/frappe/list/list_view.js:2097 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "تكليف إلى" @@ -2583,7 +2615,7 @@ msgstr "تعيينات" msgid "Asynchronous" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:696 +#: frappe/public/js/frappe/form/grid_row.js:697 msgid "At least one column is required to show in the grid." msgstr "" @@ -3563,7 +3595,7 @@ msgstr "حذف بالجملة" msgid "Bulk Edit" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1189 +#: frappe/public/js/frappe/form/grid.js:1190 msgid "Bulk Edit {0}" msgstr "تعديل بالجمله {0}" @@ -3855,7 +3887,7 @@ msgstr "" #. 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/doctype/doctype_list.js:131 #: frappe/core/doctype/user_document_type/user_document_type.json #: frappe/core/doctype/user_invitation/user_invitation.js:17 #: frappe/email/doctype/notification/notification.json @@ -3863,7 +3895,7 @@ msgstr "" msgid "Cancel" msgstr "إلغاء" -#: frappe/public/js/frappe/list/list_view.js:2204 +#: frappe/public/js/frappe/list/list_view.js:2206 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "إلغاء" @@ -3881,7 +3913,7 @@ msgstr "" msgid "Cancel All Documents" msgstr "الغاء جميع الوثائق" -#: frappe/public/js/frappe/list/list_view.js:2209 +#: frappe/public/js/frappe/list/list_view.js:2211 msgctxt "Title of confirmation dialog" msgid "Cancel {0} documents?" msgstr "إلغاء {0} وثائق؟" @@ -3934,7 +3966,7 @@ msgstr "لا يمكن إزالة" msgid "Cannot Update After Submit" msgstr "" -#: frappe/core/doctype/file/file.py:643 +#: frappe/core/doctype/file/file.py:646 msgid "Cannot access file path {0}" msgstr "" @@ -3982,7 +4014,7 @@ msgstr "" msgid "Cannot delete Home and Attachments folders" msgstr "لا يمكن حذف المجلدات الرئيسية والمرفقات" -#: frappe/model/delete_doc.py:379 +#: frappe/model/delete_doc.py:419 msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}" msgstr "لا يمكن حذف أو إلغاء لأن {0} {1} مرتبط مع {2} {3} {4}" @@ -4062,7 +4094,7 @@ msgstr "" msgid "Cannot find file {} on disk" msgstr "" -#: frappe/core/doctype/file/file.py:583 +#: frappe/core/doctype/file/file.py:586 msgid "Cannot get file contents of a Folder" msgstr "" @@ -4070,7 +4102,7 @@ msgstr "" msgid "Cannot have multiple printers mapped to a single print format." msgstr "لا يمكن تعيين طابعات متعددة على تنسيق طباعة واحد." -#: frappe/public/js/frappe/form/grid.js:1133 +#: frappe/public/js/frappe/form/grid.js:1134 msgid "Cannot import table with more than 5000 rows." msgstr "" @@ -4086,7 +4118,7 @@ msgstr "" msgid "Cannot match column {0} with any field" msgstr "لا يمكن مطابقة العمود {0} بأي حقل" -#: frappe/public/js/frappe/form/grid_row.js:175 +#: frappe/public/js/frappe/form/grid_row.js:176 msgid "Cannot move row" msgstr "لا يمكن نقل الصف" @@ -4115,11 +4147,11 @@ msgstr "" msgid "Cannot update {0}" msgstr "لا يمكن تحديث {0}" -#: frappe/model/db_query.py:1130 +#: frappe/model/db_query.py:1136 msgid "Cannot use sub-query here." msgstr "" -#: frappe/model/db_query.py:1162 +#: frappe/model/db_query.py:1168 msgid "Cannot use {0} in order/group by" msgstr "" @@ -4391,11 +4423,11 @@ msgstr "" #. Description of the 'Is Child Table' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:52 +#: frappe/core/doctype/doctype/doctype_list.js:53 msgid "Child Tables are shown as a Grid in other DocTypes" msgstr "يتم عرض الجداول الفرعية كشبكة في DocTypes الأخرى" -#: frappe/database/query.py:660 +#: frappe/database/query.py:662 msgid "Child query fields for '{0}' must be a list or tuple." msgstr "" @@ -4451,7 +4483,7 @@ msgstr "" msgid "Clear All" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2110 +#: frappe/public/js/frappe/list/list_view.js:2112 msgctxt "Button in list view actions menu" msgid "Clear Assignment" msgstr "" @@ -4545,7 +4577,7 @@ msgstr "" msgid "Click to Set Filters" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:739 +#: frappe/public/js/frappe/list/list_view.js:741 msgid "Click to sort by {0}" msgstr "" @@ -4723,7 +4755,7 @@ msgctxt "Shrink code field." msgid "Collapse" msgstr "انهيار" -#: frappe/public/js/frappe/views/reports/query_report.js:2113 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 #: frappe/public/js/frappe/views/treeview.js:123 msgid "Collapse All" msgstr "انهيار جميع" @@ -4778,7 +4810,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:1233 +#: frappe/public/js/frappe/views/reports/query_report.js:1241 #: frappe/public/js/frappe/widgets/widget_dialog.js:546 #: frappe/public/js/frappe/widgets/widget_dialog.js:694 #: frappe/website/doctype/color/color.json @@ -4834,11 +4866,11 @@ msgstr "اسم العمود" msgid "Column Name cannot be empty" msgstr "اسم العمود لا يمكن أن يكون فارغا\\n
\\nColumn Name cannot be empty" -#: frappe/public/js/frappe/form/grid_row.js:454 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Column Width" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:661 +#: frappe/public/js/frappe/form/grid_row.js:662 msgid "Column width cannot be zero." msgstr "" @@ -4865,7 +4897,7 @@ msgstr "الأعمدة" msgid "Columns / Fields" msgstr "الأعمدة / الحقول" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:397 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:411 msgid "Columns based on" msgstr "أعمدة بناء على" @@ -5129,7 +5161,7 @@ msgstr "" msgid "Configure Chart" msgstr "تكوين المخطط" -#: frappe/public/js/frappe/form/grid_row.js:406 +#: frappe/public/js/frappe/form/grid_row.js:407 msgid "Configure Columns" msgstr "" @@ -5154,7 +5186,7 @@ msgstr "" msgid "Configure various aspects of how document naming works like naming series, current counter." msgstr "" -#: frappe/core/doctype/user/user.js:412 frappe/public/js/frappe/dom.js:345 +#: frappe/core/doctype/user/user.js:400 frappe/public/js/frappe/dom.js:345 #: frappe/www/update-password.html:66 msgid "Confirm" msgstr "أكد" @@ -5173,7 +5205,7 @@ msgstr "" msgid "Confirm Deletion of Account" msgstr "" -#: frappe/core/doctype/user/user.js:196 +#: frappe/core/doctype/user/user.js:184 msgid "Confirm New Password" msgstr "تأكيد كلمة المرور الجديدة" @@ -5426,7 +5458,7 @@ msgstr "" msgid "Copy to Clipboard" msgstr "" -#: frappe/core/doctype/user/user.js:480 +#: frappe/core/doctype/user/user.js:487 msgid "Copy token to clipboard" msgstr "" @@ -5435,7 +5467,7 @@ msgstr "" msgid "Copyright" msgstr "حق النشر" -#: frappe/custom/doctype/customize_form/customize_form.py:123 +#: frappe/custom/doctype/customize_form/customize_form.py:125 msgid "Core DocTypes cannot be customized." msgstr "لا يمكن تخصيص DocTypes الأساسية." @@ -5459,7 +5491,7 @@ msgstr "لا يمكن أن تجد {0}" msgid "Could not map column {0} to field {1}" msgstr "تعذر تعيين العمود {0} للحقل {1}" -#: frappe/database/query.py:564 +#: frappe/database/query.py:566 msgid "Could not parse field: {0}" msgstr "" @@ -5551,13 +5583,13 @@ 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:1265 +#: frappe/public/js/frappe/views/reports/query_report.js:1273 #: frappe/public/js/frappe/views/workspace/workspace.js:469 #: frappe/workflow/page/workflow_builder/workflow_builder.js:46 msgid "Create" msgstr "انشاء" -#: frappe/core/doctype/doctype/doctype_list.js:102 +#: frappe/core/doctype/doctype/doctype_list.js:103 msgid "Create & Continue" msgstr "" @@ -5571,7 +5603,7 @@ msgid "Create Card" msgstr "إنشاء بطاقة" #: frappe/public/js/frappe/views/reports/query_report.js:285 -#: frappe/public/js/frappe/views/reports/query_report.js:1192 +#: frappe/public/js/frappe/views/reports/query_report.js:1200 msgid "Create Chart" msgstr "إنشاء مخطط" @@ -5605,12 +5637,12 @@ msgstr "إنشاء سجل" msgid "Create New" msgstr "انشاء جديد" -#: frappe/public/js/frappe/list/list_view.js:512 +#: frappe/public/js/frappe/list/list_view.js:514 msgctxt "Create a new document from list view" msgid "Create New" msgstr "انشاء جديد" -#: frappe/core/doctype/doctype/doctype_list.js:100 +#: frappe/core/doctype/doctype/doctype_list.js:101 msgid "Create New DocType" msgstr "" @@ -5618,7 +5650,7 @@ msgstr "" msgid "Create New Kanban Board" msgstr "" -#: frappe/core/doctype/user/user.js:276 +#: frappe/core/doctype/user/user.js:264 msgid "Create User Email" msgstr "انشاء بريد إلكتروني" @@ -5641,8 +5673,8 @@ msgstr "إنشاء سجل جديد" #: frappe/public/js/frappe/form/controls/link.js:315 #: frappe/public/js/frappe/form/controls/link.js:317 #: frappe/public/js/frappe/form/link_selector.js:139 -#: frappe/public/js/frappe/list/list_view.js:504 -#: frappe/public/js/frappe/web_form/web_form_list.js:225 +#: frappe/public/js/frappe/list/list_view.js:506 +#: frappe/public/js/frappe/web_form/web_form_list.js:226 msgid "Create a new {0}" msgstr "انشاء جديد {0}" @@ -5658,7 +5690,7 @@ msgstr "" msgid "Create or Edit Workflow" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:507 +#: frappe/public/js/frappe/list/list_view.js:509 msgid "Create your first {0}" msgstr "قم بإنشاء أول {0}" @@ -6005,7 +6037,7 @@ 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/core/doctype/doctype/doctype_list.js:83 #: frappe/website/doctype/website_theme/website_theme.json msgid "Custom?" msgstr "مخصص" @@ -6040,7 +6072,7 @@ msgstr "تم تصدير التخصيصات ل {0} إلى:
{1}" msgid "Customize" msgstr "تخصيص" -#: frappe/public/js/frappe/list/list_view.js:1947 +#: frappe/public/js/frappe/list/list_view.js:1949 msgctxt "Button in list view menu" msgid "Customize" msgstr "تخصيص" @@ -6059,7 +6091,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:343 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 msgid "Customize Form" msgstr "تخصيص نموذج" @@ -6290,7 +6322,7 @@ msgstr "" msgid "Data Import Template" msgstr "قالب ادخال البيانات" -#: frappe/custom/doctype/customize_form/customize_form.py:615 +#: frappe/custom/doctype/customize_form/customize_form.py:619 msgid "Data Too Long" msgstr "البيانات طويلة جدًا" @@ -6321,7 +6353,7 @@ msgstr "" msgid "Database Storage Usage By Tables" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:249 +#: frappe/custom/doctype/customize_form/customize_form.py:251 msgid "Database Table Row Size Limit" msgstr "" @@ -6691,13 +6723,13 @@ msgstr "مؤجل" #: frappe/public/js/frappe/form/toolbar.js:464 #: frappe/public/js/frappe/views/reports/report_view.js:1749 #: frappe/public/js/frappe/views/treeview.js:329 -#: frappe/public/js/frappe/web_form/web_form_list.js:282 +#: frappe/public/js/frappe/web_form/web_form_list.js:283 #: frappe/templates/discussions/reply_card.html:35 #: frappe/templates/discussions/reply_section.html:29 msgid "Delete" msgstr "حذف" -#: frappe/public/js/frappe/list/list_view.js:2172 +#: frappe/public/js/frappe/list/list_view.js:2174 msgctxt "Button in list view actions menu" msgid "Delete" msgstr "حذف" @@ -6730,7 +6762,7 @@ msgstr "" msgid "Delete Data" msgstr "حذف البيانات" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:106 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:116 msgid "Delete Kanban Board" msgstr "" @@ -6744,7 +6776,7 @@ msgctxt "Title of confirmation dialog" msgid "Delete Tab" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:936 +#: frappe/public/js/frappe/views/reports/query_report.js:944 msgid "Delete and Generate New" msgstr "" @@ -6786,12 +6818,12 @@ msgstr "" msgid "Delete this record to allow sending to this email address" msgstr "احذف هذا السجل للسماح بالإرسال إلى عنوان البريد الإلكتروني هذا" -#: frappe/public/js/frappe/list/list_view.js:2177 +#: frappe/public/js/frappe/list/list_view.js:2179 msgctxt "Title of confirmation dialog" msgid "Delete {0} item permanently?" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2183 +#: frappe/public/js/frappe/list/list_view.js:2185 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "حذف {0} العناصر نهائيا؟" @@ -7288,10 +7320,14 @@ msgstr "" msgid "Do not create new user if user with email does not exist in the system" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1194 +#: frappe/public/js/frappe/form/grid.js:1195 msgid "Do not edit headers which are preset in the template" msgstr "لا تقم بتحرير الرؤوس التي يتم ضبطها مسبقا في القالب" +#: frappe/public/js/frappe/router.js:624 +msgid "Do not warn me again about {0}" +msgstr "" + #: frappe/core/doctype/system_settings/system_settings.js:71 msgid "Do you still want to proceed?" msgstr "" @@ -7715,7 +7751,7 @@ msgstr "عنوان المستند" #: 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/public/js/frappe/roles_editor.js:68 #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json #: frappe/workflow/doctype/workflow/workflow.json msgid "Document Type" @@ -7766,15 +7802,15 @@ msgstr "" msgid "Document follow is not enabled for this user." msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1300 +#: frappe/public/js/frappe/list/list_view.js:1302 msgid "Document has been cancelled" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1299 +#: frappe/public/js/frappe/list/list_view.js:1301 msgid "Document has been submitted" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1298 +#: frappe/public/js/frappe/list/list_view.js:1300 msgid "Document is in draft state" msgstr "" @@ -7916,7 +7952,7 @@ msgstr "الدونات" msgid "Double click to edit label" msgstr "" -#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:467 +#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:474 #: frappe/email/doctype/auto_email_report/auto_email_report.js:8 #: frappe/public/js/frappe/form/grid.js:66 msgid "Download" @@ -7949,7 +7985,7 @@ msgstr "رابط التحميل" msgid "Download PDF" msgstr "تحميل PDF" -#: frappe/public/js/frappe/views/reports/query_report.js:832 +#: frappe/public/js/frappe/views/reports/query_report.js:840 msgid "Download Report" msgstr "تحميل التقرير" @@ -8149,8 +8185,8 @@ msgstr "" #: 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:880 -#: frappe/public/js/frappe/views/reports/query_report.js:1783 +#: frappe/public/js/frappe/views/reports/query_report.js:888 +#: frappe/public/js/frappe/views/reports/query_report.js:1791 #: 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 @@ -8162,7 +8198,7 @@ msgstr "" msgid "Edit" msgstr "تصحيح" -#: frappe/public/js/frappe/list/list_view.js:2258 +#: frappe/public/js/frappe/list/list_view.js:2260 msgctxt "Button in list view actions menu" msgid "Edit" msgstr "تصحيح" @@ -8172,7 +8208,7 @@ msgctxt "Button in web form" msgid "Edit" msgstr "تصحيح" -#: frappe/public/js/frappe/form/grid_row.js:349 +#: frappe/public/js/frappe/form/grid_row.js:350 msgctxt "Edit grid row" msgid "Edit" msgstr "تصحيح" @@ -8201,7 +8237,7 @@ msgstr "تحرير مخصص HTML" msgid "Edit DocType" msgstr "تعديل القائمة" -#: frappe/public/js/frappe/list/list_view.js:1974 +#: frappe/public/js/frappe/list/list_view.js:1976 msgctxt "Button in list view menu" msgid "Edit DocType" msgstr "تعديل القائمة" @@ -8321,7 +8357,7 @@ msgstr "تحرير {0}" #. 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/core/doctype/doctype/doctype_list.js:58 #: frappe/custom/doctype/customize_form/customize_form.json msgid "Editable Grid" msgstr "قابلة للتعديل Grid" @@ -8366,6 +8402,8 @@ msgstr "" #. 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' +#. Label of a field in the request-data Web Form +#. Label of a field in the request-to-delete-data Web Form #: frappe/automation/workspace/tools/tools.json #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/custom_docperm/custom_docperm.json @@ -8384,6 +8422,8 @@ msgstr "" #: 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/website/web_form/request_data/request_data.json +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json #: frappe/www/login.html:8 frappe/www/login.py:104 msgid "Email" msgstr "البريد الإلكتروني" @@ -8615,7 +8655,7 @@ msgstr "تم وضع علامة على البريد الإلكتروني كغير msgid "Email has been moved to trash" msgstr "تم نقل البريد الإلكتروني إلى المهملات" -#: frappe/core/doctype/user/user.js:278 +#: frappe/core/doctype/user/user.js:266 msgid "Email is mandatory to create User Email" msgstr "" @@ -8658,7 +8698,7 @@ msgstr "سيتم إرسال رسائل البريد الإلكتروني مع إ msgid "Embed code copied" msgstr "" -#: frappe/database/query.py:1537 +#: frappe/database/query.py:1539 msgid "Empty alias is not allowed" msgstr "" @@ -8666,7 +8706,7 @@ msgstr "" msgid "Empty column" msgstr "" -#: frappe/database/query.py:1455 +#: frappe/database/query.py:1457 msgid "Empty string arguments are not allowed" msgstr "" @@ -9122,9 +9162,9 @@ msgstr "" msgid "Error in Header/Footer Script" msgstr "" -#: frappe/email/doctype/notification/notification.py:640 -#: frappe/email/doctype/notification/notification.py:780 -#: frappe/email/doctype/notification/notification.py:786 +#: frappe/email/doctype/notification/notification.py:642 +#: frappe/email/doctype/notification/notification.py:782 +#: frappe/email/doctype/notification/notification.py:788 msgid "Error in Notification" msgstr "خطأ في الإخطار" @@ -9144,7 +9184,7 @@ msgstr "" msgid "Error while connecting to email account {0}" msgstr "حدث خطأ أثناء الاتصال بحساب البريد الإلكتروني {0}" -#: frappe/email/doctype/notification/notification.py:777 +#: frappe/email/doctype/notification/notification.py:779 msgid "Error while evaluating Notification {0}. Please fix your template." msgstr "خطأ أثناء تقييم الإشعار {0}. يرجى تصحيح القالب الخاص بك." @@ -9305,7 +9345,7 @@ msgstr "" msgid "Executing..." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2132 +#: frappe/public/js/frappe/views/reports/query_report.js:2140 msgid "Execution Time: {0} sec" msgstr "وقت التنفيذ: {0} ثانية" @@ -9331,12 +9371,12 @@ msgctxt "Enlarge code field." msgid "Expand" msgstr "وسعت" -#: frappe/public/js/frappe/views/reports/query_report.js:2113 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 #: frappe/public/js/frappe/views/treeview.js:133 msgid "Expand All" msgstr "توسيع الكل" -#: frappe/database/query.py:352 +#: frappe/database/query.py:354 msgid "Expected 'and' or 'or' operator, found: {0}" msgstr "" @@ -9394,13 +9434,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:1820 +#: frappe/public/js/frappe/views/reports/query_report.js:1828 #: frappe/public/js/frappe/views/reports/report_view.js:1629 #: frappe/public/js/frappe/widgets/chart_widget.js:315 msgid "Export" msgstr "تصدير" -#: frappe/public/js/frappe/list/list_view.js:2280 +#: frappe/public/js/frappe/list/list_view.js:2282 msgctxt "Button in list view actions menu" msgid "Export" msgstr "تصدير" @@ -9593,7 +9633,7 @@ msgstr "" msgid "Failed to connect to server" msgstr "فشل الاتصال بالخادم" -#: frappe/auth.py:698 +#: frappe/auth.py:701 msgid "Failed to decode token, please provide a valid base64-encoded token." msgstr "فشل فك الرمز المميز ، يرجى تقديم رمز مميز صالح بترميز base64." @@ -9757,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:236 -#: frappe/public/js/frappe/views/reports/query_report.js:1879 +#: frappe/public/js/frappe/views/reports/query_report.js:1887 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_form_list_column/web_form_list_column.json msgid "Field" @@ -9840,7 +9880,7 @@ msgstr "" msgid "Field {0} not found." msgstr "الحقل {0} غير موجود." -#: frappe/email/doctype/notification/notification.py:545 +#: frappe/email/doctype/notification/notification.py:547 msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link" msgstr "" @@ -9858,7 +9898,7 @@ msgstr "" #: 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:454 +#: frappe/public/js/frappe/form/grid_row.js:455 #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Fieldname" msgstr "اسم الحقل" @@ -9939,7 +9979,7 @@ msgstr "" msgid "Fields must be a list or tuple when as_list is enabled" msgstr "" -#: frappe/database/query.py:611 +#: frappe/database/query.py:613 msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function" msgstr "" @@ -9967,7 +10007,7 @@ msgstr "نوع الحقل" msgid "Fieldtype cannot be changed from {0} to {1}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:589 +#: frappe/custom/doctype/customize_form/customize_form.py:593 msgid "Fieldtype cannot be changed from {0} to {1} in row {2}" msgstr "لا يمكن تغيير نوع الحقل من {0} إلى {1} في الصف {2}" @@ -10033,7 +10073,7 @@ msgstr "ملف URL" msgid "File backup is ready" msgstr "ملف النسخ الاحتياطي جاهز" -#: frappe/core/doctype/file/file.py:646 +#: frappe/core/doctype/file/file.py:649 msgid "File name cannot have {0}" msgstr "لا يمكن أن يحتوي اسم الملف على {0}" @@ -10041,7 +10081,7 @@ msgstr "لا يمكن أن يحتوي اسم الملف على {0}" msgid "File not attached" msgstr "الملف غير مرفق" -#: frappe/core/doctype/file/file.py:756 frappe/public/js/frappe/request.js:200 +#: frappe/core/doctype/file/file.py:759 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 "تجاوز حجم الملف الحد الأقصى المسموح به لحجم {0} ميغابايت" @@ -10054,7 +10094,7 @@ msgstr "الملف كبير جدا" msgid "File type of {0} is not allowed" msgstr "" -#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:448 +#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:451 msgid "File {0} does not exist" msgstr "الملف {0} غير موجود" @@ -10108,11 +10148,11 @@ msgstr "اسم الفلتر" msgid "Filter Values" msgstr "قيم التصفية" -#: frappe/database/query.py:358 +#: frappe/database/query.py:360 msgid "Filter condition missing after operator: {0}" msgstr "" -#: frappe/database/query.py:425 +#: frappe/database/query.py:427 msgid "Filter fields cannot contain backticks (`)." msgstr "" @@ -10189,7 +10229,7 @@ msgstr "قسم المرشحات" msgid "Filters applied for {0}" msgstr "المرشحات المطبقة على {0}" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:188 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:202 msgid "Filters saved" msgstr "مرشحات حفظ" @@ -10237,9 +10277,12 @@ msgstr "" #. Label of the first_name (Data) field in DocType 'Contact' #. Label of the first_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json #: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:44 -#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:15 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:15 msgid "First Name" msgstr "الاسم الأول" @@ -10320,7 +10363,7 @@ msgstr "" msgid "Folder name should not include '/' (slash)" msgstr "يجب ألا يتضمن اسم المجلد '/' (شرطة مائلة)" -#: frappe/core/doctype/file/file.py:494 +#: frappe/core/doctype/file/file.py:497 msgid "Folder {0} is not empty" msgstr "المجلد {0} غير فارغ" @@ -10522,7 +10565,7 @@ msgstr "للمستخدم" msgid "For Value" msgstr "للقيمة" -#: frappe/public/js/frappe/views/reports/query_report.js:2129 +#: frappe/public/js/frappe/views/reports/query_report.js:2137 #: frappe/public/js/frappe/views/reports/report_view.js:108 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)." @@ -10807,7 +10850,7 @@ msgstr "من تاريخ" msgid "From Date Field" msgstr "من حقل التاريخ" -#: frappe/public/js/frappe/views/reports/query_report.js:1840 +#: frappe/public/js/frappe/views/reports/query_report.js:1848 msgid "From Document Type" msgstr "من نوع المستند" @@ -10869,13 +10912,13 @@ msgstr "وظيفة على أساس" msgid "Function {0} is not whitelisted." msgstr "" -#: frappe/database/query.py:1417 +#: frappe/database/query.py:1419 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 "العقد الإضافية التي يمكن أن تنشأ إلا في ظل العقد نوع ' المجموعة '" +msgid "Further sub-groups can only be created under records marked as 'Group'" +msgstr "" #: frappe/core/doctype/communication/communication.js:291 msgid "Fw: {0}" @@ -10934,7 +10977,7 @@ msgstr "عام" msgid "Generate Keys" msgstr "توليد مفاتيح" -#: frappe/public/js/frappe/views/reports/query_report.js:874 +#: frappe/public/js/frappe/views/reports/query_report.js:882 msgid "Generate New Report" msgstr "توليد تقرير جديد" @@ -11350,14 +11393,10 @@ msgstr "مجموعة حسب النوع" msgid "Group By field is required to create a dashboard chart" msgstr "حقل تجميع حسب مطلوب لإنشاء مخطط لوحة القيادة" -#: frappe/database/query.py:750 +#: frappe/database/query.py:752 msgid "Group By must be a string" msgstr "" -#: frappe/public/js/frappe/views/treeview.js:418 -msgid "Group Node" -msgstr "عقدة المجموعة" - #. Label of the ldap_group_objectclass (Data) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Group Object Class" @@ -11687,7 +11726,7 @@ msgstr "مخفي" msgid "Hidden Fields" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1642 +#: frappe/public/js/frappe/views/reports/query_report.js:1650 msgid "Hidden columns include: {0}" msgstr "" @@ -11799,7 +11838,7 @@ msgstr "" msgid "Hide Standard Menu" msgstr "إخفاء القائمة الرئيسية" -#: frappe/public/js/frappe/list/list_view.js:1849 +#: frappe/public/js/frappe/list/list_view.js:1851 msgid "Hide Tags" msgstr "" @@ -12058,7 +12097,7 @@ msgstr "إذا ووضع العمل تم الفحص لا تجاوز الوضع ف #: frappe/core/doctype/doctype/doctype.py:1777 #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45 -#: frappe/public/js/frappe/roles_editor.js:66 +#: frappe/public/js/frappe/roles_editor.js:68 msgid "If Owner" msgstr "إذا المالك" @@ -12286,8 +12325,8 @@ msgstr "التطبيقات التي تم تجاهلها" msgid "Illegal Document Status for {0}" msgstr "حالة المستند غير القانوني لـ {0}" -#: frappe/model/db_query.py:453 frappe/model/db_query.py:456 -#: frappe/model/db_query.py:1121 +#: frappe/model/db_query.py:454 frappe/model/db_query.py:457 +#: frappe/model/db_query.py:1122 msgid "Illegal SQL Query" msgstr "استعلام SQL غير قانوني" @@ -12374,11 +12413,11 @@ msgstr "صور" #. Option for the 'Operation' (Select) field in DocType 'Activity Log' #: frappe/core/doctype/activity_log/activity_log.json -#: frappe/core/doctype/user/user.js:384 +#: frappe/core/doctype/user/user.js:372 msgid "Impersonate" msgstr "" -#: frappe/core/doctype/user/user.js:411 +#: frappe/core/doctype/user/user.js:399 msgid "Impersonate as {0}" msgstr "" @@ -12408,7 +12447,7 @@ msgstr "ضمني" msgid "Import" msgstr "استيراد" -#: frappe/public/js/frappe/list/list_view.js:1911 +#: frappe/public/js/frappe/list/list_view.js:1913 msgctxt "Button in list view menu" msgid "Import" msgstr "استيراد" @@ -12637,15 +12676,15 @@ msgid "Include Web View Link in Email" msgstr "إرسال ارتباط عرض الويب للمستند بالبريد الإلكتروني" #: frappe/public/js/frappe/form/print_utils.js:59 -#: frappe/public/js/frappe/views/reports/query_report.js:1620 +#: frappe/public/js/frappe/views/reports/query_report.js:1628 msgid "Include filters" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1640 +#: frappe/public/js/frappe/views/reports/query_report.js:1648 msgid "Include hidden columns" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1612 +#: frappe/public/js/frappe/views/reports/query_report.js:1620 msgid "Include indentation" msgstr "تشمل المسافة البادئة" @@ -12692,7 +12731,7 @@ msgstr "حساب البريد الإلكتروني الوارد غير صحيح" msgid "Incomplete Virtual Doctype Implementation" msgstr "" -#: frappe/auth.py:255 +#: frappe/auth.py:258 msgid "Incomplete login details" msgstr "تفاصيل تسجيل الدخول غير مكتملة" @@ -12803,7 +12842,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:1885 +#: frappe/public/js/frappe/views/reports/query_report.js:1893 msgid "Insert After" msgstr "إدراج بعد" @@ -12876,7 +12915,7 @@ msgstr "" msgid "Insufficient Permission Level for {0}" msgstr "" -#: frappe/database/query.py:806 frappe/database/query.py:1052 +#: frappe/database/query.py:808 frappe/database/query.py:1054 msgid "Insufficient Permission for {0}" msgstr "عدم كفاية الإذن {0}" @@ -12992,7 +13031,7 @@ msgid "Invalid" msgstr "غير صالحة" #: frappe/public/js/form_builder/utils.js:221 -#: frappe/public/js/frappe/form/grid_row.js:849 +#: frappe/public/js/frappe/form/grid_row.js:850 #: frappe/public/js/frappe/form/layout.js:810 #: frappe/public/js/frappe/views/reports/report_view.js:721 msgid "Invalid \"depends_on\" expression" @@ -13050,8 +13089,8 @@ 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 +#: frappe/database/query.py:429 frappe/database/query.py:456 +#: frappe/database/query.py:466 frappe/database/query.py:489 msgid "Invalid Filter" msgstr "" @@ -13123,7 +13162,7 @@ msgstr "رمز مرور خاطئ" msgid "Invalid Phone Number" msgstr "" -#: frappe/auth.py:94 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 +#: frappe/auth.py:97 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 #: frappe/www/login.py:128 msgid "Invalid Request" msgstr "طلب غير صالح" @@ -13163,7 +13202,7 @@ msgstr "" msgid "Invalid aggregate function" msgstr "" -#: frappe/database/query.py:1542 +#: frappe/database/query.py:1544 msgid "Invalid alias format: {0}. Alias must be a simple identifier." msgstr "" @@ -13171,19 +13210,19 @@ msgstr "" msgid "Invalid app" msgstr "" -#: frappe/database/query.py:1468 +#: frappe/database/query.py:1470 msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed." msgstr "" -#: frappe/database/query.py:1444 +#: frappe/database/query.py:1446 msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed." msgstr "" -#: frappe/database/query.py:460 +#: frappe/database/query.py:462 msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed." msgstr "" -#: frappe/database/query.py:575 +#: frappe/database/query.py:577 msgid "Invalid characters in table name: {0}" msgstr "" @@ -13191,11 +13230,11 @@ msgstr "" msgid "Invalid column" msgstr "عمود غير صالح" -#: frappe/database/query.py:381 +#: frappe/database/query.py:383 msgid "Invalid condition type in nested filters: {0}" msgstr "" -#: frappe/database/query.py:787 +#: frappe/database/query.py:789 msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'." msgstr "" @@ -13211,23 +13250,23 @@ msgstr "تم تعيين تعبير غير صالح في عامل التصفية msgid "Invalid expression set in filter {0} ({1})" msgstr "تم تعيين تعبير غير صالح في عامل التصفية {0} ({1})" -#: frappe/database/query.py:1301 +#: frappe/database/query.py:1303 msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'." msgstr "" -#: frappe/database/query.py:734 +#: frappe/database/query.py:736 msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'." msgstr "" -#: frappe/database/query.py:1620 +#: frappe/database/query.py:1622 msgid "Invalid field name in function: {0}. Only simple field names are allowed." msgstr "" -#: frappe/utils/data.py:2215 +#: frappe/utils/data.py:2241 msgid "Invalid field name {0}" msgstr "اسم الحقل غير صالح {0}" -#: frappe/database/query.py:668 +#: frappe/database/query.py:670 msgid "Invalid field type: {0}" msgstr "" @@ -13239,11 +13278,11 @@ msgstr "اسم الحقل غير صالح '{0}' في الااسم تلقائي" msgid "Invalid file path: {0}" msgstr "مسار الملف غير صالح: {0}" -#: frappe/database/query.py:364 +#: frappe/database/query.py:366 msgid "Invalid filter condition: {0}. Expected a list or tuple." msgstr "" -#: frappe/database/query.py:450 +#: frappe/database/query.py:452 msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'." msgstr "" @@ -13251,11 +13290,11 @@ msgstr "" msgid "Invalid filter: {0}" msgstr "مرشح غير صالح: {0}" -#: frappe/database/query.py:1422 +#: frappe/database/query.py:1424 msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed." msgstr "" -#: frappe/database/query.py:1383 +#: frappe/database/query.py:1385 msgid "Invalid function dictionary format" msgstr "" @@ -13292,23 +13331,27 @@ msgstr "محتوى غير صالح أو تالف للاستيراد" msgid "Invalid redirect regex in row #{}: {}" msgstr "" -#: frappe/app.py:337 +#: frappe/app.py:340 msgid "Invalid request arguments" msgstr "" +#: frappe/app.py:327 +msgid "Invalid request body" +msgstr "" + #: frappe/core/doctype/user_invitation/user_invitation.py:181 msgid "Invalid role" msgstr "" -#: frappe/database/query.py:410 +#: frappe/database/query.py:412 msgid "Invalid simple filter format: {0}" msgstr "" -#: frappe/database/query.py:341 +#: frappe/database/query.py:343 msgid "Invalid start for filter condition: {0}. Expected a list or tuple." msgstr "" -#: frappe/database/query.py:1489 +#: frappe/database/query.py:1491 msgid "Invalid string literal format: {0}" msgstr "" @@ -13412,7 +13455,7 @@ msgstr "" #. 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/doctype_list.js:50 #: frappe/core/doctype/doctype_link/doctype_link.json msgid "Is Child Table" msgstr "هو الجدول التابع" @@ -13465,6 +13508,10 @@ msgstr "هو مجلد" msgid "Is Global" msgstr "هو عالمي" +#: frappe/public/js/frappe/views/treeview.js:418 +msgid "Is Group" +msgstr "هل مجموعة" + #. Label of the is_hidden (Check) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "Is Hidden" @@ -13553,7 +13600,7 @@ 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/core/doctype/doctype/doctype_list.js:65 #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Is Single" msgstr "مفردة" @@ -13589,7 +13636,7 @@ msgstr "هو معيار" #. Label of the is_submittable (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:39 +#: frappe/core/doctype/doctype/doctype_list.js:40 msgid "Is Submittable" msgstr "يستطيع الاعتماد" @@ -13795,11 +13842,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:388 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:402 msgid "Kanban Board Name" msgstr "اسم لوح كانبان" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:265 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:279 msgctxt "Button in kanban view menu" msgid "Kanban Settings" msgstr "" @@ -14097,10 +14144,13 @@ msgstr "المناظر الطبيعيه" #. 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' +#. Label of a field in the edit-profile Web Form #: 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:117 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/printing/page/print/print.js:117 #: frappe/public/js/frappe/form/templates/print_layout.html:11 msgid "Language" msgstr "اللغة" @@ -14188,9 +14238,12 @@ msgstr "الشهر الماضي" #. Label of the last_name (Data) field in DocType 'Contact' #. Label of the last_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json #: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:45 -#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:19 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:19 msgid "Last Name" msgstr "اسم العائلة" @@ -14431,7 +14484,7 @@ msgstr "ترئيس الرسالة كصيغة HTML" #: 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/public/js/frappe/roles_editor.js:68 #: frappe/website/doctype/help_article/help_article.json msgid "Level" msgstr "المستوى" @@ -14724,7 +14777,7 @@ msgstr "تصفية القائمة" msgid "List Settings" msgstr "إعدادات القائمة" -#: frappe/public/js/frappe/list/list_view.js:1991 +#: frappe/public/js/frappe/list/list_view.js:1993 msgctxt "Button in list view menu" msgid "List Settings" msgstr "إعدادات القائمة" @@ -14775,7 +14828,7 @@ msgid "Load Balancing" msgstr "تحميل موازنة" #: frappe/public/js/frappe/list/base_list.js:399 -#: frappe/public/js/frappe/web_form/web_form_list.js:305 +#: frappe/public/js/frappe/web_form/web_form_list.js:306 #: frappe/website/doctype/help_article/templates/help_article_list.html:30 msgid "Load More" msgstr "تحميل المزيد" @@ -14795,7 +14848,7 @@ msgstr "" #: frappe/public/js/frappe/list/base_list.js:526 #: frappe/public/js/frappe/list/list_view.js:363 #: frappe/public/js/frappe/ui/listing.html:16 -#: frappe/public/js/frappe/views/reports/query_report.js:1089 +#: frappe/public/js/frappe/views/reports/query_report.js:1097 msgid "Loading" msgstr "تحميل" @@ -14938,7 +14991,7 @@ msgstr "تسجيل الدخول رمز التحقق من {}" msgid "Login and view in Browser" msgstr "تسجيل الدخول وعرض في المتصفح" -#: frappe/website/doctype/web_form/web_form.js:367 +#: frappe/website/doctype/web_form/web_form.js:368 msgid "Login is required to see web form list view. Enable {0} to see list settings" msgstr "" @@ -14946,7 +14999,7 @@ msgstr "" msgid "Login link sent to your email" msgstr "" -#: frappe/auth.py:339 frappe/auth.py:342 +#: frappe/auth.py:342 frappe/auth.py:345 msgid "Login not allowed at this time" msgstr "تسجيل الدخول غير مسموح في هذا الوقت" @@ -14999,7 +15052,7 @@ msgstr "" msgid "Login with email link expiry (in minutes)" msgstr "" -#: frappe/auth.py:144 +#: frappe/auth.py:147 msgid "Login with username and password is not allowed." msgstr "" @@ -15018,7 +15071,7 @@ msgstr "" msgid "Logout" msgstr "خروج" -#: frappe/core/doctype/user/user.js:202 +#: frappe/core/doctype/user/user.js:190 msgid "Logout All Sessions" msgstr "تسجيل الخروج من جميع الجلسات" @@ -15122,7 +15175,10 @@ msgid "Major" msgstr "" #. Label of the show_name_in_global_search (Check) field in DocType 'DocType' +#. Label of the show_name_in_global_search (Check) field in DocType 'Customize +#. Form' #: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Make \"name\" searchable in Global Search" msgstr "اجعل \"الاسم\" قابلا للبحث في البحث العالمي" @@ -15198,7 +15254,7 @@ msgstr "إلزامي يعتمد على" msgid "Mandatory Depends On (JS)" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:509 +#: frappe/website/doctype/web_form/web_form.py:536 msgid "Mandatory Information missing:" msgstr "معلومات إلزامية مفقود:" @@ -15655,6 +15711,11 @@ msgstr "" msgid "Middle Name" msgstr "الاسم الأوسط" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Middle Name (Optional)" +msgstr "" + #. Name of a DocType #. Label of a Link in the Tools Workspace #: frappe/automation/doctype/milestone/milestone.json @@ -15761,6 +15822,11 @@ msgstr "" msgid "Mobile No" msgstr "رقم الجوال" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Mobile Number" +msgstr "رقم الهاتف المحمول" + #. 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" @@ -15786,7 +15852,7 @@ msgstr "" #. 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/doctype/doctype_list.js:31 #: 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 @@ -15962,10 +16028,12 @@ msgstr "المزيد من المعلومات" #. Label of the additional_info (Section Break) field in DocType #. 'Communication' #. Label of the short_bio (Tab Break) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: 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 +#: frappe/core/web_form/edit_profile/edit_profile.json msgid "More Information" msgstr "المزيد من المعلومات" @@ -15995,7 +16063,7 @@ msgstr "" msgid "Move" msgstr "حرك" -#: frappe/public/js/frappe/form/grid_row.js:193 +#: frappe/public/js/frappe/form/grid_row.js:194 msgid "Move To" msgstr "الانتقال إلى" @@ -16031,7 +16099,7 @@ msgstr "" msgid "Move the current field and the following fields to a new column" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:168 +#: frappe/public/js/frappe/form/grid_row.js:169 msgid "Move to Row Number" msgstr "الانتقال إلى رقم الصف" @@ -16099,7 +16167,7 @@ msgid "Mx" msgstr "" #: frappe/templates/includes/web_sidebar.html:41 -#: frappe/website/doctype/web_form/web_form.py:498 +#: frappe/website/doctype/web_form/web_form.py:525 #: 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" @@ -16241,12 +16309,12 @@ msgstr "قالب نافبار" msgid "Navbar Template Values" msgstr "قيم قالب نافبار" -#: frappe/public/js/frappe/list/list_view.js:1378 +#: frappe/public/js/frappe/list/list_view.js:1380 msgctxt "Description of a list view shortcut" msgid "Navigate list down" msgstr "انتقل القائمة لأسفل" -#: frappe/public/js/frappe/list/list_view.js:1385 +#: frappe/public/js/frappe/list/list_view.js:1387 msgctxt "Description of a list view shortcut" msgid "Navigate list up" msgstr "انتقل القائمة لأعلى" @@ -16261,6 +16329,10 @@ msgstr "" msgid "Navigation Settings" msgstr "" +#: frappe/public/js/frappe/list/list_view.js:485 +msgid "Need Help?" +msgstr "" + #: frappe/desk/doctype/workspace/workspace.py:322 msgid "Need Workspace Manager role to edit private workspace of other users" msgstr "" @@ -16269,7 +16341,7 @@ msgstr "" msgid "Negative Value" msgstr "قيمة سالبة" -#: frappe/database/query.py:333 +#: frappe/database/query.py:335 msgid "Nested filters must be provided as a list or tuple." msgstr "" @@ -16282,6 +16354,12 @@ msgstr "خطأ مجموعة متداخلة . يرجى الاتصال بمدير msgid "Network Printer Settings" msgstr "" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Never" +msgstr "" + #. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/core/doctype/success_action/success_action.js:57 @@ -16290,7 +16368,7 @@ msgstr "" #: 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/treeview.js:473 #: frappe/public/js/frappe/views/workspace/workspace.js:64 #: frappe/website/doctype/web_form/templates/web_list.html:15 #: frappe/www/list.html:19 @@ -16351,7 +16429,7 @@ msgstr "حدث جديد" msgid "New Folder" msgstr "ملف جديد" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 msgid "New Kanban Board" msgstr "مجلس كانبان جديدة" @@ -16386,7 +16464,7 @@ msgstr "" msgid "New Onboarding" msgstr "" -#: frappe/core/doctype/user/user.js:190 frappe/www/update-password.html:43 +#: frappe/core/doctype/user/user.js:178 frappe/www/update-password.html:43 msgid "New Password" msgstr "كلمة مرور جديدة" @@ -16482,7 +16560,7 @@ msgstr "القيمة الجديدة التي سيتم تحديدها" #: frappe/public/js/frappe/ui/toolbar/search_utils.js:227 #: 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:411 +#: frappe/website/doctype/web_form/web_form.py:438 msgid "New {0}" msgstr "{0} جديد" @@ -16634,7 +16712,7 @@ msgstr "" #: frappe/public/js/form_builder/utils.js:341 #: frappe/public/js/frappe/form/controls/link.js:498 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1665 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 #: frappe/website/doctype/help_article/templates/help_article.html:26 msgid "No" msgstr "لا" @@ -16783,7 +16861,7 @@ msgstr "" msgid "No Roles Specified" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 msgid "No Select Field Found" msgstr "" @@ -16867,7 +16945,7 @@ msgstr "" msgid "No failed logs" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:371 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:385 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 "" @@ -16891,7 +16969,7 @@ msgstr "لا توجد سجلات أخرى" msgid "No matching records. Search something new" msgstr "أية سجلات مطابقة. بحث شيئا جديدا" -#: frappe/public/js/frappe/web_form/web_form_list.js:161 +#: frappe/public/js/frappe/web_form/web_form_list.js:162 msgid "No more items to display" msgstr "لا مزيد من العناصر لعرضها" @@ -16935,7 +17013,7 @@ msgctxt "{0} = verb, {1} = object" msgid "No permission to '{0}' {1}" msgstr "لا توجد صلاحية ل '{0} ' {1}" -#: frappe/model/db_query.py:948 +#: frappe/model/db_query.py:949 msgid "No permission to read {0}" msgstr "ليس هناك إذن لقراءة {0}" @@ -16983,11 +17061,11 @@ msgstr "" msgid "No {0} Found" msgstr "" -#: frappe/public/js/frappe/web_form/web_form_list.js:233 +#: frappe/public/js/frappe/web_form/web_form_list.js:234 msgid "No {0} found" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:497 +#: frappe/public/js/frappe/list/list_view.js:499 msgid "No {0} found with matching filters. Clear filters to see all {0}." msgstr "" @@ -16996,7 +17074,7 @@ msgid "No {0} mail" msgstr "لا {0} الإلكتروني" #: frappe/public/js/form_builder/utils.js:117 -#: frappe/public/js/frappe/form/grid_row.js:256 +#: frappe/public/js/frappe/form/grid_row.js:257 msgctxt "Title of the 'row number' column" msgid "No." msgstr "" @@ -17060,7 +17138,7 @@ msgstr "ليس من أحفاد" msgid "Not Equals" msgstr "لا تساوي" -#: frappe/app.py:387 frappe/www/404.html:3 +#: frappe/app.py:390 frappe/www/404.html:3 msgid "Not Found" msgstr "لم يتم العثور على" @@ -17086,9 +17164,9 @@ msgstr "غير مرتبط بأي سجل" msgid "Not Nullable" msgstr "" -#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26 +#: frappe/__init__.py:550 frappe/app.py:383 frappe/desk/calendar.py:26 #: frappe/public/js/frappe/web_form/webform_script.js:15 -#: frappe/website/doctype/web_form/web_form.py:747 +#: frappe/website/doctype/web_form/web_form.py:774 #: 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 @@ -17107,7 +17185,7 @@ msgstr "لم تنشر" #: 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/kanban/kanban_view.js:183 #: frappe/public/js/frappe/views/reports/report_view.js:209 #: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39 #: frappe/website/doctype/web_form/templates/web_form.html:85 @@ -17158,7 +17236,7 @@ msgstr "غير نشطة" msgid "Not allowed for {0}: {1}" msgstr "غير مسموح لـ {0}: {1}" -#: frappe/email/doctype/notification/notification.py:637 +#: frappe/email/doctype/notification/notification.py:639 msgid "Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings" msgstr "غير مسموح بإرفاق مستند {0} ، يرجى تمكين السماح بالطباعة لـ {0} في إعدادات الطباعة" @@ -17190,12 +17268,12 @@ msgstr "ليس في وضع مطور البرامج" msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType." msgstr "ليس في وضع المطور! يقع في site_config.json أو جعل DOCTYPE \"مخصص\"." -#: frappe/core/doctype/system_settings/system_settings.py:216 +#: frappe/core/doctype/system_settings/system_settings.py:217 #: 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:760 +#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:787 #: frappe/website/js/website.js:97 msgid "Not permitted" msgstr "غير مسموح به" @@ -17241,7 +17319,7 @@ msgstr "ملاحظة: للحصول على أفضل النتائج ، يجب أن msgid "Note: Multiple sessions will be allowed in case of mobile device" msgstr "ملاحظة: سيتم السماح جلسات متعددة في حالة جهاز الموبايل" -#: frappe/core/doctype/user/user.js:399 +#: frappe/core/doctype/user/user.js:387 msgid "Note: This will be shared with user." msgstr "" @@ -17313,15 +17391,15 @@ msgstr "وثيقة الاشتراك المكتوبة" msgid "Notification sent to" msgstr "" -#: frappe/email/doctype/notification/notification.py:542 +#: frappe/email/doctype/notification/notification.py:544 msgid "Notification: customer {0} has no Mobile number set" msgstr "" -#: frappe/email/doctype/notification/notification.py:528 +#: frappe/email/doctype/notification/notification.py:530 msgid "Notification: document {0} has no {1} number set (field: {2})" msgstr "" -#: frappe/email/doctype/notification/notification.py:537 +#: frappe/email/doctype/notification/notification.py:539 msgid "Notification: user {0} has no Mobile number set" msgstr "" @@ -17435,7 +17513,7 @@ msgstr "" msgid "Number of attachment fields are more than {}, limit updated to {}." msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:171 +#: frappe/core/doctype/system_settings/system_settings.py:172 msgid "Number of backups must be greater than zero." msgstr "" @@ -17707,7 +17785,7 @@ msgstr "" #. Description of the 'Is Submittable' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:42 +#: frappe/core/doctype/doctype/doctype_list.js:43 msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended." msgstr "بمجرد إرسالها ، لا يمكن تغيير المستندات المقدمة. يمكن إلغاؤها وتعديلها فقط." @@ -17796,11 +17874,11 @@ msgstr "" msgid "Only reports of type Report Builder can be edited" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:129 +#: frappe/custom/doctype/customize_form/customize_form.py:131 msgid "Only standard DocTypes are allowed to be customized from Customize Form." msgstr "يُسمح بتخصيص أنواع DocTypes القياسية فقط من تخصيص النموذج." -#: frappe/model/delete_doc.py:241 +#: frappe/model/delete_doc.py:281 msgid "Only the Administrator can delete a standard DocType." msgstr "" @@ -17896,7 +17974,7 @@ msgstr "" msgid "Open in a new tab" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1431 +#: frappe/public/js/frappe/list/list_view.js:1433 msgctxt "Description of a list view shortcut" msgid "Open list item" msgstr "فتح عنصر القائمة" @@ -17945,7 +18023,7 @@ msgstr "افتتح" msgid "Operation" msgstr "عملية" -#: frappe/utils/data.py:2146 +#: frappe/utils/data.py:2172 msgid "Operator must be one of {0}" msgstr "يجب أن يكون المشغل واحدا من {0}" @@ -17991,6 +18069,7 @@ msgstr "اختياري: سيتم إرسال التنبية إذا كان هذا #. 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 (Text) field in DocType 'Web Form List Column' #. 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 @@ -17999,6 +18078,7 @@ msgstr "اختياري: سيتم إرسال التنبية إذا كان هذا #: 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_form_list_column/web_form_list_column.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Options" msgstr "خيارات" @@ -18044,7 +18124,7 @@ msgstr "" msgid "Order" msgstr "طلب" -#: frappe/database/query.py:767 +#: frappe/database/query.py:769 msgid "Order By must be a string" msgstr "" @@ -18142,7 +18222,7 @@ msgstr "" #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/printing/page/print/print.js:84 #: frappe/public/js/frappe/form/templates/print_layout.html:44 -#: frappe/public/js/frappe/views/reports/query_report.js:1804 +#: frappe/public/js/frappe/views/reports/query_report.js:1812 msgid "PDF" msgstr "" @@ -18490,8 +18570,8 @@ msgstr "غير فعال" #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/system_settings/system_settings.json -#: frappe/core/doctype/user/user.js:177 frappe/core/doctype/user/user.js:224 -#: frappe/core/doctype/user/user.js:244 +#: frappe/core/doctype/user/user.js:165 frappe/core/doctype/user/user.js:212 +#: frappe/core/doctype/user/user.js:232 #: 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 @@ -18514,7 +18594,7 @@ msgstr "إعادة تعيين كلمة المرور" msgid "Password Reset Link Generation Limit" msgstr "حد إنشاء ارتباط إعادة تعيين كلمة المرور" -#: frappe/public/js/frappe/form/grid_row.js:896 +#: frappe/public/js/frappe/form/grid_row.js:897 msgid "Password cannot be filtered" msgstr "" @@ -18551,7 +18631,7 @@ msgstr "" msgid "Password set" msgstr "" -#: frappe/auth.py:258 +#: frappe/auth.py:261 msgid "Password size exceeded the maximum allowed size" msgstr "" @@ -18563,7 +18643,7 @@ msgstr "" msgid "Passwords do not match" msgstr "" -#: frappe/core/doctype/user/user.js:210 +#: frappe/core/doctype/user/user.js:198 msgid "Passwords do not match!" msgstr "كلمة المرور غير مطابقة!" @@ -18714,7 +18794,7 @@ msgstr "إرسال دائم {0} ؟" msgid "Permanently delete {0}?" msgstr "حذف بشكل دائم {0} ؟" -#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533 +#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:535 msgid "Permission Error" msgstr "خطأ في الإذن" @@ -18774,8 +18854,8 @@ msgstr "" #: 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:143 frappe/core/doctype/user/user.js:152 -#: frappe/core/doctype/user/user.js:161 +#: frappe/core/doctype/user/user.js:131 frappe/core/doctype/user/user.js:140 +#: frappe/core/doctype/user/user.js:149 #: 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 @@ -18845,6 +18925,7 @@ msgstr "طلب تنزيل البيانات الشخصية" #. Option for the 'Type' (Select) field in DocType 'Communication' #. Option for the 'Type' (Select) field in DocType 'DocField' #. Label of the phone (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #. 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' @@ -18855,6 +18936,7 @@ msgstr "طلب تنزيل البيانات الشخصية" #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.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 @@ -19029,7 +19111,7 @@ msgstr "من فضلك لا تغيير عناوين القالب." msgid "Please duplicate this to make changes" msgstr "يرجى تكرار هذه إلى إجراء تغييرات" -#: frappe/core/doctype/system_settings/system_settings.py:164 +#: frappe/core/doctype/system_settings/system_settings.py:165 msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login." msgstr "" @@ -19161,11 +19243,11 @@ msgstr "يرجى تحديد DOCTYPE أولا" msgid "Please select Entity Type first" msgstr "يرجى اختيار نوع الكيان أولا" -#: frappe/core/doctype/system_settings/system_settings.py:115 +#: frappe/core/doctype/system_settings/system_settings.py:116 msgid "Please select Minimum Password Score" msgstr "يرجى تحديد الحد الأدنى لسجل كلمة المرور" -#: frappe/public/js/frappe/views/reports/query_report.js:1185 +#: frappe/public/js/frappe/views/reports/query_report.js:1193 msgid "Please select X and Y fields" msgstr "" @@ -19193,7 +19275,7 @@ msgstr "الرجاء تحديد مرشح تاريخ صالح" msgid "Please select applicable Doctypes" msgstr "يرجى اختيار الأساليب المناسبة" -#: frappe/model/db_query.py:1157 +#: frappe/model/db_query.py:1163 msgid "Please select atleast 1 column from {0} to sort/group" msgstr "يرجى تحديد عمود واحد على الأقل من {0} إلى التصنيف / المجموعة" @@ -19223,7 +19305,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:1408 +#: frappe/public/js/frappe/views/reports/query_report.js:1416 msgid "Please set filters" msgstr "يرجى تعيين المرشحات" @@ -19243,7 +19325,7 @@ msgstr "يرجى تعيين المستندات التالية في لوحة ال msgid "Please set the series to be used." msgstr "يرجى ضبط المسلسل ليتم استخدامه." -#: frappe/core/doctype/system_settings/system_settings.py:128 +#: frappe/core/doctype/system_settings/system_settings.py:129 msgid "Please setup SMS before setting it as an authentication method, via SMS Settings" msgstr "يرجى إعداد سمز قبل تعيينه كطريقة المصادقة، عبر إعدادات سمز" @@ -19395,7 +19477,7 @@ msgstr "الرمز البريدي" msgid "Posting Timestamp" msgstr "" -#: frappe/database/query.py:1518 +#: frappe/database/query.py:1520 msgid "Potentially dangerous content in string literal: {0}" msgstr "" @@ -19597,13 +19679,13 @@ msgstr "" #: 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:1789 +#: frappe/public/js/frappe/views/reports/query_report.js:1797 #: frappe/public/js/frappe/views/reports/report_view.js:1539 -#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18 +#: frappe/public/js/frappe/views/treeview.js:492 frappe/www/printview.html:18 msgid "Print" msgstr "طباعة" -#: frappe/public/js/frappe/list/list_view.js:2164 +#: frappe/public/js/frappe/list/list_view.js:2166 msgctxt "Button in list view actions menu" msgid "Print" msgstr "طباعة" @@ -19673,7 +19755,7 @@ msgstr "تنسيق الطباعة مساعدة" msgid "Print Format Type" msgstr "نوع تنسيق الطباعة" -#: frappe/public/js/frappe/views/reports/query_report.js:1578 +#: frappe/public/js/frappe/views/reports/query_report.js:1586 msgid "Print Format not found" msgstr "" @@ -19854,11 +19936,11 @@ msgstr "ProTip: إضافة Reference: {{ reference_doctype }} {{ reference msgid "Proceed" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:932 +#: frappe/public/js/frappe/views/reports/query_report.js:940 msgid "Proceed Anyway" msgstr "المتابعة على أية حال" -#: frappe/public/js/frappe/form/controls/table.js:123 +#: frappe/public/js/frappe/form/controls/table.js:104 msgid "Processing" msgstr "معالجة" @@ -19875,11 +19957,21 @@ msgstr "" msgid "Profile" msgstr "" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile Picture" +msgstr "" + +#. Success message of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile updated successfully." +msgstr "تم تحديث المَلف الشخصي بنجاح." + #: frappe/public/js/frappe/socketio_client.js:82 msgid "Progress" msgstr "تقدم" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:408 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:422 msgid "Project" msgstr "مشروع" @@ -19923,7 +20015,7 @@ msgstr "نوع الملكية" msgid "Protect Attached Files" msgstr "" -#: frappe/core/doctype/file/file.py:523 +#: frappe/core/doctype/file/file.py:526 msgid "Protected File" msgstr "" @@ -20429,11 +20521,11 @@ msgstr "" msgid "Reason" msgstr "سبب" -#: frappe/public/js/frappe/views/reports/query_report.js:886 +#: frappe/public/js/frappe/views/reports/query_report.js:894 msgid "Rebuild" msgstr "إعادة بناء" -#: frappe/public/js/frappe/views/treeview.js:509 +#: frappe/public/js/frappe/views/treeview.js:511 msgid "Rebuild Tree" msgstr "" @@ -20814,8 +20906,8 @@ 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:1778 -#: frappe/public/js/frappe/views/treeview.js:496 +#: frappe/public/js/frappe/views/reports/query_report.js:1786 +#: frappe/public/js/frappe/views/treeview.js:498 #: frappe/public/js/frappe/widgets/chart_widget.js:291 #: frappe/public/js/frappe/widgets/number_card_widget.js:352 #: frappe/public/js/print_format_builder/Preview.vue:24 @@ -20846,13 +20938,13 @@ msgstr "" msgid "Refresh Token" msgstr "تحديث رمز" -#: frappe/public/js/frappe/list/list_view.js:534 +#: frappe/public/js/frappe/list/list_view.js:536 msgctxt "Document count in list view" msgid "Refreshing" msgstr "" #: frappe/core/doctype/system_settings/system_settings.js:57 -#: frappe/core/doctype/user/user.js:374 +#: frappe/core/doctype/user/user.js:362 #: frappe/desk/page/setup_wizard/setup_wizard.js:211 msgid "Refreshing..." msgstr "يحديث ..." @@ -21237,7 +21329,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:1965 +#: frappe/public/js/frappe/views/reports/query_report.js:1973 msgid "Report Name" msgstr "تقرير الاسم" @@ -21289,7 +21381,7 @@ msgstr "لا يحتوي التقرير على بيانات ، يرجى تعدي msgid "Report has no numeric fields, please change the Report Name" msgstr "لا يحتوي التقرير على حقول رقمية ، يُرجى تغيير اسم التقرير" -#: frappe/public/js/frappe/views/reports/query_report.js:1013 +#: frappe/public/js/frappe/views/reports/query_report.js:1021 msgid "Report initiated, click to view status" msgstr "" @@ -21309,7 +21401,7 @@ msgstr "تم تحديث التقرير بنجاح" msgid "Report was not saved (there were errors)" msgstr "لم يتم حفظ التقرير (كانت هناك أخطاء)" -#: frappe/public/js/frappe/views/reports/query_report.js:2003 +#: frappe/public/js/frappe/views/reports/query_report.js:2011 msgid "Report with more than 10 columns looks better in Landscape mode." msgstr "التقرير مع أكثر من 10 أعمدة تبدو أفضل في وضع أفقي." @@ -21345,7 +21437,7 @@ msgstr "تقارير" msgid "Reports & Masters" msgstr "التقارير والماجستير" -#: frappe/public/js/frappe/views/reports/query_report.js:929 +#: frappe/public/js/frappe/views/reports/query_report.js:937 msgid "Reports already in Queue" msgstr "التقارير موجودة بالفعل في قائمة الانتظار" @@ -21364,7 +21456,10 @@ msgid "Request Body" msgstr "" #. Label of the data (Code) field in DocType 'Integration Request' +#. Title of the request-data Web Form +#. Button label of the request-data Web Form #: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/website/web_form/request_data/request_data.json msgid "Request Data" msgstr "طلب البيانات" @@ -21416,6 +21511,11 @@ msgstr "" msgid "Request URL" msgstr "طلب عنوان ورل" +#. Title of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "Request for Account Deletion" +msgstr "" + #. Label of the requested_numbers (Code) field in DocType 'SMS Log' #: frappe/core/doctype/sms_log/sms_log.json msgid "Requested Numbers" @@ -21471,7 +21571,7 @@ msgstr "" msgid "Reset Fields" msgstr "تصفير البيانات في الحقول" -#: frappe/core/doctype/user/user.js:184 frappe/core/doctype/user/user.js:187 +#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:175 msgid "Reset LDAP Password" msgstr "إعادة تعيين كلمة مرور LDAP" @@ -21479,11 +21579,11 @@ msgstr "إعادة تعيين كلمة مرور LDAP" msgid "Reset Layout" msgstr "" -#: frappe/core/doctype/user/user.js:235 +#: frappe/core/doctype/user/user.js:223 msgid "Reset OTP Secret" msgstr "إعادة تعيين مكتب المدعي العام سر" -#: frappe/core/doctype/user/user.js:168 frappe/www/login.html:199 +#: frappe/core/doctype/user/user.js:156 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" @@ -21518,7 +21618,7 @@ msgstr "" msgid "Reset sorting" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:433 +#: frappe/public/js/frappe/form/grid_row.js:434 msgid "Reset to default" msgstr "" @@ -21770,7 +21870,7 @@ 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 +#: frappe/public/js/frappe/roles_editor.js:114 msgid "Role Permissions" msgstr "اذونات الصلاحيات" @@ -21780,7 +21880,7 @@ msgstr "اذونات الصلاحيات" msgid "Role Permissions Manager" msgstr "مدير ضوابط الصلاحيات" -#: frappe/public/js/frappe/list/list_view.js:1933 +#: frappe/public/js/frappe/list/list_view.js:1935 msgctxt "Button in list view menu" msgid "Role Permissions Manager" msgstr "مدير ضوابط الصلاحيات" @@ -21973,11 +22073,11 @@ msgstr "" msgid "Row {0}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:353 +#: frappe/custom/doctype/customize_form/customize_form.py:357 msgid "Row {0}: Not allowed to disable Mandatory for standard fields" msgstr "الصف {0}: غير مسموح بتعطيل إلزامي للحقول القياسية" -#: frappe/custom/doctype/customize_form/customize_form.py:342 +#: frappe/custom/doctype/customize_form/customize_form.py:346 msgid "Row {0}: Not allowed to enable Allow on Submit for standard fields" msgstr "صف {0}: غير مسموح لتمكين السماح إرسال على لحقول القياسية" @@ -21996,7 +22096,10 @@ msgid "Rows Removed" msgstr "الصفوف إزالتها" #. Label of the rows_threshold_for_grid_search (Int) field in DocType 'DocType' +#. Label of the rows_threshold_for_grid_search (Int) field in DocType +#. 'Customize Form' #: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Rows Threshold for Grid Search" msgstr "" @@ -22204,8 +22307,8 @@ msgstr "السبت" #: 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:1957 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 +#: frappe/public/js/frappe/views/reports/query_report.js:1965 #: frappe/public/js/frappe/views/reports/report_view.js:1735 #: frappe/public/js/frappe/views/workspace/workspace.js:335 #: frappe/public/js/frappe/widgets/base_widget.js:142 @@ -22228,11 +22331,11 @@ msgstr "حفظ باسم" msgid "Save Customizations" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1960 +#: frappe/public/js/frappe/views/reports/query_report.js:1968 msgid "Save Report" msgstr "احفظ التقرير" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:97 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:107 msgid "Save filters" msgstr "حفظ المرشحات" @@ -22604,7 +22707,7 @@ msgstr "إعدادات الأمان" msgid "See all Activity" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:855 +#: frappe/public/js/frappe/views/reports/query_report.js:863 msgid "See all past reports." msgstr "عرض جميع التقارير السابقة" @@ -22668,7 +22771,7 @@ msgstr "حدد" #: 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:497 +#: frappe/public/js/frappe/form/grid_row.js:498 msgid "Select All" msgstr "" @@ -22748,7 +22851,7 @@ msgstr "اختر المجال" msgid "Select Field..." msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:489 +#: frappe/public/js/frappe/form/grid_row.js:490 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:181 msgid "Select Fields" msgstr "حدد الحقول" @@ -22868,8 +22971,8 @@ msgid "Select a field to edit its properties." msgstr "" #: frappe/public/js/frappe/views/treeview.js:358 -msgid "Select a group node first." -msgstr "حدد عقدة المجموعة أولا." +msgid "Select a group {0} first." +msgstr "" #: frappe/core/doctype/doctype/doctype.py:1956 msgid "Select a valid Sender Field for creating documents from Email" @@ -22905,13 +23008,13 @@ msgstr "اختر أتلست سجل 1 للطباعة" msgid "Select atleast 2 actions" msgstr "حدد على الأقل 2 الإجراءات" -#: frappe/public/js/frappe/list/list_view.js:1445 +#: frappe/public/js/frappe/list/list_view.js:1447 msgctxt "Description of a list view shortcut" msgid "Select list item" msgstr "حدد عنصر القائمة" -#: frappe/public/js/frappe/list/list_view.js:1397 -#: frappe/public/js/frappe/list/list_view.js:1413 +#: frappe/public/js/frappe/list/list_view.js:1399 +#: frappe/public/js/frappe/list/list_view.js:1415 msgctxt "Description of a list view shortcut" msgid "Select multiple list items" msgstr "حدد عناصر قائمة متعددة" @@ -23233,7 +23336,7 @@ msgstr "الترقيم المتسلسل {0} مستخدم بالفعل في {1}" msgid "Server Action" msgstr "عمل الخادم" -#: frappe/app.py:396 frappe/public/js/frappe/request.js:611 +#: frappe/app.py:399 frappe/public/js/frappe/request.js:611 #: frappe/www/error.html:36 frappe/www/error.py:15 msgid "Server Error" msgstr "خطأ في الخادم" @@ -23299,7 +23402,7 @@ msgstr "الجلسة الافتراضية" msgid "Session Defaults Saved" msgstr "تم حفظ الإعدادات الافتراضية للجلسة" -#: frappe/app.py:373 +#: frappe/app.py:376 msgid "Session Expired" msgstr "انتهت الجلسة" @@ -23308,7 +23411,7 @@ msgstr "انتهت الجلسة" msgid "Session Expiry (idle timeout)" msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:122 +#: frappe/core/doctype/system_settings/system_settings.py:123 msgid "Session Expiry must be in format {0}" msgstr "يجب أن يكون انتهاء الجلسة بالتنسيق {0}" @@ -23357,7 +23460,7 @@ msgstr "ضبط المرشحات" msgid "Set Filters for {0}" msgstr "تعيين عوامل التصفية لـ {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:2113 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 msgid "Set Level" msgstr "" @@ -23411,7 +23514,7 @@ msgstr "ضبط الكمية" msgid "Set Role For" msgstr "تعيين صلاحية لل" -#: frappe/core/doctype/user/user.js:136 +#: frappe/core/doctype/user/user.js:124 #: frappe/core/page/permission_manager/permission_manager.js:72 msgid "Set User Permissions" msgstr "تعيين صلاحيات المستخدم" @@ -23573,7 +23676,7 @@ msgstr "" msgid "Setup > User Permissions" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1826 +#: frappe/public/js/frappe/views/reports/query_report.js:1834 #: frappe/public/js/frappe/views/reports/report_view.js:1713 msgid "Setup Auto Email" msgstr "الإعداد التلقائي البريد الإلكتروني" @@ -23714,6 +23817,12 @@ msgstr "عرض المستند" msgid "Show Error" msgstr "" +#. Label of the show_external_link_warning (Select) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Show External Link Warning" +msgstr "" + #: frappe/public/js/frappe/form/layout.js:578 msgid "Show Fieldname (click to copy on clipboard)" msgstr "" @@ -23842,7 +23951,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:1849 +#: frappe/public/js/frappe/list/list_view.js:1851 msgid "Show Tags" msgstr "أضهر العلامات" @@ -24049,36 +24158,36 @@ msgstr "تم تعطيل التسجيل" msgid "Signups have been disabled for this website." msgstr "تم تعطيل الاشتراكات لهذا الموقع." -#. 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 "تعبير Python البسيط ، مثال: الحالة في ("مغلق" ، "تم الإلغاء")" - #. 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 "تعبير Python البسيط ، مثال: الحالة في ("غير صالح")" +msgid "Simple Python Expression, Example: status == \"Invalid\"" +msgstr "" #. 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 "تعبير Python البسيط ، مثال: status == 'Open' واكتب == 'Bug'" +msgid "Simple Python Expression, Example: status == 'Open' and issue_type == 'Bug'" +msgstr "" + +#. 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 "" #. Label of the simultaneous_sessions (Int) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Simultaneous Sessions" msgstr "جلسات متزامنة" -#: frappe/custom/doctype/customize_form/customize_form.py:126 +#: frappe/custom/doctype/customize_form/customize_form.py:128 msgid "Single DocTypes cannot be customized." msgstr "لا يمكن تخصيص DocTypes مفردة." #. Description of the 'Is Single' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:67 +#: frappe/core/doctype/doctype/doctype_list.js:68 msgid "Single Types have only one record no tables associated. Values are stored in tabSingles" msgstr "أنواع واحد يكون سجل واحد فقط لا الجداول المرتبطة . يتم تخزين القيم في tabSingles" @@ -24414,7 +24523,7 @@ msgid "Splash Image" msgstr "" #: frappe/desk/reportview.py:455 -#: frappe/public/js/frappe/web_form/web_form_list.js:175 +#: frappe/public/js/frappe/web_form/web_form_list.js:176 #: frappe/templates/print_formats/standard_macros.html:44 msgid "Sr" msgstr "ر.ت" @@ -24446,7 +24555,7 @@ msgstr "" msgid "Standard" msgstr "اساسي" -#: frappe/model/delete_doc.py:79 +#: frappe/model/delete_doc.py:119 msgid "Standard DocType can not be deleted." msgstr "" @@ -24716,7 +24825,7 @@ msgstr "خطوات التحقق من تسجيل الدخول" #. Label of the sticky (Check) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json -#: frappe/public/js/frappe/form/grid_row.js:454 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Sticky" msgstr "" @@ -24746,7 +24855,7 @@ msgstr "" msgid "Store Attached PDF Document" msgstr "" -#: frappe/core/doctype/user/user.js:490 +#: frappe/core/doctype/user/user.js:497 msgid "Store the API secret securely. It won't be displayed again." msgstr "" @@ -24858,6 +24967,7 @@ msgstr "" #. 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' +#. Button label of the request-to-delete-data Web Form #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/docshare/docshare.json @@ -24866,10 +24976,11 @@ msgstr "" #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/quick_entry.js:225 #: frappe/public/js/frappe/ui/capture.js:307 +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json msgid "Submit" msgstr "تسجيل" -#: frappe/public/js/frappe/list/list_view.js:2231 +#: frappe/public/js/frappe/list/list_view.js:2233 msgctxt "Button in list view actions menu" msgid "Submit" msgstr "تسجيل" @@ -24879,7 +24990,7 @@ msgctxt "Button in web form" msgid "Submit" msgstr "تسجيل" -#: frappe/public/js/frappe/ui/dialog.js:63 +#: frappe/public/js/frappe/ui/dialog.js:64 msgctxt "Primary action in dialog" msgid "Submit" msgstr "تسجيل" @@ -24927,7 +25038,7 @@ msgstr "أرسل هذا المستند لإكمال هذه الخطوة." msgid "Submit this document to confirm" msgstr "إرسال هذه الوثيقة إلى تأكيد" -#: frappe/public/js/frappe/list/list_view.js:2236 +#: frappe/public/js/frappe/list/list_view.js:2238 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "إرسال {0} وثائق؟" @@ -24977,7 +25088,7 @@ msgstr "عنوان فرعي" #: 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:1171 +#: frappe/public/js/frappe/form/grid.js:1172 #: frappe/public/js/frappe/views/translation_manager.js:21 #: frappe/templates/includes/login/login.js:230 #: frappe/templates/includes/login/login.js:236 @@ -25192,7 +25303,7 @@ msgstr "المزامنة" msgid "Syncing {0} of {1}" msgstr "مزامنة {0} من {1}" -#: frappe/utils/data.py:2547 +#: frappe/utils/data.py:2573 msgid "Syntax Error" msgstr "" @@ -25503,7 +25614,7 @@ msgstr "الجدول MultiSelect" msgid "Table Trimmed" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1170 +#: frappe/public/js/frappe/form/grid.js:1171 msgid "Table updated" msgstr "الجدول محدث" @@ -25718,7 +25829,7 @@ msgstr "" msgid "The Auto Repeat for this document has been disabled." msgstr "تم تعطيل التكرار التلقائي لهذا المستند." -#: frappe/public/js/frappe/form/grid.js:1193 +#: frappe/public/js/frappe/form/grid.js:1194 msgid "The CSV format is case sensitive" msgstr "تنسيق كسف حساس لحالة الأحرف" @@ -25786,7 +25897,7 @@ msgstr "لا يمكن أن يكون التعليق فارغًا" 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:685 +#: frappe/public/js/frappe/list/list_view.js:687 msgid "The count shown is an estimated count. Click here to see the accurate count." msgstr "" @@ -25898,7 +26009,7 @@ msgstr "" msgid "The reset password link has either been used before or is invalid" msgstr "" -#: frappe/app.py:388 frappe/public/js/frappe/request.js:149 +#: frappe/app.py:391 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" @@ -25971,12 +26082,12 @@ 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:965 +#: frappe/public/js/frappe/views/reports/query_report.js:973 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 +#: frappe/website/doctype/web_form/web_form.js:318 msgid "There can be only 9 Page Break fields in a Web Form" msgstr "" @@ -26000,11 +26111,11 @@ msgstr "" msgid "There is nothing new to show you right now." msgstr "" -#: frappe/core/doctype/file/file.py:640 frappe/utils/file_manager.py:372 +#: frappe/core/doctype/file/file.py:643 frappe/utils/file_manager.py:372 msgid "There is some problem with the file url: {0}" msgstr "هناك بعض المشاكل مع رابط الملف: {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:962 +#: frappe/public/js/frappe/views/reports/query_report.js:970 msgid "There is {0} with the same filters already in the queue:" msgstr "" @@ -26016,7 +26127,7 @@ msgstr "يجب أن يكون هناك على الأقل قاعدة إذن واح msgid "There was an error building this page" msgstr "كان هناك خطأ في بناء هذه الصفحة" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:182 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:196 msgid "There was an error saving filters" msgstr "كان هناك خطأ في حفظ المرشحات" @@ -26073,7 +26184,7 @@ msgstr "إثبات أصالة الطرف الثالث" msgid "This Currency is disabled. Enable to use in transactions" msgstr "تم تعطيل هذه العملات . تمكين لاستخدامها في المعاملات" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:391 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:405 msgid "This Kanban Board will be private" msgstr "وهذا المجلس كانبان يكون القطاع الخاص" @@ -26110,7 +26221,7 @@ msgstr "هذا الإجراء مسموح به فقط لـ {}" msgid "This cannot be undone" msgstr "هذا لا يمكن التراجع عنها" -#: frappe/desk/doctype/number_card/number_card.js:480 +#: frappe/desk/doctype/number_card/number_card.js:484 msgctxt "Number Card" msgid "This card is visible only to Administrator and System Managers by default. Set a DocType to share with users who have read access." msgstr "" @@ -26133,7 +26244,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:113 +#: frappe/model/delete_doc.py:153 msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time." msgstr "" @@ -26175,7 +26286,7 @@ msgid "This field will appear only if the fieldname defined here has value OR th "eval:doc.age>18" msgstr "" -#: frappe/core/doctype/file/file.py:522 +#: frappe/core/doctype/file/file.py:525 msgid "This file is attached to a protected document and cannot be deleted." msgstr "" @@ -26210,7 +26321,7 @@ msgstr "" msgid "This goes above the slideshow." msgstr "هذا يذهب فوق عرض الشرائح." -#: frappe/public/js/frappe/views/reports/query_report.js:2189 +#: frappe/public/js/frappe/views/reports/query_report.js:2197 msgid "This is a background report. Please set the appropriate filters and then generate a new one." msgstr "هذا هو تقرير الخلفية. يرجى تعيين المرشحات المناسبة ثم إنشاء واحدة جديدة." @@ -26260,7 +26371,7 @@ msgstr "قد تتم طباعة هذا على صفحات متعددة" msgid "This month" msgstr "هذا الشهر" -#: frappe/public/js/frappe/views/reports/query_report.js:1037 +#: frappe/public/js/frappe/views/reports/query_report.js:1045 msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead." msgstr "" @@ -26268,7 +26379,7 @@ msgstr "" msgid "This report was generated on {0}" msgstr "تم إنشاء هذا التقرير في {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:853 +#: frappe/public/js/frappe/views/reports/query_report.js:861 msgid "This report was generated {0}." msgstr "تم إنشاء هذا التقرير {0}." @@ -26410,9 +26521,11 @@ msgstr "" #. Label of the time_zone (Select) field in DocType 'System Settings' #. Label of the time_zone (Autocomplete) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #. 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/core/web_form/edit_profile/edit_profile.json #: frappe/desk/page/setup_wizard/setup_wizard.js:407 #: frappe/website/doctype/web_page_view/web_page_view.json msgid "Time Zone" @@ -26673,7 +26786,7 @@ msgstr "" msgid "To generate password click {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:854 +#: frappe/public/js/frappe/views/reports/query_report.js:862 msgid "To get the updated report, click on {0}." msgstr "للحصول على التقرير المحدّث ، انقر على {0}." @@ -26748,7 +26861,7 @@ msgstr "تبديل عرض الشبكة" msgid "Toggle Sidebar" msgstr "تبديل الشريط الجانبي" -#: frappe/public/js/frappe/list/list_view.js:1964 +#: frappe/public/js/frappe/list/list_view.js:1966 msgctxt "Button in list view menu" msgid "Toggle Sidebar" msgstr "تبديل الشريط الجانبي" @@ -26874,7 +26987,7 @@ msgstr "موضوع" #: frappe/desk/query_report.py:587 #: frappe/public/js/frappe/views/reports/print_grid.html:45 -#: frappe/public/js/frappe/views/reports/query_report.js:1324 +#: frappe/public/js/frappe/views/reports/query_report.js:1332 #: frappe/public/js/frappe/views/reports/report_view.js:1553 msgid "Total" msgstr "الاجمالي غير شامل الضريبة" @@ -27031,7 +27144,7 @@ msgstr "التحولات" msgid "Translatable" msgstr "للترجمة" -#: frappe/public/js/frappe/views/reports/query_report.js:2244 +#: frappe/public/js/frappe/views/reports/query_report.js:2252 msgid "Translate Data" msgstr "" @@ -27389,7 +27502,7 @@ msgstr "" msgid "Unable to update event" msgstr "غير قادر على تحديث الحدث" -#: frappe/core/doctype/file/file.py:486 +#: frappe/core/doctype/file/file.py:489 msgid "Unable to write file format for {0}" msgstr "تعذر كتابة تنسيق الملف {0}" @@ -27398,7 +27511,7 @@ msgstr "تعذر كتابة تنسيق الملف {0}" msgid "Unassign Condition" msgstr "إلغاء تعيين الشرط" -#: frappe/app.py:396 +#: frappe/app.py:399 msgid "Uncaught Exception" msgstr "" @@ -27414,7 +27527,7 @@ msgstr "" msgid "Undo last action" msgstr "" -#: frappe/database/query.py:1495 +#: frappe/database/query.py:1497 msgid "Unescaped quotes in string literal: {0}" msgstr "" @@ -27461,7 +27574,7 @@ msgstr "عمود غير معروف: {0}" msgid "Unknown Rounding Method: {}" msgstr "" -#: frappe/auth.py:316 +#: frappe/auth.py:319 msgid "Unknown User" msgstr "مستخدم غير معروف" @@ -27527,8 +27640,8 @@ msgstr "" msgid "Unsubscribed" msgstr "إلغاء اشتراكك" -#: frappe/database/query.py:653 frappe/database/query.py:1387 -#: frappe/database/query.py:1397 +#: frappe/database/query.py:655 frappe/database/query.py:1389 +#: frappe/database/query.py:1399 msgid "Unsupported function or invalid field name: {0}" msgstr "" @@ -27562,7 +27675,7 @@ msgstr "الأحداث القادمة لهذا اليوم" #: 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:427 +#: frappe/public/js/frappe/form/grid_row.js:428 msgid "Update" msgstr "تحديث" @@ -27596,6 +27709,11 @@ msgstr "" msgid "Update Password" msgstr "" +#. Title of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Update Profile" +msgstr "" + #. Label of the update_series (Section Break) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -27811,11 +27929,7 @@ msgstr "" msgid "Use if the default settings don't seem to detect your data correctly" msgstr "" -#: frappe/model/db_query.py:436 -msgid "Use of function {0} in field is restricted" -msgstr "" - -#: frappe/model/db_query.py:413 +#: frappe/model/db_query.py:411 msgid "Use of sub-query or function is restricted" msgstr "استخدام الاستعلام الفرعي أو وظيفة مقيدة" @@ -28037,12 +28151,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:1944 +#: frappe/public/js/frappe/views/reports/query_report.js:1952 #: frappe/public/js/frappe/views/reports/report_view.js:1761 msgid "User Permissions" msgstr "ضوابط المستخدم" -#: frappe/public/js/frappe/list/list_view.js:1922 +#: frappe/public/js/frappe/list/list_view.js:1924 msgctxt "Button in list view menu" msgid "User Permissions" msgstr "ضوابط المستخدم" @@ -28186,7 +28300,7 @@ msgstr "" msgid "User {0} is disabled" msgstr "المستخدم {0} تم تعطيل" -#: frappe/sessions.py:242 +#: frappe/sessions.py:243 msgid "User {0} is disabled. Please contact your System Manager." msgstr "" @@ -28363,7 +28477,7 @@ msgstr "لا يمكن أن تكون القيمة سالبة لـ {0}: {1}" msgid "Value for a check field can be either 0 or 1" msgstr "يمكن أن تكون قيمة حقل التحقق إما 0 أو 1" -#: frappe/custom/doctype/customize_form/customize_form.py:612 +#: frappe/custom/doctype/customize_form/customize_form.py:616 msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters" msgstr "قيمة الحقل {0} طويلة جدًا في {1}. يجب أن يكون الطول أقل من {2} حرف" @@ -28484,7 +28598,7 @@ msgstr "عرض الكل" msgid "View Audit Trail" msgstr "" -#: frappe/core/doctype/user/user.js:156 +#: frappe/core/doctype/user/user.js:144 msgid "View Doctype Permissions" msgstr "" @@ -28496,7 +28610,7 @@ msgstr "" msgid "View Full Log" msgstr "" -#: frappe/public/js/frappe/views/treeview.js:484 +#: frappe/public/js/frappe/views/treeview.js:486 #: frappe/public/js/frappe/widgets/quick_list_widget.js:258 msgid "View List" msgstr "عرض القائمة" @@ -28506,7 +28620,7 @@ msgstr "عرض القائمة" msgid "View Log" msgstr "عرض السجل" -#: frappe/core/doctype/user/user.js:147 +#: frappe/core/doctype/user/user.js:135 #: frappe/core/doctype/user_permission/user_permission.js:24 msgid "View Permitted Documents" msgstr "عرض المستندات المسموح بها" @@ -28622,6 +28736,7 @@ msgid "Warehouse" msgstr "المستودعات" #. Option for the 'Style' (Select) field in DocType 'Workflow State' +#: frappe/public/js/frappe/router.js:613 #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Warning" msgstr "تحذير" @@ -29267,7 +29382,7 @@ msgstr "" msgid "Workspace" msgstr "" -#: frappe/public/js/frappe/router.js:175 +#: frappe/public/js/frappe/router.js:180 msgid "Workspace {0} does not exist" msgstr "" @@ -29389,7 +29504,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:1225 +#: frappe/public/js/frappe/views/reports/query_report.js:1233 msgid "Y Field" msgstr "Y الميدان" @@ -29451,7 +29566,7 @@ msgstr "" #: frappe/public/js/form_builder/utils.js:336 #: frappe/public/js/frappe/form/controls/link.js:498 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1665 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 #: frappe/website/doctype/help_article/templates/help_article.html:25 msgid "Yes" msgstr "نعم" @@ -29487,6 +29602,10 @@ msgstr "" msgid "You added {0} rows to {1}" msgstr "" +#: frappe/public/js/frappe/router.js:642 +msgid "You are about to open an external link. To confirm, click the link again." +msgstr "" + #: frappe/public/js/frappe/dom.js:438 msgid "You are connected to internet." msgstr "أنت متصل بالإنترنت." @@ -29530,7 +29649,7 @@ msgstr "" msgid "You are not allowed to export {} doctype" msgstr "غير مسموح لك بتصدير النمط {}" -#: frappe/public/js/frappe/views/treeview.js:448 +#: frappe/public/js/frappe/views/treeview.js:450 msgid "You are not allowed to print this report" msgstr "لا يسمح لك بطباعة هذا التقرير" @@ -29538,7 +29657,7 @@ msgstr "لا يسمح لك بطباعة هذا التقرير" msgid "You are not allowed to send emails related to this document" msgstr "لا يسمح لك بإرسال رسائل البريد الإلكتروني ذات الصلة بهذه الوثيقة" -#: frappe/website/doctype/web_form/web_form.py:605 +#: frappe/website/doctype/web_form/web_form.py:632 msgid "You are not allowed to update this Web Form Document" msgstr "لا يسمح لك بتحديث الوثيقة نموذج الويب هذه" @@ -29611,11 +29730,11 @@ msgstr "" msgid "You can continue with the onboarding after exploring this page" msgstr "" -#: frappe/model/delete_doc.py:137 +#: frappe/model/delete_doc.py:177 msgid "You can disable this {0} instead of deleting it." msgstr "" -#: frappe/core/doctype/file/file.py:758 +#: frappe/core/doctype/file/file.py:761 msgid "You can increase the limit from System Settings." msgstr "" @@ -29665,11 +29784,11 @@ msgstr "" msgid "You can use wildcard %" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:390 +#: frappe/custom/doctype/customize_form/customize_form.py:394 msgid "You can't set 'Options' for field {0}" msgstr "لا يمكنك تعيين "خيارات" للحقل {0}" -#: frappe/custom/doctype/customize_form/customize_form.py:394 +#: frappe/custom/doctype/customize_form/customize_form.py:398 msgid "You can't set 'Translatable' for field {0}" msgstr "لا يمكنك تعيين 'ترانزلاتابل' للحقل {0}" @@ -29687,7 +29806,7 @@ msgstr "" msgid "You cannot create a dashboard chart from single DocTypes" msgstr "لا يمكنك إنشاء مخطط لوحة معلومات من أنواع DocTypes الفردية" -#: frappe/custom/doctype/customize_form/customize_form.py:386 +#: frappe/custom/doctype/customize_form/customize_form.py:390 msgid "You cannot unset 'Read Only' for field {0}" msgstr "لا يمكنك ضبط \"للقراءة فقط\" للحقل {0}" @@ -29730,11 +29849,11 @@ msgstr "" msgid "You do not have enough permissions to access this resource. Please contact your manager to get access." msgstr "ليس لديك الأذونات الكافية للوصول إلى هذا المورد. الرجاء الاتصال بالمدير للحصول علي الوصول." -#: frappe/app.py:381 +#: frappe/app.py:384 msgid "You do not have enough permissions to complete the action" msgstr "لا يوجد لديك الصلاحية الكافية لاتمام هذا العمل" -#: frappe/database/query.py:529 +#: frappe/database/query.py:531 msgid "You do not have permission to access field: {0}" msgstr "" @@ -29750,7 +29869,7 @@ msgstr "ليس لديك أذونات لإلغاء كافة المستندات ا msgid "You don't have access to Report: {0}" msgstr "ليس لديك حق الوصول إلى التقرير: {0}" -#: frappe/website/doctype/web_form/web_form.py:808 +#: frappe/website/doctype/web_form/web_form.py:835 msgid "You don't have permission to access the {0} DocType." msgstr "" @@ -29774,7 +29893,7 @@ msgstr "" msgid "You have been successfully logged out" msgstr "لقد تم تسجيل بنجاح" -#: frappe/custom/doctype/customize_form/customize_form.py:245 +#: frappe/custom/doctype/customize_form/customize_form.py:247 msgid "You have hit the row size limit on database table: {0}" msgstr "" @@ -29802,7 +29921,7 @@ msgstr "لديك غير مرئي {0}" msgid "You haven't added any Dashboard Charts or Number Cards yet." msgstr "" -#: frappe/public/js/frappe/list/list_view.js:501 +#: frappe/public/js/frappe/list/list_view.js:503 msgid "You haven't created a {0} yet" msgstr "" @@ -29819,11 +29938,11 @@ msgstr "" msgid "You must add atleast one link." msgstr "" -#: frappe/website/doctype/web_form/web_form.py:804 +#: frappe/website/doctype/web_form/web_form.py:831 msgid "You must be logged in to use this form." msgstr "" -#: frappe/website/doctype/web_form/web_form.py:645 +#: frappe/website/doctype/web_form/web_form.py:672 msgid "You must login to submit this form" msgstr "يجب عليك تسجيل الدخول لإرسال هذا النموذج" @@ -29938,6 +30057,10 @@ msgstr "لقد قمت بإلغاء متابعة هذا المستند" msgid "You viewed this" msgstr "" +#: frappe/public/js/frappe/router.js:653 +msgid "You will be redirected to:" +msgstr "" + #: frappe/core/doctype/user_invitation/user_invitation.py:113 msgid "You've been invited to join {0}" msgstr "" @@ -29983,7 +30106,7 @@ msgstr "اختصاراتك" msgid "Your account has been deleted" msgstr "" -#: frappe/auth.py:514 +#: frappe/auth.py:517 msgid "Your account has been locked and will resume after {0} seconds" msgstr "تم قفل حسابك وسيتم استئنافه بعد {0} ثانية" @@ -30049,7 +30172,7 @@ msgstr "وقد وردت الاستعلام الخاص بك. سوف نقوم با msgid "Your report is being generated in the background. You will receive an email on {0} with a download link once it is ready." msgstr "" -#: frappe/app.py:374 +#: frappe/app.py:377 msgid "Your session has expired, please login again to continue." msgstr "انتهت صلاحية الجلسة، يرجى تسجيل الدخول مرة أخرى للمتابعة." @@ -30386,7 +30509,7 @@ msgstr "قائمة" msgid "logged in" msgstr "تسجيل الدخول" -#: frappe/website/doctype/web_form/web_form.js:362 +#: frappe/website/doctype/web_form/web_form.js:363 msgid "login_required" msgstr "" @@ -30724,7 +30847,7 @@ msgstr "عبر استيراد البيانات" msgid "via Google Meet" msgstr "" -#: frappe/email/doctype/notification/notification.py:403 +#: frappe/email/doctype/notification/notification.py:405 msgid "via Notification" msgstr "عبر الإخطار" @@ -30834,7 +30957,7 @@ msgstr "{0} الرسم البياني" msgid "{0} Dashboard" msgstr "{0} لوحة المعلومات" -#: frappe/public/js/frappe/form/grid_row.js:486 +#: frappe/public/js/frappe/form/grid_row.js:487 #: frappe/public/js/frappe/list/list_settings.js:225 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:178 msgid "{0} Fields" @@ -30885,7 +31008,7 @@ msgstr "" msgid "{0} Report" msgstr "{0} تقرير" -#: frappe/public/js/frappe/views/reports/query_report.js:956 +#: frappe/public/js/frappe/views/reports/query_report.js:964 msgid "{0} Reports" msgstr "" @@ -30958,7 +31081,7 @@ msgctxt "Form timeline" msgid "{0} attached {1}" msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:152 +#: frappe/core/doctype/system_settings/system_settings.py:153 msgid "{0} can not be more than {1}" msgstr "" @@ -31035,7 +31158,7 @@ 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 +#: frappe/database/query.py:710 msgid "{0} fields cannot contain backticks (`): {1}" msgstr "" @@ -31080,7 +31203,7 @@ msgstr "{0} في الصف {1} لا يمكن أن يكون لها عنوان URL msgid "{0} is a mandatory field" msgstr "{0} حقل إلزامي" -#: frappe/core/doctype/file/file.py:566 +#: frappe/core/doctype/file/file.py:569 msgid "{0} is a not a valid zip file" msgstr "" @@ -31129,7 +31252,7 @@ msgstr "" msgid "{0} is mandatory" msgstr "{0} إلزامي" -#: frappe/database/query.py:485 +#: frappe/database/query.py:487 msgid "{0} is not a child table of {1}" msgstr "" @@ -31149,7 +31272,7 @@ msgstr "" msgid "{0} is not a valid Cron expression." msgstr "" -#: frappe/public/js/frappe/form/controls/dynamic_link.js:27 +#: frappe/public/js/frappe/form/controls/dynamic_link.js:23 msgid "{0} is not a valid DocType for Dynamic Link" msgstr "{0} ليس نوع DocType صالحًا للارتباط الديناميكي" @@ -31186,7 +31309,7 @@ msgstr "" msgid "{0} is not a valid report format. Report format should one of the following {1}" msgstr "{0} ليس تنسيق تقرير صالحًا. يجب أن يكون تنسيق التقرير مما يلي {1}" -#: frappe/core/doctype/file/file.py:546 +#: frappe/core/doctype/file/file.py:549 msgid "{0} is not a zip file" msgstr "" @@ -31234,7 +31357,7 @@ msgstr "" msgid "{0} is within {1}" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1839 +#: frappe/public/js/frappe/list/list_view.js:1841 msgid "{0} items selected" msgstr "{0} العناصر المحددة" @@ -31320,11 +31443,11 @@ msgid "{0} not found" msgstr "لم يتم العثور على {0}" #: frappe/core/doctype/report/report.py:427 -#: frappe/public/js/frappe/list/list_view.js:1211 +#: frappe/public/js/frappe/list/list_view.js:1213 msgid "{0} of {1}" msgstr "{0} من {1}" -#: frappe/public/js/frappe/list/list_view.js:1213 +#: frappe/public/js/frappe/list/list_view.js:1215 msgid "{0} of {1} ({2} rows with children)" msgstr "{0} من {1} ({2} صفوف تحتوي على أطفال)" @@ -31374,7 +31497,7 @@ msgstr "" msgid "{0} removed {1} rows from {2}" msgstr "" -#: frappe/public/js/frappe/roles_editor.js:62 +#: frappe/public/js/frappe/roles_editor.js:64 msgid "{0} role does not have permission on any doctype" msgstr "" @@ -31448,7 +31571,7 @@ msgstr "{0} إلى {1}" msgid "{0} un-shared this document with {1}" msgstr "{0} الغى مشاركة هذه الوثيقة مع {1}" -#: frappe/custom/doctype/customize_form/customize_form.py:254 +#: frappe/custom/doctype/customize_form/customize_form.py:256 msgid "{0} updated" msgstr "{0} تم تحديث" @@ -31508,7 +31631,7 @@ msgstr "{0} {1} مرتبط بالمستندات المرسلة التالية: { msgid "{0} {1} not found" msgstr "{0} {1} غير موجود" -#: frappe/model/delete_doc.py:248 +#: frappe/model/delete_doc.py:288 msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first." msgstr "{0} {1}: لا يمكن حذف السجل المقدم. يجب عليك {2} إلغاء {3} أولاً." @@ -31621,7 +31744,7 @@ msgstr "" msgid "{0}: {1} is set to state {2}" msgstr "{0}: تم تعيين {1} على الحالة {2}" -#: frappe/public/js/frappe/views/reports/query_report.js:1283 +#: frappe/public/js/frappe/views/reports/query_report.js:1291 msgid "{0}: {1} vs {2}" msgstr "{0}: {1} ضد {2}" @@ -31657,11 +31780,11 @@ msgstr "{{{0}}} غير صالح كأسم حقل. يجب أن يكون {{field_na msgid "{} Complete" msgstr "{} اكتمال" -#: frappe/utils/data.py:2541 +#: frappe/utils/data.py:2567 msgid "{} Invalid python code on line {}" msgstr "" -#: frappe/utils/data.py:2550 +#: frappe/utils/data.py:2576 msgid "{} Possibly invalid python code.
{}" msgstr "" @@ -31687,7 +31810,7 @@ msgstr "" msgid "{} is not a valid date string." msgstr "{} ليست سلسلة تاريخ صالحة." -#: frappe/commands/utils.py:562 +#: frappe/commands/utils.py:561 msgid "{} not found in PATH! This is required to access the console." msgstr "" diff --git a/frappe/locale/bs.po b/frappe/locale/bs.po index 4463502d79..5a9280d4df 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-09-21 09:33+0000\n" -"PO-Revision-Date: 2025-09-21 19:58\n" +"POT-Creation-Date: 2025-10-05 09:33+0000\n" +"PO-Revision-Date: 2025-10-06 22:59\n" "Last-Translator: developers@frappe.io\n" "Language-Team: Bosnian\n" "MIME-Version: 1.0\n" @@ -78,7 +78,7 @@ msgstr "'U Globalnoj Pretrazi' nije dozvoljeno za tip {0} u redu {1}" msgid "'In List View' is not allowed for field {0} of type {1}" msgstr "'U Prikazu Liste' nije dozvoljeno za polje {0} tipa {1}" -#: frappe/custom/doctype/customize_form/customize_form.py:363 +#: frappe/custom/doctype/customize_form/customize_form.py:367 msgid "'In List View' not allowed for type {0} in row {1}" msgstr "'U Prikazu Liste' nije dozvoljeno za tip {0} u redu {1}" @@ -122,7 +122,7 @@ msgstr "0 - Nacrt; 1 - Podneseno; 2 - Otkazano" msgid "0 is highest" msgstr "0 je najviše" -#: frappe/public/js/frappe/form/grid_row.js:892 +#: frappe/public/js/frappe/form/grid_row.js:893 msgid "1 = True & 0 = False" msgstr "1 = Tačno i 0 = Netačno" @@ -141,11 +141,11 @@ 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:955 +#: frappe/public/js/frappe/views/reports/query_report.js:963 msgid "1 Report" msgstr "1 Izvještaj" -#: frappe/tests/test_utils.py:739 +#: frappe/tests/test_utils.py:845 msgid "1 day ago" msgstr "prije 1 dan" @@ -154,17 +154,17 @@ msgid "1 hour" msgstr "1 sat" #: frappe/public/js/frappe/utils/pretty_date.js:52 -#: frappe/tests/test_utils.py:737 +#: frappe/tests/test_utils.py:843 msgid "1 hour ago" msgstr "prije 1 sat" #: frappe/public/js/frappe/utils/pretty_date.js:48 -#: frappe/tests/test_utils.py:735 +#: frappe/tests/test_utils.py:841 msgid "1 minute ago" msgstr "prije 1 minutu" #: frappe/public/js/frappe/utils/pretty_date.js:66 -#: frappe/tests/test_utils.py:743 +#: frappe/tests/test_utils.py:849 msgid "1 month ago" msgstr "prije 1 mjesec" @@ -186,37 +186,37 @@ msgctxt "User added row to child table" msgid "1 row to {0}" msgstr "1 red do {0}" -#: frappe/tests/test_utils.py:734 +#: frappe/tests/test_utils.py:840 msgid "1 second ago" msgstr "prije 1 sekundu" #: frappe/public/js/frappe/utils/pretty_date.js:62 -#: frappe/tests/test_utils.py:741 +#: frappe/tests/test_utils.py:847 msgid "1 week ago" msgstr "prije 1 sedmicu" #: frappe/public/js/frappe/utils/pretty_date.js:70 -#: frappe/tests/test_utils.py:745 +#: frappe/tests/test_utils.py:851 msgid "1 year ago" msgstr "prije 1 godinu" -#: frappe/tests/test_utils.py:738 +#: frappe/tests/test_utils.py:844 msgid "2 hours ago" msgstr "prije 2 sata" -#: frappe/tests/test_utils.py:744 +#: frappe/tests/test_utils.py:850 msgid "2 months ago" msgstr "prije 2 mjeseca" -#: frappe/tests/test_utils.py:742 +#: frappe/tests/test_utils.py:848 msgid "2 weeks ago" msgstr "prije 2 sedmice" -#: frappe/tests/test_utils.py:746 +#: frappe/tests/test_utils.py:852 msgid "2 years ago" msgstr "prije 2 godine" -#: frappe/tests/test_utils.py:736 +#: frappe/tests/test_utils.py:842 msgid "3 minutes ago" msgstr "prije 3 minute" @@ -232,7 +232,7 @@ msgstr "4 sata" msgid "5 Records" msgstr "5 Zapisa" -#: frappe/tests/test_utils.py:740 +#: frappe/tests/test_utils.py:846 msgid "5 days ago" msgstr "prije 5 dana" @@ -270,6 +270,16 @@ msgstr "{0} nije važeći URL" 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 "
Ne ažuriraj jer to može pokvariti vašu formu. Koristite Prilagodi Prikaz Forme i Prilagođena Polja da postavite svojstva!
" +#. Introduction text of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "

Request a file containing your personally identifiable information (PII) that is saved on our system. The file will be in JSON format and is sent to you by email. If you would like to have your PII deleted from our system, please make a request to delete data.

" +msgstr "

Zatražite datoteku koja sadrži vaše lične podatke (PII) koji su sačuvani na našem sistemu. Datoteka će biti u JSON formatu i bit će vam poslana putem e-pošte. Ako želite da se vaši PII izbrišu iz našeg sistema, molimo vas da podnesete zahtjev za brisanje podataka.

" + +#. Introduction text of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "

Send a request to delete your account and personally identifiable information (PII) that is stored on our system. You will receive an email to verify your request. Once the request is verified we will take care of deleting your PII. If you just want to check what PII we have stored, you can request your data.

" +msgstr "

Pošaljite zahtjev za brisanje vašeg računa i ličnih podataka (PII) koji su pohranjeni u našem sistemu. Primit ćete e-poštu za potvrdu vašeg zahtjeva. Nakon što zahtjev bude potvrđen, mi ćemo se pobrinuti za brisanje vaših PII podataka. Ako samo želite provjeriti koje smo PII podatke pohranili, možete zatražiti svoje podatke.

" + #. Content of the 'Help HTML' (HTML) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -754,6 +764,11 @@ msgstr "Ime DocType-a treba da počinje slovom i može se sastojati samo od slov 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." +#. Success message of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "A download link with your data will be sent to the email address associated with your account." +msgstr "Link za preuzimanje s vašim podacima bit će poslan na adresu e-pošte povezanu s vašim računom." + #: frappe/custom/doctype/custom_field/custom_field.py:175 msgid "A field with the name {0} already exists in {1}" msgstr "Polje s imenom {0} već postoji u {1}" @@ -882,7 +897,7 @@ msgstr "Argumenti krajnje API tačke trebaju biti važeći JSON" #. 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.js:452 frappe/core/doctype/user/user.json +#: frappe/core/doctype/user/user.js:459 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 @@ -901,7 +916,7 @@ msgstr "API Ključ i tajna za interakciju s relejnim serverom. Oni će se automa msgid "API Key cannot be regenerated" msgstr "API Ključ se ne može regenerirati" -#: frappe/core/doctype/user/user.js:449 +#: frappe/core/doctype/user/user.js:456 msgid "API Keys" msgstr "API Ključevi" @@ -925,7 +940,7 @@ msgstr "Zapisnik API Zahtjeva" #. 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.js:459 frappe/core/doctype/user/user.json +#: frappe/core/doctype/user/user.js:466 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" @@ -1011,7 +1026,7 @@ msgstr "Pristupni Token" msgid "Access Token URL" msgstr "URL Pristupnog Tokena" -#: frappe/auth.py:491 +#: frappe/auth.py:494 msgid "Access not allowed from this IP Address" msgstr "Pristup nije dozvoljen sa ove IP adrese" @@ -1127,7 +1142,7 @@ msgstr "Radnja {0} nije uspjela {1} {2}. Pogledaj {3}" #: 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:842 +#: frappe/public/js/frappe/views/reports/query_report.js:850 msgid "Actions" msgstr "Radnje" @@ -1184,7 +1199,7 @@ msgstr "Zapisnik Aktivnosti" #: 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:501 +#: frappe/public/js/frappe/form/grid_row.js:502 #: 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 @@ -1195,7 +1210,7 @@ msgstr "Zapisnik Aktivnosti" msgid "Add" msgstr "Dodaj" -#: frappe/public/js/frappe/form/grid_row.js:454 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Add / Remove Columns" msgstr "Dodaj / Ukloni Kolone" @@ -1240,8 +1255,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:1832 -#: frappe/public/js/frappe/views/reports/query_report.js:1835 +#: frappe/public/js/frappe/views/reports/query_report.js:1840 +#: frappe/public/js/frappe/views/reports/query_report.js:1843 #: frappe/public/js/frappe/views/reports/report_view.js:360 #: frappe/public/js/frappe/views/reports/report_view.js:385 #: frappe/public/js/print_format_builder/Field.vue:112 @@ -1335,7 +1350,7 @@ msgstr "Dodaj Pretplatnike" msgid "Add Tags" msgstr "Dodaj Oznake" -#: frappe/public/js/frappe/list/list_view.js:2149 +#: frappe/public/js/frappe/list/list_view.js:2151 msgctxt "Button in list view actions menu" msgid "Add Tags" msgstr "Dodaj Oznake" @@ -1716,11 +1731,11 @@ msgstr "Upozorenje" msgid "Alerts and Notifications" msgstr "Upozorenja i Obavještenja" -#: frappe/database/query.py:1608 +#: frappe/database/query.py:1610 msgid "Alias cannot be a SQL keyword: {0}" msgstr "Alias ne može biti SQL ključna riječ: {0}" -#: frappe/database/query.py:1533 +#: frappe/database/query.py:1535 msgid "Alias must be a string" msgstr "Alias mora biti niz" @@ -2168,6 +2183,12 @@ msgstr "Takođe se dodaje polje statusne zavisnosti {0}" msgid "Alternative Email ID" msgstr "Alternativni ID e-pošte" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Always" +msgstr "Uvijek" + #. Label of the always_bcc (Data) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Always BCC Address" @@ -2244,6 +2265,11 @@ msgstr "Izmjena nije Dozvoljena" msgid "Amendment naming rules updated." msgstr "Pravila Izmjene Imenovanje ažurirana" +#. Success message of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "An email to verify your request has been sent to your email address. Please verify your request to complete the process." +msgstr "E-pošta za potvrdu vašeg zahtjeva poslana je na vašu adresu e-pošte. Molimo vas da potvrdite svoj zahtjev kako biste dovršili proces." + #: 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" @@ -2426,7 +2452,7 @@ msgstr "Primijenjeno na" msgid "Apply" msgstr "Primjeni" -#: frappe/public/js/frappe/list/list_view.js:2134 +#: frappe/public/js/frappe/list/list_view.js:2136 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" msgstr "Primijeni Pravilo Dodjele" @@ -2511,7 +2537,7 @@ msgstr "Arhivirane Kolone" msgid "Are you sure you want to cancel the invitation?" msgstr "Jeste li sigurni da želite otkazati pozivnicu?" -#: frappe/public/js/frappe/list/list_view.js:2113 +#: frappe/public/js/frappe/list/list_view.js:2115 msgid "Are you sure you want to clear the assignments?" msgstr "Jeste li sigurni da želite izbrisati zadatke?" @@ -2547,7 +2573,7 @@ msgstr "Jeste li sigurni da želite izbrisati ovaj zapis?" 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:969 +#: frappe/public/js/frappe/views/reports/query_report.js:977 msgid "Are you sure you want to generate a new report?" msgstr "Jeste li sigurni da želite generisati novi izvještaj?" @@ -2555,7 +2581,7 @@ msgstr "Jeste li sigurni da želite generisati novi izvještaj?" msgid "Are you sure you want to merge {0} with {1}?" msgstr "Jeste li sigurni da želite spojiti {0} sa {1}?" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:108 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:118 msgid "Are you sure you want to proceed?" msgstr "Jeste li sigurni da želite nastaviti?" @@ -2610,6 +2636,12 @@ msgstr "Budući da je dijeljenje dokumenata onemogućeno, dajte im potrebne dozv msgid "As per your request, your account and data on {0} associated with email {1} has been permanently deleted" msgstr "Prema vašem zahtjevu, vaš račun i podaci na {0} povezani sa e-poštom {1} su trajno izbrisani" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Ask" +msgstr "Pitaj" + #. Label of the assign_condition (Code) field in DocType 'Assignment Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Assign Condition" @@ -2619,7 +2651,7 @@ msgstr "Dodijeli Uslov" msgid "Assign To" msgstr "Dodijeli" -#: frappe/public/js/frappe/list/list_view.js:2095 +#: frappe/public/js/frappe/list/list_view.js:2097 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "Dodijeli" @@ -2762,7 +2794,7 @@ msgstr "Dodjele" msgid "Asynchronous" msgstr "Asinhroni" -#: frappe/public/js/frappe/form/grid_row.js:696 +#: frappe/public/js/frappe/form/grid_row.js:697 msgid "At least one column is required to show in the grid." msgstr "Najmanje jedna kolona je potrebna da se prikaže u mreži." @@ -3742,7 +3774,7 @@ msgstr "Grupno Brisanje" msgid "Bulk Edit" msgstr "Grupno Uređivanje" -#: frappe/public/js/frappe/form/grid.js:1189 +#: frappe/public/js/frappe/form/grid.js:1190 msgid "Bulk Edit {0}" msgstr "Grupno uređivanje {0}" @@ -4034,7 +4066,7 @@ msgstr "Nije moguće preimenovati {0} u {1} jer {0} ne postoji." #. 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/doctype/doctype_list.js:131 #: frappe/core/doctype/user_document_type/user_document_type.json #: frappe/core/doctype/user_invitation/user_invitation.js:17 #: frappe/email/doctype/notification/notification.json @@ -4042,7 +4074,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:2204 +#: frappe/public/js/frappe/list/list_view.js:2206 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "Otkaži" @@ -4060,7 +4092,7 @@ msgstr "Otkaži" msgid "Cancel All Documents" msgstr "Otkaži Sve Dokumente" -#: frappe/public/js/frappe/list/list_view.js:2209 +#: frappe/public/js/frappe/list/list_view.js:2211 msgctxt "Title of confirmation dialog" msgid "Cancel {0} documents?" msgstr "Otkaži {0} dokumenta?" @@ -4113,7 +4145,7 @@ msgstr "Nije Moguće Ukloniti" msgid "Cannot Update After Submit" msgstr "Nije Moguće Ažurirati Nakon Podnošenja" -#: frappe/core/doctype/file/file.py:643 +#: frappe/core/doctype/file/file.py:646 msgid "Cannot access file path {0}" msgstr "Nije moguće pristupiti putu datoteke {0}" @@ -4161,7 +4193,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:379 +#: frappe/model/delete_doc.py:419 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}" @@ -4241,7 +4273,7 @@ msgstr "Nije moguće omogućiti {0} za tip dokumenta koji se ne može podnijeti" msgid "Cannot find file {} on disk" msgstr "Nije moguće pronaći datoteku {} na disku" -#: frappe/core/doctype/file/file.py:583 +#: frappe/core/doctype/file/file.py:586 msgid "Cannot get file contents of a Folder" msgstr "Nije moguće dobiti sadržaj mape" @@ -4249,7 +4281,7 @@ msgstr "Nije moguće dobiti sadržaj mape" msgid "Cannot have multiple printers mapped to a single print format." msgstr "Nije moguće imati više pisača mapiranih u jedan format pisača." -#: frappe/public/js/frappe/form/grid.js:1133 +#: frappe/public/js/frappe/form/grid.js:1134 msgid "Cannot import table with more than 5000 rows." msgstr "Nije moguće uvesti tabelu sa više od 5000 redova." @@ -4265,7 +4297,7 @@ msgstr "Nije moguće mapirati jer sljedeći uslov nije ispunjen:" msgid "Cannot match column {0} with any field" msgstr "Nije moguće uskladiti kolonu {0} ni sa jednim poljem" -#: frappe/public/js/frappe/form/grid_row.js:175 +#: frappe/public/js/frappe/form/grid_row.js:176 msgid "Cannot move row" msgstr "Nije moguće pomjeriti red" @@ -4294,11 +4326,11 @@ msgstr "Nije moguće podnijeti {0}." msgid "Cannot update {0}" msgstr "Nije moguće ažurirati {0}" -#: frappe/model/db_query.py:1130 +#: frappe/model/db_query.py:1136 msgid "Cannot use sub-query here." msgstr "Ovdje se ne može koristiti podupit." -#: frappe/model/db_query.py:1162 +#: frappe/model/db_query.py:1168 msgid "Cannot use {0} in order/group by" msgstr "Ne može se koristiti {0} u redoslijedu/grupiranju po" @@ -4571,11 +4603,11 @@ msgstr "Podređena tabela {0} za polje {1}" #. Description of the 'Is Child Table' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:52 +#: frappe/core/doctype/doctype/doctype_list.js:53 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 +#: frappe/database/query.py:662 msgid "Child query fields for '{0}' must be a list or tuple." msgstr "Podređena polja upita za '{0}' moraju biti lista ili torka." @@ -4631,7 +4663,7 @@ msgstr "Očisti & Dodaj Šablon" msgid "Clear All" msgstr "Obriši Sve" -#: frappe/public/js/frappe/list/list_view.js:2110 +#: frappe/public/js/frappe/list/list_view.js:2112 msgctxt "Button in list view actions menu" msgid "Clear Assignment" msgstr "Obriši Dodjelu" @@ -4725,7 +4757,7 @@ msgstr "Klikni da Postavite Dinamičke Filtere" msgid "Click to Set Filters" msgstr "Klikni da Postavite Filtere" -#: frappe/public/js/frappe/list/list_view.js:739 +#: frappe/public/js/frappe/list/list_view.js:741 msgid "Click to sort by {0}" msgstr "Klikni da sortirate po {0}" @@ -4903,7 +4935,7 @@ msgctxt "Shrink code field." msgid "Collapse" msgstr "Sklopi" -#: frappe/public/js/frappe/views/reports/query_report.js:2113 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 #: frappe/public/js/frappe/views/treeview.js:123 msgid "Collapse All" msgstr "Sklopi Sve" @@ -4958,7 +4990,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:1233 +#: frappe/public/js/frappe/views/reports/query_report.js:1241 #: frappe/public/js/frappe/widgets/widget_dialog.js:546 #: frappe/public/js/frappe/widgets/widget_dialog.js:694 #: frappe/website/doctype/color/color.json @@ -5014,11 +5046,11 @@ msgstr "Naziv Kolone" msgid "Column Name cannot be empty" msgstr "Naziv Kolone ne može biti prazan" -#: frappe/public/js/frappe/form/grid_row.js:454 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Column Width" msgstr "Širina Kolone" -#: frappe/public/js/frappe/form/grid_row.js:661 +#: frappe/public/js/frappe/form/grid_row.js:662 msgid "Column width cannot be zero." msgstr "Širina kolone ne može biti nula." @@ -5045,7 +5077,7 @@ msgstr "Kolone" msgid "Columns / Fields" msgstr "Kolone / Polja" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:397 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:411 msgid "Columns based on" msgstr "Kolone zasnovane na" @@ -5309,7 +5341,7 @@ msgstr "Konfiguracija" msgid "Configure Chart" msgstr "Konfiguriši Grafikon" -#: frappe/public/js/frappe/form/grid_row.js:406 +#: frappe/public/js/frappe/form/grid_row.js:407 msgid "Configure Columns" msgstr "Konfiguriši Kolone" @@ -5336,7 +5368,7 @@ msgstr "Konfiguriši kako će se izmijenjeni dokumenti imenovati.
\n\n" msgid "Configure various aspects of how document naming works like naming series, current counter." 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:412 frappe/public/js/frappe/dom.js:345 +#: frappe/core/doctype/user/user.js:400 frappe/public/js/frappe/dom.js:345 #: frappe/www/update-password.html:66 msgid "Confirm" msgstr "Potvrdi" @@ -5355,7 +5387,7 @@ msgstr "Potvrdi Pristup" msgid "Confirm Deletion of Account" msgstr "Potvrdi Brisanje Računa" -#: frappe/core/doctype/user/user.js:196 +#: frappe/core/doctype/user/user.js:184 msgid "Confirm New Password" msgstr "Potvrdi Novu Lozinku" @@ -5608,7 +5640,7 @@ msgstr "Greška pri kopiranju u međuspremnik" msgid "Copy to Clipboard" msgstr "Kopiraj u Međuspremnik" -#: frappe/core/doctype/user/user.js:480 +#: frappe/core/doctype/user/user.js:487 msgid "Copy token to clipboard" msgstr "Kopiraj token u međuspremnik" @@ -5617,7 +5649,7 @@ msgstr "Kopiraj token u međuspremnik" msgid "Copyright" msgstr "Autorska prava" -#: frappe/custom/doctype/customize_form/customize_form.py:123 +#: frappe/custom/doctype/customize_form/customize_form.py:125 msgid "Core DocTypes cannot be customized." msgstr "Osnovni DocTypes se ne mogu prilagoditi." @@ -5641,7 +5673,7 @@ 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 +#: frappe/database/query.py:566 msgid "Could not parse field: {0}" msgstr "Nije moguće parsirati polje: {0}" @@ -5733,13 +5765,13 @@ msgstr "Potražuje" #: 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:1265 +#: frappe/public/js/frappe/views/reports/query_report.js:1273 #: frappe/public/js/frappe/views/workspace/workspace.js:469 #: frappe/workflow/page/workflow_builder/workflow_builder.js:46 msgid "Create" msgstr "Kreiraj" -#: frappe/core/doctype/doctype/doctype_list.js:102 +#: frappe/core/doctype/doctype/doctype_list.js:103 msgid "Create & Continue" msgstr "Kreiraj & Nastavi" @@ -5753,7 +5785,7 @@ msgid "Create Card" msgstr "Kreiraj Karticu" #: frappe/public/js/frappe/views/reports/query_report.js:285 -#: frappe/public/js/frappe/views/reports/query_report.js:1192 +#: frappe/public/js/frappe/views/reports/query_report.js:1200 msgid "Create Chart" msgstr "Kreiraj Grafikon" @@ -5787,12 +5819,12 @@ msgstr "Kreiraj Zapisnik" msgid "Create New" msgstr "Kreiraj" -#: frappe/public/js/frappe/list/list_view.js:512 +#: frappe/public/js/frappe/list/list_view.js:514 msgctxt "Create a new document from list view" msgid "Create New" msgstr "Kreiraj" -#: frappe/core/doctype/doctype/doctype_list.js:100 +#: frappe/core/doctype/doctype/doctype_list.js:101 msgid "Create New DocType" msgstr "Kreiraj Novi DocType" @@ -5800,7 +5832,7 @@ msgstr "Kreiraj Novi DocType" msgid "Create New Kanban Board" msgstr "Kreiraj Novu Natpisnu Tablu" -#: frappe/core/doctype/user/user.js:276 +#: frappe/core/doctype/user/user.js:264 msgid "Create User Email" msgstr "Kreiraj Korisničku e-poštu" @@ -5823,8 +5855,8 @@ msgstr "Kreiraj novi zapis" #: frappe/public/js/frappe/form/controls/link.js:315 #: frappe/public/js/frappe/form/controls/link.js:317 #: frappe/public/js/frappe/form/link_selector.js:139 -#: frappe/public/js/frappe/list/list_view.js:504 -#: frappe/public/js/frappe/web_form/web_form_list.js:225 +#: frappe/public/js/frappe/list/list_view.js:506 +#: frappe/public/js/frappe/web_form/web_form_list.js:226 msgid "Create a new {0}" msgstr "+ {0}" @@ -5840,7 +5872,7 @@ msgstr "Kreiraj ili Uredi Format Ispisa" msgid "Create or Edit Workflow" msgstr "Kreiraj ili Uredi Radni Tok" -#: frappe/public/js/frappe/list/list_view.js:507 +#: frappe/public/js/frappe/list/list_view.js:509 msgid "Create your first {0}" msgstr "+ {0}" @@ -6187,7 +6219,7 @@ msgstr "Prilagođena metoda get_list za {0} mora vratiti objekt QueryBuilder ili #. 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/core/doctype/doctype/doctype_list.js:83 #: frappe/website/doctype/website_theme/website_theme.json msgid "Custom?" msgstr "Prilagođeno?" @@ -6222,7 +6254,7 @@ msgstr "Prilagođavanja za {0} eksportirana u:
{1}" msgid "Customize" msgstr "Prilagodi" -#: frappe/public/js/frappe/list/list_view.js:1947 +#: frappe/public/js/frappe/list/list_view.js:1949 msgctxt "Button in list view menu" msgid "Customize" msgstr "Prilagodi" @@ -6241,7 +6273,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:343 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 msgid "Customize Form" msgstr "Prilagodi Formu" @@ -6472,7 +6504,7 @@ msgstr "Zapisnik Uvoza Podataka" msgid "Data Import Template" msgstr "Šablon Uvoza Podataka" -#: frappe/custom/doctype/customize_form/customize_form.py:615 +#: frappe/custom/doctype/customize_form/customize_form.py:619 msgid "Data Too Long" msgstr "Predugi Podaci" @@ -6503,7 +6535,7 @@ msgstr "Iskorištenost Veličine Reda Tabele Baze Podataka" msgid "Database Storage Usage By Tables" msgstr "Pohranjena Iskorištenost Baze Podataka po Tabelama" -#: frappe/custom/doctype/customize_form/customize_form.py:249 +#: frappe/custom/doctype/customize_form/customize_form.py:251 msgid "Database Table Row Size Limit" msgstr "Ograničenje Veličine Reda Tabele Baze Podataka" @@ -6873,13 +6905,13 @@ msgstr "Odgođeno" #: frappe/public/js/frappe/form/toolbar.js:464 #: frappe/public/js/frappe/views/reports/report_view.js:1749 #: frappe/public/js/frappe/views/treeview.js:329 -#: frappe/public/js/frappe/web_form/web_form_list.js:282 +#: frappe/public/js/frappe/web_form/web_form_list.js:283 #: frappe/templates/discussions/reply_card.html:35 #: frappe/templates/discussions/reply_section.html:29 msgid "Delete" msgstr "Izbriši" -#: frappe/public/js/frappe/list/list_view.js:2172 +#: frappe/public/js/frappe/list/list_view.js:2174 msgctxt "Button in list view actions menu" msgid "Delete" msgstr "Izbriši" @@ -6912,7 +6944,7 @@ msgstr "Izbriši Kolonu" msgid "Delete Data" msgstr "Izbriši Podatke" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:106 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:116 msgid "Delete Kanban Board" msgstr "Izbriši Natpisnu Tablu" @@ -6926,7 +6958,7 @@ msgctxt "Title of confirmation dialog" msgid "Delete Tab" msgstr "Izbriši Karticu" -#: frappe/public/js/frappe/views/reports/query_report.js:936 +#: frappe/public/js/frappe/views/reports/query_report.js:944 msgid "Delete and Generate New" msgstr "Izbriši i Generiši Novi" @@ -6968,12 +7000,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:2177 +#: frappe/public/js/frappe/list/list_view.js:2179 msgctxt "Title of confirmation dialog" msgid "Delete {0} item permanently?" msgstr "Trajno izbriši stavku {0}?" -#: frappe/public/js/frappe/list/list_view.js:2183 +#: frappe/public/js/frappe/list/list_view.js:2185 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "Trajno izbriši {0} stavke?" @@ -7470,10 +7502,14 @@ msgstr "Ne Kreiraj Novog Korisnika" msgid "Do not create new user if user with email does not exist in the system" msgstr "Ne kreiraj novog korisnika ako korisnik sa e-poštom ne postoji u sistemu" -#: frappe/public/js/frappe/form/grid.js:1194 +#: frappe/public/js/frappe/form/grid.js:1195 msgid "Do not edit headers which are preset in the template" msgstr "Ne uređiuji zaglavlja koja su unaprijed postavljena u šablonu" +#: frappe/public/js/frappe/router.js:624 +msgid "Do not warn me again about {0}" +msgstr "Ne upozoravaj me više o {0}" + #: frappe/core/doctype/system_settings/system_settings.js:71 msgid "Do you still want to proceed?" msgstr "Želiš li i dalje nastaviti?" @@ -7900,7 +7936,7 @@ msgstr "Naziv Dokumenta" #: 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/public/js/frappe/roles_editor.js:68 #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json #: frappe/workflow/doctype/workflow/workflow.json msgid "Document Type" @@ -7951,15 +7987,15 @@ msgstr "Dokument Otključan" msgid "Document follow is not enabled for this user." msgstr "Praćenje dokumenta nije omogućeno za ovog korisnika." -#: frappe/public/js/frappe/list/list_view.js:1300 +#: frappe/public/js/frappe/list/list_view.js:1302 msgid "Document has been cancelled" msgstr "Dokument je otkazan" -#: frappe/public/js/frappe/list/list_view.js:1299 +#: frappe/public/js/frappe/list/list_view.js:1301 msgid "Document has been submitted" msgstr "Dokument je podnesen" -#: frappe/public/js/frappe/list/list_view.js:1298 +#: frappe/public/js/frappe/list/list_view.js:1300 msgid "Document is in draft state" msgstr "Dokument je u stanju nacrta" @@ -8101,7 +8137,7 @@ msgstr "Donut" msgid "Double click to edit label" msgstr "Dvaput klikni za uređivanje oznake" -#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:467 +#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:474 #: frappe/email/doctype/auto_email_report/auto_email_report.js:8 #: frappe/public/js/frappe/form/grid.js:66 msgid "Download" @@ -8134,7 +8170,7 @@ msgstr "Link Preuzimanja" msgid "Download PDF" msgstr "Preuzmi PDF" -#: frappe/public/js/frappe/views/reports/query_report.js:832 +#: frappe/public/js/frappe/views/reports/query_report.js:840 msgid "Download Report" msgstr "Preuzmi izvještaj" @@ -8334,8 +8370,8 @@ msgstr "ESC" #: 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:880 -#: frappe/public/js/frappe/views/reports/query_report.js:1783 +#: frappe/public/js/frappe/views/reports/query_report.js:888 +#: frappe/public/js/frappe/views/reports/query_report.js:1791 #: 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 @@ -8347,7 +8383,7 @@ msgstr "ESC" msgid "Edit" msgstr "Uredi" -#: frappe/public/js/frappe/list/list_view.js:2258 +#: frappe/public/js/frappe/list/list_view.js:2260 msgctxt "Button in list view actions menu" msgid "Edit" msgstr "Uredi" @@ -8357,7 +8393,7 @@ msgctxt "Button in web form" msgid "Edit" msgstr "Uredi" -#: frappe/public/js/frappe/form/grid_row.js:349 +#: frappe/public/js/frappe/form/grid_row.js:350 msgctxt "Edit grid row" msgid "Edit" msgstr "Uredi" @@ -8386,7 +8422,7 @@ msgstr "Uredi Prilagođeni HTML" msgid "Edit DocType" msgstr "Uredi DocType" -#: frappe/public/js/frappe/list/list_view.js:1974 +#: frappe/public/js/frappe/list/list_view.js:1976 msgctxt "Button in list view menu" msgid "Edit DocType" msgstr "Uredi DocType" @@ -8506,7 +8542,7 @@ msgstr "Uredi {0}" #. 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/core/doctype/doctype/doctype_list.js:58 #: frappe/custom/doctype/customize_form/customize_form.json msgid "Editable Grid" msgstr "Uređivanje Mreže" @@ -8551,6 +8587,8 @@ msgstr "Birač Elementa" #. 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' +#. Label of a field in the request-data Web Form +#. Label of a field in the request-to-delete-data Web Form #: frappe/automation/workspace/tools/tools.json #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/custom_docperm/custom_docperm.json @@ -8569,6 +8607,8 @@ msgstr "Birač Elementa" #: 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/website/web_form/request_data/request_data.json +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json #: frappe/www/login.html:8 frappe/www/login.py:104 msgid "Email" msgstr "E-pošta" @@ -8800,7 +8840,7 @@ msgstr "E-pošta je označena kao neželjena pošta" msgid "Email has been moved to trash" msgstr "E-pošta je premještena u smeće" -#: frappe/core/doctype/user/user.js:278 +#: frappe/core/doctype/user/user.js:266 msgid "Email is mandatory to create User Email" msgstr "E-pošta je obavezna za kreiranje korisničke e-pošte" @@ -8843,7 +8883,7 @@ 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 +#: frappe/database/query.py:1539 msgid "Empty alias is not allowed" msgstr "Prazan pseudonim nije dozvoljen" @@ -8851,7 +8891,7 @@ msgstr "Prazan pseudonim nije dozvoljen" msgid "Empty column" msgstr "Prazna kolona" -#: frappe/database/query.py:1455 +#: frappe/database/query.py:1457 msgid "Empty string arguments are not allowed" msgstr "Prazni niz argumenti nisu dozvoljeni" @@ -9308,9 +9348,9 @@ msgstr "Greška u Klijent Skripti." msgid "Error in Header/Footer Script" msgstr "Greška Skripte Zaglavlja/Podnožja" -#: frappe/email/doctype/notification/notification.py:640 -#: frappe/email/doctype/notification/notification.py:780 -#: frappe/email/doctype/notification/notification.py:786 +#: frappe/email/doctype/notification/notification.py:642 +#: frappe/email/doctype/notification/notification.py:782 +#: frappe/email/doctype/notification/notification.py:788 msgid "Error in Notification" msgstr "Greška u Obavještenju" @@ -9330,7 +9370,7 @@ msgstr "Greška pri parsiranju ugniježđenih filtera: {0}" msgid "Error while connecting to email account {0}" msgstr "Greška prilikom povezivanja na račun e-pošte {0}" -#: frappe/email/doctype/notification/notification.py:777 +#: frappe/email/doctype/notification/notification.py:779 msgid "Error while evaluating Notification {0}. Please fix your template." msgstr "Greška prilikom evaluacije Obavještenja {0}. Popravite vaš šablon." @@ -9491,7 +9531,7 @@ msgstr "Izvršava se Kod" msgid "Executing..." msgstr "Izvršavanje..." -#: frappe/public/js/frappe/views/reports/query_report.js:2132 +#: frappe/public/js/frappe/views/reports/query_report.js:2140 msgid "Execution Time: {0} sec" msgstr "Vrijeme izvršenja: {0} sek" @@ -9517,12 +9557,12 @@ msgctxt "Enlarge code field." msgid "Expand" msgstr "Proširi" -#: frappe/public/js/frappe/views/reports/query_report.js:2113 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 #: frappe/public/js/frappe/views/treeview.js:133 msgid "Expand All" msgstr "Rasklopi Sve" -#: frappe/database/query.py:352 +#: frappe/database/query.py:354 msgid "Expected 'and' or 'or' operator, found: {0}" msgstr "Očekivani operator 'and' ili 'or', pronađen: {0}" @@ -9580,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:1820 +#: frappe/public/js/frappe/views/reports/query_report.js:1828 #: frappe/public/js/frappe/views/reports/report_view.js:1629 #: frappe/public/js/frappe/widgets/chart_widget.js:315 msgid "Export" msgstr "Izvoz" -#: frappe/public/js/frappe/list/list_view.js:2280 +#: frappe/public/js/frappe/list/list_view.js:2282 msgctxt "Button in list view actions menu" msgid "Export" msgstr "Izvezi" @@ -9779,7 +9819,7 @@ msgstr "Nije uspjelo izračunavanje tijela zahtjeva: {}" msgid "Failed to connect to server" msgstr "Povezivanje sa serverom nije uspjelo" -#: frappe/auth.py:698 +#: frappe/auth.py:701 msgid "Failed to decode token, please provide a valid base64-encoded token." msgstr "Dekodiranje tokena nije uspjelo, navedite važeći token kodiran sa base64." @@ -9943,7 +9983,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:236 -#: frappe/public/js/frappe/views/reports/query_report.js:1879 +#: frappe/public/js/frappe/views/reports/query_report.js:1887 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_form_list_column/web_form_list_column.json msgid "Field" @@ -10026,7 +10066,7 @@ msgstr "Polje {0} se odnosi na nepostojeći tip dokumenta {1}." msgid "Field {0} not found." msgstr "Polje {0} nije pronađeno." -#: frappe/email/doctype/notification/notification.py:545 +#: frappe/email/doctype/notification/notification.py:547 msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link" msgstr "Polje {0} u dokumentu {1} nije ni polje za broj Mobilnog Telefona niti veza za Klijenta ili Korisnika" @@ -10044,7 +10084,7 @@ msgstr "Polje {0} u dokumentu {1} nije ni polje za broj Mobilnog Telefona niti v #: 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:454 +#: frappe/public/js/frappe/form/grid_row.js:455 #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Fieldname" msgstr "Ime Polja" @@ -10125,7 +10165,7 @@ 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 +#: frappe/database/query.py:613 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" @@ -10153,7 +10193,7 @@ msgstr "Tip Polja" msgid "Fieldtype cannot be changed from {0} to {1}" msgstr "Tip polja se ne može promijeniti iz {0} u {1}" -#: frappe/custom/doctype/customize_form/customize_form.py:589 +#: frappe/custom/doctype/customize_form/customize_form.py:593 msgid "Fieldtype cannot be changed from {0} to {1} in row {2}" msgstr "Tip polja se ne može promijeniti iz {0} u {1} u redu {2}" @@ -10219,7 +10259,7 @@ msgstr "URL Datoteke" msgid "File backup is ready" msgstr "Sigurnosna Kopija Datoteke je spremna" -#: frappe/core/doctype/file/file.py:646 +#: frappe/core/doctype/file/file.py:649 msgid "File name cannot have {0}" msgstr "Ime datoteke ne može imati {0}" @@ -10227,7 +10267,7 @@ msgstr "Ime datoteke ne može imati {0}" msgid "File not attached" msgstr "Datoteka nije priložena" -#: frappe/core/doctype/file/file.py:756 frappe/public/js/frappe/request.js:200 +#: frappe/core/doctype/file/file.py:759 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 "Veličina datoteke je premašila maksimalnu dozvoljenu veličinu od {0} MB" @@ -10240,7 +10280,7 @@ msgstr "Datoteka je prevelika" msgid "File type of {0} is not allowed" msgstr "Tip datoteke {0} nije dozvoljen" -#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:448 +#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:451 msgid "File {0} does not exist" msgstr "Datoteka {0} ne postoji" @@ -10294,11 +10334,11 @@ msgstr "Filter Naziv" msgid "Filter Values" msgstr "Filter Vrijednosti" -#: frappe/database/query.py:358 +#: frappe/database/query.py:360 msgid "Filter condition missing after operator: {0}" msgstr "Nedostaje uslov filtera nakon operatora: {0}" -#: frappe/database/query.py:425 +#: frappe/database/query.py:427 msgid "Filter fields cannot contain backticks (`)." msgstr "Polja filtera ne mogu sadržavati povratne crte (`)." @@ -10375,7 +10415,7 @@ msgstr "Sekcija Filtera" msgid "Filters applied for {0}" msgstr "Primijenjeni filteri za {0}" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:188 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:202 msgid "Filters saved" msgstr "Filteri spremljeni" @@ -10423,9 +10463,12 @@ msgstr "Prvi Radni Dan Sedmice" #. Label of the first_name (Data) field in DocType 'Contact' #. Label of the first_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json #: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:44 -#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:15 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:15 msgid "First Name" msgstr "Ime" @@ -10506,7 +10549,7 @@ msgstr "Naziv Mape" msgid "Folder name should not include '/' (slash)" msgstr "Ime fascikle ne smije uključivati '/' (kosa crta)" -#: frappe/core/doctype/file/file.py:494 +#: frappe/core/doctype/file/file.py:497 msgid "Folder {0} is not empty" msgstr "Mapa {0} nije prazna" @@ -10709,7 +10752,7 @@ msgstr "Za Korisnika" msgid "For Value" msgstr "Za Vrijednost" -#: frappe/public/js/frappe/views/reports/query_report.js:2129 +#: frappe/public/js/frappe/views/reports/query_report.js:2137 #: frappe/public/js/frappe/views/reports/report_view.js:108 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)." @@ -10994,7 +11037,7 @@ msgstr "Od Datuma" msgid "From Date Field" msgstr "Od Datuma" -#: frappe/public/js/frappe/views/reports/query_report.js:1840 +#: frappe/public/js/frappe/views/reports/query_report.js:1848 msgid "From Document Type" msgstr "Od Dokumenta" @@ -11056,13 +11099,13 @@ msgstr "Funkcija zasnovana na" msgid "Function {0} is not whitelisted." msgstr "Funkcija {0} nije na bijeloj listi." -#: frappe/database/query.py:1417 +#: frappe/database/query.py:1419 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'" +msgid "Further sub-groups can only be created under records marked as 'Group'" +msgstr "Daljnje podgrupe mogu se kreirati samo pod zapisima označenim kao 'Grupa'" #: frappe/core/doctype/communication/communication.js:291 msgid "Fw: {0}" @@ -11121,7 +11164,7 @@ msgstr "Općenito" msgid "Generate Keys" msgstr "Generiši Ključeve" -#: frappe/public/js/frappe/views/reports/query_report.js:874 +#: frappe/public/js/frappe/views/reports/query_report.js:882 msgid "Generate New Report" msgstr "Generiši Novi Izvještaj" @@ -11537,14 +11580,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 +#: frappe/database/query.py:752 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" - #. Label of the ldap_group_objectclass (Data) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Group Object Class" @@ -11874,7 +11913,7 @@ msgstr "Sakriveno" msgid "Hidden Fields" msgstr "Sakrivena Polja" -#: frappe/public/js/frappe/views/reports/query_report.js:1642 +#: frappe/public/js/frappe/views/reports/query_report.js:1650 msgid "Hidden columns include: {0}" msgstr "Skrivene kolone uključuju: {0}" @@ -11986,7 +12025,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:1849 +#: frappe/public/js/frappe/list/list_view.js:1851 msgid "Hide Tags" msgstr "Sakrij Oznake" @@ -12245,7 +12284,7 @@ msgstr "Ako je označeno, status radnog toka neće nadjačati status u prikazu l #: frappe/core/doctype/doctype/doctype.py:1777 #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45 -#: frappe/public/js/frappe/roles_editor.js:66 +#: frappe/public/js/frappe/roles_editor.js:68 msgid "If Owner" msgstr "Ako je Vlasnik" @@ -12473,8 +12512,8 @@ msgstr "Ignorisane Aplikacije" msgid "Illegal Document Status for {0}" msgstr "Ilegalan Status Dokumenta za {0}" -#: frappe/model/db_query.py:453 frappe/model/db_query.py:456 -#: frappe/model/db_query.py:1121 +#: frappe/model/db_query.py:454 frappe/model/db_query.py:457 +#: frappe/model/db_query.py:1122 msgid "Illegal SQL Query" msgstr "Ilegalan SQL Upit" @@ -12561,11 +12600,11 @@ 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:384 +#: frappe/core/doctype/user/user.js:372 msgid "Impersonate" msgstr "Oponašaj" -#: frappe/core/doctype/user/user.js:411 +#: frappe/core/doctype/user/user.js:399 msgid "Impersonate as {0}" msgstr "Oponašaj {0}" @@ -12595,7 +12634,7 @@ msgstr "Implicitno" msgid "Import" msgstr "Uvezi" -#: frappe/public/js/frappe/list/list_view.js:1911 +#: frappe/public/js/frappe/list/list_view.js:1913 msgctxt "Button in list view menu" msgid "Import" msgstr "Uvezi" @@ -12824,15 +12863,15 @@ msgid "Include Web View Link in Email" msgstr "Uključi Web Pregled vezu u e-poštu" #: frappe/public/js/frappe/form/print_utils.js:59 -#: frappe/public/js/frappe/views/reports/query_report.js:1620 +#: frappe/public/js/frappe/views/reports/query_report.js:1628 msgid "Include filters" msgstr "Uključi Filtere" -#: frappe/public/js/frappe/views/reports/query_report.js:1640 +#: frappe/public/js/frappe/views/reports/query_report.js:1648 msgid "Include hidden columns" msgstr "Uključi skrivene kolone" -#: frappe/public/js/frappe/views/reports/query_report.js:1612 +#: frappe/public/js/frappe/views/reports/query_report.js:1620 msgid "Include indentation" msgstr "Uključi Uvlačenje" @@ -12879,7 +12918,7 @@ msgstr "Račun dolazne e-pošte nije ispravan" msgid "Incomplete Virtual Doctype Implementation" msgstr "Nepotpuna implementacija virtualnog tipa dokumenta" -#: frappe/auth.py:255 +#: frappe/auth.py:258 msgid "Incomplete login details" msgstr "Nepotpuni podaci prijave" @@ -12990,7 +13029,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:1885 +#: frappe/public/js/frappe/views/reports/query_report.js:1893 msgid "Insert After" msgstr "Umetni Poslije" @@ -13063,7 +13102,7 @@ msgstr "Instrukcije Poslane e-poštom" msgid "Insufficient Permission Level for {0}" msgstr "Nedovoljan Nivo Dozvola za {0}" -#: frappe/database/query.py:806 frappe/database/query.py:1052 +#: frappe/database/query.py:808 frappe/database/query.py:1054 msgid "Insufficient Permission for {0}" msgstr "Nedovoljne Dozvole za {0}" @@ -13179,7 +13218,7 @@ msgid "Invalid" msgstr "Nevažeći" #: frappe/public/js/form_builder/utils.js:221 -#: frappe/public/js/frappe/form/grid_row.js:849 +#: frappe/public/js/frappe/form/grid_row.js:850 #: frappe/public/js/frappe/form/layout.js:810 #: frappe/public/js/frappe/views/reports/report_view.js:721 msgid "Invalid \"depends_on\" expression" @@ -13237,8 +13276,8 @@ 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 +#: frappe/database/query.py:429 frappe/database/query.py:456 +#: frappe/database/query.py:466 frappe/database/query.py:489 msgid "Invalid Filter" msgstr "Nevažeći Filter" @@ -13310,7 +13349,7 @@ msgstr "Nevažeća Lozinka" msgid "Invalid Phone Number" msgstr "Nevažeći Broj Telefona" -#: frappe/auth.py:94 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 +#: frappe/auth.py:97 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 #: frappe/www/login.py:128 msgid "Invalid Request" msgstr "Nevažeći Zahtjev" @@ -13350,7 +13389,7 @@ msgstr "Nevažeća Tajna Webhooka" msgid "Invalid aggregate function" msgstr "Nevažeća agregatna funkcija" -#: frappe/database/query.py:1542 +#: frappe/database/query.py:1544 msgid "Invalid alias format: {0}. Alias must be a simple identifier." msgstr "Nevažeći format aliasa: {0}. Alias mora biti jednostavan identifikator." @@ -13358,19 +13397,19 @@ msgstr "Nevažeći format aliasa: {0}. Alias mora biti jednostavan identifikator msgid "Invalid app" msgstr "Nevažeća aplikacija" -#: frappe/database/query.py:1468 +#: frappe/database/query.py:1470 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 +#: frappe/database/query.py:1446 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 +#: frappe/database/query.py:462 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 +#: frappe/database/query.py:577 msgid "Invalid characters in table name: {0}" msgstr "Nevažeći znakovi u nazivu tabele: {0}" @@ -13378,11 +13417,11 @@ msgstr "Nevažeći znakovi u nazivu tabele: {0}" msgid "Invalid column" msgstr "Nevažeća kolona" -#: frappe/database/query.py:381 +#: frappe/database/query.py:383 msgid "Invalid condition type in nested filters: {0}" msgstr "Nevažeći tip uslova u ugniježđenim filterima: {0}" -#: frappe/database/query.py:787 +#: frappe/database/query.py:789 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'." @@ -13398,23 +13437,23 @@ 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/database/query.py:1301 +#: frappe/database/query.py:1303 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 +#: frappe/database/query.py:736 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 +#: frappe/database/query.py:1622 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:2215 +#: frappe/utils/data.py:2241 msgid "Invalid field name {0}" msgstr "Nevažeći naziv polja {0}" -#: frappe/database/query.py:668 +#: frappe/database/query.py:670 msgid "Invalid field type: {0}" msgstr "Nevažeći tip polja: {0}" @@ -13426,11 +13465,11 @@ 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:364 +#: frappe/database/query.py:366 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 +#: frappe/database/query.py:452 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'." @@ -13438,11 +13477,11 @@ msgstr "Nevažeći format polja filtera: {0}. Koristi 'fieldname' ili 'link_fiel msgid "Invalid filter: {0}" msgstr "Nevažeći filter: {0}" -#: frappe/database/query.py:1422 +#: frappe/database/query.py:1424 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 +#: frappe/database/query.py:1385 msgid "Invalid function dictionary format" msgstr "Nevažeći format rječnika funkcija" @@ -13479,23 +13518,27 @@ 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:337 +#: frappe/app.py:340 msgid "Invalid request arguments" msgstr "Nevažeći argumenti zahtjeva" +#: frappe/app.py:327 +msgid "Invalid request body" +msgstr "Nevažeći Zahtjev" + #: frappe/core/doctype/user_invitation/user_invitation.py:181 msgid "Invalid role" msgstr "Nevažeća uloga" -#: frappe/database/query.py:410 +#: frappe/database/query.py:412 msgid "Invalid simple filter format: {0}" msgstr "Nevažeći format jednostavnog filtera: {0}" -#: frappe/database/query.py:341 +#: frappe/database/query.py:343 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 +#: frappe/database/query.py:1491 msgid "Invalid string literal format: {0}" msgstr "Nevažeći format niza literala: {0}" @@ -13599,7 +13642,7 @@ 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' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:49 +#: frappe/core/doctype/doctype/doctype_list.js:50 #: frappe/core/doctype/doctype_link/doctype_link.json msgid "Is Child Table" msgstr "Je Podređena Tabela" @@ -13652,6 +13695,10 @@ msgstr "Je Mapa" msgid "Is Global" msgstr "Je Globalno" +#: frappe/public/js/frappe/views/treeview.js:418 +msgid "Is Group" +msgstr "Grupa" + #. Label of the is_hidden (Check) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "Is Hidden" @@ -13740,7 +13787,7 @@ msgstr "Je li Podešavanje Završeno?" #. 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/core/doctype/doctype/doctype_list.js:65 #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Is Single" msgstr "Je Sam" @@ -13776,7 +13823,7 @@ 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 +#: frappe/core/doctype/doctype/doctype_list.js:40 msgid "Is Submittable" msgstr "Je Podnošljiv" @@ -13982,11 +14029,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:388 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:402 msgid "Kanban Board Name" msgstr "Naziv Oglasne Table" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:265 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:279 msgctxt "Button in kanban view menu" msgid "Kanban Settings" msgstr "Postavke Oglasne Table" @@ -14284,10 +14331,13 @@ msgstr "Pejzaž" #. 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' +#. Label of a field in the edit-profile Web Form #: 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:117 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/printing/page/print/print.js:117 #: frappe/public/js/frappe/form/templates/print_layout.html:11 msgid "Language" msgstr "Jezik" @@ -14375,9 +14425,12 @@ msgstr "Prošli Mjesec" #. Label of the last_name (Data) field in DocType 'Contact' #. Label of the last_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json #: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:45 -#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:19 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:19 msgid "Last Name" msgstr "Prezime" @@ -14618,7 +14671,7 @@ msgstr "Zaglavlje u HTML-u" #: 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/public/js/frappe/roles_editor.js:68 #: frappe/website/doctype/help_article/help_article.json msgid "Level" msgstr "Nivo" @@ -14911,7 +14964,7 @@ msgstr "Filter Liste" msgid "List Settings" msgstr "Postavke Liste" -#: frappe/public/js/frappe/list/list_view.js:1991 +#: frappe/public/js/frappe/list/list_view.js:1993 msgctxt "Button in list view menu" msgid "List Settings" msgstr "Postavke Liste" @@ -14962,7 +15015,7 @@ msgid "Load Balancing" msgstr "Load Balancing" #: frappe/public/js/frappe/list/base_list.js:399 -#: frappe/public/js/frappe/web_form/web_form_list.js:305 +#: frappe/public/js/frappe/web_form/web_form_list.js:306 #: frappe/website/doctype/help_article/templates/help_article_list.html:30 msgid "Load More" msgstr "Učitaj Još" @@ -14982,7 +15035,7 @@ msgstr "Učitaj više" #: frappe/public/js/frappe/list/base_list.js:526 #: frappe/public/js/frappe/list/list_view.js:363 #: frappe/public/js/frappe/ui/listing.html:16 -#: frappe/public/js/frappe/views/reports/query_report.js:1089 +#: frappe/public/js/frappe/views/reports/query_report.js:1097 msgid "Loading" msgstr "Učitava se" @@ -15125,7 +15178,7 @@ msgstr "Kod Potvrdu Prijave od {}" msgid "Login and view in Browser" msgstr "Prijavi se i pregledaj u Pretraživaču" -#: frappe/website/doctype/web_form/web_form.js:367 +#: frappe/website/doctype/web_form/web_form.js:368 msgid "Login is required to see web form list view. Enable {0} to see list settings" msgstr "Prijava je potrebna da biste vidjeli pregled liste web forme. Omogući {0} da vidite postavke liste" @@ -15133,7 +15186,7 @@ msgstr "Prijava je potrebna da biste vidjeli pregled liste web forme. Omogući { msgid "Login link sent to your email" msgstr "Veza za prijavu poslana je na vašu e-poštu" -#: frappe/auth.py:339 frappe/auth.py:342 +#: frappe/auth.py:342 frappe/auth.py:345 msgid "Login not allowed at this time" msgstr "Prijava trenutno nije dozvoljena" @@ -15186,7 +15239,7 @@ msgstr "Prijavi se putem veze e-pošte" msgid "Login with email link expiry (in minutes)" msgstr "Prijava se sa istekom veze e-pošte (u minutama)" -#: frappe/auth.py:144 +#: frappe/auth.py:147 msgid "Login with username and password is not allowed." msgstr "Prijava sa korisničkim imenom i lozinkom nije dozvoljena." @@ -15205,7 +15258,7 @@ msgstr "URI Logotipa" msgid "Logout" msgstr "Odjava" -#: frappe/core/doctype/user/user.js:202 +#: frappe/core/doctype/user/user.js:190 msgid "Logout All Sessions" msgstr "Odjava sa Svih Sesija" @@ -15309,7 +15362,10 @@ msgid "Major" msgstr "Velika" #. Label of the show_name_in_global_search (Check) field in DocType 'DocType' +#. Label of the show_name_in_global_search (Check) field in DocType 'Customize +#. Form' #: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Make \"name\" searchable in Global Search" msgstr "Neka \"ime\" bude pretraživo u Globalnoj Pretrazi" @@ -15385,7 +15441,7 @@ msgstr "Obavezno Zavisi od" msgid "Mandatory Depends On (JS)" msgstr "Obavezno Zavisi od (JS)" -#: frappe/website/doctype/web_form/web_form.py:509 +#: frappe/website/doctype/web_form/web_form.py:536 msgid "Mandatory Information missing:" msgstr "Nedostaju obavezne informacije:" @@ -15842,6 +15898,11 @@ msgstr "Sredina Centar" msgid "Middle Name" msgstr "Srednje Ime" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Middle Name (Optional)" +msgstr "Srednje Ime (Opciono)" + #. Name of a DocType #. Label of a Link in the Tools Workspace #: frappe/automation/doctype/milestone/milestone.json @@ -15948,6 +16009,11 @@ msgstr "Mobilni Broj" msgid "Mobile No" msgstr "Mobilni Broj" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Mobile Number" +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" @@ -15973,7 +16039,7 @@ msgstr "Modalni Okidač" #. 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/doctype/doctype_list.js:31 #: 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 @@ -16149,10 +16215,12 @@ msgstr "Više Informacija" #. Label of the additional_info (Section Break) field in DocType #. 'Communication' #. Label of the short_bio (Tab Break) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: 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 +#: frappe/core/web_form/edit_profile/edit_profile.json msgid "More Information" msgstr "Više Informacija" @@ -16182,7 +16250,7 @@ msgstr "Najvjerovatnije je vaša lozinka predugačka." msgid "Move" msgstr "Premjesti" -#: frappe/public/js/frappe/form/grid_row.js:193 +#: frappe/public/js/frappe/form/grid_row.js:194 msgid "Move To" msgstr "Premjesti u" @@ -16218,7 +16286,7 @@ msgstr "Premjesti sekciju na novu karticu" msgid "Move the current field and the following fields to a new column" msgstr "Premjesti trenutno polje i sljedeća polja u novu kolonu" -#: frappe/public/js/frappe/form/grid_row.js:168 +#: frappe/public/js/frappe/form/grid_row.js:169 msgid "Move to Row Number" msgstr "Pomjeri na Red Broj" @@ -16286,7 +16354,7 @@ msgid "Mx" msgstr "Mx" #: frappe/templates/includes/web_sidebar.html:41 -#: frappe/website/doctype/web_form/web_form.py:498 +#: frappe/website/doctype/web_form/web_form.py:525 #: 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" @@ -16430,12 +16498,12 @@ msgstr "Šablon Navigacijske Trake" msgid "Navbar Template Values" msgstr "Vrijednosti Šablona Navigacijske Trake" -#: frappe/public/js/frappe/list/list_view.js:1378 +#: frappe/public/js/frappe/list/list_view.js:1380 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:1385 +#: frappe/public/js/frappe/list/list_view.js:1387 msgctxt "Description of a list view shortcut" msgid "Navigate list up" msgstr "Kreći se po listi prema gore" @@ -16450,6 +16518,10 @@ msgstr "Idi na glavni sadržaj" msgid "Navigation Settings" msgstr "Postavke Navigacije" +#: frappe/public/js/frappe/list/list_view.js:485 +msgid "Need Help?" +msgstr "Trebate pomoć?" + #: frappe/desk/doctype/workspace/workspace.py:322 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" @@ -16458,7 +16530,7 @@ msgstr "Potrebna je uloga Upravitelja Radnog Prostora za uređivanje privatnog r msgid "Negative Value" msgstr "Negativna Vrijednost" -#: frappe/database/query.py:333 +#: frappe/database/query.py:335 msgid "Nested filters must be provided as a list or tuple." msgstr "Ugniježđeni filteri moraju biti dati kao lista ili torka." @@ -16471,6 +16543,12 @@ msgstr "Greška ugniježđenog skupa. Kontaktiraj Administratora." msgid "Network Printer Settings" msgstr "Postavke Mrežnog Pisača" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Never" +msgstr "Nikad" + #. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/core/doctype/success_action/success_action.js:57 @@ -16479,7 +16557,7 @@ msgstr "Postavke Mrežnog Pisača" #: 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/treeview.js:473 #: frappe/public/js/frappe/views/workspace/workspace.js:64 #: frappe/website/doctype/web_form/templates/web_list.html:15 #: frappe/www/list.html:19 @@ -16540,7 +16618,7 @@ msgstr "Novi Događaj" msgid "New Folder" msgstr "Nova Mapa" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 msgid "New Kanban Board" msgstr "Nova Oglasna Tabla" @@ -16575,7 +16653,7 @@ msgstr "Nova Numerička Kartica" msgid "New Onboarding" msgstr "Nova Introdukcija" -#: frappe/core/doctype/user/user.js:190 frappe/www/update-password.html:43 +#: frappe/core/doctype/user/user.js:178 frappe/www/update-password.html:43 msgid "New Password" msgstr "Nova Lozinka" @@ -16673,7 +16751,7 @@ msgstr "Nova vrijednost koju treba postaviti" #: frappe/public/js/frappe/ui/toolbar/search_utils.js:227 #: 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:411 +#: frappe/website/doctype/web_form/web_form.py:438 msgid "New {0}" msgstr "Novi {0}" @@ -16825,7 +16903,7 @@ msgstr "Sljedeća na Klik" #: frappe/public/js/form_builder/utils.js:341 #: frappe/public/js/frappe/form/controls/link.js:498 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1665 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 #: frappe/website/doctype/help_article/templates/help_article.html:26 msgid "No" msgstr "Ne" @@ -16974,7 +17052,7 @@ msgstr "Nema Rezultata" msgid "No Roles Specified" msgstr "Nisu Navedene Uloge" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 msgid "No Select Field Found" msgstr "Nije Pronađeno Odabirno Polje" @@ -17058,7 +17136,7 @@ msgstr "Nema adresa e-pošte za pozivnicu" msgid "No failed logs" msgstr "Nema neuspjelih zapisa" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:371 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:385 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\"." @@ -17082,7 +17160,7 @@ msgstr "Nema daljnjih zapisa" msgid "No matching records. Search something new" msgstr "Nema podudarnih zapisa. Traži nešto novo" -#: frappe/public/js/frappe/web_form/web_form_list.js:161 +#: frappe/public/js/frappe/web_form/web_form_list.js:162 msgid "No more items to display" msgstr "Nema više artikala za prikaz" @@ -17126,7 +17204,7 @@ msgctxt "{0} = verb, {1} = object" msgid "No permission to '{0}' {1}" msgstr "Nema dozvole za '{0}' {1}" -#: frappe/model/db_query.py:948 +#: frappe/model/db_query.py:949 msgid "No permission to read {0}" msgstr "Nema dozvole za čitanje {0}" @@ -17174,11 +17252,11 @@ msgstr "Bez {0}" msgid "No {0} Found" msgstr "Nije pronađeno {0}" -#: frappe/public/js/frappe/web_form/web_form_list.js:233 +#: frappe/public/js/frappe/web_form/web_form_list.js:234 msgid "No {0} found" msgstr "Nije pronađeno {0}" -#: frappe/public/js/frappe/list/list_view.js:497 +#: frappe/public/js/frappe/list/list_view.js:499 msgid "No {0} found with matching filters. Clear filters to see all {0}." msgstr "Nije pronađeno {0} sa odgovarajućim filterima. Obriši filtere da vidite sve {0}." @@ -17187,7 +17265,7 @@ msgid "No {0} mail" msgstr "Nema {0} pošte" #: frappe/public/js/form_builder/utils.js:117 -#: frappe/public/js/frappe/form/grid_row.js:256 +#: frappe/public/js/frappe/form/grid_row.js:257 msgctxt "Title of the 'row number' column" msgid "No." msgstr "Broj." @@ -17251,7 +17329,7 @@ msgstr "Nisu Podređeni Od" msgid "Not Equals" msgstr "Nije Jednako" -#: frappe/app.py:387 frappe/www/404.html:3 +#: frappe/app.py:390 frappe/www/404.html:3 msgid "Not Found" msgstr "Nije Pronađeno" @@ -17277,9 +17355,9 @@ msgstr "Nije povezano ni sa jednim zapisom" msgid "Not Nullable" msgstr "Nemože se Nulirati" -#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26 +#: frappe/__init__.py:550 frappe/app.py:383 frappe/desk/calendar.py:26 #: frappe/public/js/frappe/web_form/webform_script.js:15 -#: frappe/website/doctype/web_form/web_form.py:747 +#: frappe/website/doctype/web_form/web_form.py:774 #: 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 @@ -17298,7 +17376,7 @@ msgstr "Nije Objavljeno" #: 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/kanban/kanban_view.js:183 #: frappe/public/js/frappe/views/reports/report_view.js:209 #: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39 #: frappe/website/doctype/web_form/templates/web_form.html:85 @@ -17349,7 +17427,7 @@ msgstr "Nije aktivno" msgid "Not allowed for {0}: {1}" msgstr "Nije dozvoljeno za {0}: {1}" -#: frappe/email/doctype/notification/notification.py:637 +#: frappe/email/doctype/notification/notification.py:639 msgid "Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings" msgstr "Nije dozvoljeno priložiti {0} dokument, omogući Dozvoli Ispis za {0} u Postavkama Ispisa" @@ -17381,12 +17459,12 @@ msgstr "Nije u načinu rada za programere" msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType." 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:216 +#: frappe/core/doctype/system_settings/system_settings.py:217 #: 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:760 +#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:787 #: frappe/website/js/website.js:97 msgid "Not permitted" msgstr "Nije dozvoljeno" @@ -17432,7 +17510,7 @@ msgstr "Napomena: Za najbolje rezultate, slike moraju biti iste veličine, a ši msgid "Note: Multiple sessions will be allowed in case of mobile device" msgstr "Napomena: Višestruke sesije će biti dozvoljene u slučaju mobilnog uređaja" -#: frappe/core/doctype/user/user.js:399 +#: frappe/core/doctype/user/user.js:387 msgid "Note: This will be shared with user." msgstr "Napomena: Ovo će biti podijeljeno s korisnikom." @@ -17504,15 +17582,15 @@ msgstr "Obavijest Pretplaćeni Dokument" msgid "Notification sent to" msgstr "Obavještenje je poslano za" -#: frappe/email/doctype/notification/notification.py:542 +#: frappe/email/doctype/notification/notification.py:544 msgid "Notification: customer {0} has no Mobile number set" msgstr "Obavještenje: klijent {0} nema postavljen broj mobilnog telefona" -#: frappe/email/doctype/notification/notification.py:528 +#: frappe/email/doctype/notification/notification.py:530 msgid "Notification: document {0} has no {1} number set (field: {2})" msgstr "Obavještenje: dokument {0} nema postavljen broj {1} (polje: {2})" -#: frappe/email/doctype/notification/notification.py:537 +#: frappe/email/doctype/notification/notification.py:539 msgid "Notification: user {0} has no Mobile number set" msgstr "Obavještenje: korisnik {0} nema postavljen broj mobilnog telefona" @@ -17626,7 +17704,7 @@ msgstr "Broj Upita" msgid "Number of attachment fields are more than {}, limit updated to {}." msgstr "Broj polja priloga je veći od {}, ograničenje je ažurirano na {}." -#: frappe/core/doctype/system_settings/system_settings.py:171 +#: frappe/core/doctype/system_settings/system_settings.py:172 msgid "Number of backups must be greater than zero." msgstr "Broj Sigurnosnih Kopija mora biti veći od nule." @@ -17898,7 +17976,7 @@ 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 +#: frappe/core/doctype/doctype/doctype_list.js:43 msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended." msgstr "Jednom podneseni dokumenti koji se podnose se ne mogu mijenjati. Mogu se samo poništiti i izmjenuti." @@ -17987,11 +18065,11 @@ msgstr "Mogu se izbrisati samo izvještaji tipa Konstruktor Izvještaja" msgid "Only reports of type Report Builder can be edited" msgstr "Mogu se uređivati samo izvještaji tipa Konstruktor Izvještaja" -#: frappe/custom/doctype/customize_form/customize_form.py:129 +#: frappe/custom/doctype/customize_form/customize_form.py:131 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:241 +#: frappe/model/delete_doc.py:281 msgid "Only the Administrator can delete a standard DocType." msgstr "Samo Administrator može izbrisati standardni DocType." @@ -18087,7 +18165,7 @@ msgstr "Otvori konzolu" msgid "Open in a new tab" msgstr "Otvori u novoj kartici" -#: frappe/public/js/frappe/list/list_view.js:1431 +#: frappe/public/js/frappe/list/list_view.js:1433 msgctxt "Description of a list view shortcut" msgid "Open list item" msgstr "Otvorite stavku liste" @@ -18136,7 +18214,7 @@ msgstr "Otvoreno" msgid "Operation" msgstr "Operacija" -#: frappe/utils/data.py:2146 +#: frappe/utils/data.py:2172 msgid "Operator must be one of {0}" msgstr "Operator mora biti jedan od {0}" @@ -18182,6 +18260,7 @@ msgstr "Opcija: Upozorenje će biti poslano ako je ovaj izraz tačan" #. 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 (Text) field in DocType 'Web Form List Column' #. 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 @@ -18190,6 +18269,7 @@ msgstr "Opcija: Upozorenje će biti poslano ako je ovaj izraz tačan" #: 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_form_list_column/web_form_list_column.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Options" msgstr "Opcije" @@ -18235,7 +18315,7 @@ msgstr "Narandžasta" msgid "Order" msgstr "Red" -#: frappe/database/query.py:767 +#: frappe/database/query.py:769 msgid "Order By must be a string" msgstr "Sortiraj Po mora biti niz" @@ -18333,7 +18413,7 @@ msgstr "ZAKRPA" #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/printing/page/print/print.js:84 #: frappe/public/js/frappe/form/templates/print_layout.html:44 -#: frappe/public/js/frappe/views/reports/query_report.js:1804 +#: frappe/public/js/frappe/views/reports/query_report.js:1812 msgid "PDF" msgstr "PDF" @@ -18681,8 +18761,8 @@ msgstr "Pasivno" #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/system_settings/system_settings.json -#: frappe/core/doctype/user/user.js:177 frappe/core/doctype/user/user.js:224 -#: frappe/core/doctype/user/user.js:244 +#: frappe/core/doctype/user/user.js:165 frappe/core/doctype/user/user.js:212 +#: frappe/core/doctype/user/user.js:232 #: 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 @@ -18705,7 +18785,7 @@ msgstr "Poništavanje Lozinke" msgid "Password Reset Link Generation Limit" msgstr "Maksimalan Broj Veza za Poništavanje Lozinke po satu" -#: frappe/public/js/frappe/form/grid_row.js:896 +#: frappe/public/js/frappe/form/grid_row.js:897 msgid "Password cannot be filtered" msgstr "Lozinka se ne može filtrirati" @@ -18742,7 +18822,7 @@ msgstr "Uputstva za poništavanje lozinke su poslana na e-poštu korisnika {}" msgid "Password set" msgstr "Lozinka postavljena" -#: frappe/auth.py:258 +#: frappe/auth.py:261 msgid "Password size exceeded the maximum allowed size" msgstr "Veličina lozinke je premašila maksimalno dozvoljenu veličinu" @@ -18754,7 +18834,7 @@ msgstr "Veličina lozinke je premašila maksimalno dozvoljenu veličinu." msgid "Passwords do not match" msgstr "Lozinke se ne podudaraju" -#: frappe/core/doctype/user/user.js:210 +#: frappe/core/doctype/user/user.js:198 msgid "Passwords do not match!" msgstr "Lozinke se ne podudaraju!" @@ -18905,7 +18985,7 @@ msgstr "Trajno Podnesi {0}?" msgid "Permanently delete {0}?" msgstr "Trajno izbriši {0}?" -#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533 +#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:535 msgid "Permission Error" msgstr "Greška Dozvole" @@ -18965,8 +19045,8 @@ msgstr "Tip Dozvole" #: 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:143 frappe/core/doctype/user/user.js:152 -#: frappe/core/doctype/user/user.js:161 +#: frappe/core/doctype/user/user.js:131 frappe/core/doctype/user/user.js:140 +#: frappe/core/doctype/user/user.js:149 #: 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 @@ -19036,6 +19116,7 @@ msgstr "Zahtjev Preuzimanje Ličnih Podataka" #. Option for the 'Type' (Select) field in DocType 'Communication' #. Option for the 'Type' (Select) field in DocType 'DocField' #. Label of the phone (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #. 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' @@ -19046,6 +19127,7 @@ msgstr "Zahtjev Preuzimanje Ličnih Podataka" #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.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 @@ -19220,7 +19302,7 @@ msgstr "Ne mijenjaj Naslove Šablona." msgid "Please duplicate this to make changes" msgstr "Kopiraj ovo da izvršite promjene" -#: frappe/core/doctype/system_settings/system_settings.py:164 +#: frappe/core/doctype/system_settings/system_settings.py:165 msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login." 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." @@ -19352,11 +19434,11 @@ msgstr "Odaberi DocType" msgid "Please select Entity Type first" msgstr "Odaberi Tip Entiteta" -#: frappe/core/doctype/system_settings/system_settings.py:115 +#: frappe/core/doctype/system_settings/system_settings.py:116 msgid "Please select Minimum Password Score" msgstr "Odaberi Minimalnu Vrijednost Lozinke" -#: frappe/public/js/frappe/views/reports/query_report.js:1185 +#: frappe/public/js/frappe/views/reports/query_report.js:1193 msgid "Please select X and Y fields" msgstr "Odaberi X i Y polja" @@ -19384,7 +19466,7 @@ msgstr "Odaberi važeći filter datuma" msgid "Please select applicable Doctypes" msgstr "Odaberi primjenjive Dokumente" -#: frappe/model/db_query.py:1157 +#: frappe/model/db_query.py:1163 msgid "Please select atleast 1 column from {0} to sort/group" msgstr "Odaberi najmanje 1 kolonu iz {0} za sortiranje/grupiranje" @@ -19414,7 +19496,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:1408 +#: frappe/public/js/frappe/views/reports/query_report.js:1416 msgid "Please set filters" msgstr "Postavi filtere" @@ -19434,7 +19516,7 @@ msgstr "Postavite sljedeće dokumente na ovoj Nadzornoj Tabli kao standardne." msgid "Please set the series to be used." msgstr "Postavi seriju imenovanja koja će se koristiti." -#: frappe/core/doctype/system_settings/system_settings.py:128 +#: frappe/core/doctype/system_settings/system_settings.py:129 msgid "Please setup SMS before setting it as an authentication method, via SMS Settings" msgstr "Podesite SMS prije nego što ga postavite kao metodu provjere autentičnosti, putem SMS Postavki" @@ -19586,7 +19668,7 @@ msgstr "Broj Pošte" msgid "Posting Timestamp" msgstr "Vremenska Oznaka" -#: frappe/database/query.py:1518 +#: frappe/database/query.py:1520 msgid "Potentially dangerous content in string literal: {0}" msgstr "Potencijalno opasan sadržaj u niz literalu: {0}" @@ -19788,13 +19870,13 @@ msgstr "Primarni ključ tipa dokumenta {0} ne može se promijeniti jer postoje p #: 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:1789 +#: frappe/public/js/frappe/views/reports/query_report.js:1797 #: frappe/public/js/frappe/views/reports/report_view.js:1539 -#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18 +#: frappe/public/js/frappe/views/treeview.js:492 frappe/www/printview.html:18 msgid "Print" msgstr "Ispiši" -#: frappe/public/js/frappe/list/list_view.js:2164 +#: frappe/public/js/frappe/list/list_view.js:2166 msgctxt "Button in list view actions menu" msgid "Print" msgstr "Ispiši" @@ -19864,7 +19946,7 @@ msgstr "Pomoć Ispis Formata" msgid "Print Format Type" msgstr "Tip Ispis Formata" -#: frappe/public/js/frappe/views/reports/query_report.js:1578 +#: frappe/public/js/frappe/views/reports/query_report.js:1586 msgid "Print Format not found" msgstr "Format Ispisa nije pronađen" @@ -20045,11 +20127,11 @@ msgstr "Savjet: Dodaj referencu: {{ reference_doctype }} {{ reference_name msgid "Proceed" msgstr "Nastavi" -#: frappe/public/js/frappe/views/reports/query_report.js:932 +#: frappe/public/js/frappe/views/reports/query_report.js:940 msgid "Proceed Anyway" msgstr "Svejedno Nastavi" -#: frappe/public/js/frappe/form/controls/table.js:123 +#: frappe/public/js/frappe/form/controls/table.js:104 msgid "Processing" msgstr "Obrađuje se" @@ -20066,11 +20148,21 @@ msgstr "Prof" msgid "Profile" msgstr "Profil" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile Picture" +msgstr "Slika Profila" + +#. Success message of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile updated successfully." +msgstr "Profil uspješno ažuriran." + #: frappe/public/js/frappe/socketio_client.js:82 msgid "Progress" msgstr "Napredak" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:408 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:422 msgid "Project" msgstr "Projekat" @@ -20114,7 +20206,7 @@ msgstr "Tip Svojstva" msgid "Protect Attached Files" msgstr "Zaštiti Priložene Datoteke" -#: frappe/core/doctype/file/file.py:523 +#: frappe/core/doctype/file/file.py:526 msgid "Protected File" msgstr "Zaštićena Datoteka" @@ -20620,11 +20712,11 @@ msgstr "Realno Vrijeme (SocketIO)" msgid "Reason" msgstr "Razlog" -#: frappe/public/js/frappe/views/reports/query_report.js:886 +#: frappe/public/js/frappe/views/reports/query_report.js:894 msgid "Rebuild" msgstr "Obnovi" -#: frappe/public/js/frappe/views/treeview.js:509 +#: frappe/public/js/frappe/views/treeview.js:511 msgid "Rebuild Tree" msgstr "Obnovi Stablo" @@ -21005,8 +21097,8 @@ 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:1778 -#: frappe/public/js/frappe/views/treeview.js:496 +#: frappe/public/js/frappe/views/reports/query_report.js:1786 +#: frappe/public/js/frappe/views/treeview.js:498 #: frappe/public/js/frappe/widgets/chart_widget.js:291 #: frappe/public/js/frappe/widgets/number_card_widget.js:352 #: frappe/public/js/print_format_builder/Preview.vue:24 @@ -21037,13 +21129,13 @@ msgstr "Osvježi Pregled Ispisa" msgid "Refresh Token" msgstr "Osvježi Token" -#: frappe/public/js/frappe/list/list_view.js:534 +#: frappe/public/js/frappe/list/list_view.js:536 msgctxt "Document count in list view" msgid "Refreshing" msgstr "Osvježava se" #: frappe/core/doctype/system_settings/system_settings.js:57 -#: frappe/core/doctype/user/user.js:374 +#: frappe/core/doctype/user/user.js:362 #: frappe/desk/page/setup_wizard/setup_wizard.js:211 msgid "Refreshing..." msgstr "Osvježavanje u toku..." @@ -21428,7 +21520,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:1965 +#: frappe/public/js/frappe/views/reports/query_report.js:1973 msgid "Report Name" msgstr "Naziv Izvještaja" @@ -21480,7 +21572,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:1013 +#: frappe/public/js/frappe/views/reports/query_report.js:1021 msgid "Report initiated, click to view status" msgstr "Izvještaj je pokrenut, klikni da vidite status" @@ -21500,7 +21592,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:2003 +#: frappe/public/js/frappe/views/reports/query_report.js:2011 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." @@ -21536,7 +21628,7 @@ msgstr "Izvještaji" msgid "Reports & Masters" msgstr "Izvještaji & Masters" -#: frappe/public/js/frappe/views/reports/query_report.js:929 +#: frappe/public/js/frappe/views/reports/query_report.js:937 msgid "Reports already in Queue" msgstr "Izvještaji su već u redu čekanja" @@ -21555,7 +21647,10 @@ msgid "Request Body" msgstr "Zahtjev od" #. Label of the data (Code) field in DocType 'Integration Request' +#. Title of the request-data Web Form +#. Button label of the request-data Web Form #: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/website/web_form/request_data/request_data.json msgid "Request Data" msgstr "Zatraži Podatke" @@ -21607,6 +21702,11 @@ msgstr "Zahtjev Istekao" msgid "Request URL" msgstr "URL Zahtjeva" +#. Title of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "Request for Account Deletion" +msgstr "Zahtjev za Brisanje Računa" + #. Label of the requested_numbers (Code) field in DocType 'SMS Log' #: frappe/core/doctype/sms_log/sms_log.json msgid "Requested Numbers" @@ -21662,7 +21762,7 @@ msgstr "Poništi Prilagođavanja Nadzorne Table" msgid "Reset Fields" msgstr "Poništi Polja" -#: frappe/core/doctype/user/user.js:184 frappe/core/doctype/user/user.js:187 +#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:175 msgid "Reset LDAP Password" msgstr "Poništi LDAP Lozinku" @@ -21670,11 +21770,11 @@ msgstr "Poništi LDAP Lozinku" msgid "Reset Layout" msgstr "Poništi Izgled" -#: frappe/core/doctype/user/user.js:235 +#: frappe/core/doctype/user/user.js:223 msgid "Reset OTP Secret" msgstr "Poništi OTP Tajnu" -#: frappe/core/doctype/user/user.js:168 frappe/www/login.html:199 +#: frappe/core/doctype/user/user.js:156 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" @@ -21709,7 +21809,7 @@ msgstr "Vrati na Standard" msgid "Reset sorting" msgstr "Poništi Sortiranje" -#: frappe/public/js/frappe/form/grid_row.js:433 +#: frappe/public/js/frappe/form/grid_row.js:434 msgid "Reset to default" msgstr "Vrati na Standard" @@ -21961,7 +22061,7 @@ 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 +#: frappe/public/js/frappe/roles_editor.js:114 msgid "Role Permissions" msgstr "Dozvole Uloge" @@ -21971,7 +22071,7 @@ msgstr "Dozvole Uloge" msgid "Role Permissions Manager" msgstr "Upravitelj Dozvola Uloge" -#: frappe/public/js/frappe/list/list_view.js:1933 +#: frappe/public/js/frappe/list/list_view.js:1935 msgctxt "Button in list view menu" msgid "Role Permissions Manager" msgstr "Upravitelj Dozvola Uloge" @@ -22164,11 +22264,11 @@ msgstr "Vrijednosti Reda Promijenjene" msgid "Row {0}" msgstr "Red {0}" -#: frappe/custom/doctype/customize_form/customize_form.py:353 +#: frappe/custom/doctype/customize_form/customize_form.py:357 msgid "Row {0}: Not allowed to disable Mandatory for standard fields" msgstr "Red {0}: Nije dozvoljeno onemogućiti Obavezno za standardna polja" -#: frappe/custom/doctype/customize_form/customize_form.py:342 +#: frappe/custom/doctype/customize_form/customize_form.py:346 msgid "Row {0}: Not allowed to enable Allow on Submit for standard fields" msgstr "Red {0}: Nije dozvoljeno omogućiti Dozvoli pri podnošenju za standardna polja" @@ -22187,7 +22287,10 @@ msgid "Rows Removed" msgstr "Ukonjeni Redovi" #. Label of the rows_threshold_for_grid_search (Int) field in DocType 'DocType' +#. Label of the rows_threshold_for_grid_search (Int) field in DocType +#. 'Customize Form' #: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Rows Threshold for Grid Search" msgstr "Prag redaka za Mrežu Pretraživanje" @@ -22395,8 +22498,8 @@ msgstr "Subota" #: 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:1957 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 +#: frappe/public/js/frappe/views/reports/query_report.js:1965 #: frappe/public/js/frappe/views/reports/report_view.js:1735 #: frappe/public/js/frappe/views/workspace/workspace.js:335 #: frappe/public/js/frappe/widgets/base_widget.js:142 @@ -22419,11 +22522,11 @@ msgstr "Spremi Kao" msgid "Save Customizations" msgstr "Spremi Prilagođavanja" -#: frappe/public/js/frappe/views/reports/query_report.js:1960 +#: frappe/public/js/frappe/views/reports/query_report.js:1968 msgid "Save Report" msgstr "Spremi Izvještaj" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:97 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:107 msgid "Save filters" msgstr "Spremi Filtere" @@ -22795,7 +22898,7 @@ msgstr "Sigurnosne Postavke" msgid "See all Activity" msgstr "Pogledaj Sve Aktivnosti" -#: frappe/public/js/frappe/views/reports/query_report.js:855 +#: frappe/public/js/frappe/views/reports/query_report.js:863 msgid "See all past reports." msgstr "Pogledaj sve prethodne izvještaje." @@ -22859,7 +22962,7 @@ 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:497 +#: frappe/public/js/frappe/form/grid_row.js:498 msgid "Select All" msgstr "Odaberi sve" @@ -22939,7 +23042,7 @@ msgstr "Odaberi Polje" msgid "Select Field..." msgstr "Odaberi Polje..." -#: frappe/public/js/frappe/form/grid_row.js:489 +#: frappe/public/js/frappe/form/grid_row.js:490 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:181 msgid "Select Fields" msgstr "Odaberi Polja" @@ -23059,8 +23162,8 @@ msgid "Select a field to edit its properties." msgstr "Odaberi polje da biste uredili njegova svojstva." #: frappe/public/js/frappe/views/treeview.js:358 -msgid "Select a group node first." -msgstr "Odaberi Grupu." +msgid "Select a group {0} first." +msgstr "Odaberi grupu {0}." #: frappe/core/doctype/doctype/doctype.py:1956 msgid "Select a valid Sender Field for creating documents from Email" @@ -23096,13 +23199,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:1445 +#: frappe/public/js/frappe/list/list_view.js:1447 msgctxt "Description of a list view shortcut" msgid "Select list item" msgstr "Odaberi Artikal Liste" -#: frappe/public/js/frappe/list/list_view.js:1397 -#: frappe/public/js/frappe/list/list_view.js:1413 +#: frappe/public/js/frappe/list/list_view.js:1399 +#: frappe/public/js/frappe/list/list_view.js:1415 msgctxt "Description of a list view shortcut" msgid "Select multiple list items" msgstr "Odaberi artikle više listi" @@ -23424,7 +23527,7 @@ msgstr "Serija Imenovanja {0} se već koristi u {1}" msgid "Server Action" msgstr "Radnja Servera" -#: frappe/app.py:396 frappe/public/js/frappe/request.js:611 +#: frappe/app.py:399 frappe/public/js/frappe/request.js:611 #: frappe/www/error.html:36 frappe/www/error.py:15 msgid "Server Error" msgstr "Greška Servera" @@ -23490,7 +23593,7 @@ msgstr "Standard Sesije" msgid "Session Defaults Saved" msgstr "Standard Postavke Sesije Spremljene" -#: frappe/app.py:373 +#: frappe/app.py:376 msgid "Session Expired" msgstr "Sesija Istekla" @@ -23499,7 +23602,7 @@ msgstr "Sesija Istekla" msgid "Session Expiry (idle timeout)" msgstr "Istek Sesije (vremensko ograničenje mirovanja)" -#: frappe/core/doctype/system_settings/system_settings.py:122 +#: frappe/core/doctype/system_settings/system_settings.py:123 msgid "Session Expiry must be in format {0}" msgstr "Istek Sesije mora biti u formatu {0}" @@ -23548,7 +23651,7 @@ msgstr "Postavi Filtere" msgid "Set Filters for {0}" msgstr "Postavi filtere za {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:2113 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 msgid "Set Level" msgstr "Postavi Nivo" @@ -23602,7 +23705,7 @@ msgstr "Postavi Količinu" msgid "Set Role For" msgstr "Postavi Ulogu za" -#: frappe/core/doctype/user/user.js:136 +#: frappe/core/doctype/user/user.js:124 #: frappe/core/page/permission_manager/permission_manager.js:72 msgid "Set User Permissions" msgstr "Postavi Korisničke Dozvole" @@ -23788,7 +23891,7 @@ msgstr "Postavljanje> Korisnik" msgid "Setup > User Permissions" msgstr "Postavljanje > Korisničke Dozvole" -#: frappe/public/js/frappe/views/reports/query_report.js:1826 +#: frappe/public/js/frappe/views/reports/query_report.js:1834 #: frappe/public/js/frappe/views/reports/report_view.js:1713 msgid "Setup Auto Email" msgstr "Postavljanje Automatske e-pošte" @@ -23929,6 +24032,12 @@ msgstr "Prikaži Dokument" msgid "Show Error" msgstr "Prikaži Grešku" +#. Label of the show_external_link_warning (Select) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Show External Link Warning" +msgstr "Prikaži upozorenje o eksternim linkovima" + #: frappe/public/js/frappe/form/layout.js:578 msgid "Show Fieldname (click to copy on clipboard)" msgstr "Prikaži Naziv Polja (klikni da kopirate u međuspremnik)" @@ -24057,7 +24166,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:1849 +#: frappe/public/js/frappe/list/list_view.js:1851 msgid "Show Tags" msgstr "Prikaži Oznake" @@ -24264,36 +24373,36 @@ msgstr "Prijava Onemogućena" msgid "Signups have been disabled for this website." 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 "Jednostavan Python izraz, primjer: Status u (\"Closed\", \"Cancelled\")" - #. 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 "Jednostavan Python izraz, primjer: Status u (\"Invalid\")" +msgid "Simple Python Expression, Example: status == \"Invalid\"" +msgstr "Jednostavan Python Izraz, Primjer: status == \"Invalid\"" #. 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 "Jednostavan Python Izraz, primjer: status == 'Open' i tip == 'Bug'" +msgid "Simple Python Expression, Example: status == 'Open' and issue_type == 'Bug'" +msgstr "Jednostavan Python Izraz, Primjer: status == 'Open' i issue_type == 'Bug'" + +#. 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 "Jednostavan Python Izraz, Primjer: status u (\"Closed\", \"Cancelled\")" #. Label of the simultaneous_sessions (Int) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Simultaneous Sessions" msgstr "Simultane Sesije" -#: frappe/custom/doctype/customize_form/customize_form.py:126 +#: frappe/custom/doctype/customize_form/customize_form.py:128 msgid "Single DocTypes cannot be customized." 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 +#: frappe/core/doctype/doctype/doctype_list.js:68 msgid "Single Types have only one record no tables associated. Values are stored in tabSingles" msgstr "Pojedinačni tipovi imaju samo jedan zapis bez pridruženih tablica. Vrijednosti se pohranjuju u tabSingles" @@ -24629,7 +24738,7 @@ msgid "Splash Image" msgstr "Uvodna Slika" #: frappe/desk/reportview.py:455 -#: frappe/public/js/frappe/web_form/web_form_list.js:175 +#: frappe/public/js/frappe/web_form/web_form_list.js:176 #: frappe/templates/print_formats/standard_macros.html:44 msgid "Sr" msgstr "Red" @@ -24661,7 +24770,7 @@ msgstr "Stack Trace" msgid "Standard" msgstr "Standard" -#: frappe/model/delete_doc.py:79 +#: frappe/model/delete_doc.py:119 msgid "Standard DocType can not be deleted." msgstr "Standardni DocType se ne može izbrisati." @@ -24931,7 +25040,7 @@ 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:454 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Sticky" msgstr "Sticky" @@ -24961,7 +25070,7 @@ msgstr "Korištenje Pohrane po Tabelama" msgid "Store Attached PDF Document" msgstr "Pohrani priloženi PDF Dokument" -#: frappe/core/doctype/user/user.js:490 +#: frappe/core/doctype/user/user.js:497 msgid "Store the API secret securely. It won't be displayed again." msgstr "Sačuvajte API tajnu na sigurnom mjestu. Neće biti više prikazivana." @@ -25073,6 +25182,7 @@ msgstr "Red Podnošenja" #. 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' +#. Button label of the request-to-delete-data Web Form #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/docshare/docshare.json @@ -25081,10 +25191,11 @@ msgstr "Red Podnošenja" #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/quick_entry.js:225 #: frappe/public/js/frappe/ui/capture.js:307 +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json msgid "Submit" msgstr "Rezerviši" -#: frappe/public/js/frappe/list/list_view.js:2231 +#: frappe/public/js/frappe/list/list_view.js:2233 msgctxt "Button in list view actions menu" msgid "Submit" msgstr "Rezerviši" @@ -25094,7 +25205,7 @@ msgctxt "Button in web form" msgid "Submit" msgstr "Pošalji" -#: frappe/public/js/frappe/ui/dialog.js:63 +#: frappe/public/js/frappe/ui/dialog.js:64 msgctxt "Primary action in dialog" msgid "Submit" msgstr "Pošalji" @@ -25142,7 +25253,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:2236 +#: frappe/public/js/frappe/list/list_view.js:2238 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "Pošalji {0} dokumenata?" @@ -25192,7 +25303,7 @@ msgstr "Podnaziv" #: 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:1171 +#: frappe/public/js/frappe/form/grid.js:1172 #: frappe/public/js/frappe/views/translation_manager.js:21 #: frappe/templates/includes/login/login.js:230 #: frappe/templates/includes/login/login.js:236 @@ -25407,7 +25518,7 @@ msgstr "Sinhronizacija u toku" msgid "Syncing {0} of {1}" msgstr "Sinhronizira se {0} od {1}" -#: frappe/utils/data.py:2547 +#: frappe/utils/data.py:2573 msgid "Syntax Error" msgstr "Greška Sintakse" @@ -25718,7 +25829,7 @@ msgstr "Višestruki Odabir Tabele" msgid "Table Trimmed" msgstr "Tabela Optimizirana" -#: frappe/public/js/frappe/form/grid.js:1170 +#: frappe/public/js/frappe/form/grid.js:1171 msgid "Table updated" msgstr "Tabela Ažurirana" @@ -25935,7 +26046,7 @@ msgstr "Hvala" msgid "The Auto Repeat for this document has been disabled." msgstr "Automatsko Ponavljanje za ovaj dokument je onemogućeno." -#: frappe/public/js/frappe/form/grid.js:1193 +#: frappe/public/js/frappe/form/grid.js:1194 msgid "The CSV format is case sensitive" msgstr "CSV format razlikuje velika i mala slova" @@ -26007,7 +26118,7 @@ msgstr "Komentar ne može biti prazan" msgid "The contents of this email are strictly confidential. Please do not forward this email to anyone." 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:685 +#: frappe/public/js/frappe/list/list_view.js:687 msgid "The count shown is an estimated count. Click here to see the accurate count." msgstr "Prikazani broj je procijenjen. Klikni ovdje da vidite tačan broj." @@ -26121,7 +26232,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:388 frappe/public/js/frappe/request.js:149 +#: frappe/app.py:391 frappe/public/js/frappe/request.js:149 msgid "The resource you are looking for is not available" msgstr "Resurs koji tražite nije dostupan" @@ -26194,12 +26305,12 @@ 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:965 +#: frappe/public/js/frappe/views/reports/query_report.js:973 msgid "There are {0} with the same filters already in the queue:" 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 +#: frappe/website/doctype/web_form/web_form.js:318 msgid "There can be only 9 Page Break fields in a Web Form" msgstr "U Web Formi može postojati samo 9 polja Prijeloma Stranice" @@ -26223,11 +26334,11 @@ msgstr "Ne postoji zadatak pod nazivom \"{}\"" msgid "There is nothing new to show you right now." msgstr "Trenutno nema ništa novo za pokazati." -#: frappe/core/doctype/file/file.py:640 frappe/utils/file_manager.py:372 +#: frappe/core/doctype/file/file.py:643 frappe/utils/file_manager.py:372 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:962 +#: frappe/public/js/frappe/views/reports/query_report.js:970 msgid "There is {0} with the same filters already in the queue:" msgstr "Postoji {0} s istim filterima već u redu čekanja:" @@ -26239,7 +26350,7 @@ msgstr "Mora postojati barem jedno pravilo dozvole." msgid "There was an error building this page" msgstr "Došlo je do greške pri izradi ove stranice" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:182 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:196 msgid "There was an error saving filters" msgstr "Došlo je do greške prilikom spremanja filtera" @@ -26296,7 +26407,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:391 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:405 msgid "This Kanban Board will be private" msgstr "Ova Oglasna Tabla će biti privatna" @@ -26333,7 +26444,7 @@ msgstr "Ova radnja je dozvoljena samo za {}" msgid "This cannot be undone" msgstr "Ovo se ne može poništiti" -#: frappe/desk/doctype/number_card/number_card.js:480 +#: frappe/desk/doctype/number_card/number_card.js:484 msgctxt "Number Card" msgid "This card is visible only to Administrator and System Managers by default. Set a DocType to share with users who have read access." msgstr "Ova kartica je prema standard postavkama vidljiva samo administratoru i odgovornim sistema. Postavite DocType za dijeljenje s korisnicima koji imaju pristup za čitanje." @@ -26356,7 +26467,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:113 +#: frappe/model/delete_doc.py:153 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." @@ -26402,7 +26513,7 @@ msgstr "Ovo polje će se pojaviti samo ako ovdje definirani naziv polja ima vrij "eval:doc.myfield=='Moja Vrijednost'\n" "eval:doc.age>18" -#: frappe/core/doctype/file/file.py:522 +#: frappe/core/doctype/file/file.py:525 msgid "This file is attached to a protected document and cannot be deleted." msgstr "Ova je datoteka priložena zaštićenom dokumentu i ne može se izbrisati." @@ -26437,7 +26548,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:2189 +#: frappe/public/js/frappe/views/reports/query_report.js:2197 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 +26598,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:1037 +#: frappe/public/js/frappe/views/reports/query_report.js:1045 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 +26606,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:853 +#: frappe/public/js/frappe/views/reports/query_report.js:861 msgid "This report was generated {0}." msgstr "Ovaj izvještaj je generisan {0}." @@ -26637,9 +26748,11 @@ 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' +#. Label of a field in the edit-profile Web Form #. 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/core/web_form/edit_profile/edit_profile.json #: frappe/desk/page/setup_wizard/setup_wizard.js:407 #: frappe/website/doctype/web_page_view/web_page_view.json msgid "Time Zone" @@ -26906,7 +27019,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:854 +#: frappe/public/js/frappe/views/reports/query_report.js:862 msgid "To get the updated report, click on {0}." msgstr "Da biste dobili ažurirani izvještaj, kliknite na {0}." @@ -26981,7 +27094,7 @@ msgstr "Uključi Prikaz Mreže" msgid "Toggle Sidebar" msgstr "Prebaci Bočnu Traku" -#: frappe/public/js/frappe/list/list_view.js:1964 +#: frappe/public/js/frappe/list/list_view.js:1966 msgctxt "Button in list view menu" msgid "Toggle Sidebar" msgstr "Prebaci Bočnu Traku" @@ -27107,7 +27220,7 @@ msgstr "Tema" #: frappe/desk/query_report.py:587 #: frappe/public/js/frappe/views/reports/print_grid.html:45 -#: frappe/public/js/frappe/views/reports/query_report.js:1324 +#: frappe/public/js/frappe/views/reports/query_report.js:1332 #: frappe/public/js/frappe/views/reports/report_view.js:1553 msgid "Total" msgstr "Ukupno" @@ -27266,7 +27379,7 @@ msgstr "Prelazi" msgid "Translatable" msgstr "Prevodivo" -#: frappe/public/js/frappe/views/reports/query_report.js:2244 +#: frappe/public/js/frappe/views/reports/query_report.js:2252 msgid "Translate Data" msgstr "Prevedi Podatke" @@ -27625,7 +27738,7 @@ msgstr "Nije moguće poslati poštu jer nedostaje račun e-pošte. Postavite zad msgid "Unable to update event" msgstr "Nije moguće ažurirati događaj" -#: frappe/core/doctype/file/file.py:486 +#: frappe/core/doctype/file/file.py:489 msgid "Unable to write file format for {0}" msgstr "Nije moguće napisati format datoteke za {0}" @@ -27634,7 +27747,7 @@ msgstr "Nije moguće napisati format datoteke za {0}" msgid "Unassign Condition" msgstr "Poništi Dodjelu Uslova" -#: frappe/app.py:396 +#: frappe/app.py:399 msgid "Uncaught Exception" msgstr "Neuhvaćena Iznimka" @@ -27650,7 +27763,7 @@ msgstr "Poništi" msgid "Undo last action" msgstr "Poništi posljednju radnju" -#: frappe/database/query.py:1495 +#: frappe/database/query.py:1497 msgid "Unescaped quotes in string literal: {0}" msgstr "Neizbjegnuti navodnici u niz literalu: {0}" @@ -27699,7 +27812,7 @@ msgstr "Nepoznata Kolona: {0}" msgid "Unknown Rounding Method: {}" msgstr "Nepoznata Metoda Zaokruživanja: {}" -#: frappe/auth.py:316 +#: frappe/auth.py:319 msgid "Unknown User" msgstr "Nepoznati Korisnik" @@ -27765,8 +27878,8 @@ msgstr "Parametri Otkazivanja" msgid "Unsubscribed" msgstr "Otkazano" -#: frappe/database/query.py:653 frappe/database/query.py:1387 -#: frappe/database/query.py:1397 +#: frappe/database/query.py:655 frappe/database/query.py:1389 +#: frappe/database/query.py:1399 msgid "Unsupported function or invalid field name: {0}" msgstr "Nepodržana funkcija ili nevažeći naziv polja: {0}" @@ -27800,7 +27913,7 @@ msgstr "Nadolazeći Događaji za Danas" #: 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:427 +#: frappe/public/js/frappe/form/grid_row.js:428 msgid "Update" msgstr "Ažuriraj" @@ -27834,6 +27947,11 @@ msgstr "Redoslijed ažuriranja" msgid "Update Password" msgstr "Ažuriraj Lozinku" +#. Title of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Update Profile" +msgstr "Ažuriraj Profil" + #. Label of the update_series (Section Break) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -28049,11 +28167,7 @@ msgstr "Koristi drugu e-poštu" msgid "Use if the default settings don't seem to detect your data correctly" msgstr "Koristi ako standard postavke ne očitavaju vaše podatke ispravno" -#: frappe/model/db_query.py:436 -msgid "Use of function {0} in field is restricted" -msgstr "Korištenje funkcije {0} u polju je ograničena" - -#: frappe/model/db_query.py:413 +#: frappe/model/db_query.py:411 msgid "Use of sub-query or function is restricted" msgstr "Korištenje podupita ili funkcije je ograničena" @@ -28275,12 +28389,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:1944 +#: frappe/public/js/frappe/views/reports/query_report.js:1952 #: frappe/public/js/frappe/views/reports/report_view.js:1761 msgid "User Permissions" msgstr "Korisničke Dozvole" -#: frappe/public/js/frappe/list/list_view.js:1922 +#: frappe/public/js/frappe/list/list_view.js:1924 msgctxt "Button in list view menu" msgid "User Permissions" msgstr "Korisničke Dozvole" @@ -28424,7 +28538,7 @@ msgstr "Korisnik {0} predstavljen kao {1}" msgid "User {0} is disabled" msgstr "Korisnik {0} je onemogućen" -#: frappe/sessions.py:242 +#: frappe/sessions.py:243 msgid "User {0} is disabled. Please contact your System Manager." msgstr "Korisnik {0} je onemogućen. Molimo kontaktirajte svog upravitelja sistema." @@ -28601,7 +28715,7 @@ msgstr "Vrijednost ne može biti negativna za {0}: {1}" msgid "Value for a check field can be either 0 or 1" msgstr "Vrijednost polja za provjeru može biti 0 ili 1" -#: frappe/custom/doctype/customize_form/customize_form.py:612 +#: frappe/custom/doctype/customize_form/customize_form.py:616 msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters" msgstr "Vrijednost za polje {0} je predugačka u {1}. Dužina bi trebala biti manja od {2} znakova" @@ -28722,7 +28836,7 @@ msgstr "Prikaži Sve" msgid "View Audit Trail" msgstr "Prikaži Trag" -#: frappe/core/doctype/user/user.js:156 +#: frappe/core/doctype/user/user.js:144 msgid "View Doctype Permissions" msgstr "Prikaz Doctype Dozvola" @@ -28734,7 +28848,7 @@ msgstr "Prikaži datoteku" msgid "View Full Log" msgstr "Prikaži Cijeli Zapisnik" -#: frappe/public/js/frappe/views/treeview.js:484 +#: frappe/public/js/frappe/views/treeview.js:486 #: frappe/public/js/frappe/widgets/quick_list_widget.js:258 msgid "View List" msgstr "Prikaži Listu" @@ -28744,7 +28858,7 @@ msgstr "Prikaži Listu" msgid "View Log" msgstr "Prikaži Zapisnik" -#: frappe/core/doctype/user/user.js:147 +#: frappe/core/doctype/user/user.js:135 #: frappe/core/doctype/user_permission/user_permission.js:24 msgid "View Permitted Documents" msgstr "Prikaži Dozvoljene Dokumente" @@ -28860,6 +28974,7 @@ msgid "Warehouse" msgstr "Skladište" #. Option for the 'Style' (Select) field in DocType 'Workflow State' +#: frappe/public/js/frappe/router.js:613 #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Warning" msgstr "Upozorenje" @@ -29505,7 +29620,7 @@ msgstr "Radni Tok je uspješno ažuriran" msgid "Workspace" msgstr "Radni Prostor" -#: frappe/public/js/frappe/router.js:175 +#: frappe/public/js/frappe/router.js:180 msgid "Workspace {0} does not exist" msgstr "Radni Prostor {0} ne postoji" @@ -29627,7 +29742,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:1225 +#: frappe/public/js/frappe/views/reports/query_report.js:1233 msgid "Y Field" msgstr "Y Polje" @@ -29689,7 +29804,7 @@ msgstr "Žuta" #: frappe/public/js/form_builder/utils.js:336 #: frappe/public/js/frappe/form/controls/link.js:498 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1665 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 #: frappe/website/doctype/help_article/templates/help_article.html:25 msgid "Yes" msgstr "Da" @@ -29725,6 +29840,10 @@ msgstr "Dodali ste 1 red u {0}" msgid "You added {0} rows to {1}" msgstr "Dodali ste {0} redova u {1}" +#: frappe/public/js/frappe/router.js:642 +msgid "You are about to open an external link. To confirm, click the link again." +msgstr "Upravo ćete otvoriti eksterni link. Za potvrdu, ponovo kliknite na link." + #: frappe/public/js/frappe/dom.js:438 msgid "You are connected to internet." msgstr "Povezani ste na internet." @@ -29768,7 +29887,7 @@ msgstr "Nije vam dozvoljeno uređivati izvještaj." msgid "You are not allowed to export {} doctype" msgstr "Nije vam dozvoljeno da izvezete {} doctype" -#: frappe/public/js/frappe/views/treeview.js:448 +#: frappe/public/js/frappe/views/treeview.js:450 msgid "You are not allowed to print this report" msgstr "Nije vam dozvoljeno da ispišete ovaj izveštaj" @@ -29776,7 +29895,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:605 +#: frappe/website/doctype/web_form/web_form.py:632 msgid "You are not allowed to update this Web Form Document" msgstr "Nije vam dozvoljeno ažurirati ovaj dokument web forme" @@ -29849,11 +29968,11 @@ 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:137 +#: frappe/model/delete_doc.py:177 msgid "You can disable this {0} instead of deleting it." msgstr "Možete onemogućiti ovo {0} umjesto da ga obrišete." -#: frappe/core/doctype/file/file.py:758 +#: frappe/core/doctype/file/file.py:761 msgid "You can increase the limit from System Settings." msgstr "Ograničenje možete povećati u Postavkama Sistema." @@ -29903,11 +30022,11 @@ msgstr "Možete koristiti Prilagodi Formu za postavljanje nivoa na poljima." msgid "You can use wildcard %" msgstr "Možete koristiti zamjenski znak %" -#: frappe/custom/doctype/customize_form/customize_form.py:390 +#: frappe/custom/doctype/customize_form/customize_form.py:394 msgid "You can't set 'Options' for field {0}" msgstr "Ne možete postaviti 'Opcije' za polje {0}" -#: frappe/custom/doctype/customize_form/customize_form.py:394 +#: frappe/custom/doctype/customize_form/customize_form.py:398 msgid "You can't set 'Translatable' for field {0}" msgstr "Ne možete postaviti 'Prevodivo' za polje {0}" @@ -29925,7 +30044,7 @@ msgstr "Otkazali ste ovaj dokument {1}" msgid "You cannot create a dashboard chart from single DocTypes" msgstr "Ne možete stvoriti grafikon nadzorne table iz jednog tipa dokumenata" -#: frappe/custom/doctype/customize_form/customize_form.py:386 +#: frappe/custom/doctype/customize_form/customize_form.py:390 msgid "You cannot unset 'Read Only' for field {0}" msgstr "Ne možete poništiti 'Samo za Čitanje' za polje {0}" @@ -29968,11 +30087,11 @@ 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:381 +#: frappe/app.py:384 msgid "You do not have enough permissions to complete the action" msgstr "Nemate dovoljno dozvola da dovršite radnju" -#: frappe/database/query.py:529 +#: frappe/database/query.py:531 msgid "You do not have permission to access field: {0}" msgstr "Nemate dozvolu za pristup polju: {0}" @@ -29988,7 +30107,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:808 +#: frappe/website/doctype/web_form/web_form.py:835 msgid "You don't have permission to access the {0} DocType." msgstr "Nemate dozvolu za pristup {0} DocType." @@ -30012,7 +30131,7 @@ msgstr "Imate novu poruku od:" msgid "You have been successfully logged out" msgstr "Uspješno ste odjavljeni" -#: frappe/custom/doctype/customize_form/customize_form.py:245 +#: frappe/custom/doctype/customize_form/customize_form.py:247 msgid "You have hit the row size limit on database table: {0}" msgstr "Dostigli ste ograničenje veličine reda u tabeli baze podataka: {0}" @@ -30040,7 +30159,7 @@ msgstr "Niste vidjeli {0}" msgid "You haven't added any Dashboard Charts or Number Cards yet." msgstr "Još niste dodali Grafikon Nadrzorne Table ili Numeričke Kartice." -#: frappe/public/js/frappe/list/list_view.js:501 +#: frappe/public/js/frappe/list/list_view.js:503 msgid "You haven't created a {0} yet" msgstr "{0} nema u sistemu" @@ -30057,11 +30176,11 @@ 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:804 +#: frappe/website/doctype/web_form/web_form.py:831 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:645 +#: frappe/website/doctype/web_form/web_form.py:672 msgid "You must login to submit this form" msgstr "Morate se prijaviti da pošaljete ovu formu" @@ -30176,6 +30295,10 @@ msgstr "Prestali ste pratiti ovaj dokument" msgid "You viewed this" msgstr "Prikazali ste ovo" +#: frappe/public/js/frappe/router.js:653 +msgid "You will be redirected to:" +msgstr "Bit ćete preusmjereni na:" + #: frappe/core/doctype/user_invitation/user_invitation.py:113 msgid "You've been invited to join {0}" msgstr "Pozvani ste da se pridružite {0}" @@ -30221,7 +30344,7 @@ msgstr "Vaše Prečice" msgid "Your account has been deleted" msgstr "Vaš Račun je izbrisan" -#: frappe/auth.py:514 +#: frappe/auth.py:517 msgid "Your account has been locked and will resume after {0} seconds" msgstr "Vaš račun je zaključan i nastavit će se nakon {0} sekundi" @@ -30287,7 +30410,7 @@ msgstr "Vaš upit je primljen. Odgovorit ćemo vam uskoro. Ako imate dodatnih in msgid "Your report is being generated in the background. You will receive an email on {0} with a download link once it is ready." msgstr "Vaš izvještaj se generira u pozadini. Primit ćete e-poruku na {0} s linkom za preuzimanje kada bude spreman." -#: frappe/app.py:374 +#: frappe/app.py:377 msgid "Your session has expired, please login again to continue." msgstr "Vaša sesija je istekla, prijavite se ponovo da nastavite." @@ -30624,7 +30747,7 @@ msgstr "lista" msgid "logged in" msgstr "prijavljen" -#: frappe/website/doctype/web_form/web_form.js:362 +#: frappe/website/doctype/web_form/web_form.js:363 msgid "login_required" msgstr "prijava_potrebna" @@ -30962,7 +31085,7 @@ msgstr "putem Uvoza Podataka" msgid "via Google Meet" msgstr "putem Google Meet" -#: frappe/email/doctype/notification/notification.py:403 +#: frappe/email/doctype/notification/notification.py:405 msgid "via Notification" msgstr "putem Obavijesti" @@ -31072,7 +31195,7 @@ msgstr "{0} Grafikon" msgid "{0} Dashboard" msgstr "{0} Nadzorna Tabla" -#: frappe/public/js/frappe/form/grid_row.js:486 +#: frappe/public/js/frappe/form/grid_row.js:487 #: frappe/public/js/frappe/list/list_settings.js:225 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:178 msgid "{0} Fields" @@ -31123,7 +31246,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:956 +#: frappe/public/js/frappe/views/reports/query_report.js:964 msgid "{0} Reports" msgstr "{0} Izvještaja" @@ -31196,7 +31319,7 @@ msgctxt "Form timeline" msgid "{0} attached {1}" msgstr "{0} priloženo {1}" -#: frappe/core/doctype/system_settings/system_settings.py:152 +#: frappe/core/doctype/system_settings/system_settings.py:153 msgid "{0} can not be more than {1}" msgstr "{0} ne može biti više od {1}" @@ -31273,7 +31396,7 @@ 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 +#: frappe/database/query.py:710 msgid "{0} fields cannot contain backticks (`): {1}" msgstr "Polja {0} ne mogu sadržavati povratne naznake (`): {1}" @@ -31318,7 +31441,7 @@ msgstr "{0} u redu {1} ne može imati i URL i podređene artikle" msgid "{0} is a mandatory field" msgstr "{0} je obavezno polje" -#: frappe/core/doctype/file/file.py:566 +#: frappe/core/doctype/file/file.py:569 msgid "{0} is a not a valid zip file" msgstr "{0} nije važeća zip datoteka" @@ -31367,7 +31490,7 @@ msgstr "{0} je kao {1}" msgid "{0} is mandatory" msgstr "{0} je obavezan" -#: frappe/database/query.py:485 +#: frappe/database/query.py:487 msgid "{0} is not a child table of {1}" msgstr "{0} nije podređena tabela od {1}" @@ -31387,7 +31510,7 @@ msgstr "{0} nije važeći Kalendar. Preusmjeravanje na Standard Kalendar." msgid "{0} is not a valid Cron expression." msgstr "{0} nije važeći Cron izraz." -#: frappe/public/js/frappe/form/controls/dynamic_link.js:27 +#: frappe/public/js/frappe/form/controls/dynamic_link.js:23 msgid "{0} is not a valid DocType for Dynamic Link" msgstr "{0} nije važeća DocType za dinamičku vezu" @@ -31424,7 +31547,7 @@ msgstr "{0} nije važeće nadređeno polje za {1}" 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}" -#: frappe/core/doctype/file/file.py:546 +#: frappe/core/doctype/file/file.py:549 msgid "{0} is not a zip file" msgstr "{0} nije zip datoteka" @@ -31472,7 +31595,7 @@ msgstr "{0} je postavljeno" msgid "{0} is within {1}" msgstr "{0} je unutar {1}" -#: frappe/public/js/frappe/list/list_view.js:1839 +#: frappe/public/js/frappe/list/list_view.js:1841 msgid "{0} items selected" msgstr "{0} artikala odabrano" @@ -31558,11 +31681,11 @@ msgid "{0} not found" msgstr "{0} nije pronađen" #: frappe/core/doctype/report/report.py:427 -#: frappe/public/js/frappe/list/list_view.js:1211 +#: frappe/public/js/frappe/list/list_view.js:1213 msgid "{0} of {1}" msgstr "{0} od {1}" -#: frappe/public/js/frappe/list/list_view.js:1213 +#: frappe/public/js/frappe/list/list_view.js:1215 msgid "{0} of {1} ({2} rows with children)" msgstr "{0} od {1} ({2} redovi sa potomcima)" @@ -31612,7 +31735,7 @@ msgstr "{0} je uklonio(la) svoju dodjelu." msgid "{0} removed {1} rows from {2}" msgstr "{0} je uklonilo {1} redova iz {2}" -#: frappe/public/js/frappe/roles_editor.js:62 +#: frappe/public/js/frappe/roles_editor.js:64 msgid "{0} role does not have permission on any doctype" msgstr "{0} uloga nema dozvolu ni za jedan tip dokumenta" @@ -31686,7 +31809,7 @@ msgstr "{0} do {1}" msgid "{0} un-shared this document with {1}" msgstr "{0} je prekinuo(la) dijeljenje ovog dokumenta sa {1}" -#: frappe/custom/doctype/customize_form/customize_form.py:254 +#: frappe/custom/doctype/customize_form/customize_form.py:256 msgid "{0} updated" msgstr "{0} ažurirano" @@ -31746,7 +31869,7 @@ msgstr "{0} {1} je povezan sa sljedećim podesenim dokumentima: {2}" msgid "{0} {1} not found" msgstr "{0} {1} nije pronađeno" -#: frappe/model/delete_doc.py:248 +#: frappe/model/delete_doc.py:288 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}." @@ -31859,7 +31982,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:1283 +#: frappe/public/js/frappe/views/reports/query_report.js:1291 msgid "{0}: {1} vs {2}" msgstr "{0}: {1} naspram {2}" @@ -31895,11 +32018,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:2541 +#: frappe/utils/data.py:2567 msgid "{} Invalid python code on line {}" msgstr "{} Nevažeći python kod na liniji {}" -#: frappe/utils/data.py:2550 +#: frappe/utils/data.py:2576 msgid "{} Possibly invalid python code.
{}" msgstr "{} Možda nevažeći python kod.
{}" @@ -31925,7 +32048,7 @@ msgstr "{} je onemogućen. Može se omogućiti samo ako je označeno {}." msgid "{} is not a valid date string." msgstr "{} nije ispravan datumski niz." -#: frappe/commands/utils.py:562 +#: frappe/commands/utils.py:561 msgid "{} not found in PATH! This is required to access the console." msgstr "{} nije pronađeno u PATH! Ovo je potrebno za pristup konzoli." diff --git a/frappe/locale/cs.po b/frappe/locale/cs.po index 493f5d85b7..4b318d5c4f 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-09-21 09:33+0000\n" -"PO-Revision-Date: 2025-09-21 19:57\n" +"POT-Creation-Date: 2025-10-05 09:33+0000\n" +"PO-Revision-Date: 2025-10-06 22:59\n" "Last-Translator: developers@frappe.io\n" "Language-Team: Czech\n" "MIME-Version: 1.0\n" @@ -78,7 +78,7 @@ msgstr "" msgid "'In List View' is not allowed for field {0} of type {1}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:363 +#: frappe/custom/doctype/customize_form/customize_form.py:367 msgid "'In List View' not allowed for type {0} in row {1}" msgstr "" @@ -122,7 +122,7 @@ msgstr "" msgid "0 is highest" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:892 +#: frappe/public/js/frappe/form/grid_row.js:893 msgid "1 = True & 0 = False" msgstr "" @@ -140,11 +140,11 @@ msgstr "" msgid "1 Google Calendar Event synced." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:955 +#: frappe/public/js/frappe/views/reports/query_report.js:963 msgid "1 Report" msgstr "" -#: frappe/tests/test_utils.py:739 +#: frappe/tests/test_utils.py:845 msgid "1 day ago" msgstr "" @@ -153,17 +153,17 @@ msgid "1 hour" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:52 -#: frappe/tests/test_utils.py:737 +#: frappe/tests/test_utils.py:843 msgid "1 hour ago" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:48 -#: frappe/tests/test_utils.py:735 +#: frappe/tests/test_utils.py:841 msgid "1 minute ago" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:66 -#: frappe/tests/test_utils.py:743 +#: frappe/tests/test_utils.py:849 msgid "1 month ago" msgstr "" @@ -185,37 +185,37 @@ msgctxt "User added row to child table" msgid "1 row to {0}" msgstr "" -#: frappe/tests/test_utils.py:734 +#: frappe/tests/test_utils.py:840 msgid "1 second ago" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:62 -#: frappe/tests/test_utils.py:741 +#: frappe/tests/test_utils.py:847 msgid "1 week ago" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:70 -#: frappe/tests/test_utils.py:745 +#: frappe/tests/test_utils.py:851 msgid "1 year ago" msgstr "" -#: frappe/tests/test_utils.py:738 +#: frappe/tests/test_utils.py:844 msgid "2 hours ago" msgstr "" -#: frappe/tests/test_utils.py:744 +#: frappe/tests/test_utils.py:850 msgid "2 months ago" msgstr "" -#: frappe/tests/test_utils.py:742 +#: frappe/tests/test_utils.py:848 msgid "2 weeks ago" msgstr "" -#: frappe/tests/test_utils.py:746 +#: frappe/tests/test_utils.py:852 msgid "2 years ago" msgstr "" -#: frappe/tests/test_utils.py:736 +#: frappe/tests/test_utils.py:842 msgid "3 minutes ago" msgstr "" @@ -231,7 +231,7 @@ msgstr "" msgid "5 Records" msgstr "" -#: frappe/tests/test_utils.py:740 +#: frappe/tests/test_utils.py:846 msgid "5 days ago" msgstr "" @@ -267,6 +267,16 @@ msgstr "" 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 "" +#. Introduction text of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "

Request a file containing your personally identifiable information (PII) that is saved on our system. The file will be in JSON format and is sent to you by email. If you would like to have your PII deleted from our system, please make a request to delete data.

" +msgstr "" + +#. Introduction text of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "

Send a request to delete your account and personally identifiable information (PII) that is stored on our system. You will receive an email to verify your request. Once the request is verified we will take care of deleting your PII. If you just want to check what PII we have stored, you can request your data.

" +msgstr "" + #. Content of the 'Help HTML' (HTML) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -568,6 +578,11 @@ msgstr "" msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three." msgstr "" +#. Success message of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "A download link with your data will be sent to the email address associated with your account." +msgstr "" + #: frappe/custom/doctype/custom_field/custom_field.py:175 msgid "A field with the name {0} already exists in {1}" msgstr "" @@ -694,7 +709,7 @@ msgstr "" #. 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.js:452 frappe/core/doctype/user/user.json +#: frappe/core/doctype/user/user.js:459 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 @@ -713,7 +728,7 @@ msgstr "" msgid "API Key cannot be regenerated" msgstr "" -#: frappe/core/doctype/user/user.js:449 +#: frappe/core/doctype/user/user.js:456 msgid "API Keys" msgstr "" @@ -737,7 +752,7 @@ msgstr "" #. 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.js:459 frappe/core/doctype/user/user.json +#: frappe/core/doctype/user/user.js:466 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" @@ -823,7 +838,7 @@ msgstr "" msgid "Access Token URL" msgstr "" -#: frappe/auth.py:491 +#: frappe/auth.py:494 msgid "Access not allowed from this IP Address" msgstr "" @@ -939,7 +954,7 @@ msgstr "" #: 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:842 +#: frappe/public/js/frappe/views/reports/query_report.js:850 msgid "Actions" msgstr "" @@ -996,7 +1011,7 @@ msgstr "" #: 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:501 +#: frappe/public/js/frappe/form/grid_row.js:502 #: 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 @@ -1007,7 +1022,7 @@ msgstr "" msgid "Add" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:454 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Add / Remove Columns" msgstr "" @@ -1052,8 +1067,8 @@ msgid "Add Child" msgstr "" #: frappe/public/js/frappe/views/kanban/kanban_board.html:4 -#: frappe/public/js/frappe/views/reports/query_report.js:1832 -#: frappe/public/js/frappe/views/reports/query_report.js:1835 +#: frappe/public/js/frappe/views/reports/query_report.js:1840 +#: frappe/public/js/frappe/views/reports/query_report.js:1843 #: frappe/public/js/frappe/views/reports/report_view.js:360 #: frappe/public/js/frappe/views/reports/report_view.js:385 #: frappe/public/js/print_format_builder/Field.vue:112 @@ -1147,7 +1162,7 @@ msgstr "" msgid "Add Tags" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2149 +#: frappe/public/js/frappe/list/list_view.js:2151 msgctxt "Button in list view actions menu" msgid "Add Tags" msgstr "" @@ -1528,11 +1543,11 @@ msgstr "" msgid "Alerts and Notifications" msgstr "" -#: frappe/database/query.py:1608 +#: frappe/database/query.py:1610 msgid "Alias cannot be a SQL keyword: {0}" msgstr "" -#: frappe/database/query.py:1533 +#: frappe/database/query.py:1535 msgid "Alias must be a string" msgstr "" @@ -1979,6 +1994,12 @@ msgstr "" msgid "Alternative Email ID" msgstr "" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Always" +msgstr "" + #. Label of the always_bcc (Data) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Always BCC Address" @@ -2055,6 +2076,11 @@ msgstr "" msgid "Amendment naming rules updated." msgstr "" +#. Success message of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "An email to verify your request has been sent to your email address. Please verify your request to complete the process." +msgstr "" + #: frappe/public/js/frappe/ui/toolbar/toolbar.js:354 msgid "An error occurred while setting Session Defaults" msgstr "" @@ -2237,7 +2263,7 @@ msgstr "" msgid "Apply" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2134 +#: frappe/public/js/frappe/list/list_view.js:2136 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" msgstr "" @@ -2322,7 +2348,7 @@ msgstr "" msgid "Are you sure you want to cancel the invitation?" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2113 +#: frappe/public/js/frappe/list/list_view.js:2115 msgid "Are you sure you want to clear the assignments?" msgstr "" @@ -2358,7 +2384,7 @@ msgstr "" msgid "Are you sure you want to discard the changes?" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:969 +#: frappe/public/js/frappe/views/reports/query_report.js:977 msgid "Are you sure you want to generate a new report?" msgstr "" @@ -2366,7 +2392,7 @@ msgstr "" msgid "Are you sure you want to merge {0} with {1}?" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:108 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:118 msgid "Are you sure you want to proceed?" msgstr "" @@ -2421,6 +2447,12 @@ msgstr "" msgid "As per your request, your account and data on {0} associated with email {1} has been permanently deleted" msgstr "" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Ask" +msgstr "" + #. Label of the assign_condition (Code) field in DocType 'Assignment Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Assign Condition" @@ -2430,7 +2462,7 @@ msgstr "" msgid "Assign To" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2095 +#: frappe/public/js/frappe/list/list_view.js:2097 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "" @@ -2573,7 +2605,7 @@ msgstr "" msgid "Asynchronous" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:696 +#: frappe/public/js/frappe/form/grid_row.js:697 msgid "At least one column is required to show in the grid." msgstr "" @@ -3553,7 +3585,7 @@ msgstr "" msgid "Bulk Edit" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1189 +#: frappe/public/js/frappe/form/grid.js:1190 msgid "Bulk Edit {0}" msgstr "" @@ -3845,7 +3877,7 @@ msgstr "" #. 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/doctype/doctype_list.js:131 #: frappe/core/doctype/user_document_type/user_document_type.json #: frappe/core/doctype/user_invitation/user_invitation.js:17 #: frappe/email/doctype/notification/notification.json @@ -3853,7 +3885,7 @@ msgstr "" msgid "Cancel" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2204 +#: frappe/public/js/frappe/list/list_view.js:2206 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "" @@ -3871,7 +3903,7 @@ msgstr "" msgid "Cancel All Documents" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2209 +#: frappe/public/js/frappe/list/list_view.js:2211 msgctxt "Title of confirmation dialog" msgid "Cancel {0} documents?" msgstr "" @@ -3924,7 +3956,7 @@ msgstr "" msgid "Cannot Update After Submit" msgstr "" -#: frappe/core/doctype/file/file.py:643 +#: frappe/core/doctype/file/file.py:646 msgid "Cannot access file path {0}" msgstr "" @@ -3972,7 +4004,7 @@ msgstr "" msgid "Cannot delete Home and Attachments folders" msgstr "" -#: frappe/model/delete_doc.py:379 +#: frappe/model/delete_doc.py:419 msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}" msgstr "" @@ -4052,7 +4084,7 @@ msgstr "" msgid "Cannot find file {} on disk" msgstr "" -#: frappe/core/doctype/file/file.py:583 +#: frappe/core/doctype/file/file.py:586 msgid "Cannot get file contents of a Folder" msgstr "" @@ -4060,7 +4092,7 @@ msgstr "" msgid "Cannot have multiple printers mapped to a single print format." msgstr "" -#: frappe/public/js/frappe/form/grid.js:1133 +#: frappe/public/js/frappe/form/grid.js:1134 msgid "Cannot import table with more than 5000 rows." msgstr "" @@ -4076,7 +4108,7 @@ msgstr "" msgid "Cannot match column {0} with any field" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:175 +#: frappe/public/js/frappe/form/grid_row.js:176 msgid "Cannot move row" msgstr "" @@ -4105,11 +4137,11 @@ msgstr "" msgid "Cannot update {0}" msgstr "" -#: frappe/model/db_query.py:1130 +#: frappe/model/db_query.py:1136 msgid "Cannot use sub-query here." msgstr "" -#: frappe/model/db_query.py:1162 +#: frappe/model/db_query.py:1168 msgid "Cannot use {0} in order/group by" msgstr "" @@ -4381,11 +4413,11 @@ msgstr "" #. Description of the 'Is Child Table' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:52 +#: frappe/core/doctype/doctype/doctype_list.js:53 msgid "Child Tables are shown as a Grid in other DocTypes" msgstr "" -#: frappe/database/query.py:660 +#: frappe/database/query.py:662 msgid "Child query fields for '{0}' must be a list or tuple." msgstr "" @@ -4441,7 +4473,7 @@ msgstr "" msgid "Clear All" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2110 +#: frappe/public/js/frappe/list/list_view.js:2112 msgctxt "Button in list view actions menu" msgid "Clear Assignment" msgstr "" @@ -4535,7 +4567,7 @@ msgstr "" msgid "Click to Set Filters" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:739 +#: frappe/public/js/frappe/list/list_view.js:741 msgid "Click to sort by {0}" msgstr "" @@ -4713,7 +4745,7 @@ msgctxt "Shrink code field." msgid "Collapse" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2113 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 #: frappe/public/js/frappe/views/treeview.js:123 msgid "Collapse All" msgstr "" @@ -4768,7 +4800,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:1233 +#: frappe/public/js/frappe/views/reports/query_report.js:1241 #: frappe/public/js/frappe/widgets/widget_dialog.js:546 #: frappe/public/js/frappe/widgets/widget_dialog.js:694 #: frappe/website/doctype/color/color.json @@ -4824,11 +4856,11 @@ msgstr "" msgid "Column Name cannot be empty" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:454 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Column Width" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:661 +#: frappe/public/js/frappe/form/grid_row.js:662 msgid "Column width cannot be zero." msgstr "" @@ -4855,7 +4887,7 @@ msgstr "" msgid "Columns / Fields" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:397 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:411 msgid "Columns based on" msgstr "" @@ -5119,7 +5151,7 @@ msgstr "" msgid "Configure Chart" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:406 +#: frappe/public/js/frappe/form/grid_row.js:407 msgid "Configure Columns" msgstr "" @@ -5144,7 +5176,7 @@ msgstr "" msgid "Configure various aspects of how document naming works like naming series, current counter." msgstr "" -#: frappe/core/doctype/user/user.js:412 frappe/public/js/frappe/dom.js:345 +#: frappe/core/doctype/user/user.js:400 frappe/public/js/frappe/dom.js:345 #: frappe/www/update-password.html:66 msgid "Confirm" msgstr "" @@ -5163,7 +5195,7 @@ msgstr "" msgid "Confirm Deletion of Account" msgstr "" -#: frappe/core/doctype/user/user.js:196 +#: frappe/core/doctype/user/user.js:184 msgid "Confirm New Password" msgstr "" @@ -5416,7 +5448,7 @@ msgstr "" msgid "Copy to Clipboard" msgstr "" -#: frappe/core/doctype/user/user.js:480 +#: frappe/core/doctype/user/user.js:487 msgid "Copy token to clipboard" msgstr "" @@ -5425,7 +5457,7 @@ msgstr "" msgid "Copyright" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:123 +#: frappe/custom/doctype/customize_form/customize_form.py:125 msgid "Core DocTypes cannot be customized." msgstr "" @@ -5449,7 +5481,7 @@ msgstr "" msgid "Could not map column {0} to field {1}" msgstr "" -#: frappe/database/query.py:564 +#: frappe/database/query.py:566 msgid "Could not parse field: {0}" msgstr "" @@ -5541,13 +5573,13 @@ 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:1265 +#: frappe/public/js/frappe/views/reports/query_report.js:1273 #: frappe/public/js/frappe/views/workspace/workspace.js:469 #: frappe/workflow/page/workflow_builder/workflow_builder.js:46 msgid "Create" msgstr "" -#: frappe/core/doctype/doctype/doctype_list.js:102 +#: frappe/core/doctype/doctype/doctype_list.js:103 msgid "Create & Continue" msgstr "" @@ -5561,7 +5593,7 @@ msgid "Create Card" msgstr "" #: frappe/public/js/frappe/views/reports/query_report.js:285 -#: frappe/public/js/frappe/views/reports/query_report.js:1192 +#: frappe/public/js/frappe/views/reports/query_report.js:1200 msgid "Create Chart" msgstr "" @@ -5595,12 +5627,12 @@ msgstr "" msgid "Create New" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:512 +#: frappe/public/js/frappe/list/list_view.js:514 msgctxt "Create a new document from list view" msgid "Create New" msgstr "" -#: frappe/core/doctype/doctype/doctype_list.js:100 +#: frappe/core/doctype/doctype/doctype_list.js:101 msgid "Create New DocType" msgstr "" @@ -5608,7 +5640,7 @@ msgstr "" msgid "Create New Kanban Board" msgstr "" -#: frappe/core/doctype/user/user.js:276 +#: frappe/core/doctype/user/user.js:264 msgid "Create User Email" msgstr "" @@ -5631,8 +5663,8 @@ msgstr "" #: frappe/public/js/frappe/form/controls/link.js:315 #: frappe/public/js/frappe/form/controls/link.js:317 #: frappe/public/js/frappe/form/link_selector.js:139 -#: frappe/public/js/frappe/list/list_view.js:504 -#: frappe/public/js/frappe/web_form/web_form_list.js:225 +#: frappe/public/js/frappe/list/list_view.js:506 +#: frappe/public/js/frappe/web_form/web_form_list.js:226 msgid "Create a new {0}" msgstr "" @@ -5648,7 +5680,7 @@ msgstr "" msgid "Create or Edit Workflow" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:507 +#: frappe/public/js/frappe/list/list_view.js:509 msgid "Create your first {0}" msgstr "" @@ -5995,7 +6027,7 @@ 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/core/doctype/doctype/doctype_list.js:83 #: frappe/website/doctype/website_theme/website_theme.json msgid "Custom?" msgstr "" @@ -6030,7 +6062,7 @@ msgstr "" msgid "Customize" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1947 +#: frappe/public/js/frappe/list/list_view.js:1949 msgctxt "Button in list view menu" msgid "Customize" msgstr "" @@ -6049,7 +6081,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:343 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 msgid "Customize Form" msgstr "" @@ -6280,7 +6312,7 @@ msgstr "" msgid "Data Import Template" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:615 +#: frappe/custom/doctype/customize_form/customize_form.py:619 msgid "Data Too Long" msgstr "" @@ -6311,7 +6343,7 @@ msgstr "" msgid "Database Storage Usage By Tables" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:249 +#: frappe/custom/doctype/customize_form/customize_form.py:251 msgid "Database Table Row Size Limit" msgstr "" @@ -6681,13 +6713,13 @@ msgstr "" #: frappe/public/js/frappe/form/toolbar.js:464 #: frappe/public/js/frappe/views/reports/report_view.js:1749 #: frappe/public/js/frappe/views/treeview.js:329 -#: frappe/public/js/frappe/web_form/web_form_list.js:282 +#: frappe/public/js/frappe/web_form/web_form_list.js:283 #: frappe/templates/discussions/reply_card.html:35 #: frappe/templates/discussions/reply_section.html:29 msgid "Delete" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2172 +#: frappe/public/js/frappe/list/list_view.js:2174 msgctxt "Button in list view actions menu" msgid "Delete" msgstr "" @@ -6720,7 +6752,7 @@ msgstr "" msgid "Delete Data" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:106 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:116 msgid "Delete Kanban Board" msgstr "" @@ -6734,7 +6766,7 @@ msgctxt "Title of confirmation dialog" msgid "Delete Tab" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:936 +#: frappe/public/js/frappe/views/reports/query_report.js:944 msgid "Delete and Generate New" msgstr "" @@ -6776,12 +6808,12 @@ msgstr "" msgid "Delete this record to allow sending to this email address" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2177 +#: frappe/public/js/frappe/list/list_view.js:2179 msgctxt "Title of confirmation dialog" msgid "Delete {0} item permanently?" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2183 +#: frappe/public/js/frappe/list/list_view.js:2185 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "" @@ -7278,10 +7310,14 @@ msgstr "" msgid "Do not create new user if user with email does not exist in the system" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1194 +#: frappe/public/js/frappe/form/grid.js:1195 msgid "Do not edit headers which are preset in the template" msgstr "" +#: frappe/public/js/frappe/router.js:624 +msgid "Do not warn me again about {0}" +msgstr "" + #: frappe/core/doctype/system_settings/system_settings.js:71 msgid "Do you still want to proceed?" msgstr "" @@ -7705,7 +7741,7 @@ msgstr "" #: 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/public/js/frappe/roles_editor.js:68 #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json #: frappe/workflow/doctype/workflow/workflow.json msgid "Document Type" @@ -7756,15 +7792,15 @@ msgstr "" msgid "Document follow is not enabled for this user." msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1300 +#: frappe/public/js/frappe/list/list_view.js:1302 msgid "Document has been cancelled" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1299 +#: frappe/public/js/frappe/list/list_view.js:1301 msgid "Document has been submitted" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1298 +#: frappe/public/js/frappe/list/list_view.js:1300 msgid "Document is in draft state" msgstr "" @@ -7906,7 +7942,7 @@ msgstr "" msgid "Double click to edit label" msgstr "" -#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:467 +#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:474 #: frappe/email/doctype/auto_email_report/auto_email_report.js:8 #: frappe/public/js/frappe/form/grid.js:66 msgid "Download" @@ -7939,7 +7975,7 @@ msgstr "" msgid "Download PDF" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:832 +#: frappe/public/js/frappe/views/reports/query_report.js:840 msgid "Download Report" msgstr "" @@ -8139,8 +8175,8 @@ msgstr "" #: 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:880 -#: frappe/public/js/frappe/views/reports/query_report.js:1783 +#: frappe/public/js/frappe/views/reports/query_report.js:888 +#: frappe/public/js/frappe/views/reports/query_report.js:1791 #: 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 @@ -8152,7 +8188,7 @@ msgstr "" msgid "Edit" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2258 +#: frappe/public/js/frappe/list/list_view.js:2260 msgctxt "Button in list view actions menu" msgid "Edit" msgstr "" @@ -8162,7 +8198,7 @@ msgctxt "Button in web form" msgid "Edit" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:349 +#: frappe/public/js/frappe/form/grid_row.js:350 msgctxt "Edit grid row" msgid "Edit" msgstr "" @@ -8191,7 +8227,7 @@ msgstr "" msgid "Edit DocType" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1974 +#: frappe/public/js/frappe/list/list_view.js:1976 msgctxt "Button in list view menu" msgid "Edit DocType" msgstr "" @@ -8311,7 +8347,7 @@ msgstr "" #. 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/core/doctype/doctype/doctype_list.js:58 #: frappe/custom/doctype/customize_form/customize_form.json msgid "Editable Grid" msgstr "" @@ -8356,6 +8392,8 @@ msgstr "" #. 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' +#. Label of a field in the request-data Web Form +#. Label of a field in the request-to-delete-data Web Form #: frappe/automation/workspace/tools/tools.json #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/custom_docperm/custom_docperm.json @@ -8374,6 +8412,8 @@ msgstr "" #: 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/website/web_form/request_data/request_data.json +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json #: frappe/www/login.html:8 frappe/www/login.py:104 msgid "Email" msgstr "" @@ -8605,7 +8645,7 @@ msgstr "" msgid "Email has been moved to trash" msgstr "" -#: frappe/core/doctype/user/user.js:278 +#: frappe/core/doctype/user/user.js:266 msgid "Email is mandatory to create User Email" msgstr "" @@ -8648,7 +8688,7 @@ msgstr "" msgid "Embed code copied" msgstr "" -#: frappe/database/query.py:1537 +#: frappe/database/query.py:1539 msgid "Empty alias is not allowed" msgstr "" @@ -8656,7 +8696,7 @@ msgstr "" msgid "Empty column" msgstr "" -#: frappe/database/query.py:1455 +#: frappe/database/query.py:1457 msgid "Empty string arguments are not allowed" msgstr "" @@ -9112,9 +9152,9 @@ msgstr "" msgid "Error in Header/Footer Script" msgstr "" -#: frappe/email/doctype/notification/notification.py:640 -#: frappe/email/doctype/notification/notification.py:780 -#: frappe/email/doctype/notification/notification.py:786 +#: frappe/email/doctype/notification/notification.py:642 +#: frappe/email/doctype/notification/notification.py:782 +#: frappe/email/doctype/notification/notification.py:788 msgid "Error in Notification" msgstr "" @@ -9134,7 +9174,7 @@ msgstr "" msgid "Error while connecting to email account {0}" msgstr "" -#: frappe/email/doctype/notification/notification.py:777 +#: frappe/email/doctype/notification/notification.py:779 msgid "Error while evaluating Notification {0}. Please fix your template." msgstr "" @@ -9295,7 +9335,7 @@ msgstr "" msgid "Executing..." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2132 +#: frappe/public/js/frappe/views/reports/query_report.js:2140 msgid "Execution Time: {0} sec" msgstr "" @@ -9321,12 +9361,12 @@ msgctxt "Enlarge code field." msgid "Expand" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2113 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 #: frappe/public/js/frappe/views/treeview.js:133 msgid "Expand All" msgstr "" -#: frappe/database/query.py:352 +#: frappe/database/query.py:354 msgid "Expected 'and' or 'or' operator, found: {0}" msgstr "" @@ -9384,13 +9424,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:1820 +#: frappe/public/js/frappe/views/reports/query_report.js:1828 #: frappe/public/js/frappe/views/reports/report_view.js:1629 #: frappe/public/js/frappe/widgets/chart_widget.js:315 msgid "Export" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2280 +#: frappe/public/js/frappe/list/list_view.js:2282 msgctxt "Button in list view actions menu" msgid "Export" msgstr "" @@ -9583,7 +9623,7 @@ msgstr "" msgid "Failed to connect to server" msgstr "" -#: frappe/auth.py:698 +#: frappe/auth.py:701 msgid "Failed to decode token, please provide a valid base64-encoded token." msgstr "" @@ -9747,7 +9787,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:236 -#: frappe/public/js/frappe/views/reports/query_report.js:1879 +#: frappe/public/js/frappe/views/reports/query_report.js:1887 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_form_list_column/web_form_list_column.json msgid "Field" @@ -9830,7 +9870,7 @@ msgstr "" msgid "Field {0} not found." msgstr "" -#: frappe/email/doctype/notification/notification.py:545 +#: frappe/email/doctype/notification/notification.py:547 msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link" msgstr "" @@ -9848,7 +9888,7 @@ msgstr "" #: 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:454 +#: frappe/public/js/frappe/form/grid_row.js:455 #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Fieldname" msgstr "" @@ -9929,7 +9969,7 @@ msgstr "" msgid "Fields must be a list or tuple when as_list is enabled" msgstr "" -#: frappe/database/query.py:611 +#: frappe/database/query.py:613 msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function" msgstr "" @@ -9957,7 +9997,7 @@ msgstr "" msgid "Fieldtype cannot be changed from {0} to {1}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:589 +#: frappe/custom/doctype/customize_form/customize_form.py:593 msgid "Fieldtype cannot be changed from {0} to {1} in row {2}" msgstr "" @@ -10023,7 +10063,7 @@ msgstr "" msgid "File backup is ready" msgstr "" -#: frappe/core/doctype/file/file.py:646 +#: frappe/core/doctype/file/file.py:649 msgid "File name cannot have {0}" msgstr "" @@ -10031,7 +10071,7 @@ msgstr "" msgid "File not attached" msgstr "" -#: frappe/core/doctype/file/file.py:756 frappe/public/js/frappe/request.js:200 +#: frappe/core/doctype/file/file.py:759 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 "" @@ -10044,7 +10084,7 @@ msgstr "" msgid "File type of {0} is not allowed" msgstr "" -#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:448 +#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:451 msgid "File {0} does not exist" msgstr "" @@ -10098,11 +10138,11 @@ msgstr "" msgid "Filter Values" msgstr "" -#: frappe/database/query.py:358 +#: frappe/database/query.py:360 msgid "Filter condition missing after operator: {0}" msgstr "" -#: frappe/database/query.py:425 +#: frappe/database/query.py:427 msgid "Filter fields cannot contain backticks (`)." msgstr "" @@ -10179,7 +10219,7 @@ msgstr "" msgid "Filters applied for {0}" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:188 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:202 msgid "Filters saved" msgstr "" @@ -10227,9 +10267,12 @@ msgstr "" #. Label of the first_name (Data) field in DocType 'Contact' #. Label of the first_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json #: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:44 -#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:15 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:15 msgid "First Name" msgstr "" @@ -10310,7 +10353,7 @@ msgstr "" msgid "Folder name should not include '/' (slash)" msgstr "" -#: frappe/core/doctype/file/file.py:494 +#: frappe/core/doctype/file/file.py:497 msgid "Folder {0} is not empty" msgstr "" @@ -10512,7 +10555,7 @@ msgstr "" msgid "For Value" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2129 +#: frappe/public/js/frappe/views/reports/query_report.js:2137 #: frappe/public/js/frappe/views/reports/report_view.js:108 msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)." msgstr "" @@ -10797,7 +10840,7 @@ msgstr "" msgid "From Date Field" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1840 +#: frappe/public/js/frappe/views/reports/query_report.js:1848 msgid "From Document Type" msgstr "" @@ -10859,12 +10902,12 @@ msgstr "" msgid "Function {0} is not whitelisted." msgstr "" -#: frappe/database/query.py:1417 +#: frappe/database/query.py:1419 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" +msgid "Further sub-groups can only be created under records marked as 'Group'" msgstr "" #: frappe/core/doctype/communication/communication.js:291 @@ -10924,7 +10967,7 @@ msgstr "" msgid "Generate Keys" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:874 +#: frappe/public/js/frappe/views/reports/query_report.js:882 msgid "Generate New Report" msgstr "" @@ -11340,14 +11383,10 @@ msgstr "" msgid "Group By field is required to create a dashboard chart" msgstr "" -#: frappe/database/query.py:750 +#: frappe/database/query.py:752 msgid "Group By must be a string" msgstr "" -#: frappe/public/js/frappe/views/treeview.js:418 -msgid "Group Node" -msgstr "" - #. Label of the ldap_group_objectclass (Data) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Group Object Class" @@ -11677,7 +11716,7 @@ msgstr "" msgid "Hidden Fields" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1642 +#: frappe/public/js/frappe/views/reports/query_report.js:1650 msgid "Hidden columns include: {0}" msgstr "" @@ -11789,7 +11828,7 @@ msgstr "" msgid "Hide Standard Menu" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1849 +#: frappe/public/js/frappe/list/list_view.js:1851 msgid "Hide Tags" msgstr "" @@ -12048,7 +12087,7 @@ msgstr "" #: frappe/core/doctype/doctype/doctype.py:1777 #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45 -#: frappe/public/js/frappe/roles_editor.js:66 +#: frappe/public/js/frappe/roles_editor.js:68 msgid "If Owner" msgstr "" @@ -12276,8 +12315,8 @@ msgstr "" msgid "Illegal Document Status for {0}" msgstr "" -#: frappe/model/db_query.py:453 frappe/model/db_query.py:456 -#: frappe/model/db_query.py:1121 +#: frappe/model/db_query.py:454 frappe/model/db_query.py:457 +#: frappe/model/db_query.py:1122 msgid "Illegal SQL Query" msgstr "" @@ -12364,11 +12403,11 @@ msgstr "" #. Option for the 'Operation' (Select) field in DocType 'Activity Log' #: frappe/core/doctype/activity_log/activity_log.json -#: frappe/core/doctype/user/user.js:384 +#: frappe/core/doctype/user/user.js:372 msgid "Impersonate" msgstr "" -#: frappe/core/doctype/user/user.js:411 +#: frappe/core/doctype/user/user.js:399 msgid "Impersonate as {0}" msgstr "" @@ -12398,7 +12437,7 @@ msgstr "" msgid "Import" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1911 +#: frappe/public/js/frappe/list/list_view.js:1913 msgctxt "Button in list view menu" msgid "Import" msgstr "" @@ -12627,15 +12666,15 @@ msgid "Include Web View Link in Email" msgstr "" #: frappe/public/js/frappe/form/print_utils.js:59 -#: frappe/public/js/frappe/views/reports/query_report.js:1620 +#: frappe/public/js/frappe/views/reports/query_report.js:1628 msgid "Include filters" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1640 +#: frappe/public/js/frappe/views/reports/query_report.js:1648 msgid "Include hidden columns" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1612 +#: frappe/public/js/frappe/views/reports/query_report.js:1620 msgid "Include indentation" msgstr "" @@ -12682,7 +12721,7 @@ msgstr "" msgid "Incomplete Virtual Doctype Implementation" msgstr "" -#: frappe/auth.py:255 +#: frappe/auth.py:258 msgid "Incomplete login details" msgstr "" @@ -12793,7 +12832,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:1885 +#: frappe/public/js/frappe/views/reports/query_report.js:1893 msgid "Insert After" msgstr "" @@ -12866,7 +12905,7 @@ msgstr "" msgid "Insufficient Permission Level for {0}" msgstr "" -#: frappe/database/query.py:806 frappe/database/query.py:1052 +#: frappe/database/query.py:808 frappe/database/query.py:1054 msgid "Insufficient Permission for {0}" msgstr "" @@ -12982,7 +13021,7 @@ msgid "Invalid" msgstr "" #: frappe/public/js/form_builder/utils.js:221 -#: frappe/public/js/frappe/form/grid_row.js:849 +#: frappe/public/js/frappe/form/grid_row.js:850 #: frappe/public/js/frappe/form/layout.js:810 #: frappe/public/js/frappe/views/reports/report_view.js:721 msgid "Invalid \"depends_on\" expression" @@ -13040,8 +13079,8 @@ 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 +#: frappe/database/query.py:429 frappe/database/query.py:456 +#: frappe/database/query.py:466 frappe/database/query.py:489 msgid "Invalid Filter" msgstr "" @@ -13113,7 +13152,7 @@ msgstr "" msgid "Invalid Phone Number" msgstr "" -#: frappe/auth.py:94 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 +#: frappe/auth.py:97 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 #: frappe/www/login.py:128 msgid "Invalid Request" msgstr "" @@ -13153,7 +13192,7 @@ msgstr "" msgid "Invalid aggregate function" msgstr "" -#: frappe/database/query.py:1542 +#: frappe/database/query.py:1544 msgid "Invalid alias format: {0}. Alias must be a simple identifier." msgstr "" @@ -13161,19 +13200,19 @@ msgstr "" msgid "Invalid app" msgstr "" -#: frappe/database/query.py:1468 +#: frappe/database/query.py:1470 msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed." msgstr "" -#: frappe/database/query.py:1444 +#: frappe/database/query.py:1446 msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed." msgstr "" -#: frappe/database/query.py:460 +#: frappe/database/query.py:462 msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed." msgstr "" -#: frappe/database/query.py:575 +#: frappe/database/query.py:577 msgid "Invalid characters in table name: {0}" msgstr "" @@ -13181,11 +13220,11 @@ msgstr "" msgid "Invalid column" msgstr "" -#: frappe/database/query.py:381 +#: frappe/database/query.py:383 msgid "Invalid condition type in nested filters: {0}" msgstr "" -#: frappe/database/query.py:787 +#: frappe/database/query.py:789 msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'." msgstr "" @@ -13201,23 +13240,23 @@ msgstr "" msgid "Invalid expression set in filter {0} ({1})" msgstr "" -#: frappe/database/query.py:1301 +#: frappe/database/query.py:1303 msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'." msgstr "" -#: frappe/database/query.py:734 +#: frappe/database/query.py:736 msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'." msgstr "" -#: frappe/database/query.py:1620 +#: frappe/database/query.py:1622 msgid "Invalid field name in function: {0}. Only simple field names are allowed." msgstr "" -#: frappe/utils/data.py:2215 +#: frappe/utils/data.py:2241 msgid "Invalid field name {0}" msgstr "" -#: frappe/database/query.py:668 +#: frappe/database/query.py:670 msgid "Invalid field type: {0}" msgstr "" @@ -13229,11 +13268,11 @@ msgstr "" msgid "Invalid file path: {0}" msgstr "" -#: frappe/database/query.py:364 +#: frappe/database/query.py:366 msgid "Invalid filter condition: {0}. Expected a list or tuple." msgstr "" -#: frappe/database/query.py:450 +#: frappe/database/query.py:452 msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'." msgstr "" @@ -13241,11 +13280,11 @@ msgstr "" msgid "Invalid filter: {0}" msgstr "" -#: frappe/database/query.py:1422 +#: frappe/database/query.py:1424 msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed." msgstr "" -#: frappe/database/query.py:1383 +#: frappe/database/query.py:1385 msgid "Invalid function dictionary format" msgstr "" @@ -13282,23 +13321,27 @@ msgstr "" msgid "Invalid redirect regex in row #{}: {}" msgstr "" -#: frappe/app.py:337 +#: frappe/app.py:340 msgid "Invalid request arguments" msgstr "" +#: frappe/app.py:327 +msgid "Invalid request body" +msgstr "" + #: frappe/core/doctype/user_invitation/user_invitation.py:181 msgid "Invalid role" msgstr "" -#: frappe/database/query.py:410 +#: frappe/database/query.py:412 msgid "Invalid simple filter format: {0}" msgstr "" -#: frappe/database/query.py:341 +#: frappe/database/query.py:343 msgid "Invalid start for filter condition: {0}. Expected a list or tuple." msgstr "" -#: frappe/database/query.py:1489 +#: frappe/database/query.py:1491 msgid "Invalid string literal format: {0}" msgstr "" @@ -13402,7 +13445,7 @@ msgstr "" #. 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/doctype_list.js:50 #: frappe/core/doctype/doctype_link/doctype_link.json msgid "Is Child Table" msgstr "" @@ -13455,6 +13498,10 @@ msgstr "" msgid "Is Global" msgstr "" +#: frappe/public/js/frappe/views/treeview.js:418 +msgid "Is Group" +msgstr "Je skupina" + #. Label of the is_hidden (Check) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "Is Hidden" @@ -13543,7 +13590,7 @@ 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/core/doctype/doctype/doctype_list.js:65 #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Is Single" msgstr "" @@ -13579,7 +13626,7 @@ msgstr "" #. Label of the is_submittable (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:39 +#: frappe/core/doctype/doctype/doctype_list.js:40 msgid "Is Submittable" msgstr "" @@ -13785,11 +13832,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:388 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:402 msgid "Kanban Board Name" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:265 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:279 msgctxt "Button in kanban view menu" msgid "Kanban Settings" msgstr "" @@ -14087,10 +14134,13 @@ msgstr "" #. 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' +#. Label of a field in the edit-profile Web Form #: 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:117 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/printing/page/print/print.js:117 #: frappe/public/js/frappe/form/templates/print_layout.html:11 msgid "Language" msgstr "" @@ -14178,9 +14228,12 @@ msgstr "" #. Label of the last_name (Data) field in DocType 'Contact' #. Label of the last_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json #: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:45 -#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:19 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:19 msgid "Last Name" msgstr "" @@ -14421,7 +14474,7 @@ msgstr "" #: 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/public/js/frappe/roles_editor.js:68 #: frappe/website/doctype/help_article/help_article.json msgid "Level" msgstr "" @@ -14714,7 +14767,7 @@ msgstr "" msgid "List Settings" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1991 +#: frappe/public/js/frappe/list/list_view.js:1993 msgctxt "Button in list view menu" msgid "List Settings" msgstr "" @@ -14765,7 +14818,7 @@ msgid "Load Balancing" msgstr "" #: frappe/public/js/frappe/list/base_list.js:399 -#: frappe/public/js/frappe/web_form/web_form_list.js:305 +#: frappe/public/js/frappe/web_form/web_form_list.js:306 #: frappe/website/doctype/help_article/templates/help_article_list.html:30 msgid "Load More" msgstr "" @@ -14785,7 +14838,7 @@ msgstr "" #: frappe/public/js/frappe/list/base_list.js:526 #: frappe/public/js/frappe/list/list_view.js:363 #: frappe/public/js/frappe/ui/listing.html:16 -#: frappe/public/js/frappe/views/reports/query_report.js:1089 +#: frappe/public/js/frappe/views/reports/query_report.js:1097 msgid "Loading" msgstr "" @@ -14928,7 +14981,7 @@ msgstr "" msgid "Login and view in Browser" msgstr "" -#: frappe/website/doctype/web_form/web_form.js:367 +#: frappe/website/doctype/web_form/web_form.js:368 msgid "Login is required to see web form list view. Enable {0} to see list settings" msgstr "" @@ -14936,7 +14989,7 @@ msgstr "" msgid "Login link sent to your email" msgstr "" -#: frappe/auth.py:339 frappe/auth.py:342 +#: frappe/auth.py:342 frappe/auth.py:345 msgid "Login not allowed at this time" msgstr "" @@ -14989,7 +15042,7 @@ msgstr "" msgid "Login with email link expiry (in minutes)" msgstr "" -#: frappe/auth.py:144 +#: frappe/auth.py:147 msgid "Login with username and password is not allowed." msgstr "" @@ -15008,7 +15061,7 @@ msgstr "" msgid "Logout" msgstr "" -#: frappe/core/doctype/user/user.js:202 +#: frappe/core/doctype/user/user.js:190 msgid "Logout All Sessions" msgstr "" @@ -15112,7 +15165,10 @@ msgid "Major" msgstr "" #. Label of the show_name_in_global_search (Check) field in DocType 'DocType' +#. Label of the show_name_in_global_search (Check) field in DocType 'Customize +#. Form' #: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Make \"name\" searchable in Global Search" msgstr "" @@ -15188,7 +15244,7 @@ msgstr "" msgid "Mandatory Depends On (JS)" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:509 +#: frappe/website/doctype/web_form/web_form.py:536 msgid "Mandatory Information missing:" msgstr "" @@ -15645,6 +15701,11 @@ msgstr "" msgid "Middle Name" msgstr "" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Middle Name (Optional)" +msgstr "" + #. Name of a DocType #. Label of a Link in the Tools Workspace #: frappe/automation/doctype/milestone/milestone.json @@ -15751,6 +15812,11 @@ msgstr "" msgid "Mobile No" msgstr "" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Mobile Number" +msgstr "Mobilní číslo" + #. 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" @@ -15776,7 +15842,7 @@ msgstr "" #. 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/doctype/doctype_list.js:31 #: 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 @@ -15952,10 +16018,12 @@ msgstr "" #. Label of the additional_info (Section Break) field in DocType #. 'Communication' #. Label of the short_bio (Tab Break) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: 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 +#: frappe/core/web_form/edit_profile/edit_profile.json msgid "More Information" msgstr "" @@ -15985,7 +16053,7 @@ msgstr "" msgid "Move" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:193 +#: frappe/public/js/frappe/form/grid_row.js:194 msgid "Move To" msgstr "" @@ -16021,7 +16089,7 @@ msgstr "" msgid "Move the current field and the following fields to a new column" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:168 +#: frappe/public/js/frappe/form/grid_row.js:169 msgid "Move to Row Number" msgstr "" @@ -16089,7 +16157,7 @@ msgid "Mx" msgstr "" #: frappe/templates/includes/web_sidebar.html:41 -#: frappe/website/doctype/web_form/web_form.py:498 +#: frappe/website/doctype/web_form/web_form.py:525 #: 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" @@ -16231,12 +16299,12 @@ msgstr "" msgid "Navbar Template Values" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1378 +#: frappe/public/js/frappe/list/list_view.js:1380 msgctxt "Description of a list view shortcut" msgid "Navigate list down" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1385 +#: frappe/public/js/frappe/list/list_view.js:1387 msgctxt "Description of a list view shortcut" msgid "Navigate list up" msgstr "" @@ -16251,6 +16319,10 @@ msgstr "" msgid "Navigation Settings" msgstr "" +#: frappe/public/js/frappe/list/list_view.js:485 +msgid "Need Help?" +msgstr "" + #: frappe/desk/doctype/workspace/workspace.py:322 msgid "Need Workspace Manager role to edit private workspace of other users" msgstr "" @@ -16259,7 +16331,7 @@ msgstr "" msgid "Negative Value" msgstr "" -#: frappe/database/query.py:333 +#: frappe/database/query.py:335 msgid "Nested filters must be provided as a list or tuple." msgstr "" @@ -16272,6 +16344,12 @@ msgstr "" msgid "Network Printer Settings" msgstr "" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Never" +msgstr "" + #. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/core/doctype/success_action/success_action.js:57 @@ -16280,7 +16358,7 @@ msgstr "" #: 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/treeview.js:473 #: frappe/public/js/frappe/views/workspace/workspace.js:64 #: frappe/website/doctype/web_form/templates/web_list.html:15 #: frappe/www/list.html:19 @@ -16341,7 +16419,7 @@ msgstr "" msgid "New Folder" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 msgid "New Kanban Board" msgstr "" @@ -16376,7 +16454,7 @@ msgstr "" msgid "New Onboarding" msgstr "" -#: frappe/core/doctype/user/user.js:190 frappe/www/update-password.html:43 +#: frappe/core/doctype/user/user.js:178 frappe/www/update-password.html:43 msgid "New Password" msgstr "" @@ -16472,7 +16550,7 @@ msgstr "" #: frappe/public/js/frappe/ui/toolbar/search_utils.js:227 #: 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:411 +#: frappe/website/doctype/web_form/web_form.py:438 msgid "New {0}" msgstr "" @@ -16624,7 +16702,7 @@ msgstr "" #: frappe/public/js/form_builder/utils.js:341 #: frappe/public/js/frappe/form/controls/link.js:498 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1665 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 #: frappe/website/doctype/help_article/templates/help_article.html:26 msgid "No" msgstr "" @@ -16773,7 +16851,7 @@ msgstr "" msgid "No Roles Specified" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 msgid "No Select Field Found" msgstr "" @@ -16857,7 +16935,7 @@ msgstr "" msgid "No failed logs" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:371 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:385 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 "" @@ -16881,7 +16959,7 @@ msgstr "" msgid "No matching records. Search something new" msgstr "" -#: frappe/public/js/frappe/web_form/web_form_list.js:161 +#: frappe/public/js/frappe/web_form/web_form_list.js:162 msgid "No more items to display" msgstr "" @@ -16925,7 +17003,7 @@ msgctxt "{0} = verb, {1} = object" msgid "No permission to '{0}' {1}" msgstr "" -#: frappe/model/db_query.py:948 +#: frappe/model/db_query.py:949 msgid "No permission to read {0}" msgstr "" @@ -16973,11 +17051,11 @@ msgstr "" msgid "No {0} Found" msgstr "" -#: frappe/public/js/frappe/web_form/web_form_list.js:233 +#: frappe/public/js/frappe/web_form/web_form_list.js:234 msgid "No {0} found" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:497 +#: frappe/public/js/frappe/list/list_view.js:499 msgid "No {0} found with matching filters. Clear filters to see all {0}." msgstr "" @@ -16986,7 +17064,7 @@ msgid "No {0} mail" msgstr "" #: frappe/public/js/form_builder/utils.js:117 -#: frappe/public/js/frappe/form/grid_row.js:256 +#: frappe/public/js/frappe/form/grid_row.js:257 msgctxt "Title of the 'row number' column" msgid "No." msgstr "" @@ -17050,7 +17128,7 @@ msgstr "" msgid "Not Equals" msgstr "" -#: frappe/app.py:387 frappe/www/404.html:3 +#: frappe/app.py:390 frappe/www/404.html:3 msgid "Not Found" msgstr "" @@ -17076,9 +17154,9 @@ msgstr "" msgid "Not Nullable" msgstr "" -#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26 +#: frappe/__init__.py:550 frappe/app.py:383 frappe/desk/calendar.py:26 #: frappe/public/js/frappe/web_form/webform_script.js:15 -#: frappe/website/doctype/web_form/web_form.py:747 +#: frappe/website/doctype/web_form/web_form.py:774 #: 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 @@ -17097,7 +17175,7 @@ msgstr "" #: 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/kanban/kanban_view.js:183 #: frappe/public/js/frappe/views/reports/report_view.js:209 #: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39 #: frappe/website/doctype/web_form/templates/web_form.html:85 @@ -17148,7 +17226,7 @@ msgstr "" msgid "Not allowed for {0}: {1}" msgstr "" -#: frappe/email/doctype/notification/notification.py:637 +#: frappe/email/doctype/notification/notification.py:639 msgid "Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings" msgstr "" @@ -17180,12 +17258,12 @@ msgstr "" msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType." msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:216 +#: frappe/core/doctype/system_settings/system_settings.py:217 #: 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:760 +#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:787 #: frappe/website/js/website.js:97 msgid "Not permitted" msgstr "" @@ -17231,7 +17309,7 @@ msgstr "" msgid "Note: Multiple sessions will be allowed in case of mobile device" msgstr "" -#: frappe/core/doctype/user/user.js:399 +#: frappe/core/doctype/user/user.js:387 msgid "Note: This will be shared with user." msgstr "" @@ -17303,15 +17381,15 @@ msgstr "" msgid "Notification sent to" msgstr "" -#: frappe/email/doctype/notification/notification.py:542 +#: frappe/email/doctype/notification/notification.py:544 msgid "Notification: customer {0} has no Mobile number set" msgstr "" -#: frappe/email/doctype/notification/notification.py:528 +#: frappe/email/doctype/notification/notification.py:530 msgid "Notification: document {0} has no {1} number set (field: {2})" msgstr "" -#: frappe/email/doctype/notification/notification.py:537 +#: frappe/email/doctype/notification/notification.py:539 msgid "Notification: user {0} has no Mobile number set" msgstr "" @@ -17425,7 +17503,7 @@ msgstr "" msgid "Number of attachment fields are more than {}, limit updated to {}." msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:171 +#: frappe/core/doctype/system_settings/system_settings.py:172 msgid "Number of backups must be greater than zero." msgstr "" @@ -17697,7 +17775,7 @@ msgstr "" #. Description of the 'Is Submittable' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:42 +#: frappe/core/doctype/doctype/doctype_list.js:43 msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended." msgstr "" @@ -17786,11 +17864,11 @@ msgstr "" msgid "Only reports of type Report Builder can be edited" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:129 +#: frappe/custom/doctype/customize_form/customize_form.py:131 msgid "Only standard DocTypes are allowed to be customized from Customize Form." msgstr "" -#: frappe/model/delete_doc.py:241 +#: frappe/model/delete_doc.py:281 msgid "Only the Administrator can delete a standard DocType." msgstr "" @@ -17886,7 +17964,7 @@ msgstr "" msgid "Open in a new tab" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1431 +#: frappe/public/js/frappe/list/list_view.js:1433 msgctxt "Description of a list view shortcut" msgid "Open list item" msgstr "" @@ -17935,7 +18013,7 @@ msgstr "" msgid "Operation" msgstr "" -#: frappe/utils/data.py:2146 +#: frappe/utils/data.py:2172 msgid "Operator must be one of {0}" msgstr "" @@ -17981,6 +18059,7 @@ msgstr "" #. 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 (Text) field in DocType 'Web Form List Column' #. 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 @@ -17989,6 +18068,7 @@ msgstr "" #: 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_form_list_column/web_form_list_column.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Options" msgstr "" @@ -18034,7 +18114,7 @@ msgstr "" msgid "Order" msgstr "" -#: frappe/database/query.py:767 +#: frappe/database/query.py:769 msgid "Order By must be a string" msgstr "" @@ -18132,7 +18212,7 @@ msgstr "" #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/printing/page/print/print.js:84 #: frappe/public/js/frappe/form/templates/print_layout.html:44 -#: frappe/public/js/frappe/views/reports/query_report.js:1804 +#: frappe/public/js/frappe/views/reports/query_report.js:1812 msgid "PDF" msgstr "" @@ -18480,8 +18560,8 @@ msgstr "" #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/system_settings/system_settings.json -#: frappe/core/doctype/user/user.js:177 frappe/core/doctype/user/user.js:224 -#: frappe/core/doctype/user/user.js:244 +#: frappe/core/doctype/user/user.js:165 frappe/core/doctype/user/user.js:212 +#: frappe/core/doctype/user/user.js:232 #: 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 @@ -18504,7 +18584,7 @@ msgstr "" msgid "Password Reset Link Generation Limit" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:896 +#: frappe/public/js/frappe/form/grid_row.js:897 msgid "Password cannot be filtered" msgstr "" @@ -18541,7 +18621,7 @@ msgstr "" msgid "Password set" msgstr "" -#: frappe/auth.py:258 +#: frappe/auth.py:261 msgid "Password size exceeded the maximum allowed size" msgstr "" @@ -18553,7 +18633,7 @@ msgstr "" msgid "Passwords do not match" msgstr "" -#: frappe/core/doctype/user/user.js:210 +#: frappe/core/doctype/user/user.js:198 msgid "Passwords do not match!" msgstr "" @@ -18704,7 +18784,7 @@ msgstr "" msgid "Permanently delete {0}?" msgstr "" -#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533 +#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:535 msgid "Permission Error" msgstr "" @@ -18764,8 +18844,8 @@ msgstr "" #: 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:143 frappe/core/doctype/user/user.js:152 -#: frappe/core/doctype/user/user.js:161 +#: frappe/core/doctype/user/user.js:131 frappe/core/doctype/user/user.js:140 +#: frappe/core/doctype/user/user.js:149 #: 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 @@ -18835,6 +18915,7 @@ msgstr "" #. Option for the 'Type' (Select) field in DocType 'Communication' #. Option for the 'Type' (Select) field in DocType 'DocField' #. Label of the phone (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #. 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' @@ -18845,6 +18926,7 @@ msgstr "" #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.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 @@ -19019,7 +19101,7 @@ msgstr "" msgid "Please duplicate this to make changes" msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:164 +#: frappe/core/doctype/system_settings/system_settings.py:165 msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login." msgstr "" @@ -19151,11 +19233,11 @@ msgstr "" msgid "Please select Entity Type first" msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:115 +#: frappe/core/doctype/system_settings/system_settings.py:116 msgid "Please select Minimum Password Score" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1185 +#: frappe/public/js/frappe/views/reports/query_report.js:1193 msgid "Please select X and Y fields" msgstr "" @@ -19183,7 +19265,7 @@ msgstr "" msgid "Please select applicable Doctypes" msgstr "" -#: frappe/model/db_query.py:1157 +#: frappe/model/db_query.py:1163 msgid "Please select atleast 1 column from {0} to sort/group" msgstr "" @@ -19213,7 +19295,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:1408 +#: frappe/public/js/frappe/views/reports/query_report.js:1416 msgid "Please set filters" msgstr "" @@ -19233,7 +19315,7 @@ msgstr "" msgid "Please set the series to be used." msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:128 +#: frappe/core/doctype/system_settings/system_settings.py:129 msgid "Please setup SMS before setting it as an authentication method, via SMS Settings" msgstr "" @@ -19385,7 +19467,7 @@ msgstr "" msgid "Posting Timestamp" msgstr "" -#: frappe/database/query.py:1518 +#: frappe/database/query.py:1520 msgid "Potentially dangerous content in string literal: {0}" msgstr "" @@ -19587,13 +19669,13 @@ msgstr "" #: 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:1789 +#: frappe/public/js/frappe/views/reports/query_report.js:1797 #: frappe/public/js/frappe/views/reports/report_view.js:1539 -#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18 +#: frappe/public/js/frappe/views/treeview.js:492 frappe/www/printview.html:18 msgid "Print" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2164 +#: frappe/public/js/frappe/list/list_view.js:2166 msgctxt "Button in list view actions menu" msgid "Print" msgstr "" @@ -19663,7 +19745,7 @@ msgstr "" msgid "Print Format Type" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1578 +#: frappe/public/js/frappe/views/reports/query_report.js:1586 msgid "Print Format not found" msgstr "" @@ -19844,11 +19926,11 @@ msgstr "" msgid "Proceed" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:932 +#: frappe/public/js/frappe/views/reports/query_report.js:940 msgid "Proceed Anyway" msgstr "" -#: frappe/public/js/frappe/form/controls/table.js:123 +#: frappe/public/js/frappe/form/controls/table.js:104 msgid "Processing" msgstr "" @@ -19865,11 +19947,21 @@ msgstr "" msgid "Profile" msgstr "" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile Picture" +msgstr "" + +#. Success message of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile updated successfully." +msgstr "Profil byl úspěšně aktualizován." + #: frappe/public/js/frappe/socketio_client.js:82 msgid "Progress" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:408 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:422 msgid "Project" msgstr "" @@ -19913,7 +20005,7 @@ msgstr "" msgid "Protect Attached Files" msgstr "" -#: frappe/core/doctype/file/file.py:523 +#: frappe/core/doctype/file/file.py:526 msgid "Protected File" msgstr "" @@ -20419,11 +20511,11 @@ msgstr "" msgid "Reason" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:886 +#: frappe/public/js/frappe/views/reports/query_report.js:894 msgid "Rebuild" msgstr "" -#: frappe/public/js/frappe/views/treeview.js:509 +#: frappe/public/js/frappe/views/treeview.js:511 msgid "Rebuild Tree" msgstr "" @@ -20804,8 +20896,8 @@ 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:1778 -#: frappe/public/js/frappe/views/treeview.js:496 +#: frappe/public/js/frappe/views/reports/query_report.js:1786 +#: frappe/public/js/frappe/views/treeview.js:498 #: frappe/public/js/frappe/widgets/chart_widget.js:291 #: frappe/public/js/frappe/widgets/number_card_widget.js:352 #: frappe/public/js/print_format_builder/Preview.vue:24 @@ -20836,13 +20928,13 @@ msgstr "" msgid "Refresh Token" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:534 +#: frappe/public/js/frappe/list/list_view.js:536 msgctxt "Document count in list view" msgid "Refreshing" msgstr "" #: frappe/core/doctype/system_settings/system_settings.js:57 -#: frappe/core/doctype/user/user.js:374 +#: frappe/core/doctype/user/user.js:362 #: frappe/desk/page/setup_wizard/setup_wizard.js:211 msgid "Refreshing..." msgstr "" @@ -21227,7 +21319,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:1965 +#: frappe/public/js/frappe/views/reports/query_report.js:1973 msgid "Report Name" msgstr "" @@ -21279,7 +21371,7 @@ msgstr "" msgid "Report has no numeric fields, please change the Report Name" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1013 +#: frappe/public/js/frappe/views/reports/query_report.js:1021 msgid "Report initiated, click to view status" msgstr "" @@ -21299,7 +21391,7 @@ msgstr "" msgid "Report was not saved (there were errors)" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2003 +#: frappe/public/js/frappe/views/reports/query_report.js:2011 msgid "Report with more than 10 columns looks better in Landscape mode." msgstr "" @@ -21335,7 +21427,7 @@ msgstr "" msgid "Reports & Masters" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:929 +#: frappe/public/js/frappe/views/reports/query_report.js:937 msgid "Reports already in Queue" msgstr "" @@ -21354,7 +21446,10 @@ msgid "Request Body" msgstr "" #. Label of the data (Code) field in DocType 'Integration Request' +#. Title of the request-data Web Form +#. Button label of the request-data Web Form #: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/website/web_form/request_data/request_data.json msgid "Request Data" msgstr "" @@ -21406,6 +21501,11 @@ msgstr "" msgid "Request URL" msgstr "" +#. Title of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "Request for Account Deletion" +msgstr "" + #. Label of the requested_numbers (Code) field in DocType 'SMS Log' #: frappe/core/doctype/sms_log/sms_log.json msgid "Requested Numbers" @@ -21461,7 +21561,7 @@ msgstr "" msgid "Reset Fields" msgstr "" -#: frappe/core/doctype/user/user.js:184 frappe/core/doctype/user/user.js:187 +#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:175 msgid "Reset LDAP Password" msgstr "" @@ -21469,11 +21569,11 @@ msgstr "" msgid "Reset Layout" msgstr "" -#: frappe/core/doctype/user/user.js:235 +#: frappe/core/doctype/user/user.js:223 msgid "Reset OTP Secret" msgstr "" -#: frappe/core/doctype/user/user.js:168 frappe/www/login.html:199 +#: frappe/core/doctype/user/user.js:156 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" @@ -21508,7 +21608,7 @@ msgstr "" msgid "Reset sorting" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:433 +#: frappe/public/js/frappe/form/grid_row.js:434 msgid "Reset to default" msgstr "" @@ -21760,7 +21860,7 @@ 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 +#: frappe/public/js/frappe/roles_editor.js:114 msgid "Role Permissions" msgstr "" @@ -21770,7 +21870,7 @@ msgstr "" msgid "Role Permissions Manager" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1933 +#: frappe/public/js/frappe/list/list_view.js:1935 msgctxt "Button in list view menu" msgid "Role Permissions Manager" msgstr "" @@ -21963,11 +22063,11 @@ msgstr "" msgid "Row {0}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:353 +#: frappe/custom/doctype/customize_form/customize_form.py:357 msgid "Row {0}: Not allowed to disable Mandatory for standard fields" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:342 +#: frappe/custom/doctype/customize_form/customize_form.py:346 msgid "Row {0}: Not allowed to enable Allow on Submit for standard fields" msgstr "" @@ -21986,7 +22086,10 @@ msgid "Rows Removed" msgstr "" #. Label of the rows_threshold_for_grid_search (Int) field in DocType 'DocType' +#. Label of the rows_threshold_for_grid_search (Int) field in DocType +#. 'Customize Form' #: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Rows Threshold for Grid Search" msgstr "" @@ -22194,8 +22297,8 @@ msgstr "" #: 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:1957 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 +#: frappe/public/js/frappe/views/reports/query_report.js:1965 #: frappe/public/js/frappe/views/reports/report_view.js:1735 #: frappe/public/js/frappe/views/workspace/workspace.js:335 #: frappe/public/js/frappe/widgets/base_widget.js:142 @@ -22218,11 +22321,11 @@ msgstr "" msgid "Save Customizations" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1960 +#: frappe/public/js/frappe/views/reports/query_report.js:1968 msgid "Save Report" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:97 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:107 msgid "Save filters" msgstr "" @@ -22594,7 +22697,7 @@ msgstr "" msgid "See all Activity" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:855 +#: frappe/public/js/frappe/views/reports/query_report.js:863 msgid "See all past reports." msgstr "" @@ -22658,7 +22761,7 @@ msgstr "" #: 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:497 +#: frappe/public/js/frappe/form/grid_row.js:498 msgid "Select All" msgstr "" @@ -22738,7 +22841,7 @@ msgstr "" msgid "Select Field..." msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:489 +#: frappe/public/js/frappe/form/grid_row.js:490 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:181 msgid "Select Fields" msgstr "" @@ -22858,7 +22961,7 @@ msgid "Select a field to edit its properties." msgstr "" #: frappe/public/js/frappe/views/treeview.js:358 -msgid "Select a group node first." +msgid "Select a group {0} first." msgstr "" #: frappe/core/doctype/doctype/doctype.py:1956 @@ -22895,13 +22998,13 @@ msgstr "" msgid "Select atleast 2 actions" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1445 +#: frappe/public/js/frappe/list/list_view.js:1447 msgctxt "Description of a list view shortcut" msgid "Select list item" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1397 -#: frappe/public/js/frappe/list/list_view.js:1413 +#: frappe/public/js/frappe/list/list_view.js:1399 +#: frappe/public/js/frappe/list/list_view.js:1415 msgctxt "Description of a list view shortcut" msgid "Select multiple list items" msgstr "" @@ -23223,7 +23326,7 @@ msgstr "" msgid "Server Action" msgstr "" -#: frappe/app.py:396 frappe/public/js/frappe/request.js:611 +#: frappe/app.py:399 frappe/public/js/frappe/request.js:611 #: frappe/www/error.html:36 frappe/www/error.py:15 msgid "Server Error" msgstr "" @@ -23289,7 +23392,7 @@ msgstr "" msgid "Session Defaults Saved" msgstr "" -#: frappe/app.py:373 +#: frappe/app.py:376 msgid "Session Expired" msgstr "" @@ -23298,7 +23401,7 @@ msgstr "" msgid "Session Expiry (idle timeout)" msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:122 +#: frappe/core/doctype/system_settings/system_settings.py:123 msgid "Session Expiry must be in format {0}" msgstr "" @@ -23347,7 +23450,7 @@ msgstr "" msgid "Set Filters for {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2113 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 msgid "Set Level" msgstr "" @@ -23401,7 +23504,7 @@ msgstr "" msgid "Set Role For" msgstr "" -#: frappe/core/doctype/user/user.js:136 +#: frappe/core/doctype/user/user.js:124 #: frappe/core/page/permission_manager/permission_manager.js:72 msgid "Set User Permissions" msgstr "" @@ -23563,7 +23666,7 @@ msgstr "" msgid "Setup > User Permissions" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1826 +#: frappe/public/js/frappe/views/reports/query_report.js:1834 #: frappe/public/js/frappe/views/reports/report_view.js:1713 msgid "Setup Auto Email" msgstr "" @@ -23704,6 +23807,12 @@ msgstr "" msgid "Show Error" msgstr "" +#. Label of the show_external_link_warning (Select) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Show External Link Warning" +msgstr "" + #: frappe/public/js/frappe/form/layout.js:578 msgid "Show Fieldname (click to copy on clipboard)" msgstr "" @@ -23832,7 +23941,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:1849 +#: frappe/public/js/frappe/list/list_view.js:1851 msgid "Show Tags" msgstr "" @@ -24039,22 +24148,22 @@ msgstr "" msgid "Signups have been disabled for this website." msgstr "" -#. 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 "" - #. 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\")" +msgid "Simple Python Expression, Example: status == \"Invalid\"" msgstr "" #. 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'" +msgid "Simple Python Expression, Example: status == 'Open' and issue_type == 'Bug'" +msgstr "" + +#. 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 "" #. Label of the simultaneous_sessions (Int) field in DocType 'User' @@ -24062,13 +24171,13 @@ msgstr "" msgid "Simultaneous Sessions" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:126 +#: frappe/custom/doctype/customize_form/customize_form.py:128 msgid "Single DocTypes cannot be customized." 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 +#: frappe/core/doctype/doctype/doctype_list.js:68 msgid "Single Types have only one record no tables associated. Values are stored in tabSingles" msgstr "" @@ -24404,7 +24513,7 @@ msgid "Splash Image" msgstr "" #: frappe/desk/reportview.py:455 -#: frappe/public/js/frappe/web_form/web_form_list.js:175 +#: frappe/public/js/frappe/web_form/web_form_list.js:176 #: frappe/templates/print_formats/standard_macros.html:44 msgid "Sr" msgstr "" @@ -24436,7 +24545,7 @@ msgstr "" msgid "Standard" msgstr "" -#: frappe/model/delete_doc.py:79 +#: frappe/model/delete_doc.py:119 msgid "Standard DocType can not be deleted." msgstr "" @@ -24706,7 +24815,7 @@ msgstr "" #. Label of the sticky (Check) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json -#: frappe/public/js/frappe/form/grid_row.js:454 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Sticky" msgstr "" @@ -24736,7 +24845,7 @@ msgstr "" msgid "Store Attached PDF Document" msgstr "" -#: frappe/core/doctype/user/user.js:490 +#: frappe/core/doctype/user/user.js:497 msgid "Store the API secret securely. It won't be displayed again." msgstr "" @@ -24848,6 +24957,7 @@ msgstr "" #. 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' +#. Button label of the request-to-delete-data Web Form #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/docshare/docshare.json @@ -24856,10 +24966,11 @@ msgstr "" #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/quick_entry.js:225 #: frappe/public/js/frappe/ui/capture.js:307 +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json msgid "Submit" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2231 +#: frappe/public/js/frappe/list/list_view.js:2233 msgctxt "Button in list view actions menu" msgid "Submit" msgstr "" @@ -24869,7 +24980,7 @@ msgctxt "Button in web form" msgid "Submit" msgstr "" -#: frappe/public/js/frappe/ui/dialog.js:63 +#: frappe/public/js/frappe/ui/dialog.js:64 msgctxt "Primary action in dialog" msgid "Submit" msgstr "" @@ -24917,7 +25028,7 @@ msgstr "" msgid "Submit this document to confirm" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2236 +#: frappe/public/js/frappe/list/list_view.js:2238 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "" @@ -24967,7 +25078,7 @@ msgstr "" #: 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:1171 +#: frappe/public/js/frappe/form/grid.js:1172 #: frappe/public/js/frappe/views/translation_manager.js:21 #: frappe/templates/includes/login/login.js:230 #: frappe/templates/includes/login/login.js:236 @@ -25182,7 +25293,7 @@ msgstr "" msgid "Syncing {0} of {1}" msgstr "" -#: frappe/utils/data.py:2547 +#: frappe/utils/data.py:2573 msgid "Syntax Error" msgstr "" @@ -25493,7 +25604,7 @@ msgstr "" msgid "Table Trimmed" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1170 +#: frappe/public/js/frappe/form/grid.js:1171 msgid "Table updated" msgstr "" @@ -25708,7 +25819,7 @@ msgstr "" msgid "The Auto Repeat for this document has been disabled." msgstr "" -#: frappe/public/js/frappe/form/grid.js:1193 +#: frappe/public/js/frappe/form/grid.js:1194 msgid "The CSV format is case sensitive" msgstr "" @@ -25776,7 +25887,7 @@ msgstr "" 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:685 +#: frappe/public/js/frappe/list/list_view.js:687 msgid "The count shown is an estimated count. Click here to see the accurate count." msgstr "" @@ -25888,7 +25999,7 @@ msgstr "" msgid "The reset password link has either been used before or is invalid" msgstr "" -#: frappe/app.py:388 frappe/public/js/frappe/request.js:149 +#: frappe/app.py:391 frappe/public/js/frappe/request.js:149 msgid "The resource you are looking for is not available" msgstr "" @@ -25961,12 +26072,12 @@ 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:965 +#: frappe/public/js/frappe/views/reports/query_report.js:973 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 +#: frappe/website/doctype/web_form/web_form.js:318 msgid "There can be only 9 Page Break fields in a Web Form" msgstr "" @@ -25990,11 +26101,11 @@ msgstr "" msgid "There is nothing new to show you right now." msgstr "" -#: frappe/core/doctype/file/file.py:640 frappe/utils/file_manager.py:372 +#: frappe/core/doctype/file/file.py:643 frappe/utils/file_manager.py:372 msgid "There is some problem with the file url: {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:962 +#: frappe/public/js/frappe/views/reports/query_report.js:970 msgid "There is {0} with the same filters already in the queue:" msgstr "" @@ -26006,7 +26117,7 @@ msgstr "" msgid "There was an error building this page" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:182 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:196 msgid "There was an error saving filters" msgstr "" @@ -26063,7 +26174,7 @@ msgstr "" msgid "This Currency is disabled. Enable to use in transactions" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:391 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:405 msgid "This Kanban Board will be private" msgstr "" @@ -26100,7 +26211,7 @@ msgstr "" msgid "This cannot be undone" msgstr "" -#: frappe/desk/doctype/number_card/number_card.js:480 +#: frappe/desk/doctype/number_card/number_card.js:484 msgctxt "Number Card" msgid "This card is visible only to Administrator and System Managers by default. Set a DocType to share with users who have read access." msgstr "" @@ -26123,7 +26234,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:113 +#: frappe/model/delete_doc.py:153 msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time." msgstr "" @@ -26165,7 +26276,7 @@ msgid "This field will appear only if the fieldname defined here has value OR th "eval:doc.age>18" msgstr "" -#: frappe/core/doctype/file/file.py:522 +#: frappe/core/doctype/file/file.py:525 msgid "This file is attached to a protected document and cannot be deleted." msgstr "" @@ -26200,7 +26311,7 @@ msgstr "" msgid "This goes above the slideshow." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2189 +#: frappe/public/js/frappe/views/reports/query_report.js:2197 msgid "This is a background report. Please set the appropriate filters and then generate a new one." msgstr "" @@ -26250,7 +26361,7 @@ msgstr "" msgid "This month" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1037 +#: frappe/public/js/frappe/views/reports/query_report.js:1045 msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead." msgstr "" @@ -26258,7 +26369,7 @@ msgstr "" msgid "This report was generated on {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:853 +#: frappe/public/js/frappe/views/reports/query_report.js:861 msgid "This report was generated {0}." msgstr "" @@ -26400,9 +26511,11 @@ msgstr "" #. Label of the time_zone (Select) field in DocType 'System Settings' #. Label of the time_zone (Autocomplete) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #. 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/core/web_form/edit_profile/edit_profile.json #: frappe/desk/page/setup_wizard/setup_wizard.js:407 #: frappe/website/doctype/web_page_view/web_page_view.json msgid "Time Zone" @@ -26663,7 +26776,7 @@ msgstr "" msgid "To generate password click {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:854 +#: frappe/public/js/frappe/views/reports/query_report.js:862 msgid "To get the updated report, click on {0}." msgstr "" @@ -26738,7 +26851,7 @@ msgstr "" msgid "Toggle Sidebar" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1964 +#: frappe/public/js/frappe/list/list_view.js:1966 msgctxt "Button in list view menu" msgid "Toggle Sidebar" msgstr "" @@ -26864,7 +26977,7 @@ msgstr "" #: frappe/desk/query_report.py:587 #: frappe/public/js/frappe/views/reports/print_grid.html:45 -#: frappe/public/js/frappe/views/reports/query_report.js:1324 +#: frappe/public/js/frappe/views/reports/query_report.js:1332 #: frappe/public/js/frappe/views/reports/report_view.js:1553 msgid "Total" msgstr "" @@ -27021,7 +27134,7 @@ msgstr "" msgid "Translatable" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2244 +#: frappe/public/js/frappe/views/reports/query_report.js:2252 msgid "Translate Data" msgstr "" @@ -27379,7 +27492,7 @@ msgstr "" msgid "Unable to update event" msgstr "" -#: frappe/core/doctype/file/file.py:486 +#: frappe/core/doctype/file/file.py:489 msgid "Unable to write file format for {0}" msgstr "" @@ -27388,7 +27501,7 @@ msgstr "" msgid "Unassign Condition" msgstr "" -#: frappe/app.py:396 +#: frappe/app.py:399 msgid "Uncaught Exception" msgstr "" @@ -27404,7 +27517,7 @@ msgstr "" msgid "Undo last action" msgstr "" -#: frappe/database/query.py:1495 +#: frappe/database/query.py:1497 msgid "Unescaped quotes in string literal: {0}" msgstr "" @@ -27451,7 +27564,7 @@ msgstr "" msgid "Unknown Rounding Method: {}" msgstr "" -#: frappe/auth.py:316 +#: frappe/auth.py:319 msgid "Unknown User" msgstr "" @@ -27517,8 +27630,8 @@ msgstr "" msgid "Unsubscribed" msgstr "" -#: frappe/database/query.py:653 frappe/database/query.py:1387 -#: frappe/database/query.py:1397 +#: frappe/database/query.py:655 frappe/database/query.py:1389 +#: frappe/database/query.py:1399 msgid "Unsupported function or invalid field name: {0}" msgstr "" @@ -27552,7 +27665,7 @@ msgstr "" #: 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:427 +#: frappe/public/js/frappe/form/grid_row.js:428 msgid "Update" msgstr "" @@ -27586,6 +27699,11 @@ msgstr "" msgid "Update Password" msgstr "" +#. Title of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Update Profile" +msgstr "" + #. Label of the update_series (Section Break) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -27801,11 +27919,7 @@ msgstr "" msgid "Use if the default settings don't seem to detect your data correctly" msgstr "" -#: frappe/model/db_query.py:436 -msgid "Use of function {0} in field is restricted" -msgstr "" - -#: frappe/model/db_query.py:413 +#: frappe/model/db_query.py:411 msgid "Use of sub-query or function is restricted" msgstr "" @@ -28027,12 +28141,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:1944 +#: frappe/public/js/frappe/views/reports/query_report.js:1952 #: frappe/public/js/frappe/views/reports/report_view.js:1761 msgid "User Permissions" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1922 +#: frappe/public/js/frappe/list/list_view.js:1924 msgctxt "Button in list view menu" msgid "User Permissions" msgstr "" @@ -28176,7 +28290,7 @@ msgstr "" msgid "User {0} is disabled" msgstr "" -#: frappe/sessions.py:242 +#: frappe/sessions.py:243 msgid "User {0} is disabled. Please contact your System Manager." msgstr "" @@ -28353,7 +28467,7 @@ msgstr "" msgid "Value for a check field can be either 0 or 1" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:612 +#: frappe/custom/doctype/customize_form/customize_form.py:616 msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters" msgstr "" @@ -28474,7 +28588,7 @@ msgstr "" msgid "View Audit Trail" msgstr "" -#: frappe/core/doctype/user/user.js:156 +#: frappe/core/doctype/user/user.js:144 msgid "View Doctype Permissions" msgstr "" @@ -28486,7 +28600,7 @@ msgstr "" msgid "View Full Log" msgstr "" -#: frappe/public/js/frappe/views/treeview.js:484 +#: frappe/public/js/frappe/views/treeview.js:486 #: frappe/public/js/frappe/widgets/quick_list_widget.js:258 msgid "View List" msgstr "" @@ -28496,7 +28610,7 @@ msgstr "" msgid "View Log" msgstr "" -#: frappe/core/doctype/user/user.js:147 +#: frappe/core/doctype/user/user.js:135 #: frappe/core/doctype/user_permission/user_permission.js:24 msgid "View Permitted Documents" msgstr "" @@ -28612,6 +28726,7 @@ msgid "Warehouse" msgstr "" #. Option for the 'Style' (Select) field in DocType 'Workflow State' +#: frappe/public/js/frappe/router.js:613 #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Warning" msgstr "" @@ -29257,7 +29372,7 @@ msgstr "" msgid "Workspace" msgstr "" -#: frappe/public/js/frappe/router.js:175 +#: frappe/public/js/frappe/router.js:180 msgid "Workspace {0} does not exist" msgstr "" @@ -29379,7 +29494,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:1225 +#: frappe/public/js/frappe/views/reports/query_report.js:1233 msgid "Y Field" msgstr "" @@ -29441,7 +29556,7 @@ msgstr "" #: frappe/public/js/form_builder/utils.js:336 #: frappe/public/js/frappe/form/controls/link.js:498 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1665 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 #: frappe/website/doctype/help_article/templates/help_article.html:25 msgid "Yes" msgstr "" @@ -29477,6 +29592,10 @@ msgstr "" msgid "You added {0} rows to {1}" msgstr "" +#: frappe/public/js/frappe/router.js:642 +msgid "You are about to open an external link. To confirm, click the link again." +msgstr "" + #: frappe/public/js/frappe/dom.js:438 msgid "You are connected to internet." msgstr "" @@ -29520,7 +29639,7 @@ msgstr "" msgid "You are not allowed to export {} doctype" msgstr "" -#: frappe/public/js/frappe/views/treeview.js:448 +#: frappe/public/js/frappe/views/treeview.js:450 msgid "You are not allowed to print this report" msgstr "" @@ -29528,7 +29647,7 @@ msgstr "" msgid "You are not allowed to send emails related to this document" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:605 +#: frappe/website/doctype/web_form/web_form.py:632 msgid "You are not allowed to update this Web Form Document" msgstr "" @@ -29601,11 +29720,11 @@ msgstr "" msgid "You can continue with the onboarding after exploring this page" msgstr "" -#: frappe/model/delete_doc.py:137 +#: frappe/model/delete_doc.py:177 msgid "You can disable this {0} instead of deleting it." msgstr "" -#: frappe/core/doctype/file/file.py:758 +#: frappe/core/doctype/file/file.py:761 msgid "You can increase the limit from System Settings." msgstr "" @@ -29655,11 +29774,11 @@ msgstr "" msgid "You can use wildcard %" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:390 +#: frappe/custom/doctype/customize_form/customize_form.py:394 msgid "You can't set 'Options' for field {0}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:394 +#: frappe/custom/doctype/customize_form/customize_form.py:398 msgid "You can't set 'Translatable' for field {0}" msgstr "" @@ -29677,7 +29796,7 @@ msgstr "" msgid "You cannot create a dashboard chart from single DocTypes" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:386 +#: frappe/custom/doctype/customize_form/customize_form.py:390 msgid "You cannot unset 'Read Only' for field {0}" msgstr "" @@ -29720,11 +29839,11 @@ msgstr "" msgid "You do not have enough permissions to access this resource. Please contact your manager to get access." msgstr "" -#: frappe/app.py:381 +#: frappe/app.py:384 msgid "You do not have enough permissions to complete the action" msgstr "" -#: frappe/database/query.py:529 +#: frappe/database/query.py:531 msgid "You do not have permission to access field: {0}" msgstr "" @@ -29740,7 +29859,7 @@ msgstr "" msgid "You don't have access to Report: {0}" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:808 +#: frappe/website/doctype/web_form/web_form.py:835 msgid "You don't have permission to access the {0} DocType." msgstr "" @@ -29764,7 +29883,7 @@ msgstr "" msgid "You have been successfully logged out" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:245 +#: frappe/custom/doctype/customize_form/customize_form.py:247 msgid "You have hit the row size limit on database table: {0}" msgstr "" @@ -29792,7 +29911,7 @@ msgstr "" msgid "You haven't added any Dashboard Charts or Number Cards yet." msgstr "" -#: frappe/public/js/frappe/list/list_view.js:501 +#: frappe/public/js/frappe/list/list_view.js:503 msgid "You haven't created a {0} yet" msgstr "" @@ -29809,11 +29928,11 @@ msgstr "" msgid "You must add atleast one link." msgstr "" -#: frappe/website/doctype/web_form/web_form.py:804 +#: frappe/website/doctype/web_form/web_form.py:831 msgid "You must be logged in to use this form." msgstr "" -#: frappe/website/doctype/web_form/web_form.py:645 +#: frappe/website/doctype/web_form/web_form.py:672 msgid "You must login to submit this form" msgstr "" @@ -29928,6 +30047,10 @@ msgstr "" msgid "You viewed this" msgstr "" +#: frappe/public/js/frappe/router.js:653 +msgid "You will be redirected to:" +msgstr "" + #: frappe/core/doctype/user_invitation/user_invitation.py:113 msgid "You've been invited to join {0}" msgstr "" @@ -29973,7 +30096,7 @@ msgstr "" msgid "Your account has been deleted" msgstr "" -#: frappe/auth.py:514 +#: frappe/auth.py:517 msgid "Your account has been locked and will resume after {0} seconds" msgstr "" @@ -30039,7 +30162,7 @@ msgstr "" msgid "Your report is being generated in the background. You will receive an email on {0} with a download link once it is ready." msgstr "" -#: frappe/app.py:374 +#: frappe/app.py:377 msgid "Your session has expired, please login again to continue." msgstr "" @@ -30376,7 +30499,7 @@ msgstr "" msgid "logged in" msgstr "" -#: frappe/website/doctype/web_form/web_form.js:362 +#: frappe/website/doctype/web_form/web_form.js:363 msgid "login_required" msgstr "" @@ -30714,7 +30837,7 @@ msgstr "" msgid "via Google Meet" msgstr "" -#: frappe/email/doctype/notification/notification.py:403 +#: frappe/email/doctype/notification/notification.py:405 msgid "via Notification" msgstr "" @@ -30824,7 +30947,7 @@ msgstr "" msgid "{0} Dashboard" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:486 +#: frappe/public/js/frappe/form/grid_row.js:487 #: frappe/public/js/frappe/list/list_settings.js:225 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:178 msgid "{0} Fields" @@ -30875,7 +30998,7 @@ msgstr "" msgid "{0} Report" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:956 +#: frappe/public/js/frappe/views/reports/query_report.js:964 msgid "{0} Reports" msgstr "" @@ -30948,7 +31071,7 @@ msgctxt "Form timeline" msgid "{0} attached {1}" msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:152 +#: frappe/core/doctype/system_settings/system_settings.py:153 msgid "{0} can not be more than {1}" msgstr "" @@ -31025,7 +31148,7 @@ msgstr "" msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values" msgstr "" -#: frappe/database/query.py:708 +#: frappe/database/query.py:710 msgid "{0} fields cannot contain backticks (`): {1}" msgstr "" @@ -31070,7 +31193,7 @@ msgstr "" msgid "{0} is a mandatory field" msgstr "" -#: frappe/core/doctype/file/file.py:566 +#: frappe/core/doctype/file/file.py:569 msgid "{0} is a not a valid zip file" msgstr "" @@ -31119,7 +31242,7 @@ msgstr "" msgid "{0} is mandatory" msgstr "" -#: frappe/database/query.py:485 +#: frappe/database/query.py:487 msgid "{0} is not a child table of {1}" msgstr "" @@ -31139,7 +31262,7 @@ msgstr "" msgid "{0} is not a valid Cron expression." msgstr "" -#: frappe/public/js/frappe/form/controls/dynamic_link.js:27 +#: frappe/public/js/frappe/form/controls/dynamic_link.js:23 msgid "{0} is not a valid DocType for Dynamic Link" msgstr "" @@ -31176,7 +31299,7 @@ msgstr "" msgid "{0} is not a valid report format. Report format should one of the following {1}" msgstr "" -#: frappe/core/doctype/file/file.py:546 +#: frappe/core/doctype/file/file.py:549 msgid "{0} is not a zip file" msgstr "" @@ -31224,7 +31347,7 @@ msgstr "" msgid "{0} is within {1}" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1839 +#: frappe/public/js/frappe/list/list_view.js:1841 msgid "{0} items selected" msgstr "" @@ -31310,11 +31433,11 @@ msgid "{0} not found" msgstr "" #: frappe/core/doctype/report/report.py:427 -#: frappe/public/js/frappe/list/list_view.js:1211 +#: frappe/public/js/frappe/list/list_view.js:1213 msgid "{0} of {1}" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1213 +#: frappe/public/js/frappe/list/list_view.js:1215 msgid "{0} of {1} ({2} rows with children)" msgstr "" @@ -31364,7 +31487,7 @@ msgstr "" msgid "{0} removed {1} rows from {2}" msgstr "" -#: frappe/public/js/frappe/roles_editor.js:62 +#: frappe/public/js/frappe/roles_editor.js:64 msgid "{0} role does not have permission on any doctype" msgstr "" @@ -31438,7 +31561,7 @@ msgstr "" msgid "{0} un-shared this document with {1}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:254 +#: frappe/custom/doctype/customize_form/customize_form.py:256 msgid "{0} updated" msgstr "" @@ -31498,7 +31621,7 @@ msgstr "" msgid "{0} {1} not found" msgstr "" -#: frappe/model/delete_doc.py:248 +#: frappe/model/delete_doc.py:288 msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first." msgstr "" @@ -31611,7 +31734,7 @@ msgstr "" msgid "{0}: {1} is set to state {2}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1283 +#: frappe/public/js/frappe/views/reports/query_report.js:1291 msgid "{0}: {1} vs {2}" msgstr "" @@ -31647,11 +31770,11 @@ msgstr "" msgid "{} Complete" msgstr "" -#: frappe/utils/data.py:2541 +#: frappe/utils/data.py:2567 msgid "{} Invalid python code on line {}" msgstr "" -#: frappe/utils/data.py:2550 +#: frappe/utils/data.py:2576 msgid "{} Possibly invalid python code.
{}" msgstr "" @@ -31677,7 +31800,7 @@ msgstr "" msgid "{} is not a valid date string." msgstr "" -#: frappe/commands/utils.py:562 +#: frappe/commands/utils.py:561 msgid "{} not found in PATH! This is required to access the console." msgstr "" diff --git a/frappe/locale/da.po b/frappe/locale/da.po index 2f4a313779..3dcd25c897 100644 --- a/frappe/locale/da.po +++ b/frappe/locale/da.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: developers@frappe.io\n" -"POT-Creation-Date: 2025-09-21 09:33+0000\n" -"PO-Revision-Date: 2025-09-21 19:57\n" +"POT-Creation-Date: 2025-10-05 09:33+0000\n" +"PO-Revision-Date: 2025-10-06 22:59\n" "Last-Translator: developers@frappe.io\n" "Language-Team: Danish\n" "MIME-Version: 1.0\n" @@ -78,7 +78,7 @@ msgstr "" msgid "'In List View' is not allowed for field {0} of type {1}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:363 +#: frappe/custom/doctype/customize_form/customize_form.py:367 msgid "'In List View' not allowed for type {0} in row {1}" msgstr "" @@ -122,7 +122,7 @@ msgstr "0 - Udkast; 1 - Godkendt; 2 - Annulleret" msgid "0 is highest" msgstr "0 er højest" -#: frappe/public/js/frappe/form/grid_row.js:892 +#: frappe/public/js/frappe/form/grid_row.js:893 msgid "1 = True & 0 = False" msgstr "1 = Sandt & 0 = Falsk" @@ -141,11 +141,11 @@ msgstr "1 Dag" msgid "1 Google Calendar Event synced." msgstr "1 Google Kalender Begivenhed synkroniseret." -#: frappe/public/js/frappe/views/reports/query_report.js:955 +#: frappe/public/js/frappe/views/reports/query_report.js:963 msgid "1 Report" msgstr "1 Rapport" -#: frappe/tests/test_utils.py:739 +#: frappe/tests/test_utils.py:845 msgid "1 day ago" msgstr "1 dag siden" @@ -154,17 +154,17 @@ msgid "1 hour" msgstr "1 time" #: frappe/public/js/frappe/utils/pretty_date.js:52 -#: frappe/tests/test_utils.py:737 +#: frappe/tests/test_utils.py:843 msgid "1 hour ago" msgstr "1 time siden" #: frappe/public/js/frappe/utils/pretty_date.js:48 -#: frappe/tests/test_utils.py:735 +#: frappe/tests/test_utils.py:841 msgid "1 minute ago" msgstr "1 minut siden" #: frappe/public/js/frappe/utils/pretty_date.js:66 -#: frappe/tests/test_utils.py:743 +#: frappe/tests/test_utils.py:849 msgid "1 month ago" msgstr "1 måned siden" @@ -186,37 +186,37 @@ msgctxt "User added row to child table" msgid "1 row to {0}" msgstr "" -#: frappe/tests/test_utils.py:734 +#: frappe/tests/test_utils.py:840 msgid "1 second ago" msgstr "1 sekund siden" #: frappe/public/js/frappe/utils/pretty_date.js:62 -#: frappe/tests/test_utils.py:741 +#: frappe/tests/test_utils.py:847 msgid "1 week ago" msgstr "1 uge siden" #: frappe/public/js/frappe/utils/pretty_date.js:70 -#: frappe/tests/test_utils.py:745 +#: frappe/tests/test_utils.py:851 msgid "1 year ago" msgstr "1 år siden" -#: frappe/tests/test_utils.py:738 +#: frappe/tests/test_utils.py:844 msgid "2 hours ago" msgstr "2 timer siden" -#: frappe/tests/test_utils.py:744 +#: frappe/tests/test_utils.py:850 msgid "2 months ago" msgstr "2 måneder siden" -#: frappe/tests/test_utils.py:742 +#: frappe/tests/test_utils.py:848 msgid "2 weeks ago" msgstr "2 uger siden" -#: frappe/tests/test_utils.py:746 +#: frappe/tests/test_utils.py:852 msgid "2 years ago" msgstr "2 år siden" -#: frappe/tests/test_utils.py:736 +#: frappe/tests/test_utils.py:842 msgid "3 minutes ago" msgstr "3 minutter siden" @@ -232,7 +232,7 @@ msgstr "4 timer" msgid "5 Records" msgstr "5 Poster" -#: frappe/tests/test_utils.py:740 +#: frappe/tests/test_utils.py:846 msgid "5 days ago" msgstr "5 dage siden" @@ -270,6 +270,16 @@ msgstr "{0} er ikke gyldig URL" 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 "" +#. Introduction text of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "

Request a file containing your personally identifiable information (PII) that is saved on our system. The file will be in JSON format and is sent to you by email. If you would like to have your PII deleted from our system, please make a request to delete data.

" +msgstr "" + +#. Introduction text of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "

Send a request to delete your account and personally identifiable information (PII) that is stored on our system. You will receive an email to verify your request. Once the request is verified we will take care of deleting your PII. If you just want to check what PII we have stored, you can request your data.

" +msgstr "" + #. Content of the 'Help HTML' (HTML) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -571,6 +581,11 @@ msgstr "" msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three." msgstr "" +#. Success message of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "A download link with your data will be sent to the email address associated with your account." +msgstr "" + #: frappe/custom/doctype/custom_field/custom_field.py:175 msgid "A field with the name {0} already exists in {1}" msgstr "Et felt med navnet {0} findes allerede i {1}" @@ -697,7 +712,7 @@ msgstr "" #. 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.js:452 frappe/core/doctype/user/user.json +#: frappe/core/doctype/user/user.js:459 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 @@ -716,7 +731,7 @@ msgstr "" msgid "API Key cannot be regenerated" msgstr "" -#: frappe/core/doctype/user/user.js:449 +#: frappe/core/doctype/user/user.js:456 msgid "API Keys" msgstr "API Nøgler" @@ -740,7 +755,7 @@ msgstr "API Anmodningslog" #. 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.js:459 frappe/core/doctype/user/user.json +#: frappe/core/doctype/user/user.js:466 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" @@ -826,7 +841,7 @@ msgstr "Adgang Token" msgid "Access Token URL" msgstr "Adgang Token URL" -#: frappe/auth.py:491 +#: frappe/auth.py:494 msgid "Access not allowed from this IP Address" msgstr "Adgang ikke tilladt fra denne IP Adresse" @@ -942,7 +957,7 @@ msgstr "" #: 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:842 +#: frappe/public/js/frappe/views/reports/query_report.js:850 msgid "Actions" msgstr "Handlinger" @@ -999,7 +1014,7 @@ msgstr "Aktivitet Log" #: 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:501 +#: frappe/public/js/frappe/form/grid_row.js:502 #: 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 @@ -1010,7 +1025,7 @@ msgstr "Aktivitet Log" msgid "Add" msgstr "Tilføj" -#: frappe/public/js/frappe/form/grid_row.js:454 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Add / Remove Columns" msgstr "Tilføj / Fjern Kolonner" @@ -1055,8 +1070,8 @@ msgid "Add Child" msgstr "Tilføj Underordnet" #: frappe/public/js/frappe/views/kanban/kanban_board.html:4 -#: frappe/public/js/frappe/views/reports/query_report.js:1832 -#: frappe/public/js/frappe/views/reports/query_report.js:1835 +#: frappe/public/js/frappe/views/reports/query_report.js:1840 +#: frappe/public/js/frappe/views/reports/query_report.js:1843 #: frappe/public/js/frappe/views/reports/report_view.js:360 #: frappe/public/js/frappe/views/reports/report_view.js:385 #: frappe/public/js/print_format_builder/Field.vue:112 @@ -1150,7 +1165,7 @@ msgstr "Tilføj Abonnenter" msgid "Add Tags" msgstr "Tilføj Tags" -#: frappe/public/js/frappe/list/list_view.js:2149 +#: frappe/public/js/frappe/list/list_view.js:2151 msgctxt "Button in list view actions menu" msgid "Add Tags" msgstr "Tilføj Tags" @@ -1531,11 +1546,11 @@ msgstr "Advarsel" msgid "Alerts and Notifications" msgstr "Advarsler og Meddelelser" -#: frappe/database/query.py:1608 +#: frappe/database/query.py:1610 msgid "Alias cannot be a SQL keyword: {0}" msgstr "" -#: frappe/database/query.py:1533 +#: frappe/database/query.py:1535 msgid "Alias must be a string" msgstr "" @@ -1982,6 +1997,12 @@ msgstr "" msgid "Alternative Email ID" msgstr "" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Always" +msgstr "" + #. Label of the always_bcc (Data) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Always BCC Address" @@ -2058,6 +2079,11 @@ msgstr "" msgid "Amendment naming rules updated." msgstr "" +#. Success message of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "An email to verify your request has been sent to your email address. Please verify your request to complete the process." +msgstr "" + #: frappe/public/js/frappe/ui/toolbar/toolbar.js:354 msgid "An error occurred while setting Session Defaults" msgstr "" @@ -2240,7 +2266,7 @@ msgstr "" msgid "Apply" msgstr "Anvend" -#: frappe/public/js/frappe/list/list_view.js:2134 +#: frappe/public/js/frappe/list/list_view.js:2136 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" msgstr "Anvend Tildelingsregel" @@ -2325,7 +2351,7 @@ msgstr "" msgid "Are you sure you want to cancel the invitation?" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2113 +#: frappe/public/js/frappe/list/list_view.js:2115 msgid "Are you sure you want to clear the assignments?" msgstr "" @@ -2361,7 +2387,7 @@ msgstr "" msgid "Are you sure you want to discard the changes?" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:969 +#: frappe/public/js/frappe/views/reports/query_report.js:977 msgid "Are you sure you want to generate a new report?" msgstr "" @@ -2369,7 +2395,7 @@ msgstr "" msgid "Are you sure you want to merge {0} with {1}?" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:108 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:118 msgid "Are you sure you want to proceed?" msgstr "" @@ -2424,6 +2450,12 @@ msgstr "" msgid "As per your request, your account and data on {0} associated with email {1} has been permanently deleted" msgstr "" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Ask" +msgstr "" + #. Label of the assign_condition (Code) field in DocType 'Assignment Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Assign Condition" @@ -2433,7 +2465,7 @@ msgstr "" msgid "Assign To" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2095 +#: frappe/public/js/frappe/list/list_view.js:2097 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "" @@ -2576,7 +2608,7 @@ msgstr "" msgid "Asynchronous" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:696 +#: frappe/public/js/frappe/form/grid_row.js:697 msgid "At least one column is required to show in the grid." msgstr "" @@ -3556,7 +3588,7 @@ msgstr "" msgid "Bulk Edit" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1189 +#: frappe/public/js/frappe/form/grid.js:1190 msgid "Bulk Edit {0}" msgstr "" @@ -3848,7 +3880,7 @@ msgstr "" #. 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/doctype/doctype_list.js:131 #: frappe/core/doctype/user_document_type/user_document_type.json #: frappe/core/doctype/user_invitation/user_invitation.js:17 #: frappe/email/doctype/notification/notification.json @@ -3856,7 +3888,7 @@ msgstr "" msgid "Cancel" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2204 +#: frappe/public/js/frappe/list/list_view.js:2206 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "" @@ -3874,7 +3906,7 @@ msgstr "" msgid "Cancel All Documents" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2209 +#: frappe/public/js/frappe/list/list_view.js:2211 msgctxt "Title of confirmation dialog" msgid "Cancel {0} documents?" msgstr "" @@ -3927,7 +3959,7 @@ msgstr "" msgid "Cannot Update After Submit" msgstr "" -#: frappe/core/doctype/file/file.py:643 +#: frappe/core/doctype/file/file.py:646 msgid "Cannot access file path {0}" msgstr "" @@ -3975,7 +4007,7 @@ msgstr "" msgid "Cannot delete Home and Attachments folders" msgstr "" -#: frappe/model/delete_doc.py:379 +#: frappe/model/delete_doc.py:419 msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}" msgstr "" @@ -4055,7 +4087,7 @@ msgstr "" msgid "Cannot find file {} on disk" msgstr "" -#: frappe/core/doctype/file/file.py:583 +#: frappe/core/doctype/file/file.py:586 msgid "Cannot get file contents of a Folder" msgstr "" @@ -4063,7 +4095,7 @@ msgstr "" msgid "Cannot have multiple printers mapped to a single print format." msgstr "" -#: frappe/public/js/frappe/form/grid.js:1133 +#: frappe/public/js/frappe/form/grid.js:1134 msgid "Cannot import table with more than 5000 rows." msgstr "" @@ -4079,7 +4111,7 @@ msgstr "" msgid "Cannot match column {0} with any field" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:175 +#: frappe/public/js/frappe/form/grid_row.js:176 msgid "Cannot move row" msgstr "" @@ -4108,11 +4140,11 @@ msgstr "" msgid "Cannot update {0}" msgstr "" -#: frappe/model/db_query.py:1130 +#: frappe/model/db_query.py:1136 msgid "Cannot use sub-query here." msgstr "" -#: frappe/model/db_query.py:1162 +#: frappe/model/db_query.py:1168 msgid "Cannot use {0} in order/group by" msgstr "" @@ -4384,11 +4416,11 @@ msgstr "" #. Description of the 'Is Child Table' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:52 +#: frappe/core/doctype/doctype/doctype_list.js:53 msgid "Child Tables are shown as a Grid in other DocTypes" msgstr "" -#: frappe/database/query.py:660 +#: frappe/database/query.py:662 msgid "Child query fields for '{0}' must be a list or tuple." msgstr "" @@ -4444,7 +4476,7 @@ msgstr "" msgid "Clear All" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2110 +#: frappe/public/js/frappe/list/list_view.js:2112 msgctxt "Button in list view actions menu" msgid "Clear Assignment" msgstr "" @@ -4538,7 +4570,7 @@ msgstr "" msgid "Click to Set Filters" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:739 +#: frappe/public/js/frappe/list/list_view.js:741 msgid "Click to sort by {0}" msgstr "" @@ -4716,7 +4748,7 @@ msgctxt "Shrink code field." msgid "Collapse" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2113 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 #: frappe/public/js/frappe/views/treeview.js:123 msgid "Collapse All" msgstr "" @@ -4771,7 +4803,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:1233 +#: frappe/public/js/frappe/views/reports/query_report.js:1241 #: frappe/public/js/frappe/widgets/widget_dialog.js:546 #: frappe/public/js/frappe/widgets/widget_dialog.js:694 #: frappe/website/doctype/color/color.json @@ -4827,11 +4859,11 @@ msgstr "" msgid "Column Name cannot be empty" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:454 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Column Width" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:661 +#: frappe/public/js/frappe/form/grid_row.js:662 msgid "Column width cannot be zero." msgstr "" @@ -4858,7 +4890,7 @@ msgstr "" msgid "Columns / Fields" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:397 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:411 msgid "Columns based on" msgstr "" @@ -5122,7 +5154,7 @@ msgstr "" msgid "Configure Chart" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:406 +#: frappe/public/js/frappe/form/grid_row.js:407 msgid "Configure Columns" msgstr "" @@ -5147,7 +5179,7 @@ msgstr "" msgid "Configure various aspects of how document naming works like naming series, current counter." msgstr "" -#: frappe/core/doctype/user/user.js:412 frappe/public/js/frappe/dom.js:345 +#: frappe/core/doctype/user/user.js:400 frappe/public/js/frappe/dom.js:345 #: frappe/www/update-password.html:66 msgid "Confirm" msgstr "" @@ -5166,7 +5198,7 @@ msgstr "" msgid "Confirm Deletion of Account" msgstr "" -#: frappe/core/doctype/user/user.js:196 +#: frappe/core/doctype/user/user.js:184 msgid "Confirm New Password" msgstr "" @@ -5419,7 +5451,7 @@ msgstr "" msgid "Copy to Clipboard" msgstr "" -#: frappe/core/doctype/user/user.js:480 +#: frappe/core/doctype/user/user.js:487 msgid "Copy token to clipboard" msgstr "" @@ -5428,7 +5460,7 @@ msgstr "" msgid "Copyright" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:123 +#: frappe/custom/doctype/customize_form/customize_form.py:125 msgid "Core DocTypes cannot be customized." msgstr "" @@ -5452,7 +5484,7 @@ msgstr "" msgid "Could not map column {0} to field {1}" msgstr "" -#: frappe/database/query.py:564 +#: frappe/database/query.py:566 msgid "Could not parse field: {0}" msgstr "" @@ -5544,13 +5576,13 @@ 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:1265 +#: frappe/public/js/frappe/views/reports/query_report.js:1273 #: frappe/public/js/frappe/views/workspace/workspace.js:469 #: frappe/workflow/page/workflow_builder/workflow_builder.js:46 msgid "Create" msgstr "Skabe" -#: frappe/core/doctype/doctype/doctype_list.js:102 +#: frappe/core/doctype/doctype/doctype_list.js:103 msgid "Create & Continue" msgstr "" @@ -5564,7 +5596,7 @@ msgid "Create Card" msgstr "" #: frappe/public/js/frappe/views/reports/query_report.js:285 -#: frappe/public/js/frappe/views/reports/query_report.js:1192 +#: frappe/public/js/frappe/views/reports/query_report.js:1200 msgid "Create Chart" msgstr "" @@ -5598,12 +5630,12 @@ msgstr "" msgid "Create New" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:512 +#: frappe/public/js/frappe/list/list_view.js:514 msgctxt "Create a new document from list view" msgid "Create New" msgstr "" -#: frappe/core/doctype/doctype/doctype_list.js:100 +#: frappe/core/doctype/doctype/doctype_list.js:101 msgid "Create New DocType" msgstr "" @@ -5611,7 +5643,7 @@ msgstr "" msgid "Create New Kanban Board" msgstr "" -#: frappe/core/doctype/user/user.js:276 +#: frappe/core/doctype/user/user.js:264 msgid "Create User Email" msgstr "" @@ -5634,8 +5666,8 @@ msgstr "" #: frappe/public/js/frappe/form/controls/link.js:315 #: frappe/public/js/frappe/form/controls/link.js:317 #: frappe/public/js/frappe/form/link_selector.js:139 -#: frappe/public/js/frappe/list/list_view.js:504 -#: frappe/public/js/frappe/web_form/web_form_list.js:225 +#: frappe/public/js/frappe/list/list_view.js:506 +#: frappe/public/js/frappe/web_form/web_form_list.js:226 msgid "Create a new {0}" msgstr "" @@ -5651,7 +5683,7 @@ msgstr "" msgid "Create or Edit Workflow" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:507 +#: frappe/public/js/frappe/list/list_view.js:509 msgid "Create your first {0}" msgstr "" @@ -5998,7 +6030,7 @@ 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/core/doctype/doctype/doctype_list.js:83 #: frappe/website/doctype/website_theme/website_theme.json msgid "Custom?" msgstr "" @@ -6033,7 +6065,7 @@ msgstr "" msgid "Customize" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1947 +#: frappe/public/js/frappe/list/list_view.js:1949 msgctxt "Button in list view menu" msgid "Customize" msgstr "" @@ -6052,7 +6084,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:343 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 msgid "Customize Form" msgstr "" @@ -6283,7 +6315,7 @@ msgstr "" msgid "Data Import Template" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:615 +#: frappe/custom/doctype/customize_form/customize_form.py:619 msgid "Data Too Long" msgstr "" @@ -6314,7 +6346,7 @@ msgstr "" msgid "Database Storage Usage By Tables" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:249 +#: frappe/custom/doctype/customize_form/customize_form.py:251 msgid "Database Table Row Size Limit" msgstr "" @@ -6684,13 +6716,13 @@ msgstr "" #: frappe/public/js/frappe/form/toolbar.js:464 #: frappe/public/js/frappe/views/reports/report_view.js:1749 #: frappe/public/js/frappe/views/treeview.js:329 -#: frappe/public/js/frappe/web_form/web_form_list.js:282 +#: frappe/public/js/frappe/web_form/web_form_list.js:283 #: frappe/templates/discussions/reply_card.html:35 #: frappe/templates/discussions/reply_section.html:29 msgid "Delete" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2172 +#: frappe/public/js/frappe/list/list_view.js:2174 msgctxt "Button in list view actions menu" msgid "Delete" msgstr "" @@ -6723,7 +6755,7 @@ msgstr "" msgid "Delete Data" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:106 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:116 msgid "Delete Kanban Board" msgstr "" @@ -6737,7 +6769,7 @@ msgctxt "Title of confirmation dialog" msgid "Delete Tab" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:936 +#: frappe/public/js/frappe/views/reports/query_report.js:944 msgid "Delete and Generate New" msgstr "" @@ -6779,12 +6811,12 @@ msgstr "" msgid "Delete this record to allow sending to this email address" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2177 +#: frappe/public/js/frappe/list/list_view.js:2179 msgctxt "Title of confirmation dialog" msgid "Delete {0} item permanently?" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2183 +#: frappe/public/js/frappe/list/list_view.js:2185 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "" @@ -7281,10 +7313,14 @@ msgstr "" msgid "Do not create new user if user with email does not exist in the system" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1194 +#: frappe/public/js/frappe/form/grid.js:1195 msgid "Do not edit headers which are preset in the template" msgstr "" +#: frappe/public/js/frappe/router.js:624 +msgid "Do not warn me again about {0}" +msgstr "" + #: frappe/core/doctype/system_settings/system_settings.js:71 msgid "Do you still want to proceed?" msgstr "" @@ -7708,7 +7744,7 @@ msgstr "" #: 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/public/js/frappe/roles_editor.js:68 #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json #: frappe/workflow/doctype/workflow/workflow.json msgid "Document Type" @@ -7759,15 +7795,15 @@ msgstr "" msgid "Document follow is not enabled for this user." msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1300 +#: frappe/public/js/frappe/list/list_view.js:1302 msgid "Document has been cancelled" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1299 +#: frappe/public/js/frappe/list/list_view.js:1301 msgid "Document has been submitted" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1298 +#: frappe/public/js/frappe/list/list_view.js:1300 msgid "Document is in draft state" msgstr "" @@ -7909,7 +7945,7 @@ msgstr "" msgid "Double click to edit label" msgstr "" -#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:467 +#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:474 #: frappe/email/doctype/auto_email_report/auto_email_report.js:8 #: frappe/public/js/frappe/form/grid.js:66 msgid "Download" @@ -7942,7 +7978,7 @@ msgstr "" msgid "Download PDF" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:832 +#: frappe/public/js/frappe/views/reports/query_report.js:840 msgid "Download Report" msgstr "" @@ -8142,8 +8178,8 @@ msgstr "" #: 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:880 -#: frappe/public/js/frappe/views/reports/query_report.js:1783 +#: frappe/public/js/frappe/views/reports/query_report.js:888 +#: frappe/public/js/frappe/views/reports/query_report.js:1791 #: 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 @@ -8155,7 +8191,7 @@ msgstr "" msgid "Edit" msgstr "Redigere" -#: frappe/public/js/frappe/list/list_view.js:2258 +#: frappe/public/js/frappe/list/list_view.js:2260 msgctxt "Button in list view actions menu" msgid "Edit" msgstr "Redigere" @@ -8165,7 +8201,7 @@ msgctxt "Button in web form" msgid "Edit" msgstr "Redigere" -#: frappe/public/js/frappe/form/grid_row.js:349 +#: frappe/public/js/frappe/form/grid_row.js:350 msgctxt "Edit grid row" msgid "Edit" msgstr "Redigere" @@ -8194,7 +8230,7 @@ msgstr "" msgid "Edit DocType" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1974 +#: frappe/public/js/frappe/list/list_view.js:1976 msgctxt "Button in list view menu" msgid "Edit DocType" msgstr "" @@ -8314,7 +8350,7 @@ msgstr "" #. 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/core/doctype/doctype/doctype_list.js:58 #: frappe/custom/doctype/customize_form/customize_form.json msgid "Editable Grid" msgstr "" @@ -8359,6 +8395,8 @@ msgstr "" #. 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' +#. Label of a field in the request-data Web Form +#. Label of a field in the request-to-delete-data Web Form #: frappe/automation/workspace/tools/tools.json #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/custom_docperm/custom_docperm.json @@ -8377,6 +8415,8 @@ msgstr "" #: 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/website/web_form/request_data/request_data.json +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json #: frappe/www/login.html:8 frappe/www/login.py:104 msgid "Email" msgstr "E-mail" @@ -8608,7 +8648,7 @@ msgstr "" msgid "Email has been moved to trash" msgstr "" -#: frappe/core/doctype/user/user.js:278 +#: frappe/core/doctype/user/user.js:266 msgid "Email is mandatory to create User Email" msgstr "" @@ -8651,7 +8691,7 @@ msgstr "" msgid "Embed code copied" msgstr "" -#: frappe/database/query.py:1537 +#: frappe/database/query.py:1539 msgid "Empty alias is not allowed" msgstr "" @@ -8659,7 +8699,7 @@ msgstr "" msgid "Empty column" msgstr "" -#: frappe/database/query.py:1455 +#: frappe/database/query.py:1457 msgid "Empty string arguments are not allowed" msgstr "" @@ -9115,9 +9155,9 @@ msgstr "" msgid "Error in Header/Footer Script" msgstr "" -#: frappe/email/doctype/notification/notification.py:640 -#: frappe/email/doctype/notification/notification.py:780 -#: frappe/email/doctype/notification/notification.py:786 +#: frappe/email/doctype/notification/notification.py:642 +#: frappe/email/doctype/notification/notification.py:782 +#: frappe/email/doctype/notification/notification.py:788 msgid "Error in Notification" msgstr "" @@ -9137,7 +9177,7 @@ msgstr "" msgid "Error while connecting to email account {0}" msgstr "" -#: frappe/email/doctype/notification/notification.py:777 +#: frappe/email/doctype/notification/notification.py:779 msgid "Error while evaluating Notification {0}. Please fix your template." msgstr "" @@ -9298,7 +9338,7 @@ msgstr "" msgid "Executing..." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2132 +#: frappe/public/js/frappe/views/reports/query_report.js:2140 msgid "Execution Time: {0} sec" msgstr "" @@ -9324,12 +9364,12 @@ msgctxt "Enlarge code field." msgid "Expand" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2113 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 #: frappe/public/js/frappe/views/treeview.js:133 msgid "Expand All" msgstr "" -#: frappe/database/query.py:352 +#: frappe/database/query.py:354 msgid "Expected 'and' or 'or' operator, found: {0}" msgstr "" @@ -9387,13 +9427,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:1820 +#: frappe/public/js/frappe/views/reports/query_report.js:1828 #: frappe/public/js/frappe/views/reports/report_view.js:1629 #: frappe/public/js/frappe/widgets/chart_widget.js:315 msgid "Export" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2280 +#: frappe/public/js/frappe/list/list_view.js:2282 msgctxt "Button in list view actions menu" msgid "Export" msgstr "" @@ -9586,7 +9626,7 @@ msgstr "" msgid "Failed to connect to server" msgstr "" -#: frappe/auth.py:698 +#: frappe/auth.py:701 msgid "Failed to decode token, please provide a valid base64-encoded token." msgstr "" @@ -9750,7 +9790,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:236 -#: frappe/public/js/frappe/views/reports/query_report.js:1879 +#: frappe/public/js/frappe/views/reports/query_report.js:1887 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_form_list_column/web_form_list_column.json msgid "Field" @@ -9833,7 +9873,7 @@ msgstr "" msgid "Field {0} not found." msgstr "" -#: frappe/email/doctype/notification/notification.py:545 +#: frappe/email/doctype/notification/notification.py:547 msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link" msgstr "" @@ -9851,7 +9891,7 @@ msgstr "" #: 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:454 +#: frappe/public/js/frappe/form/grid_row.js:455 #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Fieldname" msgstr "" @@ -9932,7 +9972,7 @@ msgstr "" msgid "Fields must be a list or tuple when as_list is enabled" msgstr "" -#: frappe/database/query.py:611 +#: frappe/database/query.py:613 msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function" msgstr "" @@ -9960,7 +10000,7 @@ msgstr "" msgid "Fieldtype cannot be changed from {0} to {1}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:589 +#: frappe/custom/doctype/customize_form/customize_form.py:593 msgid "Fieldtype cannot be changed from {0} to {1} in row {2}" msgstr "" @@ -10026,7 +10066,7 @@ msgstr "" msgid "File backup is ready" msgstr "" -#: frappe/core/doctype/file/file.py:646 +#: frappe/core/doctype/file/file.py:649 msgid "File name cannot have {0}" msgstr "" @@ -10034,7 +10074,7 @@ msgstr "" msgid "File not attached" msgstr "" -#: frappe/core/doctype/file/file.py:756 frappe/public/js/frappe/request.js:200 +#: frappe/core/doctype/file/file.py:759 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 "" @@ -10047,7 +10087,7 @@ msgstr "" msgid "File type of {0} is not allowed" msgstr "" -#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:448 +#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:451 msgid "File {0} does not exist" msgstr "" @@ -10101,11 +10141,11 @@ msgstr "" msgid "Filter Values" msgstr "" -#: frappe/database/query.py:358 +#: frappe/database/query.py:360 msgid "Filter condition missing after operator: {0}" msgstr "" -#: frappe/database/query.py:425 +#: frappe/database/query.py:427 msgid "Filter fields cannot contain backticks (`)." msgstr "" @@ -10182,7 +10222,7 @@ msgstr "" msgid "Filters applied for {0}" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:188 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:202 msgid "Filters saved" msgstr "" @@ -10230,9 +10270,12 @@ msgstr "" #. Label of the first_name (Data) field in DocType 'Contact' #. Label of the first_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json #: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:44 -#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:15 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:15 msgid "First Name" msgstr "" @@ -10313,7 +10356,7 @@ msgstr "" msgid "Folder name should not include '/' (slash)" msgstr "" -#: frappe/core/doctype/file/file.py:494 +#: frappe/core/doctype/file/file.py:497 msgid "Folder {0} is not empty" msgstr "" @@ -10515,7 +10558,7 @@ msgstr "" msgid "For Value" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2129 +#: frappe/public/js/frappe/views/reports/query_report.js:2137 #: frappe/public/js/frappe/views/reports/report_view.js:108 msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)." msgstr "" @@ -10800,7 +10843,7 @@ msgstr "" msgid "From Date Field" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1840 +#: frappe/public/js/frappe/views/reports/query_report.js:1848 msgid "From Document Type" msgstr "" @@ -10862,12 +10905,12 @@ msgstr "" msgid "Function {0} is not whitelisted." msgstr "" -#: frappe/database/query.py:1417 +#: frappe/database/query.py:1419 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" +msgid "Further sub-groups can only be created under records marked as 'Group'" msgstr "" #: frappe/core/doctype/communication/communication.js:291 @@ -10927,7 +10970,7 @@ msgstr "" msgid "Generate Keys" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:874 +#: frappe/public/js/frappe/views/reports/query_report.js:882 msgid "Generate New Report" msgstr "" @@ -11343,14 +11386,10 @@ msgstr "" msgid "Group By field is required to create a dashboard chart" msgstr "" -#: frappe/database/query.py:750 +#: frappe/database/query.py:752 msgid "Group By must be a string" msgstr "" -#: frappe/public/js/frappe/views/treeview.js:418 -msgid "Group Node" -msgstr "" - #. Label of the ldap_group_objectclass (Data) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Group Object Class" @@ -11680,7 +11719,7 @@ msgstr "" msgid "Hidden Fields" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1642 +#: frappe/public/js/frappe/views/reports/query_report.js:1650 msgid "Hidden columns include: {0}" msgstr "" @@ -11792,7 +11831,7 @@ msgstr "" msgid "Hide Standard Menu" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1849 +#: frappe/public/js/frappe/list/list_view.js:1851 msgid "Hide Tags" msgstr "" @@ -12051,7 +12090,7 @@ msgstr "" #: frappe/core/doctype/doctype/doctype.py:1777 #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45 -#: frappe/public/js/frappe/roles_editor.js:66 +#: frappe/public/js/frappe/roles_editor.js:68 msgid "If Owner" msgstr "" @@ -12279,8 +12318,8 @@ msgstr "" msgid "Illegal Document Status for {0}" msgstr "" -#: frappe/model/db_query.py:453 frappe/model/db_query.py:456 -#: frappe/model/db_query.py:1121 +#: frappe/model/db_query.py:454 frappe/model/db_query.py:457 +#: frappe/model/db_query.py:1122 msgid "Illegal SQL Query" msgstr "" @@ -12367,11 +12406,11 @@ msgstr "" #. Option for the 'Operation' (Select) field in DocType 'Activity Log' #: frappe/core/doctype/activity_log/activity_log.json -#: frappe/core/doctype/user/user.js:384 +#: frappe/core/doctype/user/user.js:372 msgid "Impersonate" msgstr "" -#: frappe/core/doctype/user/user.js:411 +#: frappe/core/doctype/user/user.js:399 msgid "Impersonate as {0}" msgstr "" @@ -12401,7 +12440,7 @@ msgstr "" msgid "Import" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1911 +#: frappe/public/js/frappe/list/list_view.js:1913 msgctxt "Button in list view menu" msgid "Import" msgstr "" @@ -12630,15 +12669,15 @@ msgid "Include Web View Link in Email" msgstr "" #: frappe/public/js/frappe/form/print_utils.js:59 -#: frappe/public/js/frappe/views/reports/query_report.js:1620 +#: frappe/public/js/frappe/views/reports/query_report.js:1628 msgid "Include filters" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1640 +#: frappe/public/js/frappe/views/reports/query_report.js:1648 msgid "Include hidden columns" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1612 +#: frappe/public/js/frappe/views/reports/query_report.js:1620 msgid "Include indentation" msgstr "" @@ -12685,7 +12724,7 @@ msgstr "" msgid "Incomplete Virtual Doctype Implementation" msgstr "" -#: frappe/auth.py:255 +#: frappe/auth.py:258 msgid "Incomplete login details" msgstr "" @@ -12796,7 +12835,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:1885 +#: frappe/public/js/frappe/views/reports/query_report.js:1893 msgid "Insert After" msgstr "" @@ -12869,7 +12908,7 @@ msgstr "" msgid "Insufficient Permission Level for {0}" msgstr "" -#: frappe/database/query.py:806 frappe/database/query.py:1052 +#: frappe/database/query.py:808 frappe/database/query.py:1054 msgid "Insufficient Permission for {0}" msgstr "" @@ -12985,7 +13024,7 @@ msgid "Invalid" msgstr "" #: frappe/public/js/form_builder/utils.js:221 -#: frappe/public/js/frappe/form/grid_row.js:849 +#: frappe/public/js/frappe/form/grid_row.js:850 #: frappe/public/js/frappe/form/layout.js:810 #: frappe/public/js/frappe/views/reports/report_view.js:721 msgid "Invalid \"depends_on\" expression" @@ -13043,8 +13082,8 @@ 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 +#: frappe/database/query.py:429 frappe/database/query.py:456 +#: frappe/database/query.py:466 frappe/database/query.py:489 msgid "Invalid Filter" msgstr "" @@ -13116,7 +13155,7 @@ msgstr "" msgid "Invalid Phone Number" msgstr "" -#: frappe/auth.py:94 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 +#: frappe/auth.py:97 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 #: frappe/www/login.py:128 msgid "Invalid Request" msgstr "" @@ -13156,7 +13195,7 @@ msgstr "" msgid "Invalid aggregate function" msgstr "" -#: frappe/database/query.py:1542 +#: frappe/database/query.py:1544 msgid "Invalid alias format: {0}. Alias must be a simple identifier." msgstr "" @@ -13164,19 +13203,19 @@ msgstr "" msgid "Invalid app" msgstr "" -#: frappe/database/query.py:1468 +#: frappe/database/query.py:1470 msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed." msgstr "" -#: frappe/database/query.py:1444 +#: frappe/database/query.py:1446 msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed." msgstr "" -#: frappe/database/query.py:460 +#: frappe/database/query.py:462 msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed." msgstr "" -#: frappe/database/query.py:575 +#: frappe/database/query.py:577 msgid "Invalid characters in table name: {0}" msgstr "" @@ -13184,11 +13223,11 @@ msgstr "" msgid "Invalid column" msgstr "" -#: frappe/database/query.py:381 +#: frappe/database/query.py:383 msgid "Invalid condition type in nested filters: {0}" msgstr "" -#: frappe/database/query.py:787 +#: frappe/database/query.py:789 msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'." msgstr "" @@ -13204,23 +13243,23 @@ msgstr "" msgid "Invalid expression set in filter {0} ({1})" msgstr "" -#: frappe/database/query.py:1301 +#: frappe/database/query.py:1303 msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'." msgstr "" -#: frappe/database/query.py:734 +#: frappe/database/query.py:736 msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'." msgstr "" -#: frappe/database/query.py:1620 +#: frappe/database/query.py:1622 msgid "Invalid field name in function: {0}. Only simple field names are allowed." msgstr "" -#: frappe/utils/data.py:2215 +#: frappe/utils/data.py:2241 msgid "Invalid field name {0}" msgstr "" -#: frappe/database/query.py:668 +#: frappe/database/query.py:670 msgid "Invalid field type: {0}" msgstr "" @@ -13232,11 +13271,11 @@ msgstr "" msgid "Invalid file path: {0}" msgstr "" -#: frappe/database/query.py:364 +#: frappe/database/query.py:366 msgid "Invalid filter condition: {0}. Expected a list or tuple." msgstr "" -#: frappe/database/query.py:450 +#: frappe/database/query.py:452 msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'." msgstr "" @@ -13244,11 +13283,11 @@ msgstr "" msgid "Invalid filter: {0}" msgstr "" -#: frappe/database/query.py:1422 +#: frappe/database/query.py:1424 msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed." msgstr "" -#: frappe/database/query.py:1383 +#: frappe/database/query.py:1385 msgid "Invalid function dictionary format" msgstr "" @@ -13285,23 +13324,27 @@ msgstr "" msgid "Invalid redirect regex in row #{}: {}" msgstr "" -#: frappe/app.py:337 +#: frappe/app.py:340 msgid "Invalid request arguments" msgstr "" +#: frappe/app.py:327 +msgid "Invalid request body" +msgstr "" + #: frappe/core/doctype/user_invitation/user_invitation.py:181 msgid "Invalid role" msgstr "" -#: frappe/database/query.py:410 +#: frappe/database/query.py:412 msgid "Invalid simple filter format: {0}" msgstr "" -#: frappe/database/query.py:341 +#: frappe/database/query.py:343 msgid "Invalid start for filter condition: {0}. Expected a list or tuple." msgstr "" -#: frappe/database/query.py:1489 +#: frappe/database/query.py:1491 msgid "Invalid string literal format: {0}" msgstr "" @@ -13405,7 +13448,7 @@ msgstr "" #. 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/doctype_list.js:50 #: frappe/core/doctype/doctype_link/doctype_link.json msgid "Is Child Table" msgstr "" @@ -13458,6 +13501,10 @@ msgstr "" msgid "Is Global" msgstr "" +#: frappe/public/js/frappe/views/treeview.js:418 +msgid "Is Group" +msgstr "Er Gruppe" + #. Label of the is_hidden (Check) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "Is Hidden" @@ -13546,7 +13593,7 @@ 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/core/doctype/doctype/doctype_list.js:65 #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Is Single" msgstr "" @@ -13582,7 +13629,7 @@ msgstr "" #. Label of the is_submittable (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:39 +#: frappe/core/doctype/doctype/doctype_list.js:40 msgid "Is Submittable" msgstr "" @@ -13788,11 +13835,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:388 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:402 msgid "Kanban Board Name" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:265 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:279 msgctxt "Button in kanban view menu" msgid "Kanban Settings" msgstr "" @@ -14090,10 +14137,13 @@ msgstr "" #. 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' +#. Label of a field in the edit-profile Web Form #: 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:117 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/printing/page/print/print.js:117 #: frappe/public/js/frappe/form/templates/print_layout.html:11 msgid "Language" msgstr "" @@ -14181,9 +14231,12 @@ msgstr "" #. Label of the last_name (Data) field in DocType 'Contact' #. Label of the last_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json #: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:45 -#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:19 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:19 msgid "Last Name" msgstr "" @@ -14424,7 +14477,7 @@ msgstr "" #: 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/public/js/frappe/roles_editor.js:68 #: frappe/website/doctype/help_article/help_article.json msgid "Level" msgstr "" @@ -14717,7 +14770,7 @@ msgstr "" msgid "List Settings" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1991 +#: frappe/public/js/frappe/list/list_view.js:1993 msgctxt "Button in list view menu" msgid "List Settings" msgstr "" @@ -14768,7 +14821,7 @@ msgid "Load Balancing" msgstr "" #: frappe/public/js/frappe/list/base_list.js:399 -#: frappe/public/js/frappe/web_form/web_form_list.js:305 +#: frappe/public/js/frappe/web_form/web_form_list.js:306 #: frappe/website/doctype/help_article/templates/help_article_list.html:30 msgid "Load More" msgstr "" @@ -14788,7 +14841,7 @@ msgstr "" #: frappe/public/js/frappe/list/base_list.js:526 #: frappe/public/js/frappe/list/list_view.js:363 #: frappe/public/js/frappe/ui/listing.html:16 -#: frappe/public/js/frappe/views/reports/query_report.js:1089 +#: frappe/public/js/frappe/views/reports/query_report.js:1097 msgid "Loading" msgstr "" @@ -14931,7 +14984,7 @@ msgstr "" msgid "Login and view in Browser" msgstr "" -#: frappe/website/doctype/web_form/web_form.js:367 +#: frappe/website/doctype/web_form/web_form.js:368 msgid "Login is required to see web form list view. Enable {0} to see list settings" msgstr "" @@ -14939,7 +14992,7 @@ msgstr "" msgid "Login link sent to your email" msgstr "" -#: frappe/auth.py:339 frappe/auth.py:342 +#: frappe/auth.py:342 frappe/auth.py:345 msgid "Login not allowed at this time" msgstr "" @@ -14992,7 +15045,7 @@ msgstr "" msgid "Login with email link expiry (in minutes)" msgstr "" -#: frappe/auth.py:144 +#: frappe/auth.py:147 msgid "Login with username and password is not allowed." msgstr "" @@ -15011,7 +15064,7 @@ msgstr "" msgid "Logout" msgstr "" -#: frappe/core/doctype/user/user.js:202 +#: frappe/core/doctype/user/user.js:190 msgid "Logout All Sessions" msgstr "" @@ -15115,7 +15168,10 @@ msgid "Major" msgstr "" #. Label of the show_name_in_global_search (Check) field in DocType 'DocType' +#. Label of the show_name_in_global_search (Check) field in DocType 'Customize +#. Form' #: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Make \"name\" searchable in Global Search" msgstr "" @@ -15191,7 +15247,7 @@ msgstr "" msgid "Mandatory Depends On (JS)" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:509 +#: frappe/website/doctype/web_form/web_form.py:536 msgid "Mandatory Information missing:" msgstr "" @@ -15648,6 +15704,11 @@ msgstr "" msgid "Middle Name" msgstr "" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Middle Name (Optional)" +msgstr "" + #. Name of a DocType #. Label of a Link in the Tools Workspace #: frappe/automation/doctype/milestone/milestone.json @@ -15754,6 +15815,11 @@ msgstr "" msgid "Mobile No" msgstr "" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Mobile Number" +msgstr "" + #. 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" @@ -15779,7 +15845,7 @@ msgstr "" #. 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/doctype/doctype_list.js:31 #: 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 @@ -15955,10 +16021,12 @@ msgstr "" #. Label of the additional_info (Section Break) field in DocType #. 'Communication' #. Label of the short_bio (Tab Break) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: 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 +#: frappe/core/web_form/edit_profile/edit_profile.json msgid "More Information" msgstr "" @@ -15988,7 +16056,7 @@ msgstr "" msgid "Move" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:193 +#: frappe/public/js/frappe/form/grid_row.js:194 msgid "Move To" msgstr "" @@ -16024,7 +16092,7 @@ msgstr "" msgid "Move the current field and the following fields to a new column" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:168 +#: frappe/public/js/frappe/form/grid_row.js:169 msgid "Move to Row Number" msgstr "" @@ -16092,7 +16160,7 @@ msgid "Mx" msgstr "" #: frappe/templates/includes/web_sidebar.html:41 -#: frappe/website/doctype/web_form/web_form.py:498 +#: frappe/website/doctype/web_form/web_form.py:525 #: 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" @@ -16234,12 +16302,12 @@ msgstr "" msgid "Navbar Template Values" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1378 +#: frappe/public/js/frappe/list/list_view.js:1380 msgctxt "Description of a list view shortcut" msgid "Navigate list down" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1385 +#: frappe/public/js/frappe/list/list_view.js:1387 msgctxt "Description of a list view shortcut" msgid "Navigate list up" msgstr "" @@ -16254,6 +16322,10 @@ msgstr "" msgid "Navigation Settings" msgstr "" +#: frappe/public/js/frappe/list/list_view.js:485 +msgid "Need Help?" +msgstr "" + #: frappe/desk/doctype/workspace/workspace.py:322 msgid "Need Workspace Manager role to edit private workspace of other users" msgstr "" @@ -16262,7 +16334,7 @@ msgstr "" msgid "Negative Value" msgstr "" -#: frappe/database/query.py:333 +#: frappe/database/query.py:335 msgid "Nested filters must be provided as a list or tuple." msgstr "" @@ -16275,6 +16347,12 @@ msgstr "" msgid "Network Printer Settings" msgstr "" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Never" +msgstr "" + #. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/core/doctype/success_action/success_action.js:57 @@ -16283,7 +16361,7 @@ msgstr "" #: 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/treeview.js:473 #: frappe/public/js/frappe/views/workspace/workspace.js:64 #: frappe/website/doctype/web_form/templates/web_list.html:15 #: frappe/www/list.html:19 @@ -16344,7 +16422,7 @@ msgstr "" msgid "New Folder" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 msgid "New Kanban Board" msgstr "" @@ -16379,7 +16457,7 @@ msgstr "" msgid "New Onboarding" msgstr "" -#: frappe/core/doctype/user/user.js:190 frappe/www/update-password.html:43 +#: frappe/core/doctype/user/user.js:178 frappe/www/update-password.html:43 msgid "New Password" msgstr "" @@ -16475,7 +16553,7 @@ msgstr "" #: frappe/public/js/frappe/ui/toolbar/search_utils.js:227 #: 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:411 +#: frappe/website/doctype/web_form/web_form.py:438 msgid "New {0}" msgstr "" @@ -16627,7 +16705,7 @@ msgstr "" #: frappe/public/js/form_builder/utils.js:341 #: frappe/public/js/frappe/form/controls/link.js:498 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1665 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 #: frappe/website/doctype/help_article/templates/help_article.html:26 msgid "No" msgstr "" @@ -16776,7 +16854,7 @@ msgstr "" msgid "No Roles Specified" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 msgid "No Select Field Found" msgstr "" @@ -16860,7 +16938,7 @@ msgstr "" msgid "No failed logs" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:371 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:385 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 "" @@ -16884,7 +16962,7 @@ msgstr "" msgid "No matching records. Search something new" msgstr "" -#: frappe/public/js/frappe/web_form/web_form_list.js:161 +#: frappe/public/js/frappe/web_form/web_form_list.js:162 msgid "No more items to display" msgstr "" @@ -16928,7 +17006,7 @@ msgctxt "{0} = verb, {1} = object" msgid "No permission to '{0}' {1}" msgstr "" -#: frappe/model/db_query.py:948 +#: frappe/model/db_query.py:949 msgid "No permission to read {0}" msgstr "" @@ -16976,11 +17054,11 @@ msgstr "" msgid "No {0} Found" msgstr "" -#: frappe/public/js/frappe/web_form/web_form_list.js:233 +#: frappe/public/js/frappe/web_form/web_form_list.js:234 msgid "No {0} found" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:497 +#: frappe/public/js/frappe/list/list_view.js:499 msgid "No {0} found with matching filters. Clear filters to see all {0}." msgstr "" @@ -16989,7 +17067,7 @@ msgid "No {0} mail" msgstr "" #: frappe/public/js/form_builder/utils.js:117 -#: frappe/public/js/frappe/form/grid_row.js:256 +#: frappe/public/js/frappe/form/grid_row.js:257 msgctxt "Title of the 'row number' column" msgid "No." msgstr "" @@ -17053,7 +17131,7 @@ msgstr "" msgid "Not Equals" msgstr "" -#: frappe/app.py:387 frappe/www/404.html:3 +#: frappe/app.py:390 frappe/www/404.html:3 msgid "Not Found" msgstr "" @@ -17079,9 +17157,9 @@ msgstr "" msgid "Not Nullable" msgstr "" -#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26 +#: frappe/__init__.py:550 frappe/app.py:383 frappe/desk/calendar.py:26 #: frappe/public/js/frappe/web_form/webform_script.js:15 -#: frappe/website/doctype/web_form/web_form.py:747 +#: frappe/website/doctype/web_form/web_form.py:774 #: 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 @@ -17100,7 +17178,7 @@ msgstr "" #: 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/kanban/kanban_view.js:183 #: frappe/public/js/frappe/views/reports/report_view.js:209 #: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39 #: frappe/website/doctype/web_form/templates/web_form.html:85 @@ -17151,7 +17229,7 @@ msgstr "" msgid "Not allowed for {0}: {1}" msgstr "" -#: frappe/email/doctype/notification/notification.py:637 +#: frappe/email/doctype/notification/notification.py:639 msgid "Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings" msgstr "" @@ -17183,12 +17261,12 @@ msgstr "" msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType." msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:216 +#: frappe/core/doctype/system_settings/system_settings.py:217 #: 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:760 +#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:787 #: frappe/website/js/website.js:97 msgid "Not permitted" msgstr "" @@ -17234,7 +17312,7 @@ msgstr "" msgid "Note: Multiple sessions will be allowed in case of mobile device" msgstr "" -#: frappe/core/doctype/user/user.js:399 +#: frappe/core/doctype/user/user.js:387 msgid "Note: This will be shared with user." msgstr "" @@ -17306,15 +17384,15 @@ msgstr "" msgid "Notification sent to" msgstr "" -#: frappe/email/doctype/notification/notification.py:542 +#: frappe/email/doctype/notification/notification.py:544 msgid "Notification: customer {0} has no Mobile number set" msgstr "" -#: frappe/email/doctype/notification/notification.py:528 +#: frappe/email/doctype/notification/notification.py:530 msgid "Notification: document {0} has no {1} number set (field: {2})" msgstr "" -#: frappe/email/doctype/notification/notification.py:537 +#: frappe/email/doctype/notification/notification.py:539 msgid "Notification: user {0} has no Mobile number set" msgstr "" @@ -17428,7 +17506,7 @@ msgstr "" msgid "Number of attachment fields are more than {}, limit updated to {}." msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:171 +#: frappe/core/doctype/system_settings/system_settings.py:172 msgid "Number of backups must be greater than zero." msgstr "" @@ -17700,7 +17778,7 @@ msgstr "" #. Description of the 'Is Submittable' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:42 +#: frappe/core/doctype/doctype/doctype_list.js:43 msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended." msgstr "" @@ -17789,11 +17867,11 @@ msgstr "" msgid "Only reports of type Report Builder can be edited" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:129 +#: frappe/custom/doctype/customize_form/customize_form.py:131 msgid "Only standard DocTypes are allowed to be customized from Customize Form." msgstr "" -#: frappe/model/delete_doc.py:241 +#: frappe/model/delete_doc.py:281 msgid "Only the Administrator can delete a standard DocType." msgstr "" @@ -17889,7 +17967,7 @@ msgstr "" msgid "Open in a new tab" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1431 +#: frappe/public/js/frappe/list/list_view.js:1433 msgctxt "Description of a list view shortcut" msgid "Open list item" msgstr "" @@ -17938,7 +18016,7 @@ msgstr "" msgid "Operation" msgstr "" -#: frappe/utils/data.py:2146 +#: frappe/utils/data.py:2172 msgid "Operator must be one of {0}" msgstr "" @@ -17984,6 +18062,7 @@ msgstr "" #. 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 (Text) field in DocType 'Web Form List Column' #. 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 @@ -17992,6 +18071,7 @@ msgstr "" #: 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_form_list_column/web_form_list_column.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Options" msgstr "" @@ -18037,7 +18117,7 @@ msgstr "" msgid "Order" msgstr "" -#: frappe/database/query.py:767 +#: frappe/database/query.py:769 msgid "Order By must be a string" msgstr "" @@ -18135,7 +18215,7 @@ msgstr "" #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/printing/page/print/print.js:84 #: frappe/public/js/frappe/form/templates/print_layout.html:44 -#: frappe/public/js/frappe/views/reports/query_report.js:1804 +#: frappe/public/js/frappe/views/reports/query_report.js:1812 msgid "PDF" msgstr "" @@ -18483,8 +18563,8 @@ msgstr "" #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/system_settings/system_settings.json -#: frappe/core/doctype/user/user.js:177 frappe/core/doctype/user/user.js:224 -#: frappe/core/doctype/user/user.js:244 +#: frappe/core/doctype/user/user.js:165 frappe/core/doctype/user/user.js:212 +#: frappe/core/doctype/user/user.js:232 #: 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 @@ -18507,7 +18587,7 @@ msgstr "" msgid "Password Reset Link Generation Limit" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:896 +#: frappe/public/js/frappe/form/grid_row.js:897 msgid "Password cannot be filtered" msgstr "" @@ -18544,7 +18624,7 @@ msgstr "" msgid "Password set" msgstr "" -#: frappe/auth.py:258 +#: frappe/auth.py:261 msgid "Password size exceeded the maximum allowed size" msgstr "" @@ -18556,7 +18636,7 @@ msgstr "" msgid "Passwords do not match" msgstr "" -#: frappe/core/doctype/user/user.js:210 +#: frappe/core/doctype/user/user.js:198 msgid "Passwords do not match!" msgstr "" @@ -18707,7 +18787,7 @@ msgstr "" msgid "Permanently delete {0}?" msgstr "" -#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533 +#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:535 msgid "Permission Error" msgstr "" @@ -18767,8 +18847,8 @@ msgstr "" #: 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:143 frappe/core/doctype/user/user.js:152 -#: frappe/core/doctype/user/user.js:161 +#: frappe/core/doctype/user/user.js:131 frappe/core/doctype/user/user.js:140 +#: frappe/core/doctype/user/user.js:149 #: 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 @@ -18838,6 +18918,7 @@ msgstr "" #. Option for the 'Type' (Select) field in DocType 'Communication' #. Option for the 'Type' (Select) field in DocType 'DocField' #. Label of the phone (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #. 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' @@ -18848,6 +18929,7 @@ msgstr "" #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.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 @@ -19022,7 +19104,7 @@ msgstr "" msgid "Please duplicate this to make changes" msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:164 +#: frappe/core/doctype/system_settings/system_settings.py:165 msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login." msgstr "" @@ -19154,11 +19236,11 @@ msgstr "" msgid "Please select Entity Type first" msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:115 +#: frappe/core/doctype/system_settings/system_settings.py:116 msgid "Please select Minimum Password Score" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1185 +#: frappe/public/js/frappe/views/reports/query_report.js:1193 msgid "Please select X and Y fields" msgstr "" @@ -19186,7 +19268,7 @@ msgstr "" msgid "Please select applicable Doctypes" msgstr "" -#: frappe/model/db_query.py:1157 +#: frappe/model/db_query.py:1163 msgid "Please select atleast 1 column from {0} to sort/group" msgstr "" @@ -19216,7 +19298,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:1408 +#: frappe/public/js/frappe/views/reports/query_report.js:1416 msgid "Please set filters" msgstr "" @@ -19236,7 +19318,7 @@ msgstr "" msgid "Please set the series to be used." msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:128 +#: frappe/core/doctype/system_settings/system_settings.py:129 msgid "Please setup SMS before setting it as an authentication method, via SMS Settings" msgstr "" @@ -19388,7 +19470,7 @@ msgstr "" msgid "Posting Timestamp" msgstr "" -#: frappe/database/query.py:1518 +#: frappe/database/query.py:1520 msgid "Potentially dangerous content in string literal: {0}" msgstr "" @@ -19590,13 +19672,13 @@ msgstr "" #: 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:1789 +#: frappe/public/js/frappe/views/reports/query_report.js:1797 #: frappe/public/js/frappe/views/reports/report_view.js:1539 -#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18 +#: frappe/public/js/frappe/views/treeview.js:492 frappe/www/printview.html:18 msgid "Print" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2164 +#: frappe/public/js/frappe/list/list_view.js:2166 msgctxt "Button in list view actions menu" msgid "Print" msgstr "" @@ -19666,7 +19748,7 @@ msgstr "" msgid "Print Format Type" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1578 +#: frappe/public/js/frappe/views/reports/query_report.js:1586 msgid "Print Format not found" msgstr "" @@ -19847,11 +19929,11 @@ msgstr "" msgid "Proceed" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:932 +#: frappe/public/js/frappe/views/reports/query_report.js:940 msgid "Proceed Anyway" msgstr "" -#: frappe/public/js/frappe/form/controls/table.js:123 +#: frappe/public/js/frappe/form/controls/table.js:104 msgid "Processing" msgstr "" @@ -19868,11 +19950,21 @@ msgstr "" msgid "Profile" msgstr "" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile Picture" +msgstr "" + +#. Success message of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile updated successfully." +msgstr "" + #: frappe/public/js/frappe/socketio_client.js:82 msgid "Progress" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:408 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:422 msgid "Project" msgstr "" @@ -19916,7 +20008,7 @@ msgstr "" msgid "Protect Attached Files" msgstr "" -#: frappe/core/doctype/file/file.py:523 +#: frappe/core/doctype/file/file.py:526 msgid "Protected File" msgstr "" @@ -20422,11 +20514,11 @@ msgstr "" msgid "Reason" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:886 +#: frappe/public/js/frappe/views/reports/query_report.js:894 msgid "Rebuild" msgstr "" -#: frappe/public/js/frappe/views/treeview.js:509 +#: frappe/public/js/frappe/views/treeview.js:511 msgid "Rebuild Tree" msgstr "" @@ -20807,8 +20899,8 @@ 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:1778 -#: frappe/public/js/frappe/views/treeview.js:496 +#: frappe/public/js/frappe/views/reports/query_report.js:1786 +#: frappe/public/js/frappe/views/treeview.js:498 #: frappe/public/js/frappe/widgets/chart_widget.js:291 #: frappe/public/js/frappe/widgets/number_card_widget.js:352 #: frappe/public/js/print_format_builder/Preview.vue:24 @@ -20839,13 +20931,13 @@ msgstr "" msgid "Refresh Token" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:534 +#: frappe/public/js/frappe/list/list_view.js:536 msgctxt "Document count in list view" msgid "Refreshing" msgstr "" #: frappe/core/doctype/system_settings/system_settings.js:57 -#: frappe/core/doctype/user/user.js:374 +#: frappe/core/doctype/user/user.js:362 #: frappe/desk/page/setup_wizard/setup_wizard.js:211 msgid "Refreshing..." msgstr "" @@ -21230,7 +21322,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:1965 +#: frappe/public/js/frappe/views/reports/query_report.js:1973 msgid "Report Name" msgstr "" @@ -21282,7 +21374,7 @@ msgstr "" msgid "Report has no numeric fields, please change the Report Name" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1013 +#: frappe/public/js/frappe/views/reports/query_report.js:1021 msgid "Report initiated, click to view status" msgstr "" @@ -21302,7 +21394,7 @@ msgstr "" msgid "Report was not saved (there were errors)" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2003 +#: frappe/public/js/frappe/views/reports/query_report.js:2011 msgid "Report with more than 10 columns looks better in Landscape mode." msgstr "" @@ -21338,7 +21430,7 @@ msgstr "" msgid "Reports & Masters" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:929 +#: frappe/public/js/frappe/views/reports/query_report.js:937 msgid "Reports already in Queue" msgstr "" @@ -21357,7 +21449,10 @@ msgid "Request Body" msgstr "" #. Label of the data (Code) field in DocType 'Integration Request' +#. Title of the request-data Web Form +#. Button label of the request-data Web Form #: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/website/web_form/request_data/request_data.json msgid "Request Data" msgstr "" @@ -21409,6 +21504,11 @@ msgstr "" msgid "Request URL" msgstr "" +#. Title of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "Request for Account Deletion" +msgstr "" + #. Label of the requested_numbers (Code) field in DocType 'SMS Log' #: frappe/core/doctype/sms_log/sms_log.json msgid "Requested Numbers" @@ -21464,7 +21564,7 @@ msgstr "" msgid "Reset Fields" msgstr "" -#: frappe/core/doctype/user/user.js:184 frappe/core/doctype/user/user.js:187 +#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:175 msgid "Reset LDAP Password" msgstr "" @@ -21472,11 +21572,11 @@ msgstr "" msgid "Reset Layout" msgstr "" -#: frappe/core/doctype/user/user.js:235 +#: frappe/core/doctype/user/user.js:223 msgid "Reset OTP Secret" msgstr "" -#: frappe/core/doctype/user/user.js:168 frappe/www/login.html:199 +#: frappe/core/doctype/user/user.js:156 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" @@ -21511,7 +21611,7 @@ msgstr "" msgid "Reset sorting" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:433 +#: frappe/public/js/frappe/form/grid_row.js:434 msgid "Reset to default" msgstr "" @@ -21763,7 +21863,7 @@ 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 +#: frappe/public/js/frappe/roles_editor.js:114 msgid "Role Permissions" msgstr "" @@ -21773,7 +21873,7 @@ msgstr "" msgid "Role Permissions Manager" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1933 +#: frappe/public/js/frappe/list/list_view.js:1935 msgctxt "Button in list view menu" msgid "Role Permissions Manager" msgstr "" @@ -21966,11 +22066,11 @@ msgstr "" msgid "Row {0}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:353 +#: frappe/custom/doctype/customize_form/customize_form.py:357 msgid "Row {0}: Not allowed to disable Mandatory for standard fields" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:342 +#: frappe/custom/doctype/customize_form/customize_form.py:346 msgid "Row {0}: Not allowed to enable Allow on Submit for standard fields" msgstr "" @@ -21989,7 +22089,10 @@ msgid "Rows Removed" msgstr "" #. Label of the rows_threshold_for_grid_search (Int) field in DocType 'DocType' +#. Label of the rows_threshold_for_grid_search (Int) field in DocType +#. 'Customize Form' #: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Rows Threshold for Grid Search" msgstr "" @@ -22197,8 +22300,8 @@ msgstr "" #: 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:1957 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 +#: frappe/public/js/frappe/views/reports/query_report.js:1965 #: frappe/public/js/frappe/views/reports/report_view.js:1735 #: frappe/public/js/frappe/views/workspace/workspace.js:335 #: frappe/public/js/frappe/widgets/base_widget.js:142 @@ -22221,11 +22324,11 @@ msgstr "" msgid "Save Customizations" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1960 +#: frappe/public/js/frappe/views/reports/query_report.js:1968 msgid "Save Report" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:97 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:107 msgid "Save filters" msgstr "" @@ -22597,7 +22700,7 @@ msgstr "" msgid "See all Activity" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:855 +#: frappe/public/js/frappe/views/reports/query_report.js:863 msgid "See all past reports." msgstr "" @@ -22661,7 +22764,7 @@ msgstr "" #: 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:497 +#: frappe/public/js/frappe/form/grid_row.js:498 msgid "Select All" msgstr "" @@ -22741,7 +22844,7 @@ msgstr "" msgid "Select Field..." msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:489 +#: frappe/public/js/frappe/form/grid_row.js:490 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:181 msgid "Select Fields" msgstr "" @@ -22861,7 +22964,7 @@ msgid "Select a field to edit its properties." msgstr "" #: frappe/public/js/frappe/views/treeview.js:358 -msgid "Select a group node first." +msgid "Select a group {0} first." msgstr "" #: frappe/core/doctype/doctype/doctype.py:1956 @@ -22898,13 +23001,13 @@ msgstr "" msgid "Select atleast 2 actions" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1445 +#: frappe/public/js/frappe/list/list_view.js:1447 msgctxt "Description of a list view shortcut" msgid "Select list item" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1397 -#: frappe/public/js/frappe/list/list_view.js:1413 +#: frappe/public/js/frappe/list/list_view.js:1399 +#: frappe/public/js/frappe/list/list_view.js:1415 msgctxt "Description of a list view shortcut" msgid "Select multiple list items" msgstr "" @@ -23226,7 +23329,7 @@ msgstr "" msgid "Server Action" msgstr "" -#: frappe/app.py:396 frappe/public/js/frappe/request.js:611 +#: frappe/app.py:399 frappe/public/js/frappe/request.js:611 #: frappe/www/error.html:36 frappe/www/error.py:15 msgid "Server Error" msgstr "" @@ -23292,7 +23395,7 @@ msgstr "" msgid "Session Defaults Saved" msgstr "" -#: frappe/app.py:373 +#: frappe/app.py:376 msgid "Session Expired" msgstr "" @@ -23301,7 +23404,7 @@ msgstr "" msgid "Session Expiry (idle timeout)" msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:122 +#: frappe/core/doctype/system_settings/system_settings.py:123 msgid "Session Expiry must be in format {0}" msgstr "" @@ -23350,7 +23453,7 @@ msgstr "" msgid "Set Filters for {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2113 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 msgid "Set Level" msgstr "" @@ -23404,7 +23507,7 @@ msgstr "" msgid "Set Role For" msgstr "" -#: frappe/core/doctype/user/user.js:136 +#: frappe/core/doctype/user/user.js:124 #: frappe/core/page/permission_manager/permission_manager.js:72 msgid "Set User Permissions" msgstr "" @@ -23566,7 +23669,7 @@ msgstr "" msgid "Setup > User Permissions" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1826 +#: frappe/public/js/frappe/views/reports/query_report.js:1834 #: frappe/public/js/frappe/views/reports/report_view.js:1713 msgid "Setup Auto Email" msgstr "" @@ -23707,6 +23810,12 @@ msgstr "" msgid "Show Error" msgstr "" +#. Label of the show_external_link_warning (Select) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Show External Link Warning" +msgstr "" + #: frappe/public/js/frappe/form/layout.js:578 msgid "Show Fieldname (click to copy on clipboard)" msgstr "" @@ -23835,7 +23944,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:1849 +#: frappe/public/js/frappe/list/list_view.js:1851 msgid "Show Tags" msgstr "" @@ -24042,22 +24151,22 @@ msgstr "" msgid "Signups have been disabled for this website." msgstr "" -#. 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 "" - #. 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\")" +msgid "Simple Python Expression, Example: status == \"Invalid\"" msgstr "" #. 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'" +msgid "Simple Python Expression, Example: status == 'Open' and issue_type == 'Bug'" +msgstr "" + +#. 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 "" #. Label of the simultaneous_sessions (Int) field in DocType 'User' @@ -24065,13 +24174,13 @@ msgstr "" msgid "Simultaneous Sessions" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:126 +#: frappe/custom/doctype/customize_form/customize_form.py:128 msgid "Single DocTypes cannot be customized." 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 +#: frappe/core/doctype/doctype/doctype_list.js:68 msgid "Single Types have only one record no tables associated. Values are stored in tabSingles" msgstr "" @@ -24407,7 +24516,7 @@ msgid "Splash Image" msgstr "" #: frappe/desk/reportview.py:455 -#: frappe/public/js/frappe/web_form/web_form_list.js:175 +#: frappe/public/js/frappe/web_form/web_form_list.js:176 #: frappe/templates/print_formats/standard_macros.html:44 msgid "Sr" msgstr "" @@ -24439,7 +24548,7 @@ msgstr "" msgid "Standard" msgstr "" -#: frappe/model/delete_doc.py:79 +#: frappe/model/delete_doc.py:119 msgid "Standard DocType can not be deleted." msgstr "" @@ -24709,7 +24818,7 @@ msgstr "" #. Label of the sticky (Check) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json -#: frappe/public/js/frappe/form/grid_row.js:454 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Sticky" msgstr "" @@ -24739,7 +24848,7 @@ msgstr "" msgid "Store Attached PDF Document" msgstr "" -#: frappe/core/doctype/user/user.js:490 +#: frappe/core/doctype/user/user.js:497 msgid "Store the API secret securely. It won't be displayed again." msgstr "" @@ -24851,6 +24960,7 @@ msgstr "" #. 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' +#. Button label of the request-to-delete-data Web Form #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/docshare/docshare.json @@ -24859,10 +24969,11 @@ msgstr "" #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/quick_entry.js:225 #: frappe/public/js/frappe/ui/capture.js:307 +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json msgid "Submit" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2231 +#: frappe/public/js/frappe/list/list_view.js:2233 msgctxt "Button in list view actions menu" msgid "Submit" msgstr "" @@ -24872,7 +24983,7 @@ msgctxt "Button in web form" msgid "Submit" msgstr "" -#: frappe/public/js/frappe/ui/dialog.js:63 +#: frappe/public/js/frappe/ui/dialog.js:64 msgctxt "Primary action in dialog" msgid "Submit" msgstr "" @@ -24920,7 +25031,7 @@ msgstr "" msgid "Submit this document to confirm" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2236 +#: frappe/public/js/frappe/list/list_view.js:2238 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "" @@ -24970,7 +25081,7 @@ msgstr "" #: 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:1171 +#: frappe/public/js/frappe/form/grid.js:1172 #: frappe/public/js/frappe/views/translation_manager.js:21 #: frappe/templates/includes/login/login.js:230 #: frappe/templates/includes/login/login.js:236 @@ -25185,7 +25296,7 @@ msgstr "" msgid "Syncing {0} of {1}" msgstr "" -#: frappe/utils/data.py:2547 +#: frappe/utils/data.py:2573 msgid "Syntax Error" msgstr "" @@ -25496,7 +25607,7 @@ msgstr "" msgid "Table Trimmed" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1170 +#: frappe/public/js/frappe/form/grid.js:1171 msgid "Table updated" msgstr "" @@ -25711,7 +25822,7 @@ msgstr "" msgid "The Auto Repeat for this document has been disabled." msgstr "" -#: frappe/public/js/frappe/form/grid.js:1193 +#: frappe/public/js/frappe/form/grid.js:1194 msgid "The CSV format is case sensitive" msgstr "" @@ -25779,7 +25890,7 @@ msgstr "" 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:685 +#: frappe/public/js/frappe/list/list_view.js:687 msgid "The count shown is an estimated count. Click here to see the accurate count." msgstr "" @@ -25891,7 +26002,7 @@ msgstr "" msgid "The reset password link has either been used before or is invalid" msgstr "" -#: frappe/app.py:388 frappe/public/js/frappe/request.js:149 +#: frappe/app.py:391 frappe/public/js/frappe/request.js:149 msgid "The resource you are looking for is not available" msgstr "" @@ -25964,12 +26075,12 @@ 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:965 +#: frappe/public/js/frappe/views/reports/query_report.js:973 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 +#: frappe/website/doctype/web_form/web_form.js:318 msgid "There can be only 9 Page Break fields in a Web Form" msgstr "" @@ -25993,11 +26104,11 @@ msgstr "" msgid "There is nothing new to show you right now." msgstr "" -#: frappe/core/doctype/file/file.py:640 frappe/utils/file_manager.py:372 +#: frappe/core/doctype/file/file.py:643 frappe/utils/file_manager.py:372 msgid "There is some problem with the file url: {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:962 +#: frappe/public/js/frappe/views/reports/query_report.js:970 msgid "There is {0} with the same filters already in the queue:" msgstr "" @@ -26009,7 +26120,7 @@ msgstr "" msgid "There was an error building this page" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:182 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:196 msgid "There was an error saving filters" msgstr "" @@ -26066,7 +26177,7 @@ msgstr "" msgid "This Currency is disabled. Enable to use in transactions" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:391 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:405 msgid "This Kanban Board will be private" msgstr "" @@ -26103,7 +26214,7 @@ msgstr "" msgid "This cannot be undone" msgstr "" -#: frappe/desk/doctype/number_card/number_card.js:480 +#: frappe/desk/doctype/number_card/number_card.js:484 msgctxt "Number Card" msgid "This card is visible only to Administrator and System Managers by default. Set a DocType to share with users who have read access." msgstr "" @@ -26126,7 +26237,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:113 +#: frappe/model/delete_doc.py:153 msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time." msgstr "" @@ -26168,7 +26279,7 @@ msgid "This field will appear only if the fieldname defined here has value OR th "eval:doc.age>18" msgstr "" -#: frappe/core/doctype/file/file.py:522 +#: frappe/core/doctype/file/file.py:525 msgid "This file is attached to a protected document and cannot be deleted." msgstr "" @@ -26203,7 +26314,7 @@ msgstr "" msgid "This goes above the slideshow." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2189 +#: frappe/public/js/frappe/views/reports/query_report.js:2197 msgid "This is a background report. Please set the appropriate filters and then generate a new one." msgstr "" @@ -26253,7 +26364,7 @@ msgstr "" msgid "This month" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1037 +#: frappe/public/js/frappe/views/reports/query_report.js:1045 msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead." msgstr "" @@ -26261,7 +26372,7 @@ msgstr "" msgid "This report was generated on {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:853 +#: frappe/public/js/frappe/views/reports/query_report.js:861 msgid "This report was generated {0}." msgstr "" @@ -26403,9 +26514,11 @@ msgstr "" #. Label of the time_zone (Select) field in DocType 'System Settings' #. Label of the time_zone (Autocomplete) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #. 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/core/web_form/edit_profile/edit_profile.json #: frappe/desk/page/setup_wizard/setup_wizard.js:407 #: frappe/website/doctype/web_page_view/web_page_view.json msgid "Time Zone" @@ -26666,7 +26779,7 @@ msgstr "" msgid "To generate password click {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:854 +#: frappe/public/js/frappe/views/reports/query_report.js:862 msgid "To get the updated report, click on {0}." msgstr "" @@ -26741,7 +26854,7 @@ msgstr "" msgid "Toggle Sidebar" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1964 +#: frappe/public/js/frappe/list/list_view.js:1966 msgctxt "Button in list view menu" msgid "Toggle Sidebar" msgstr "" @@ -26867,7 +26980,7 @@ msgstr "" #: frappe/desk/query_report.py:587 #: frappe/public/js/frappe/views/reports/print_grid.html:45 -#: frappe/public/js/frappe/views/reports/query_report.js:1324 +#: frappe/public/js/frappe/views/reports/query_report.js:1332 #: frappe/public/js/frappe/views/reports/report_view.js:1553 msgid "Total" msgstr "" @@ -27024,7 +27137,7 @@ msgstr "" msgid "Translatable" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2244 +#: frappe/public/js/frappe/views/reports/query_report.js:2252 msgid "Translate Data" msgstr "" @@ -27382,7 +27495,7 @@ msgstr "" msgid "Unable to update event" msgstr "" -#: frappe/core/doctype/file/file.py:486 +#: frappe/core/doctype/file/file.py:489 msgid "Unable to write file format for {0}" msgstr "" @@ -27391,7 +27504,7 @@ msgstr "" msgid "Unassign Condition" msgstr "" -#: frappe/app.py:396 +#: frappe/app.py:399 msgid "Uncaught Exception" msgstr "" @@ -27407,7 +27520,7 @@ msgstr "" msgid "Undo last action" msgstr "" -#: frappe/database/query.py:1495 +#: frappe/database/query.py:1497 msgid "Unescaped quotes in string literal: {0}" msgstr "" @@ -27454,7 +27567,7 @@ msgstr "" msgid "Unknown Rounding Method: {}" msgstr "" -#: frappe/auth.py:316 +#: frappe/auth.py:319 msgid "Unknown User" msgstr "" @@ -27520,8 +27633,8 @@ msgstr "" msgid "Unsubscribed" msgstr "" -#: frappe/database/query.py:653 frappe/database/query.py:1387 -#: frappe/database/query.py:1397 +#: frappe/database/query.py:655 frappe/database/query.py:1389 +#: frappe/database/query.py:1399 msgid "Unsupported function or invalid field name: {0}" msgstr "" @@ -27555,7 +27668,7 @@ msgstr "" #: 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:427 +#: frappe/public/js/frappe/form/grid_row.js:428 msgid "Update" msgstr "" @@ -27589,6 +27702,11 @@ msgstr "" msgid "Update Password" msgstr "" +#. Title of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Update Profile" +msgstr "" + #. Label of the update_series (Section Break) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -27804,11 +27922,7 @@ msgstr "" msgid "Use if the default settings don't seem to detect your data correctly" msgstr "" -#: frappe/model/db_query.py:436 -msgid "Use of function {0} in field is restricted" -msgstr "" - -#: frappe/model/db_query.py:413 +#: frappe/model/db_query.py:411 msgid "Use of sub-query or function is restricted" msgstr "" @@ -28030,12 +28144,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:1944 +#: frappe/public/js/frappe/views/reports/query_report.js:1952 #: frappe/public/js/frappe/views/reports/report_view.js:1761 msgid "User Permissions" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1922 +#: frappe/public/js/frappe/list/list_view.js:1924 msgctxt "Button in list view menu" msgid "User Permissions" msgstr "" @@ -28179,7 +28293,7 @@ msgstr "" msgid "User {0} is disabled" msgstr "" -#: frappe/sessions.py:242 +#: frappe/sessions.py:243 msgid "User {0} is disabled. Please contact your System Manager." msgstr "" @@ -28356,7 +28470,7 @@ msgstr "" msgid "Value for a check field can be either 0 or 1" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:612 +#: frappe/custom/doctype/customize_form/customize_form.py:616 msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters" msgstr "" @@ -28477,7 +28591,7 @@ msgstr "" msgid "View Audit Trail" msgstr "" -#: frappe/core/doctype/user/user.js:156 +#: frappe/core/doctype/user/user.js:144 msgid "View Doctype Permissions" msgstr "" @@ -28489,7 +28603,7 @@ msgstr "" msgid "View Full Log" msgstr "" -#: frappe/public/js/frappe/views/treeview.js:484 +#: frappe/public/js/frappe/views/treeview.js:486 #: frappe/public/js/frappe/widgets/quick_list_widget.js:258 msgid "View List" msgstr "" @@ -28499,7 +28613,7 @@ msgstr "" msgid "View Log" msgstr "" -#: frappe/core/doctype/user/user.js:147 +#: frappe/core/doctype/user/user.js:135 #: frappe/core/doctype/user_permission/user_permission.js:24 msgid "View Permitted Documents" msgstr "" @@ -28615,6 +28729,7 @@ msgid "Warehouse" msgstr "" #. Option for the 'Style' (Select) field in DocType 'Workflow State' +#: frappe/public/js/frappe/router.js:613 #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Warning" msgstr "" @@ -29260,7 +29375,7 @@ msgstr "" msgid "Workspace" msgstr "" -#: frappe/public/js/frappe/router.js:175 +#: frappe/public/js/frappe/router.js:180 msgid "Workspace {0} does not exist" msgstr "" @@ -29382,7 +29497,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:1225 +#: frappe/public/js/frappe/views/reports/query_report.js:1233 msgid "Y Field" msgstr "" @@ -29444,7 +29559,7 @@ msgstr "" #: frappe/public/js/form_builder/utils.js:336 #: frappe/public/js/frappe/form/controls/link.js:498 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1665 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 #: frappe/website/doctype/help_article/templates/help_article.html:25 msgid "Yes" msgstr "" @@ -29480,6 +29595,10 @@ msgstr "" msgid "You added {0} rows to {1}" msgstr "" +#: frappe/public/js/frappe/router.js:642 +msgid "You are about to open an external link. To confirm, click the link again." +msgstr "" + #: frappe/public/js/frappe/dom.js:438 msgid "You are connected to internet." msgstr "" @@ -29523,7 +29642,7 @@ msgstr "" msgid "You are not allowed to export {} doctype" msgstr "" -#: frappe/public/js/frappe/views/treeview.js:448 +#: frappe/public/js/frappe/views/treeview.js:450 msgid "You are not allowed to print this report" msgstr "" @@ -29531,7 +29650,7 @@ msgstr "" msgid "You are not allowed to send emails related to this document" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:605 +#: frappe/website/doctype/web_form/web_form.py:632 msgid "You are not allowed to update this Web Form Document" msgstr "" @@ -29604,11 +29723,11 @@ msgstr "" msgid "You can continue with the onboarding after exploring this page" msgstr "" -#: frappe/model/delete_doc.py:137 +#: frappe/model/delete_doc.py:177 msgid "You can disable this {0} instead of deleting it." msgstr "" -#: frappe/core/doctype/file/file.py:758 +#: frappe/core/doctype/file/file.py:761 msgid "You can increase the limit from System Settings." msgstr "" @@ -29658,11 +29777,11 @@ msgstr "" msgid "You can use wildcard %" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:390 +#: frappe/custom/doctype/customize_form/customize_form.py:394 msgid "You can't set 'Options' for field {0}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:394 +#: frappe/custom/doctype/customize_form/customize_form.py:398 msgid "You can't set 'Translatable' for field {0}" msgstr "" @@ -29680,7 +29799,7 @@ msgstr "" msgid "You cannot create a dashboard chart from single DocTypes" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:386 +#: frappe/custom/doctype/customize_form/customize_form.py:390 msgid "You cannot unset 'Read Only' for field {0}" msgstr "" @@ -29723,11 +29842,11 @@ msgstr "" msgid "You do not have enough permissions to access this resource. Please contact your manager to get access." msgstr "" -#: frappe/app.py:381 +#: frappe/app.py:384 msgid "You do not have enough permissions to complete the action" msgstr "" -#: frappe/database/query.py:529 +#: frappe/database/query.py:531 msgid "You do not have permission to access field: {0}" msgstr "" @@ -29743,7 +29862,7 @@ msgstr "" msgid "You don't have access to Report: {0}" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:808 +#: frappe/website/doctype/web_form/web_form.py:835 msgid "You don't have permission to access the {0} DocType." msgstr "" @@ -29767,7 +29886,7 @@ msgstr "" msgid "You have been successfully logged out" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:245 +#: frappe/custom/doctype/customize_form/customize_form.py:247 msgid "You have hit the row size limit on database table: {0}" msgstr "" @@ -29795,7 +29914,7 @@ msgstr "" msgid "You haven't added any Dashboard Charts or Number Cards yet." msgstr "" -#: frappe/public/js/frappe/list/list_view.js:501 +#: frappe/public/js/frappe/list/list_view.js:503 msgid "You haven't created a {0} yet" msgstr "" @@ -29812,11 +29931,11 @@ msgstr "" msgid "You must add atleast one link." msgstr "" -#: frappe/website/doctype/web_form/web_form.py:804 +#: frappe/website/doctype/web_form/web_form.py:831 msgid "You must be logged in to use this form." msgstr "" -#: frappe/website/doctype/web_form/web_form.py:645 +#: frappe/website/doctype/web_form/web_form.py:672 msgid "You must login to submit this form" msgstr "" @@ -29931,6 +30050,10 @@ msgstr "" msgid "You viewed this" msgstr "" +#: frappe/public/js/frappe/router.js:653 +msgid "You will be redirected to:" +msgstr "" + #: frappe/core/doctype/user_invitation/user_invitation.py:113 msgid "You've been invited to join {0}" msgstr "" @@ -29976,7 +30099,7 @@ msgstr "" msgid "Your account has been deleted" msgstr "" -#: frappe/auth.py:514 +#: frappe/auth.py:517 msgid "Your account has been locked and will resume after {0} seconds" msgstr "" @@ -30042,7 +30165,7 @@ msgstr "" msgid "Your report is being generated in the background. You will receive an email on {0} with a download link once it is ready." msgstr "" -#: frappe/app.py:374 +#: frappe/app.py:377 msgid "Your session has expired, please login again to continue." msgstr "" @@ -30379,7 +30502,7 @@ msgstr "" msgid "logged in" msgstr "" -#: frappe/website/doctype/web_form/web_form.js:362 +#: frappe/website/doctype/web_form/web_form.js:363 msgid "login_required" msgstr "" @@ -30717,7 +30840,7 @@ msgstr "" msgid "via Google Meet" msgstr "" -#: frappe/email/doctype/notification/notification.py:403 +#: frappe/email/doctype/notification/notification.py:405 msgid "via Notification" msgstr "" @@ -30827,7 +30950,7 @@ msgstr "" msgid "{0} Dashboard" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:486 +#: frappe/public/js/frappe/form/grid_row.js:487 #: frappe/public/js/frappe/list/list_settings.js:225 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:178 msgid "{0} Fields" @@ -30878,7 +31001,7 @@ msgstr "" msgid "{0} Report" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:956 +#: frappe/public/js/frappe/views/reports/query_report.js:964 msgid "{0} Reports" msgstr "" @@ -30951,7 +31074,7 @@ msgctxt "Form timeline" msgid "{0} attached {1}" msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:152 +#: frappe/core/doctype/system_settings/system_settings.py:153 msgid "{0} can not be more than {1}" msgstr "" @@ -31028,7 +31151,7 @@ msgstr "" msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values" msgstr "" -#: frappe/database/query.py:708 +#: frappe/database/query.py:710 msgid "{0} fields cannot contain backticks (`): {1}" msgstr "" @@ -31073,7 +31196,7 @@ msgstr "" msgid "{0} is a mandatory field" msgstr "" -#: frappe/core/doctype/file/file.py:566 +#: frappe/core/doctype/file/file.py:569 msgid "{0} is a not a valid zip file" msgstr "" @@ -31122,7 +31245,7 @@ msgstr "" msgid "{0} is mandatory" msgstr "" -#: frappe/database/query.py:485 +#: frappe/database/query.py:487 msgid "{0} is not a child table of {1}" msgstr "" @@ -31142,7 +31265,7 @@ msgstr "" msgid "{0} is not a valid Cron expression." msgstr "" -#: frappe/public/js/frappe/form/controls/dynamic_link.js:27 +#: frappe/public/js/frappe/form/controls/dynamic_link.js:23 msgid "{0} is not a valid DocType for Dynamic Link" msgstr "" @@ -31179,7 +31302,7 @@ msgstr "" msgid "{0} is not a valid report format. Report format should one of the following {1}" msgstr "" -#: frappe/core/doctype/file/file.py:546 +#: frappe/core/doctype/file/file.py:549 msgid "{0} is not a zip file" msgstr "" @@ -31227,7 +31350,7 @@ msgstr "" msgid "{0} is within {1}" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1839 +#: frappe/public/js/frappe/list/list_view.js:1841 msgid "{0} items selected" msgstr "" @@ -31313,11 +31436,11 @@ msgid "{0} not found" msgstr "" #: frappe/core/doctype/report/report.py:427 -#: frappe/public/js/frappe/list/list_view.js:1211 +#: frappe/public/js/frappe/list/list_view.js:1213 msgid "{0} of {1}" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1213 +#: frappe/public/js/frappe/list/list_view.js:1215 msgid "{0} of {1} ({2} rows with children)" msgstr "" @@ -31367,7 +31490,7 @@ msgstr "" msgid "{0} removed {1} rows from {2}" msgstr "" -#: frappe/public/js/frappe/roles_editor.js:62 +#: frappe/public/js/frappe/roles_editor.js:64 msgid "{0} role does not have permission on any doctype" msgstr "" @@ -31441,7 +31564,7 @@ msgstr "" msgid "{0} un-shared this document with {1}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:254 +#: frappe/custom/doctype/customize_form/customize_form.py:256 msgid "{0} updated" msgstr "" @@ -31501,7 +31624,7 @@ msgstr "" msgid "{0} {1} not found" msgstr "" -#: frappe/model/delete_doc.py:248 +#: frappe/model/delete_doc.py:288 msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first." msgstr "" @@ -31614,7 +31737,7 @@ msgstr "" msgid "{0}: {1} is set to state {2}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1283 +#: frappe/public/js/frappe/views/reports/query_report.js:1291 msgid "{0}: {1} vs {2}" msgstr "" @@ -31650,11 +31773,11 @@ msgstr "" msgid "{} Complete" msgstr "" -#: frappe/utils/data.py:2541 +#: frappe/utils/data.py:2567 msgid "{} Invalid python code on line {}" msgstr "" -#: frappe/utils/data.py:2550 +#: frappe/utils/data.py:2576 msgid "{} Possibly invalid python code.
{}" msgstr "" @@ -31680,7 +31803,7 @@ msgstr "" msgid "{} is not a valid date string." msgstr "" -#: frappe/commands/utils.py:562 +#: frappe/commands/utils.py:561 msgid "{} not found in PATH! This is required to access the console." msgstr "" diff --git a/frappe/locale/de.po b/frappe/locale/de.po index 8a44dcbbc0..1511bfbf3b 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-09-21 09:33+0000\n" -"PO-Revision-Date: 2025-09-21 19:57\n" +"POT-Creation-Date: 2025-10-05 09:33+0000\n" +"PO-Revision-Date: 2025-10-06 22:59\n" "Last-Translator: developers@frappe.io\n" "Language-Team: German\n" "MIME-Version: 1.0\n" @@ -78,7 +78,7 @@ msgstr "'In Globaler Suche' nicht zulässig für Typ {0} in Zeile {1}" msgid "'In List View' is not allowed for field {0} of type {1}" msgstr "'In Listenansicht' ist für Feld {0} des Typs {1} nicht erlaubt" -#: frappe/custom/doctype/customize_form/customize_form.py:363 +#: frappe/custom/doctype/customize_form/customize_form.py:367 msgid "'In List View' not allowed for type {0} in row {1}" msgstr "\"In der Listenansicht\" nicht erlaubt für den Typ {0} in Zeile {1}" @@ -122,7 +122,7 @@ msgstr "0 - Entwurf; 1 - Gebucht; 2 - Storniert" msgid "0 is highest" msgstr "0 ist am höchsten" -#: frappe/public/js/frappe/form/grid_row.js:892 +#: frappe/public/js/frappe/form/grid_row.js:893 msgid "1 = True & 0 = False" msgstr "1 = Wahr & 0 = Falsch" @@ -141,11 +141,11 @@ msgstr "1 Tag" msgid "1 Google Calendar Event synced." msgstr "1 Google Kalender-Ereignis synchronisiert" -#: frappe/public/js/frappe/views/reports/query_report.js:955 +#: frappe/public/js/frappe/views/reports/query_report.js:963 msgid "1 Report" msgstr "1 Bericht" -#: frappe/tests/test_utils.py:739 +#: frappe/tests/test_utils.py:845 msgid "1 day ago" msgstr "vor 1 Tag" @@ -154,17 +154,17 @@ msgid "1 hour" msgstr "1 Stunde" #: frappe/public/js/frappe/utils/pretty_date.js:52 -#: frappe/tests/test_utils.py:737 +#: frappe/tests/test_utils.py:843 msgid "1 hour ago" msgstr "vor einer Stunde" #: frappe/public/js/frappe/utils/pretty_date.js:48 -#: frappe/tests/test_utils.py:735 +#: frappe/tests/test_utils.py:841 msgid "1 minute ago" msgstr "vor einer Minute" #: frappe/public/js/frappe/utils/pretty_date.js:66 -#: frappe/tests/test_utils.py:743 +#: frappe/tests/test_utils.py:849 msgid "1 month ago" msgstr "vor 1 Monat" @@ -186,37 +186,37 @@ msgctxt "User added row to child table" msgid "1 row to {0}" msgstr "" -#: frappe/tests/test_utils.py:734 +#: frappe/tests/test_utils.py:840 msgid "1 second ago" msgstr "vor 1 Sekunde" #: frappe/public/js/frappe/utils/pretty_date.js:62 -#: frappe/tests/test_utils.py:741 +#: frappe/tests/test_utils.py:847 msgid "1 week ago" msgstr "vor einer Woche" #: frappe/public/js/frappe/utils/pretty_date.js:70 -#: frappe/tests/test_utils.py:745 +#: frappe/tests/test_utils.py:851 msgid "1 year ago" msgstr "vor einem Jahr" -#: frappe/tests/test_utils.py:738 +#: frappe/tests/test_utils.py:844 msgid "2 hours ago" msgstr "vor 2 Stunden" -#: frappe/tests/test_utils.py:744 +#: frappe/tests/test_utils.py:850 msgid "2 months ago" msgstr "vor 2 Monaten" -#: frappe/tests/test_utils.py:742 +#: frappe/tests/test_utils.py:848 msgid "2 weeks ago" msgstr "vor 2 Wochen" -#: frappe/tests/test_utils.py:746 +#: frappe/tests/test_utils.py:852 msgid "2 years ago" msgstr "vor 2 Jahren" -#: frappe/tests/test_utils.py:736 +#: frappe/tests/test_utils.py:842 msgid "3 minutes ago" msgstr "vor 3 Minuten" @@ -232,7 +232,7 @@ msgstr "4 Stunden" msgid "5 Records" msgstr "5 Datensätze" -#: frappe/tests/test_utils.py:740 +#: frappe/tests/test_utils.py:846 msgid "5 days ago" msgstr "vor 5 Tagen" @@ -268,6 +268,16 @@ msgstr "{0} ist keine gültige URL" 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 "
Bitte nicht direkt bearbeiten, da es Ihr Formular durcheinander bringen kann. Benutzen Sie die Formularansicht und benutzerdefinierte Felder, um Eigenschaften zu setzen!
" +#. Introduction text of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "

Request a file containing your personally identifiable information (PII) that is saved on our system. The file will be in JSON format and is sent to you by email. If you would like to have your PII deleted from our system, please make a request to delete data.

" +msgstr "" + +#. Introduction text of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "

Send a request to delete your account and personally identifiable information (PII) that is stored on our system. You will receive an email to verify your request. Once the request is verified we will take care of deleting your PII. If you just want to check what PII we have stored, you can request your data.

" +msgstr "" + #. Content of the 'Help HTML' (HTML) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -752,6 +762,11 @@ msgstr "Der Name eines DocTypes sollte mit einem Buchstaben beginnen und darf nu msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three." msgstr "" +#. Success message of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "A download link with your data will be sent to the email address associated with your account." +msgstr "" + #: frappe/custom/doctype/custom_field/custom_field.py:175 msgid "A field with the name {0} already exists in {1}" msgstr "Ein Feld mit dem Namen {0} existiert bereits in {1}" @@ -878,7 +893,7 @@ msgstr "" #. 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.js:452 frappe/core/doctype/user/user.json +#: frappe/core/doctype/user/user.js:459 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 @@ -897,7 +912,7 @@ msgstr "API-Schlüssel und Geheimnis für die Interaktion mit dem Relay-Server. msgid "API Key cannot be regenerated" msgstr "API-Schlüssel kann nicht neu generiert werden" -#: frappe/core/doctype/user/user.js:449 +#: frappe/core/doctype/user/user.js:456 msgid "API Keys" msgstr "" @@ -921,7 +936,7 @@ msgstr "API-Anfrage-Protokoll" #. 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.js:459 frappe/core/doctype/user/user.json +#: frappe/core/doctype/user/user.js:466 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" @@ -1007,7 +1022,7 @@ msgstr "Zugriffstoken" msgid "Access Token URL" msgstr "Zugriffstoken-URL" -#: frappe/auth.py:491 +#: frappe/auth.py:494 msgid "Access not allowed from this IP Address" msgstr "Der Zugriff von dieser IP-Adresse aus ist nicht zulässig" @@ -1123,7 +1138,7 @@ msgstr "Aktion {0} fehlgeschlagen auf {1} {2}. {3} ansehen." #: 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:842 +#: frappe/public/js/frappe/views/reports/query_report.js:850 msgid "Actions" msgstr "Aktionen" @@ -1180,7 +1195,7 @@ msgstr "Aktivitätsprotokoll" #: 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:501 +#: frappe/public/js/frappe/form/grid_row.js:502 #: 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 @@ -1191,7 +1206,7 @@ msgstr "Aktivitätsprotokoll" msgid "Add" msgstr "Hinzufügen" -#: frappe/public/js/frappe/form/grid_row.js:454 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Add / Remove Columns" msgstr "Spalten hinzufügen / entfernen" @@ -1236,8 +1251,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:1832 -#: frappe/public/js/frappe/views/reports/query_report.js:1835 +#: frappe/public/js/frappe/views/reports/query_report.js:1840 +#: frappe/public/js/frappe/views/reports/query_report.js:1843 #: frappe/public/js/frappe/views/reports/report_view.js:360 #: frappe/public/js/frappe/views/reports/report_view.js:385 #: frappe/public/js/print_format_builder/Field.vue:112 @@ -1331,7 +1346,7 @@ msgstr "Abonnenten hinzufügen" msgid "Add Tags" msgstr "Schlagworte hinzufügen" -#: frappe/public/js/frappe/list/list_view.js:2149 +#: frappe/public/js/frappe/list/list_view.js:2151 msgctxt "Button in list view actions menu" msgid "Add Tags" msgstr "Schlagworte hinzufügen" @@ -1712,11 +1727,11 @@ msgstr "Hinweis" msgid "Alerts and Notifications" msgstr "Warnungen und Benachrichtigungen" -#: frappe/database/query.py:1608 +#: frappe/database/query.py:1610 msgid "Alias cannot be a SQL keyword: {0}" msgstr "Alias darf kein SQL-Schlüsselwort sein: {0}" -#: frappe/database/query.py:1533 +#: frappe/database/query.py:1535 msgid "Alias must be a string" msgstr "Alias muss ein String sein" @@ -2164,6 +2179,12 @@ msgstr "Hinzufügen des Statusabhängigkeitsfelds {0}" msgid "Alternative Email ID" msgstr "Alternative E-Mail-ID" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Always" +msgstr "" + #. Label of the always_bcc (Data) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Always BCC Address" @@ -2240,6 +2261,11 @@ msgstr "Berichtigung nicht erlaubt" msgid "Amendment naming rules updated." msgstr "Benennungsregeln für Berichtigungen aktualisiert." +#. Success message of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "An email to verify your request has been sent to your email address. Please verify your request to complete the process." +msgstr "" + #: 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" @@ -2422,7 +2448,7 @@ msgstr "Angewandt auf" msgid "Apply" msgstr "Anwenden" -#: frappe/public/js/frappe/list/list_view.js:2134 +#: frappe/public/js/frappe/list/list_view.js:2136 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" msgstr "Zuweisungsregel anwenden" @@ -2507,7 +2533,7 @@ msgstr "Archivierte Spalten" msgid "Are you sure you want to cancel the invitation?" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2113 +#: frappe/public/js/frappe/list/list_view.js:2115 msgid "Are you sure you want to clear the assignments?" msgstr "Sind Sie sicher, dass Sie die Zuweisungen löschen möchten?" @@ -2543,7 +2569,7 @@ msgstr "" 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:969 +#: frappe/public/js/frappe/views/reports/query_report.js:977 msgid "Are you sure you want to generate a new report?" msgstr "Sind Sie sicher, dass Sie einen neuen Bericht erstellen möchten?" @@ -2551,7 +2577,7 @@ msgstr "Sind Sie sicher, dass Sie einen neuen Bericht erstellen möchten?" msgid "Are you sure you want to merge {0} with {1}?" msgstr "Möchten Sie {0} wirklich mit {1} zusammenführen?" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:108 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:118 msgid "Are you sure you want to proceed?" msgstr "Sind Sie sicher, dass Sie fortfahren möchten?" @@ -2606,6 +2632,12 @@ msgstr "Da die Freigabe von Dokumenten deaktiviert ist, erteilen Sie ihnen vor d msgid "As per your request, your account and data on {0} associated with email {1} has been permanently deleted" msgstr "Wie von Ihnen gewünscht, wurden Ihr Konto und die Daten auf {0}, die mit der E-Mail {1} verbunden sind, endgültig gelöscht" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Ask" +msgstr "" + #. Label of the assign_condition (Code) field in DocType 'Assignment Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Assign Condition" @@ -2615,7 +2647,7 @@ msgstr "Zuweisungsbedingung" msgid "Assign To" msgstr "Zuweisen an" -#: frappe/public/js/frappe/list/list_view.js:2095 +#: frappe/public/js/frappe/list/list_view.js:2097 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "Zuweisen an" @@ -2758,7 +2790,7 @@ msgstr "Zuordnungen" msgid "Asynchronous" msgstr "Asynchron" -#: frappe/public/js/frappe/form/grid_row.js:696 +#: frappe/public/js/frappe/form/grid_row.js:697 msgid "At least one column is required to show in the grid." msgstr "Mindestens eine Spalte muss im Raster angezeigt werden." @@ -3739,7 +3771,7 @@ msgstr "Stapel löschen" msgid "Bulk Edit" msgstr "Stapel bearbeiten" -#: frappe/public/js/frappe/form/grid.js:1189 +#: frappe/public/js/frappe/form/grid.js:1190 msgid "Bulk Edit {0}" msgstr "Stapel-Bearbeitung {0}" @@ -4031,7 +4063,7 @@ msgstr "Kann {0} nicht in {1} umbenennen, da {0} nicht existiert." #. 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/doctype/doctype_list.js:131 #: frappe/core/doctype/user_document_type/user_document_type.json #: frappe/core/doctype/user_invitation/user_invitation.js:17 #: frappe/email/doctype/notification/notification.json @@ -4039,7 +4071,7 @@ msgstr "Kann {0} nicht in {1} umbenennen, da {0} nicht existiert." msgid "Cancel" msgstr "Abbrechen" -#: frappe/public/js/frappe/list/list_view.js:2204 +#: frappe/public/js/frappe/list/list_view.js:2206 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "Stornieren" @@ -4057,7 +4089,7 @@ msgstr "Alle stornieren" msgid "Cancel All Documents" msgstr "Alle Dokumente abbrechen" -#: frappe/public/js/frappe/list/list_view.js:2209 +#: frappe/public/js/frappe/list/list_view.js:2211 msgctxt "Title of confirmation dialog" msgid "Cancel {0} documents?" msgstr "Abbrechen von {0} Dokumenten?" @@ -4110,7 +4142,7 @@ msgstr "Kann nicht entfernt werden." msgid "Cannot Update After Submit" msgstr "Kann nach dem Buchen nicht mehr geändert werden" -#: frappe/core/doctype/file/file.py:643 +#: frappe/core/doctype/file/file.py:646 msgid "Cannot access file path {0}" msgstr "Zugriff auf Dateipfad {0} nicht möglich" @@ -4158,7 +4190,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:379 +#: frappe/model/delete_doc.py:419 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" @@ -4238,7 +4270,7 @@ msgstr "{0} kann nicht für einen nicht buchbaren Doctype aktiviert werden" msgid "Cannot find file {} on disk" msgstr "Kann Datei {} auf der Festplatte nicht finden" -#: frappe/core/doctype/file/file.py:583 +#: frappe/core/doctype/file/file.py:586 msgid "Cannot get file contents of a Folder" msgstr "Dateiinhalt eines Ordners kann nicht abgerufen werden" @@ -4246,7 +4278,7 @@ msgstr "Dateiinhalt eines Ordners kann nicht abgerufen werden" msgid "Cannot have multiple printers mapped to a single print format." msgstr "Es können nicht mehrere Drucker einem Druckformat zugeordnet werden." -#: frappe/public/js/frappe/form/grid.js:1133 +#: frappe/public/js/frappe/form/grid.js:1134 msgid "Cannot import table with more than 5000 rows." msgstr "Tabelle mit mehr als 5000 Zeilen kann nicht importiert werden." @@ -4262,7 +4294,7 @@ msgstr "Zuordnung nicht möglich, da folgende Bedingung nicht erfüllt ist:" msgid "Cannot match column {0} with any field" msgstr "Die Spalte {0} kann keinem Feld zugeordnet werden" -#: frappe/public/js/frappe/form/grid_row.js:175 +#: frappe/public/js/frappe/form/grid_row.js:176 msgid "Cannot move row" msgstr "Zeile kann nicht verschoben werden" @@ -4291,11 +4323,11 @@ msgstr "Kann {0} nicht buchen." msgid "Cannot update {0}" msgstr "Kann {0} nicht aktualisieren" -#: frappe/model/db_query.py:1130 +#: frappe/model/db_query.py:1136 msgid "Cannot use sub-query here." msgstr "" -#: frappe/model/db_query.py:1162 +#: frappe/model/db_query.py:1168 msgid "Cannot use {0} in order/group by" msgstr "{0} kann für die Sortierung oder Gruppierung verwendet werden" @@ -4568,11 +4600,11 @@ msgstr "Untertabelle {0} für Feld {1}" #. Description of the 'Is Child Table' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:52 +#: frappe/core/doctype/doctype/doctype_list.js:53 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 +#: frappe/database/query.py:662 msgid "Child query fields for '{0}' must be a list or tuple." msgstr "" @@ -4628,7 +4660,7 @@ msgstr "Leeren und Vorlage einfügen" msgid "Clear All" msgstr "Alles leeren" -#: frappe/public/js/frappe/list/list_view.js:2110 +#: frappe/public/js/frappe/list/list_view.js:2112 msgctxt "Button in list view actions menu" msgid "Clear Assignment" msgstr "Zuweisung löschen" @@ -4722,7 +4754,7 @@ msgstr "Klicken Sie hier, um dynamische Filter einzustellen" msgid "Click to Set Filters" msgstr "Klicken Sie, um Filter einzustellen" -#: frappe/public/js/frappe/list/list_view.js:739 +#: frappe/public/js/frappe/list/list_view.js:741 msgid "Click to sort by {0}" msgstr "Klicken, um nach {0} zu sortieren" @@ -4900,7 +4932,7 @@ msgctxt "Shrink code field." msgid "Collapse" msgstr "Zuklappen" -#: frappe/public/js/frappe/views/reports/query_report.js:2113 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 #: frappe/public/js/frappe/views/treeview.js:123 msgid "Collapse All" msgstr "Alle zuklappen" @@ -4955,7 +4987,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:1233 +#: frappe/public/js/frappe/views/reports/query_report.js:1241 #: frappe/public/js/frappe/widgets/widget_dialog.js:546 #: frappe/public/js/frappe/widgets/widget_dialog.js:694 #: frappe/website/doctype/color/color.json @@ -5011,11 +5043,11 @@ msgstr "Spaltenname" msgid "Column Name cannot be empty" msgstr "Spaltenname darf nicht leer sein" -#: frappe/public/js/frappe/form/grid_row.js:454 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Column Width" msgstr "Spaltenbreite" -#: frappe/public/js/frappe/form/grid_row.js:661 +#: frappe/public/js/frappe/form/grid_row.js:662 msgid "Column width cannot be zero." msgstr "Spaltenbreite darf nicht null sein." @@ -5042,7 +5074,7 @@ msgstr "Spalten" msgid "Columns / Fields" msgstr "Spalten / Felder" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:397 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:411 msgid "Columns based on" msgstr "Spalten basierend auf" @@ -5306,7 +5338,7 @@ msgstr "Konfiguration" msgid "Configure Chart" msgstr "Diagramm konfigurieren" -#: frappe/public/js/frappe/form/grid_row.js:406 +#: frappe/public/js/frappe/form/grid_row.js:407 msgid "Configure Columns" msgstr "Spalten konfigurieren" @@ -5333,7 +5365,7 @@ msgstr "Legen Sie fest, wie berichtigte Dokumente benannt werden sollen.
\n\n msgid "Configure various aspects of how document naming works like naming series, current counter." msgstr "Konfigurieren Sie verschiedene Aspekte der Funktionsweise der Dokumentbenennung, z. B. die Nummernkreise und den aktuellen Zähler." -#: frappe/core/doctype/user/user.js:412 frappe/public/js/frappe/dom.js:345 +#: frappe/core/doctype/user/user.js:400 frappe/public/js/frappe/dom.js:345 #: frappe/www/update-password.html:66 msgid "Confirm" msgstr "Bestätigen" @@ -5352,7 +5384,7 @@ msgstr "Zugang bestätigen" msgid "Confirm Deletion of Account" msgstr "Löschen des Kontos bestätigen" -#: frappe/core/doctype/user/user.js:196 +#: frappe/core/doctype/user/user.js:184 msgid "Confirm New Password" msgstr "Bestätige neues Passwort" @@ -5605,7 +5637,7 @@ msgstr "Fehler in die Zwischenablage kopieren" msgid "Copy to Clipboard" msgstr "In die Zwischenablage kopieren" -#: frappe/core/doctype/user/user.js:480 +#: frappe/core/doctype/user/user.js:487 msgid "Copy token to clipboard" msgstr "" @@ -5614,7 +5646,7 @@ msgstr "" msgid "Copyright" msgstr "Copyright" -#: frappe/custom/doctype/customize_form/customize_form.py:123 +#: frappe/custom/doctype/customize_form/customize_form.py:125 msgid "Core DocTypes cannot be customized." msgstr "Core DocTypes können nicht angepasst werden." @@ -5638,7 +5670,7 @@ 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 +#: frappe/database/query.py:566 msgid "Could not parse field: {0}" msgstr "Feld konnte nicht geparst werden: {0}" @@ -5730,13 +5762,13 @@ 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:1265 +#: frappe/public/js/frappe/views/reports/query_report.js:1273 #: frappe/public/js/frappe/views/workspace/workspace.js:469 #: frappe/workflow/page/workflow_builder/workflow_builder.js:46 msgid "Create" msgstr "Erstellen" -#: frappe/core/doctype/doctype/doctype_list.js:102 +#: frappe/core/doctype/doctype/doctype_list.js:103 msgid "Create & Continue" msgstr "Erstellen & Fortfahren" @@ -5750,7 +5782,7 @@ msgid "Create Card" msgstr "Karte erstellen" #: frappe/public/js/frappe/views/reports/query_report.js:285 -#: frappe/public/js/frappe/views/reports/query_report.js:1192 +#: frappe/public/js/frappe/views/reports/query_report.js:1200 msgid "Create Chart" msgstr "Diagramm erstellen" @@ -5784,12 +5816,12 @@ msgstr "Protokoll erstellen" msgid "Create New" msgstr "Neuen Eintrag erstellen" -#: frappe/public/js/frappe/list/list_view.js:512 +#: frappe/public/js/frappe/list/list_view.js:514 msgctxt "Create a new document from list view" msgid "Create New" msgstr "Neuen Eintrag erstellen" -#: frappe/core/doctype/doctype/doctype_list.js:100 +#: frappe/core/doctype/doctype/doctype_list.js:101 msgid "Create New DocType" msgstr "Neuen DocType erstellen" @@ -5797,7 +5829,7 @@ msgstr "Neuen DocType erstellen" msgid "Create New Kanban Board" msgstr "Neue Kanban-Tafel erstellen" -#: frappe/core/doctype/user/user.js:276 +#: frappe/core/doctype/user/user.js:264 msgid "Create User Email" msgstr "Benutzer E-Mail erstellen" @@ -5820,8 +5852,8 @@ msgstr "Erstellen Sie einen neuen Datensatz" #: frappe/public/js/frappe/form/controls/link.js:315 #: frappe/public/js/frappe/form/controls/link.js:317 #: frappe/public/js/frappe/form/link_selector.js:139 -#: frappe/public/js/frappe/list/list_view.js:504 -#: frappe/public/js/frappe/web_form/web_form_list.js:225 +#: frappe/public/js/frappe/list/list_view.js:506 +#: frappe/public/js/frappe/web_form/web_form_list.js:226 msgid "Create a new {0}" msgstr "Neu erstellen: {0}" @@ -5837,7 +5869,7 @@ msgstr "Druckformat erstellen oder bearbeiten" msgid "Create or Edit Workflow" msgstr "Workflow erstellen oder bearbeiten" -#: frappe/public/js/frappe/list/list_view.js:507 +#: frappe/public/js/frappe/list/list_view.js:509 msgid "Create your first {0}" msgstr "Erstelle deine erste {0}" @@ -6184,7 +6216,7 @@ msgstr "Benutzerdefinierte get_list-Methode für {0} muss ein QueryBuilder-Objek #. 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/core/doctype/doctype/doctype_list.js:83 #: frappe/website/doctype/website_theme/website_theme.json msgid "Custom?" msgstr "Benutzerdefiniert?" @@ -6219,7 +6251,7 @@ msgstr "Anpassungen für {0} exportiert nach:
{1}" msgid "Customize" msgstr "Anpassen" -#: frappe/public/js/frappe/list/list_view.js:1947 +#: frappe/public/js/frappe/list/list_view.js:1949 msgctxt "Button in list view menu" msgid "Customize" msgstr "Anpassen" @@ -6238,7 +6270,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:343 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 msgid "Customize Form" msgstr "Formular anpassen" @@ -6469,7 +6501,7 @@ msgstr "Datenimportprotokoll" msgid "Data Import Template" msgstr "Vorlage für Datenimport" -#: frappe/custom/doctype/customize_form/customize_form.py:615 +#: frappe/custom/doctype/customize_form/customize_form.py:619 msgid "Data Too Long" msgstr "Daten zu lang" @@ -6500,7 +6532,7 @@ msgstr "Auslastung der Datenbankzeilengröße" msgid "Database Storage Usage By Tables" msgstr "Datenbankspeichernutzung nach Tabellen" -#: frappe/custom/doctype/customize_form/customize_form.py:249 +#: frappe/custom/doctype/customize_form/customize_form.py:251 msgid "Database Table Row Size Limit" msgstr "Begrenzung der Zeilengröße von Datenbanktabellen" @@ -6870,13 +6902,13 @@ msgstr "Verzögert" #: frappe/public/js/frappe/form/toolbar.js:464 #: frappe/public/js/frappe/views/reports/report_view.js:1749 #: frappe/public/js/frappe/views/treeview.js:329 -#: frappe/public/js/frappe/web_form/web_form_list.js:282 +#: frappe/public/js/frappe/web_form/web_form_list.js:283 #: frappe/templates/discussions/reply_card.html:35 #: frappe/templates/discussions/reply_section.html:29 msgid "Delete" msgstr "Löschen" -#: frappe/public/js/frappe/list/list_view.js:2172 +#: frappe/public/js/frappe/list/list_view.js:2174 msgctxt "Button in list view actions menu" msgid "Delete" msgstr "Löschen" @@ -6909,7 +6941,7 @@ msgstr "Spalte löschen" msgid "Delete Data" msgstr "Daten löschen" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:106 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:116 msgid "Delete Kanban Board" msgstr "Kanban-Board löschen" @@ -6923,7 +6955,7 @@ msgctxt "Title of confirmation dialog" msgid "Delete Tab" msgstr "Registerkarte löschen" -#: frappe/public/js/frappe/views/reports/query_report.js:936 +#: frappe/public/js/frappe/views/reports/query_report.js:944 msgid "Delete and Generate New" msgstr "Löschen und neu generieren" @@ -6965,12 +6997,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:2177 +#: frappe/public/js/frappe/list/list_view.js:2179 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:2183 +#: frappe/public/js/frappe/list/list_view.js:2185 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "{0} Elemente dauerhaft löschen?" @@ -7467,10 +7499,14 @@ msgstr "" msgid "Do not create new user if user with email does not exist in the system" msgstr "Keinen neuen Benutzer anlegen, wenn der Benutzer mit E-Mail nicht im System vorhanden ist" -#: frappe/public/js/frappe/form/grid.js:1194 +#: frappe/public/js/frappe/form/grid.js:1195 msgid "Do not edit headers which are preset in the template" msgstr "Bearbeiten Sie keine Header, die in der Vorlage voreingestellt sind" +#: frappe/public/js/frappe/router.js:624 +msgid "Do not warn me again about {0}" +msgstr "" + #: frappe/core/doctype/system_settings/system_settings.js:71 msgid "Do you still want to proceed?" msgstr "Wollen Sie trotzdem fortfahren?" @@ -7896,7 +7932,7 @@ msgstr "Dokumenttitel" #: 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/public/js/frappe/roles_editor.js:68 #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json #: frappe/workflow/doctype/workflow/workflow.json msgid "Document Type" @@ -7947,15 +7983,15 @@ msgstr "Dokument entsperrt" msgid "Document follow is not enabled for this user." msgstr "Folgen von Dokumenten ist für diesen Benutzer nicht aktiviert." -#: frappe/public/js/frappe/list/list_view.js:1300 +#: frappe/public/js/frappe/list/list_view.js:1302 msgid "Document has been cancelled" msgstr "Dokument wurde storniert" -#: frappe/public/js/frappe/list/list_view.js:1299 +#: frappe/public/js/frappe/list/list_view.js:1301 msgid "Document has been submitted" msgstr "Dokument wurde gebucht" -#: frappe/public/js/frappe/list/list_view.js:1298 +#: frappe/public/js/frappe/list/list_view.js:1300 msgid "Document is in draft state" msgstr "Das Dokument befindet sich im Entwurfsstatus" @@ -8097,7 +8133,7 @@ msgstr "Donut" msgid "Double click to edit label" msgstr "Doppelklick zum Bearbeiten der Beschriftung" -#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:467 +#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:474 #: frappe/email/doctype/auto_email_report/auto_email_report.js:8 #: frappe/public/js/frappe/form/grid.js:66 msgid "Download" @@ -8130,7 +8166,7 @@ msgstr "Download-Link" msgid "Download PDF" msgstr "PDF Herunterladen" -#: frappe/public/js/frappe/views/reports/query_report.js:832 +#: frappe/public/js/frappe/views/reports/query_report.js:840 msgid "Download Report" msgstr "Bericht herunterladen" @@ -8330,8 +8366,8 @@ msgstr "ESC" #: 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:880 -#: frappe/public/js/frappe/views/reports/query_report.js:1783 +#: frappe/public/js/frappe/views/reports/query_report.js:888 +#: frappe/public/js/frappe/views/reports/query_report.js:1791 #: 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 @@ -8343,7 +8379,7 @@ msgstr "ESC" msgid "Edit" msgstr "Bearbeiten" -#: frappe/public/js/frappe/list/list_view.js:2258 +#: frappe/public/js/frappe/list/list_view.js:2260 msgctxt "Button in list view actions menu" msgid "Edit" msgstr "Bearbeiten" @@ -8353,7 +8389,7 @@ msgctxt "Button in web form" msgid "Edit" msgstr "Bearbeiten" -#: frappe/public/js/frappe/form/grid_row.js:349 +#: frappe/public/js/frappe/form/grid_row.js:350 msgctxt "Edit grid row" msgid "Edit" msgstr "Bearbeiten" @@ -8382,7 +8418,7 @@ msgstr "Benutzerdefiniertes HTML bearbeiten" msgid "Edit DocType" msgstr "DocType bearbeiten" -#: frappe/public/js/frappe/list/list_view.js:1974 +#: frappe/public/js/frappe/list/list_view.js:1976 msgctxt "Button in list view menu" msgid "Edit DocType" msgstr "DocType bearbeiten" @@ -8502,7 +8538,7 @@ msgstr "Bearbeiten {0}" #. 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/core/doctype/doctype/doctype_list.js:58 #: frappe/custom/doctype/customize_form/customize_form.json msgid "Editable Grid" msgstr "Editierbares Raster" @@ -8547,6 +8583,8 @@ msgstr "Element Selektor" #. 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' +#. Label of a field in the request-data Web Form +#. Label of a field in the request-to-delete-data Web Form #: frappe/automation/workspace/tools/tools.json #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/custom_docperm/custom_docperm.json @@ -8565,6 +8603,8 @@ msgstr "Element Selektor" #: 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/website/web_form/request_data/request_data.json +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json #: frappe/www/login.html:8 frappe/www/login.py:104 msgid "Email" msgstr "E-Mail" @@ -8796,7 +8836,7 @@ msgstr "E-Mail wurde als Spam markiert" msgid "Email has been moved to trash" msgstr "E-Mail wurde in den Papierkorb geworfen" -#: frappe/core/doctype/user/user.js:278 +#: frappe/core/doctype/user/user.js:266 msgid "Email is mandatory to create User Email" msgstr "E-Mail ist obligatorisch, um Benutzer-E-Mails zu erstellen" @@ -8839,7 +8879,7 @@ 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 +#: frappe/database/query.py:1539 msgid "Empty alias is not allowed" msgstr "Leerer Alias ist nicht erlaubt" @@ -8847,7 +8887,7 @@ msgstr "Leerer Alias ist nicht erlaubt" msgid "Empty column" msgstr "Leere Spalte" -#: frappe/database/query.py:1455 +#: frappe/database/query.py:1457 msgid "Empty string arguments are not allowed" msgstr "Leere String-Argumente sind nicht zulässig" @@ -9304,9 +9344,9 @@ msgstr "Fehler im Client-Skript." msgid "Error in Header/Footer Script" msgstr "Fehler im Kopf-/Fußzeilenskript" -#: frappe/email/doctype/notification/notification.py:640 -#: frappe/email/doctype/notification/notification.py:780 -#: frappe/email/doctype/notification/notification.py:786 +#: frappe/email/doctype/notification/notification.py:642 +#: frappe/email/doctype/notification/notification.py:782 +#: frappe/email/doctype/notification/notification.py:788 msgid "Error in Notification" msgstr "Fehler in der Benachrichtigung" @@ -9326,7 +9366,7 @@ msgstr "Fehler beim Parsen verschachtelter Filter: {0}" msgid "Error while connecting to email account {0}" msgstr "Fehler beim Verbinden mit dem E-Mail-Konto {0}" -#: frappe/email/doctype/notification/notification.py:777 +#: frappe/email/doctype/notification/notification.py:779 msgid "Error while evaluating Notification {0}. Please fix your template." msgstr "Fehler beim Auswerten der Benachrichtigung {0}. Bitte reparieren Sie Ihre Vorlage." @@ -9487,7 +9527,7 @@ msgstr "Code wird ausgeführt" msgid "Executing..." msgstr "Wird ausgeführt..." -#: frappe/public/js/frappe/views/reports/query_report.js:2132 +#: frappe/public/js/frappe/views/reports/query_report.js:2140 msgid "Execution Time: {0} sec" msgstr "Ausführungszeit: {0} Sek" @@ -9513,12 +9553,12 @@ msgctxt "Enlarge code field." msgid "Expand" msgstr "Erweitern" -#: frappe/public/js/frappe/views/reports/query_report.js:2113 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 #: frappe/public/js/frappe/views/treeview.js:133 msgid "Expand All" msgstr "Alle ausklappen" -#: frappe/database/query.py:352 +#: frappe/database/query.py:354 msgid "Expected 'and' or 'or' operator, found: {0}" msgstr "Erwartet 'and' oder 'or' Operator, gefunden: {0}" @@ -9576,13 +9616,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:1820 +#: frappe/public/js/frappe/views/reports/query_report.js:1828 #: frappe/public/js/frappe/views/reports/report_view.js:1629 #: frappe/public/js/frappe/widgets/chart_widget.js:315 msgid "Export" msgstr "Exportieren" -#: frappe/public/js/frappe/list/list_view.js:2280 +#: frappe/public/js/frappe/list/list_view.js:2282 msgctxt "Button in list view actions menu" msgid "Export" msgstr "Exportieren" @@ -9775,7 +9815,7 @@ msgstr "Fehler beim Berechnen des Anfragekörpers: {}" msgid "Failed to connect to server" msgstr "Verbindung zum Server fehlgeschlagen" -#: frappe/auth.py:698 +#: frappe/auth.py:701 msgid "Failed to decode token, please provide a valid base64-encoded token." msgstr "Fehler beim Dekodieren des Tokens. Bitte geben Sie ein gültiges Base64-codiertes Token an." @@ -9939,7 +9979,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:236 -#: frappe/public/js/frappe/views/reports/query_report.js:1879 +#: frappe/public/js/frappe/views/reports/query_report.js:1887 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_form_list_column/web_form_list_column.json msgid "Field" @@ -10022,7 +10062,7 @@ msgstr "Das Feld {0} bezieht sich auf einen nicht existierenden Doctype {1}." msgid "Field {0} not found." msgstr "Feld {0} nicht gefunden" -#: frappe/email/doctype/notification/notification.py:545 +#: frappe/email/doctype/notification/notification.py:547 msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link" msgstr "Feld {0} im Dokument {1} ist weder ein Feld für eine Handynummer noch ein Kunden- oder Benutzerverknüpfung" @@ -10040,7 +10080,7 @@ msgstr "Feld {0} im Dokument {1} ist weder ein Feld für eine Handynummer noch e #: 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:454 +#: frappe/public/js/frappe/form/grid_row.js:455 #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Fieldname" msgstr "Feldname" @@ -10121,7 +10161,7 @@ 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 +#: frappe/database/query.py:613 msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function" msgstr "" @@ -10149,7 +10189,7 @@ msgstr "Feldtyp" msgid "Fieldtype cannot be changed from {0} to {1}" msgstr "Feldtyp kann nicht von {0} auf {1} geändert werden" -#: frappe/custom/doctype/customize_form/customize_form.py:589 +#: frappe/custom/doctype/customize_form/customize_form.py:593 msgid "Fieldtype cannot be changed from {0} to {1} in row {2}" msgstr "Feldtyp kann nicht von {0} nach {1} in Zeile {2} geändert werden" @@ -10215,7 +10255,7 @@ msgstr "Datei-URL" msgid "File backup is ready" msgstr "Dateisicherung ist bereit" -#: frappe/core/doctype/file/file.py:646 +#: frappe/core/doctype/file/file.py:649 msgid "File name cannot have {0}" msgstr "Der Dateiname darf nicht {0} haben" @@ -10223,7 +10263,7 @@ msgstr "Der Dateiname darf nicht {0} haben" msgid "File not attached" msgstr "Datei nicht angehängt" -#: frappe/core/doctype/file/file.py:756 frappe/public/js/frappe/request.js:200 +#: frappe/core/doctype/file/file.py:759 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 "Dateigröße hat die maximal zulässige Größe von {0} MB überschritten" @@ -10236,7 +10276,7 @@ msgstr "Datei zu groß" msgid "File type of {0} is not allowed" msgstr "Der Dateityp {0} ist nicht zulässig" -#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:448 +#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:451 msgid "File {0} does not exist" msgstr "Datei {0} ist nicht vorhanden" @@ -10290,11 +10330,11 @@ msgstr "Name des Filters" msgid "Filter Values" msgstr "Werte filtern" -#: frappe/database/query.py:358 +#: frappe/database/query.py:360 msgid "Filter condition missing after operator: {0}" msgstr "" -#: frappe/database/query.py:425 +#: frappe/database/query.py:427 msgid "Filter fields cannot contain backticks (`)." msgstr "" @@ -10371,7 +10411,7 @@ msgstr "Filterbereich" msgid "Filters applied for {0}" msgstr "Filter angewendet für {0}" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:188 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:202 msgid "Filters saved" msgstr "Filter gespeichert" @@ -10419,9 +10459,12 @@ msgstr "Erster Wochentag" #. Label of the first_name (Data) field in DocType 'Contact' #. Label of the first_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json #: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:44 -#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:15 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:15 msgid "First Name" msgstr "Vorname" @@ -10502,7 +10545,7 @@ msgstr "Ordnername" msgid "Folder name should not include '/' (slash)" msgstr "Ordnername sollte nicht '/' (Schrägstrich) enthalten" -#: frappe/core/doctype/file/file.py:494 +#: frappe/core/doctype/file/file.py:497 msgid "Folder {0} is not empty" msgstr "Ordner {0} ist nicht leer" @@ -10705,7 +10748,7 @@ msgstr "Für Benutzer" msgid "For Value" msgstr "Für Wert" -#: frappe/public/js/frappe/views/reports/query_report.js:2129 +#: frappe/public/js/frappe/views/reports/query_report.js:2137 #: frappe/public/js/frappe/views/reports/report_view.js:108 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)." @@ -10990,7 +11033,7 @@ msgstr "Von-Datum" msgid "From Date Field" msgstr "Von-Datum-Feld" -#: frappe/public/js/frappe/views/reports/query_report.js:1840 +#: frappe/public/js/frappe/views/reports/query_report.js:1848 msgid "From Document Type" msgstr "Vom Dokumenttyp" @@ -11052,13 +11095,13 @@ msgstr "Funktion basiert auf" msgid "Function {0} is not whitelisted." msgstr "Funktion {0} ist nicht freigegeben." -#: frappe/database/query.py:1417 +#: frappe/database/query.py:1419 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" +msgid "Further sub-groups can only be created under records marked as 'Group'" +msgstr "" #: frappe/core/doctype/communication/communication.js:291 msgid "Fw: {0}" @@ -11117,7 +11160,7 @@ msgstr "Allgemein" msgid "Generate Keys" msgstr "Schlüssel generieren" -#: frappe/public/js/frappe/views/reports/query_report.js:874 +#: frappe/public/js/frappe/views/reports/query_report.js:882 msgid "Generate New Report" msgstr "Neuen Bericht erstellen" @@ -11533,14 +11576,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 +#: frappe/database/query.py:752 msgid "Group By must be a string" msgstr "" -#: frappe/public/js/frappe/views/treeview.js:418 -msgid "Group Node" -msgstr "Gruppen-Knoten" - #. Label of the ldap_group_objectclass (Data) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Group Object Class" @@ -11870,7 +11909,7 @@ msgstr "Versteckt" msgid "Hidden Fields" msgstr "Versteckte Felder" -#: frappe/public/js/frappe/views/reports/query_report.js:1642 +#: frappe/public/js/frappe/views/reports/query_report.js:1650 msgid "Hidden columns include: {0}" msgstr "Versteckte Spalten enthalten: {0}" @@ -11982,7 +12021,7 @@ msgstr "Seitenleiste, Menü und Kommentare ausblenden" msgid "Hide Standard Menu" msgstr "Standardmenü ausblenden" -#: frappe/public/js/frappe/list/list_view.js:1849 +#: frappe/public/js/frappe/list/list_view.js:1851 msgid "Hide Tags" msgstr "Schlagworte ausblenden" @@ -12241,7 +12280,7 @@ msgstr "Falls diese Option aktiviert ist, wird der Workflow-Status nicht den Sta #: frappe/core/doctype/doctype/doctype.py:1777 #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45 -#: frappe/public/js/frappe/roles_editor.js:66 +#: frappe/public/js/frappe/roles_editor.js:68 msgid "If Owner" msgstr "Wenn Inhaber" @@ -12469,8 +12508,8 @@ msgstr "Ignorierte Apps" msgid "Illegal Document Status for {0}" msgstr "Illegaler Dokumentstatus für {0}" -#: frappe/model/db_query.py:453 frappe/model/db_query.py:456 -#: frappe/model/db_query.py:1121 +#: frappe/model/db_query.py:454 frappe/model/db_query.py:457 +#: frappe/model/db_query.py:1122 msgid "Illegal SQL Query" msgstr "Ungültige SQL-Abfrage" @@ -12557,11 +12596,11 @@ msgstr "Bilder" #. Option for the 'Operation' (Select) field in DocType 'Activity Log' #: frappe/core/doctype/activity_log/activity_log.json -#: frappe/core/doctype/user/user.js:384 +#: frappe/core/doctype/user/user.js:372 msgid "Impersonate" msgstr "Imitieren" -#: frappe/core/doctype/user/user.js:411 +#: frappe/core/doctype/user/user.js:399 msgid "Impersonate as {0}" msgstr "{0} imitieren" @@ -12591,7 +12630,7 @@ msgstr "Implizit" msgid "Import" msgstr "Importieren" -#: frappe/public/js/frappe/list/list_view.js:1911 +#: frappe/public/js/frappe/list/list_view.js:1913 msgctxt "Button in list view menu" msgid "Import" msgstr "Importieren" @@ -12820,15 +12859,15 @@ msgid "Include Web View Link in Email" msgstr "Dokument Web View Link per E-Mail senden" #: frappe/public/js/frappe/form/print_utils.js:59 -#: frappe/public/js/frappe/views/reports/query_report.js:1620 +#: frappe/public/js/frappe/views/reports/query_report.js:1628 msgid "Include filters" msgstr "Filter einbeziehen" -#: frappe/public/js/frappe/views/reports/query_report.js:1640 +#: frappe/public/js/frappe/views/reports/query_report.js:1648 msgid "Include hidden columns" msgstr "Versteckte Spalten einbeziehen" -#: frappe/public/js/frappe/views/reports/query_report.js:1612 +#: frappe/public/js/frappe/views/reports/query_report.js:1620 msgid "Include indentation" msgstr "Einrückung einschließen" @@ -12875,7 +12914,7 @@ msgstr "Falsches Konto für eingehende E-Mails" msgid "Incomplete Virtual Doctype Implementation" msgstr "Unvollständige Implementierung des virtuellen DocTypes" -#: frappe/auth.py:255 +#: frappe/auth.py:258 msgid "Incomplete login details" msgstr "Unvollständige Anmeldedaten" @@ -12986,7 +13025,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:1885 +#: frappe/public/js/frappe/views/reports/query_report.js:1893 msgid "Insert After" msgstr "Einfügen nach" @@ -13059,7 +13098,7 @@ msgstr "Anweisungen per E-Mail gesendet" msgid "Insufficient Permission Level for {0}" msgstr "Unzureichende Berechtigungsstufe für {0}" -#: frappe/database/query.py:806 frappe/database/query.py:1052 +#: frappe/database/query.py:808 frappe/database/query.py:1054 msgid "Insufficient Permission for {0}" msgstr "Unzureichende Berechtigung für {0}" @@ -13175,7 +13214,7 @@ msgid "Invalid" msgstr "Ungültig" #: frappe/public/js/form_builder/utils.js:221 -#: frappe/public/js/frappe/form/grid_row.js:849 +#: frappe/public/js/frappe/form/grid_row.js:850 #: frappe/public/js/frappe/form/layout.js:810 #: frappe/public/js/frappe/views/reports/report_view.js:721 msgid "Invalid \"depends_on\" expression" @@ -13233,8 +13272,8 @@ 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 +#: frappe/database/query.py:429 frappe/database/query.py:456 +#: frappe/database/query.py:466 frappe/database/query.py:489 msgid "Invalid Filter" msgstr "Ungültiger Filter" @@ -13306,7 +13345,7 @@ msgstr "Ungültiges Passwort" msgid "Invalid Phone Number" msgstr "Ungültige Telefonnummer" -#: frappe/auth.py:94 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 +#: frappe/auth.py:97 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 #: frappe/www/login.py:128 msgid "Invalid Request" msgstr "ungültige Anfrage" @@ -13346,7 +13385,7 @@ msgstr "Ungültiges Webhook Geheimnis" msgid "Invalid aggregate function" msgstr "Ungültige Aggregatfunktion" -#: frappe/database/query.py:1542 +#: frappe/database/query.py:1544 msgid "Invalid alias format: {0}. Alias must be a simple identifier." msgstr "Ungültiges Alias-Format: {0}. Alias muss ein einfacher Bezeichner sein." @@ -13354,19 +13393,19 @@ msgstr "Ungültiges Alias-Format: {0}. Alias muss ein einfacher Bezeichner sein. msgid "Invalid app" msgstr "Ungültige App" -#: frappe/database/query.py:1468 +#: frappe/database/query.py:1470 msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed." msgstr "Ungültiges Argumentformat: {0}. Nur in Anführungszeichen gesetzte Zeichenfolgenliterale oder einfache Feldnamen sind zulässig." -#: frappe/database/query.py:1444 +#: frappe/database/query.py:1446 msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed." msgstr "Ungültiger Argumenttyp: {0}. Nur Zeichenfolgen, Zahlen und None sind zulässig." -#: frappe/database/query.py:460 +#: frappe/database/query.py:462 msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed." msgstr "Ungültige Zeichen im Feldnamen: {0}. Nur Buchstaben, Zahlen und Unterstriche sind zulässig." -#: frappe/database/query.py:575 +#: frappe/database/query.py:577 msgid "Invalid characters in table name: {0}" msgstr "Ungültige Zeichen im Tabellenname: {0}" @@ -13374,11 +13413,11 @@ msgstr "Ungültige Zeichen im Tabellenname: {0}" msgid "Invalid column" msgstr "Ungültige Spalte" -#: frappe/database/query.py:381 +#: frappe/database/query.py:383 msgid "Invalid condition type in nested filters: {0}" msgstr "Ungültiger Bedingungstyp in verschachtelten Filtern: {0}" -#: frappe/database/query.py:787 +#: frappe/database/query.py:789 msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'." msgstr "Ungültige Richtung in „Sortieren nach“: {0}. Muss „ASC“ oder „DESC“ sein." @@ -13394,23 +13433,23 @@ 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/database/query.py:1301 +#: frappe/database/query.py:1303 msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'." msgstr "Ungültiges Feldformat für SELECT: {0}. Feldnamen müssen einfach, mit ` (backtick), tabellenqualifiziert, mit Alias oder '*' sein." -#: frappe/database/query.py:734 +#: frappe/database/query.py:736 msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'." msgstr "Ungültiges Feldformat in {0}: {1}. Verwenden Sie 'field', 'link_field.field', oder 'child_table.field'." -#: frappe/database/query.py:1620 +#: frappe/database/query.py:1622 msgid "Invalid field name in function: {0}. Only simple field names are allowed." msgstr "" -#: frappe/utils/data.py:2215 +#: frappe/utils/data.py:2241 msgid "Invalid field name {0}" msgstr "Ungültiger Feldname {0}" -#: frappe/database/query.py:668 +#: frappe/database/query.py:670 msgid "Invalid field type: {0}" msgstr "Ungültiger Feldtyp: {0}" @@ -13422,11 +13461,11 @@ msgstr "Ungültige Feldname '{0}' in auton" msgid "Invalid file path: {0}" msgstr "Ungültiger Dateipfad: {0}" -#: frappe/database/query.py:364 +#: frappe/database/query.py:366 msgid "Invalid filter condition: {0}. Expected a list or tuple." msgstr "" -#: frappe/database/query.py:450 +#: frappe/database/query.py:452 msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'." msgstr "" @@ -13434,11 +13473,11 @@ msgstr "" msgid "Invalid filter: {0}" msgstr "Ungültiger Filter: {0}" -#: frappe/database/query.py:1422 +#: frappe/database/query.py:1424 msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed." msgstr "" -#: frappe/database/query.py:1383 +#: frappe/database/query.py:1385 msgid "Invalid function dictionary format" msgstr "" @@ -13475,23 +13514,27 @@ 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:337 +#: frappe/app.py:340 msgid "Invalid request arguments" msgstr "Ungültige Anfrageargumente" +#: frappe/app.py:327 +msgid "Invalid request body" +msgstr "" + #: frappe/core/doctype/user_invitation/user_invitation.py:181 msgid "Invalid role" msgstr "" -#: frappe/database/query.py:410 +#: frappe/database/query.py:412 msgid "Invalid simple filter format: {0}" msgstr "" -#: frappe/database/query.py:341 +#: frappe/database/query.py:343 msgid "Invalid start for filter condition: {0}. Expected a list or tuple." msgstr "" -#: frappe/database/query.py:1489 +#: frappe/database/query.py:1491 msgid "Invalid string literal format: {0}" msgstr "" @@ -13595,7 +13638,7 @@ msgstr "Hat Kalender und 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/doctype_list.js:50 #: frappe/core/doctype/doctype_link/doctype_link.json msgid "Is Child Table" msgstr "Ist Untertabelle" @@ -13648,6 +13691,10 @@ msgstr "Ist Ordner" msgid "Is Global" msgstr "Ist global" +#: frappe/public/js/frappe/views/treeview.js:418 +msgid "Is Group" +msgstr "Ist Gruppe" + #. Label of the is_hidden (Check) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "Is Hidden" @@ -13736,7 +13783,7 @@ msgstr "Ist die Einrichtung abgeschlossen?" #. 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/core/doctype/doctype/doctype_list.js:65 #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Is Single" msgstr "Ist einzeln" @@ -13772,7 +13819,7 @@ msgstr "Ist 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 +#: frappe/core/doctype/doctype/doctype_list.js:40 msgid "Is Submittable" msgstr "Ist übertragbar" @@ -13978,11 +14025,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:388 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:402 msgid "Kanban Board Name" msgstr "Kanban-Tafel Name" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:265 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:279 msgctxt "Button in kanban view menu" msgid "Kanban Settings" msgstr "Kanban-Einstellungen" @@ -14280,10 +14327,13 @@ msgstr "Querformat" #. 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' +#. Label of a field in the edit-profile Web Form #: 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:117 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/printing/page/print/print.js:117 #: frappe/public/js/frappe/form/templates/print_layout.html:11 msgid "Language" msgstr "Sprache" @@ -14371,9 +14421,12 @@ msgstr "Letzter Monat" #. Label of the last_name (Data) field in DocType 'Contact' #. Label of the last_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json #: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:45 -#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:19 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:19 msgid "Last Name" msgstr "Nachname" @@ -14614,7 +14667,7 @@ msgstr "Briefkopf in HTML" #: 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/public/js/frappe/roles_editor.js:68 #: frappe/website/doctype/help_article/help_article.json msgid "Level" msgstr "Ebene" @@ -14907,7 +14960,7 @@ msgstr "Listenfilter" msgid "List Settings" msgstr "Listeneinstellungen" -#: frappe/public/js/frappe/list/list_view.js:1991 +#: frappe/public/js/frappe/list/list_view.js:1993 msgctxt "Button in list view menu" msgid "List Settings" msgstr "Listeneinstellungen" @@ -14958,7 +15011,7 @@ msgid "Load Balancing" msgstr "Lastverteilung" #: frappe/public/js/frappe/list/base_list.js:399 -#: frappe/public/js/frappe/web_form/web_form_list.js:305 +#: frappe/public/js/frappe/web_form/web_form_list.js:306 #: frappe/website/doctype/help_article/templates/help_article_list.html:30 msgid "Load More" msgstr "Mehr laden" @@ -14978,7 +15031,7 @@ msgstr "Mehr laden" #: frappe/public/js/frappe/list/base_list.js:526 #: frappe/public/js/frappe/list/list_view.js:363 #: frappe/public/js/frappe/ui/listing.html:16 -#: frappe/public/js/frappe/views/reports/query_report.js:1089 +#: frappe/public/js/frappe/views/reports/query_report.js:1097 msgid "Loading" msgstr "Laden" @@ -15121,7 +15174,7 @@ msgstr "Login-Bestätigungscode von {}" msgid "Login and view in Browser" msgstr "Anmelden und im Browser anzeigen" -#: frappe/website/doctype/web_form/web_form.js:367 +#: frappe/website/doctype/web_form/web_form.js:368 msgid "Login is required to see web form list view. Enable {0} to see list settings" msgstr "Um die Listenansicht des Webformulars zu sehen, ist eine Anmeldung erforderlich. Aktivieren Sie {0}, um die Listeneinstellungen zu sehen" @@ -15129,7 +15182,7 @@ msgstr "Um die Listenansicht des Webformulars zu sehen, ist eine Anmeldung erfor msgid "Login link sent to your email" msgstr "Ein Anmeldelink wurde an Ihre E-Mail-Adresse gesendet" -#: frappe/auth.py:339 frappe/auth.py:342 +#: frappe/auth.py:342 frappe/auth.py:345 msgid "Login not allowed at this time" msgstr "Anmelden zurzeit nicht erlaubt" @@ -15182,7 +15235,7 @@ msgstr "Mit E-Mail-Link anmelden" msgid "Login with email link expiry (in minutes)" msgstr "Gültigkeitsdauer des E-Mail-Links (in Minuten)" -#: frappe/auth.py:144 +#: frappe/auth.py:147 msgid "Login with username and password is not allowed." msgstr "Login mit Benutzername und Passwort ist nicht erlaubt." @@ -15201,7 +15254,7 @@ msgstr "" msgid "Logout" msgstr "Abmelden" -#: frappe/core/doctype/user/user.js:202 +#: frappe/core/doctype/user/user.js:190 msgid "Logout All Sessions" msgstr "Alle Sitzungen abmelden" @@ -15305,7 +15358,10 @@ msgid "Major" msgstr "Major" #. Label of the show_name_in_global_search (Check) field in DocType 'DocType' +#. Label of the show_name_in_global_search (Check) field in DocType 'Customize +#. Form' #: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Make \"name\" searchable in Global Search" msgstr "Name in der globalen Suche durchsuchbar machen" @@ -15381,7 +15437,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:509 +#: frappe/website/doctype/web_form/web_form.py:536 msgid "Mandatory Information missing:" msgstr "Pflichtangaben fehlen:" @@ -15838,6 +15894,11 @@ msgstr "Mittig" msgid "Middle Name" msgstr "Zweiter Vorname" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Middle Name (Optional)" +msgstr "" + #. Name of a DocType #. Label of a Link in the Tools Workspace #: frappe/automation/doctype/milestone/milestone.json @@ -15944,6 +16005,11 @@ msgstr "Mobiltelefon" msgid "Mobile No" msgstr "Mobilfunknummer" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Mobile Number" +msgstr "Mobilfunknummer" + #. 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" @@ -15969,7 +16035,7 @@ msgstr "Modal-Auslöser" #. 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/doctype/doctype_list.js:31 #: 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 @@ -16145,10 +16211,12 @@ msgstr "Weitere Info" #. Label of the additional_info (Section Break) field in DocType #. 'Communication' #. Label of the short_bio (Tab Break) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: 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 +#: frappe/core/web_form/edit_profile/edit_profile.json msgid "More Information" msgstr "Mehr Informationen" @@ -16178,7 +16246,7 @@ msgstr "Wahrscheinlich ist Ihr Passwort zu lang." msgid "Move" msgstr "Verschieben" -#: frappe/public/js/frappe/form/grid_row.js:193 +#: frappe/public/js/frappe/form/grid_row.js:194 msgid "Move To" msgstr "Bewegen nach" @@ -16214,7 +16282,7 @@ msgstr "Abschnitte in neue Registerkarte verschieben" msgid "Move the current field and the following fields to a new column" msgstr "Aktuelles und folgende Felder in eine neue Spalte verschieben" -#: frappe/public/js/frappe/form/grid_row.js:168 +#: frappe/public/js/frappe/form/grid_row.js:169 msgid "Move to Row Number" msgstr "Gehe zu Zeilennummer" @@ -16282,7 +16350,7 @@ msgid "Mx" msgstr "Divers" #: frappe/templates/includes/web_sidebar.html:41 -#: frappe/website/doctype/web_form/web_form.py:498 +#: frappe/website/doctype/web_form/web_form.py:525 #: 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" @@ -16426,12 +16494,12 @@ msgstr "Vorlage für Navigationsleiste" msgid "Navbar Template Values" msgstr "Navigationsleiste-Vorlagenwerte" -#: frappe/public/js/frappe/list/list_view.js:1378 +#: frappe/public/js/frappe/list/list_view.js:1380 msgctxt "Description of a list view shortcut" msgid "Navigate list down" msgstr "Liste nach unten navigieren" -#: frappe/public/js/frappe/list/list_view.js:1385 +#: frappe/public/js/frappe/list/list_view.js:1387 msgctxt "Description of a list view shortcut" msgid "Navigate list up" msgstr "Liste nach oben navigieren" @@ -16446,6 +16514,10 @@ msgstr "Zum Hauptinhalt navigieren" msgid "Navigation Settings" msgstr "Navigationseinstellungen" +#: frappe/public/js/frappe/list/list_view.js:485 +msgid "Need Help?" +msgstr "" + #: frappe/desk/doctype/workspace/workspace.py:322 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" @@ -16454,7 +16526,7 @@ msgstr "Sie benötigen die Rolle des Workspace Managers, um den privaten Arbeits msgid "Negative Value" msgstr "Negativer Wert" -#: frappe/database/query.py:333 +#: frappe/database/query.py:335 msgid "Nested filters must be provided as a list or tuple." msgstr "Verschachtelte Filter müssen als Liste oder Tupel angegeben werden." @@ -16467,6 +16539,12 @@ msgstr "Schachtelfehler. Bitte den Administrator kontaktieren." msgid "Network Printer Settings" msgstr "Netzwerkdrucker-Einstellungen" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Never" +msgstr "" + #. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/core/doctype/success_action/success_action.js:57 @@ -16475,7 +16553,7 @@ msgstr "Netzwerkdrucker-Einstellungen" #: 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/treeview.js:473 #: frappe/public/js/frappe/views/workspace/workspace.js:64 #: frappe/website/doctype/web_form/templates/web_list.html:15 #: frappe/www/list.html:19 @@ -16536,7 +16614,7 @@ msgstr "Neues Ereignis" msgid "New Folder" msgstr "Neuer Ordner" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 msgid "New Kanban Board" msgstr "Neue Kanban-Tafel" @@ -16571,7 +16649,7 @@ msgstr "Neue Zahlenkarte" msgid "New Onboarding" msgstr "Neues Onboarding" -#: frappe/core/doctype/user/user.js:190 frappe/www/update-password.html:43 +#: frappe/core/doctype/user/user.js:178 frappe/www/update-password.html:43 msgid "New Password" msgstr "Neues Passwort" @@ -16667,7 +16745,7 @@ msgstr "Neuer Wert muss gesetzt werden" #: frappe/public/js/frappe/ui/toolbar/search_utils.js:227 #: 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:411 +#: frappe/website/doctype/web_form/web_form.py:438 msgid "New {0}" msgstr "Neu {0}" @@ -16819,7 +16897,7 @@ msgstr "Weiter bei Klick" #: frappe/public/js/form_builder/utils.js:341 #: frappe/public/js/frappe/form/controls/link.js:498 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1665 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 #: frappe/website/doctype/help_article/templates/help_article.html:26 msgid "No" msgstr "Nein" @@ -16968,7 +17046,7 @@ msgstr "Keine Ergebnisse gefunden" msgid "No Roles Specified" msgstr "Keine Rollen festgelegt" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 msgid "No Select Field Found" msgstr "Kein Auswahlfeld gefunden" @@ -17052,7 +17130,7 @@ msgstr "" msgid "No failed logs" msgstr "Keine fehlgeschlagenen Protokolle" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:371 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:385 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." @@ -17076,7 +17154,7 @@ msgstr "Keine weiteren Datensätze" msgid "No matching records. Search something new" msgstr "Keine Bilder gefunden. Suchen Sie etwas Neues" -#: frappe/public/js/frappe/web_form/web_form_list.js:161 +#: frappe/public/js/frappe/web_form/web_form_list.js:162 msgid "No more items to display" msgstr "Keine weiteren Elemente zum Anzeigen" @@ -17120,7 +17198,7 @@ msgctxt "{0} = verb, {1} = object" msgid "No permission to '{0}' {1}" msgstr "Keine Berechtigung um '{0}' {1}" -#: frappe/model/db_query.py:948 +#: frappe/model/db_query.py:949 msgid "No permission to read {0}" msgstr "Keine Berechtigung zum Lesen {0}" @@ -17168,11 +17246,11 @@ msgstr "Keine {0}" msgid "No {0} Found" msgstr "Kein {0} gefunden" -#: frappe/public/js/frappe/web_form/web_form_list.js:233 +#: frappe/public/js/frappe/web_form/web_form_list.js:234 msgid "No {0} found" msgstr "Kein {0} gefunden" -#: frappe/public/js/frappe/list/list_view.js:497 +#: frappe/public/js/frappe/list/list_view.js:499 msgid "No {0} found with matching filters. Clear filters to see all {0}." msgstr "Keine {0} mit passenden Filtern gefunden. Löschen Sie Filter, um alle {0} -Einträge zu sehen." @@ -17181,7 +17259,7 @@ msgid "No {0} mail" msgstr "Nein {0} mail" #: frappe/public/js/form_builder/utils.js:117 -#: frappe/public/js/frappe/form/grid_row.js:256 +#: frappe/public/js/frappe/form/grid_row.js:257 msgctxt "Title of the 'row number' column" msgid "No." msgstr "Nr." @@ -17245,7 +17323,7 @@ msgstr "Nicht Nachkommen von" msgid "Not Equals" msgstr "Ungleich" -#: frappe/app.py:387 frappe/www/404.html:3 +#: frappe/app.py:390 frappe/www/404.html:3 msgid "Not Found" msgstr "Nicht gefunden" @@ -17271,9 +17349,9 @@ msgstr "Nicht mit jedem Datensatz verknüpft" msgid "Not Nullable" msgstr "Nicht nullbar" -#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26 +#: frappe/__init__.py:550 frappe/app.py:383 frappe/desk/calendar.py:26 #: frappe/public/js/frappe/web_form/webform_script.js:15 -#: frappe/website/doctype/web_form/web_form.py:747 +#: frappe/website/doctype/web_form/web_form.py:774 #: 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 @@ -17292,7 +17370,7 @@ msgstr "Nicht veröffentlicht" #: 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/kanban/kanban_view.js:183 #: frappe/public/js/frappe/views/reports/report_view.js:209 #: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39 #: frappe/website/doctype/web_form/templates/web_form.html:85 @@ -17343,7 +17421,7 @@ msgstr "Nicht aktiv" msgid "Not allowed for {0}: {1}" msgstr "Nicht zulässig für {0}: {1}" -#: frappe/email/doctype/notification/notification.py:637 +#: frappe/email/doctype/notification/notification.py:639 msgid "Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings" msgstr "Das {0} -Dokument darf nicht angehängt werden. Aktivieren Sie in den Druckeinstellungen die Option "Druck für {0} zulassen"" @@ -17375,12 +17453,12 @@ msgstr "Nicht im Entwicklungsmodus" msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType." msgstr "Nicht im Entwicklungsmodus! In site_config.json erstellen oder \"Benutzerdefiniertes\" DocType erstellen." -#: frappe/core/doctype/system_settings/system_settings.py:216 +#: frappe/core/doctype/system_settings/system_settings.py:217 #: 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:760 +#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:787 #: frappe/website/js/website.js:97 msgid "Not permitted" msgstr "Nicht gestattet" @@ -17426,7 +17504,7 @@ msgstr "Hinweis: Um optimale Ergebnisse zu erzielen, müssen die Bilder dieselbe msgid "Note: Multiple sessions will be allowed in case of mobile device" msgstr "Hinweis: Mehrere Sitzungen wird im Falle einer mobilen Gerät erlaubt sein" -#: frappe/core/doctype/user/user.js:399 +#: frappe/core/doctype/user/user.js:387 msgid "Note: This will be shared with user." msgstr "Hinweis: Dies wird dem Benutzer mitgeteilt." @@ -17498,15 +17576,15 @@ msgstr "Benachrichtigungsdokument abonniert" msgid "Notification sent to" msgstr "Benachrichtigung gesendet an" -#: frappe/email/doctype/notification/notification.py:542 +#: frappe/email/doctype/notification/notification.py:544 msgid "Notification: customer {0} has no Mobile number set" msgstr "Benachrichtigung: Kunde {0} hat keine Mobiltelefonnummer festgelegt" -#: frappe/email/doctype/notification/notification.py:528 +#: frappe/email/doctype/notification/notification.py:530 msgid "Notification: document {0} has no {1} number set (field: {2})" msgstr "Benachrichtigung: Dokument {0} hat keine {1} Nummer gesetzt (Feld: {2})" -#: frappe/email/doctype/notification/notification.py:537 +#: frappe/email/doctype/notification/notification.py:539 msgid "Notification: user {0} has no Mobile number set" msgstr "Benachrichtigung: Benutzer {0} hat keine Mobiltelefonnummer festgelegt" @@ -17620,7 +17698,7 @@ msgstr "Anzahl der Abfragen" msgid "Number of attachment fields are more than {}, limit updated to {}." msgstr "Anzahl der Anhangsfelder ist größer als {}, Limit auf {} aktualisiert." -#: frappe/core/doctype/system_settings/system_settings.py:171 +#: frappe/core/doctype/system_settings/system_settings.py:172 msgid "Number of backups must be greater than zero." msgstr "Anzahl der Backups muss größer als Null sein." @@ -17892,7 +17970,7 @@ msgstr "Onboarding abgeschlossen" #. Description of the 'Is Submittable' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:42 +#: frappe/core/doctype/doctype/doctype_list.js:43 msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended." msgstr "Einmal eingereichte Dokumente können nicht mehr geändert werden. Sie können nur storniert und geändert werden." @@ -17981,11 +18059,11 @@ msgstr "Nur Berichte aus dem Berichterstellungswerkzeug können gelöscht werden msgid "Only reports of type Report Builder can be edited" msgstr "Nur Berichte aus dem Berichterstellungswerkzeug können bearbeitet werden" -#: frappe/custom/doctype/customize_form/customize_form.py:129 +#: frappe/custom/doctype/customize_form/customize_form.py:131 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:241 +#: frappe/model/delete_doc.py:281 msgid "Only the Administrator can delete a standard DocType." msgstr "Nur der Administrator kann einen Standard-DocType löschen." @@ -18081,7 +18159,7 @@ msgstr "Konsole öffnen" msgid "Open in a new tab" msgstr "In einer neuen Registerkarte öffnen" -#: frappe/public/js/frappe/list/list_view.js:1431 +#: frappe/public/js/frappe/list/list_view.js:1433 msgctxt "Description of a list view shortcut" msgid "Open list item" msgstr "Listenelement öffnen" @@ -18130,7 +18208,7 @@ msgstr "Geöffnet" msgid "Operation" msgstr "Arbeitsgang" -#: frappe/utils/data.py:2146 +#: frappe/utils/data.py:2172 msgid "Operator must be one of {0}" msgstr "Betreiber muss einer von {0}" @@ -18176,6 +18254,7 @@ msgstr "Optional: Der Alarm wird gesendet, wenn dieser Ausdruck wahr ist" #. 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 (Text) field in DocType 'Web Form List Column' #. 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 @@ -18184,6 +18263,7 @@ msgstr "Optional: Der Alarm wird gesendet, wenn dieser Ausdruck wahr ist" #: 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_form_list_column/web_form_list_column.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Options" msgstr "Optionen" @@ -18229,7 +18309,7 @@ msgstr "Orange" msgid "Order" msgstr "Auftrag" -#: frappe/database/query.py:767 +#: frappe/database/query.py:769 msgid "Order By must be a string" msgstr "" @@ -18327,7 +18407,7 @@ msgstr "PATCH" #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/printing/page/print/print.js:84 #: frappe/public/js/frappe/form/templates/print_layout.html:44 -#: frappe/public/js/frappe/views/reports/query_report.js:1804 +#: frappe/public/js/frappe/views/reports/query_report.js:1812 msgid "PDF" msgstr "PDF" @@ -18675,8 +18755,8 @@ msgstr "Passiv" #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/system_settings/system_settings.json -#: frappe/core/doctype/user/user.js:177 frappe/core/doctype/user/user.js:224 -#: frappe/core/doctype/user/user.js:244 +#: frappe/core/doctype/user/user.js:165 frappe/core/doctype/user/user.js:212 +#: frappe/core/doctype/user/user.js:232 #: 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 @@ -18699,7 +18779,7 @@ msgstr "Passwort zurücksetzen" msgid "Password Reset Link Generation Limit" msgstr "Limit zum Generieren von Kennwort-Reset-Links" -#: frappe/public/js/frappe/form/grid_row.js:896 +#: frappe/public/js/frappe/form/grid_row.js:897 msgid "Password cannot be filtered" msgstr "Passwort kann nicht gefiltert werden" @@ -18736,7 +18816,7 @@ msgstr "Anweisungen zum Zurücksetzen des Passworts wurden an die E-Mail von {} msgid "Password set" msgstr "Passwort gesetzt" -#: frappe/auth.py:258 +#: frappe/auth.py:261 msgid "Password size exceeded the maximum allowed size" msgstr "Passwort überschreitet die maximal zulässige Länge" @@ -18748,7 +18828,7 @@ msgstr "Passwort überschreitet die maximal zulässige Länge." msgid "Passwords do not match" msgstr "Passwörter stimmen nicht überein" -#: frappe/core/doctype/user/user.js:210 +#: frappe/core/doctype/user/user.js:198 msgid "Passwords do not match!" msgstr "Passwörter stimmen nicht überein!" @@ -18899,7 +18979,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/database/query.py:533 +#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:535 msgid "Permission Error" msgstr "Berechtigungsfehler" @@ -18959,8 +19039,8 @@ msgstr "Berechtigungsart" #: 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:143 frappe/core/doctype/user/user.js:152 -#: frappe/core/doctype/user/user.js:161 +#: frappe/core/doctype/user/user.js:131 frappe/core/doctype/user/user.js:140 +#: frappe/core/doctype/user/user.js:149 #: 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 @@ -19030,6 +19110,7 @@ msgstr "Download-Anfrage für personenbezogene Daten" #. Option for the 'Type' (Select) field in DocType 'Communication' #. Option for the 'Type' (Select) field in DocType 'DocField' #. Label of the phone (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #. 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' @@ -19040,6 +19121,7 @@ msgstr "Download-Anfrage für personenbezogene Daten" #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.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 @@ -19214,7 +19296,7 @@ msgstr "Bitte nicht die Vorlagenköpfe ändern." msgid "Please duplicate this to make changes" msgstr "Bitte kopieren um Änderungen vorzunehmen" -#: frappe/core/doctype/system_settings/system_settings.py:164 +#: frappe/core/doctype/system_settings/system_settings.py:165 msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login." msgstr "Bitte aktivieren Sie mindestens eines der Anmeldeverfahren Social Login Key, LDAP oder Anmeldung per E-Mail-Link, bevor Sie die Anmeldung per Benutzernamen und Passwort deaktivieren." @@ -19346,11 +19428,11 @@ msgstr "Bitte zuerst DocType auswählen" msgid "Please select Entity Type first" msgstr "Bitte wählen Sie zunächst Entitätstyp" -#: frappe/core/doctype/system_settings/system_settings.py:115 +#: frappe/core/doctype/system_settings/system_settings.py:116 msgid "Please select Minimum Password Score" msgstr "Bitte wählen Sie Minimum Password Score" -#: frappe/public/js/frappe/views/reports/query_report.js:1185 +#: frappe/public/js/frappe/views/reports/query_report.js:1193 msgid "Please select X and Y fields" msgstr "Bitte wählen Sie X- und Y-Felder aus" @@ -19378,7 +19460,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:1157 +#: frappe/model/db_query.py:1163 msgid "Please select atleast 1 column from {0} to sort/group" msgstr "Bitte wählen Sie atleast 1 Spalte von {0} sortieren / Gruppe" @@ -19408,7 +19490,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:1408 +#: frappe/public/js/frappe/views/reports/query_report.js:1416 msgid "Please set filters" msgstr "Bitte Filter einstellen" @@ -19428,7 +19510,7 @@ msgstr "Bitte legen Sie zuerst die folgenden Dokumente in diesem Dashboard als S msgid "Please set the series to be used." msgstr "Bitte legen Sie die zu verwendende Serie fest." -#: frappe/core/doctype/system_settings/system_settings.py:128 +#: frappe/core/doctype/system_settings/system_settings.py:129 msgid "Please setup SMS before setting it as an authentication method, via SMS Settings" msgstr "Bitte richten Sie SMS ein, bevor Sie es als Authentifizierungsmethode über SMS-Einstellungen festlegen" @@ -19580,7 +19662,7 @@ msgstr "Postleitzahl" msgid "Posting Timestamp" msgstr "Zeitstempel der Buchung" -#: frappe/database/query.py:1518 +#: frappe/database/query.py:1520 msgid "Potentially dangerous content in string literal: {0}" msgstr "" @@ -19782,13 +19864,13 @@ msgstr "Der Primärschlüssel von doctype {0} kann nicht geändert werden, da es #: 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:1789 +#: frappe/public/js/frappe/views/reports/query_report.js:1797 #: frappe/public/js/frappe/views/reports/report_view.js:1539 -#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18 +#: frappe/public/js/frappe/views/treeview.js:492 frappe/www/printview.html:18 msgid "Print" msgstr "Drucken" -#: frappe/public/js/frappe/list/list_view.js:2164 +#: frappe/public/js/frappe/list/list_view.js:2166 msgctxt "Button in list view actions menu" msgid "Print" msgstr "Drucken" @@ -19858,7 +19940,7 @@ msgstr "Hilfe zu Druckformaten" msgid "Print Format Type" msgstr "Druckformattyp" -#: frappe/public/js/frappe/views/reports/query_report.js:1578 +#: frappe/public/js/frappe/views/reports/query_report.js:1586 msgid "Print Format not found" msgstr "" @@ -20039,11 +20121,11 @@ msgstr "Tipp: Fügen Sie Referenz: {{ reference_doctype }} {{ reference_na msgid "Proceed" msgstr "Fortfahren" -#: frappe/public/js/frappe/views/reports/query_report.js:932 +#: frappe/public/js/frappe/views/reports/query_report.js:940 msgid "Proceed Anyway" msgstr "Fahre dennoch fort" -#: frappe/public/js/frappe/form/controls/table.js:123 +#: frappe/public/js/frappe/form/controls/table.js:104 msgid "Processing" msgstr "wird bearbeitet" @@ -20060,11 +20142,21 @@ msgstr "Prof." msgid "Profile" msgstr "Profil" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile Picture" +msgstr "" + +#. Success message of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile updated successfully." +msgstr "Profil erfolgreich aktualisiert." + #: frappe/public/js/frappe/socketio_client.js:82 msgid "Progress" msgstr "Fortschritt" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:408 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:422 msgid "Project" msgstr "Projekt" @@ -20108,7 +20200,7 @@ msgstr "Eigenschaftstyp" msgid "Protect Attached Files" msgstr "Angehängte Dateien schützen" -#: frappe/core/doctype/file/file.py:523 +#: frappe/core/doctype/file/file.py:526 msgid "Protected File" msgstr "Geschützte Datei" @@ -20614,11 +20706,11 @@ msgstr "Echtzeit (SocketIO)" msgid "Reason" msgstr "Grund" -#: frappe/public/js/frappe/views/reports/query_report.js:886 +#: frappe/public/js/frappe/views/reports/query_report.js:894 msgid "Rebuild" msgstr "Wiederaufbau" -#: frappe/public/js/frappe/views/treeview.js:509 +#: frappe/public/js/frappe/views/treeview.js:511 msgid "Rebuild Tree" msgstr "Baum neu aufbauen" @@ -20999,8 +21091,8 @@ 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:1778 -#: frappe/public/js/frappe/views/treeview.js:496 +#: frappe/public/js/frappe/views/reports/query_report.js:1786 +#: frappe/public/js/frappe/views/treeview.js:498 #: frappe/public/js/frappe/widgets/chart_widget.js:291 #: frappe/public/js/frappe/widgets/number_card_widget.js:352 #: frappe/public/js/print_format_builder/Preview.vue:24 @@ -21031,13 +21123,13 @@ msgstr "" msgid "Refresh Token" msgstr "Aktualisierungstoken" -#: frappe/public/js/frappe/list/list_view.js:534 +#: frappe/public/js/frappe/list/list_view.js:536 msgctxt "Document count in list view" msgid "Refreshing" msgstr "Aktualisiere" #: frappe/core/doctype/system_settings/system_settings.js:57 -#: frappe/core/doctype/user/user.js:374 +#: frappe/core/doctype/user/user.js:362 #: frappe/desk/page/setup_wizard/setup_wizard.js:211 msgid "Refreshing..." msgstr "Aktualisiere..." @@ -21422,7 +21514,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:1965 +#: frappe/public/js/frappe/views/reports/query_report.js:1973 msgid "Report Name" msgstr "Berichtsname" @@ -21474,7 +21566,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:1013 +#: frappe/public/js/frappe/views/reports/query_report.js:1021 msgid "Report initiated, click to view status" msgstr "Bericht initiiert. Klicken Sie hier, um den Status anzuzeigen" @@ -21494,7 +21586,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:2003 +#: frappe/public/js/frappe/views/reports/query_report.js:2011 msgid "Report with more than 10 columns looks better in Landscape mode." msgstr "Berichte mit mehr als 10 Spalten sehen im Querformat besser aus." @@ -21530,7 +21622,7 @@ msgstr "Berichte" msgid "Reports & Masters" msgstr "Berichte & Stammdaten" -#: frappe/public/js/frappe/views/reports/query_report.js:929 +#: frappe/public/js/frappe/views/reports/query_report.js:937 msgid "Reports already in Queue" msgstr "Berichtet bereits in der Warteschlange" @@ -21549,7 +21641,10 @@ msgid "Request Body" msgstr "Anfragekörper" #. Label of the data (Code) field in DocType 'Integration Request' +#. Title of the request-data Web Form +#. Button label of the request-data Web Form #: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/website/web_form/request_data/request_data.json msgid "Request Data" msgstr "Anfragedaten" @@ -21601,6 +21696,11 @@ msgstr "Zeitüberschreitung der Anfrage" msgid "Request URL" msgstr "Anfrage-URL" +#. Title of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "Request for Account Deletion" +msgstr "" + #. Label of the requested_numbers (Code) field in DocType 'SMS Log' #: frappe/core/doctype/sms_log/sms_log.json msgid "Requested Numbers" @@ -21656,7 +21756,7 @@ msgstr "Dashboard-Anpassungen zurücksetzen" msgid "Reset Fields" msgstr "Felder zurücksetzen" -#: frappe/core/doctype/user/user.js:184 frappe/core/doctype/user/user.js:187 +#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:175 msgid "Reset LDAP Password" msgstr "LDAP-Passwort zurücksetzen" @@ -21664,11 +21764,11 @@ msgstr "LDAP-Passwort zurücksetzen" msgid "Reset Layout" msgstr "Layout zurücksetzen" -#: frappe/core/doctype/user/user.js:235 +#: frappe/core/doctype/user/user.js:223 msgid "Reset OTP Secret" msgstr "OTP-Geheimnis zurücksetzen" -#: frappe/core/doctype/user/user.js:168 frappe/www/login.html:199 +#: frappe/core/doctype/user/user.js:156 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" @@ -21703,7 +21803,7 @@ msgstr "Auf Standardwerte zurücksetzen" msgid "Reset sorting" msgstr "Sortierung zurücksetzen" -#: frappe/public/js/frappe/form/grid_row.js:433 +#: frappe/public/js/frappe/form/grid_row.js:434 msgid "Reset to default" msgstr "Auf Standard zurücksetzen" @@ -21955,7 +22055,7 @@ msgstr "Rollengenehmigung Seite und Bericht" #. 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 +#: frappe/public/js/frappe/roles_editor.js:114 msgid "Role Permissions" msgstr "Rollenberechtigungen" @@ -21965,7 +22065,7 @@ msgstr "Rollenberechtigungen" msgid "Role Permissions Manager" msgstr "Rollenberechtigungen-Manager" -#: frappe/public/js/frappe/list/list_view.js:1933 +#: frappe/public/js/frappe/list/list_view.js:1935 msgctxt "Button in list view menu" msgid "Role Permissions Manager" msgstr "Rollenberechtigungen-Manager" @@ -22158,11 +22258,11 @@ msgstr "Zeilenwerte geändert" msgid "Row {0}" msgstr "Zeile {0}" -#: frappe/custom/doctype/customize_form/customize_form.py:353 +#: frappe/custom/doctype/customize_form/customize_form.py:357 msgid "Row {0}: Not allowed to disable Mandatory for standard fields" msgstr "Zeile {0}: Nicht zulässig zum Deaktivieren für Standardfelder" -#: frappe/custom/doctype/customize_form/customize_form.py:342 +#: frappe/custom/doctype/customize_form/customize_form.py:346 msgid "Row {0}: Not allowed to enable Allow on Submit for standard fields" msgstr "Zeile {0}: Keine Berechtigung die Option \"Beim Übertragen erlauben\" für Standardfelder zu aktivieren" @@ -22181,7 +22281,10 @@ msgid "Rows Removed" msgstr "Zeilen entfernt" #. Label of the rows_threshold_for_grid_search (Int) field in DocType 'DocType' +#. Label of the rows_threshold_for_grid_search (Int) field in DocType +#. 'Customize Form' #: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Rows Threshold for Grid Search" msgstr "" @@ -22389,8 +22492,8 @@ msgstr "Samstag" #: 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:1957 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 +#: frappe/public/js/frappe/views/reports/query_report.js:1965 #: frappe/public/js/frappe/views/reports/report_view.js:1735 #: frappe/public/js/frappe/views/workspace/workspace.js:335 #: frappe/public/js/frappe/widgets/base_widget.js:142 @@ -22413,11 +22516,11 @@ msgstr "Speichern als" msgid "Save Customizations" msgstr "Anpassungen speichern" -#: frappe/public/js/frappe/views/reports/query_report.js:1960 +#: frappe/public/js/frappe/views/reports/query_report.js:1968 msgid "Save Report" msgstr "Bericht speichern" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:97 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:107 msgid "Save filters" msgstr "Filter speichern" @@ -22789,7 +22892,7 @@ msgstr "Sicherheitseinstellungen" msgid "See all Activity" msgstr "Alle Aktivitäten anzeigen" -#: frappe/public/js/frappe/views/reports/query_report.js:855 +#: frappe/public/js/frappe/views/reports/query_report.js:863 msgid "See all past reports." msgstr "Alle früheren Berichte anzeigen." @@ -22853,7 +22956,7 @@ msgstr "Auswählen" #: 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:497 +#: frappe/public/js/frappe/form/grid_row.js:498 msgid "Select All" msgstr "Alle auswählen" @@ -22933,7 +23036,7 @@ msgstr "Feld auswählen" msgid "Select Field..." msgstr "Feld auswählen..." -#: frappe/public/js/frappe/form/grid_row.js:489 +#: frappe/public/js/frappe/form/grid_row.js:490 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:181 msgid "Select Fields" msgstr "Felder auswählen" @@ -23053,8 +23156,8 @@ msgid "Select a field to edit its properties." msgstr "Wählen Sie ein Feld aus, um seine Eigenschaften zu bearbeiten." #: frappe/public/js/frappe/views/treeview.js:358 -msgid "Select a group node first." -msgstr "Zuerst einen Gruppenknoten wählen." +msgid "Select a group {0} first." +msgstr "" #: frappe/core/doctype/doctype/doctype.py:1956 msgid "Select a valid Sender Field for creating documents from Email" @@ -23090,13 +23193,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:1445 +#: frappe/public/js/frappe/list/list_view.js:1447 msgctxt "Description of a list view shortcut" msgid "Select list item" msgstr "Listenelement auswählen" -#: frappe/public/js/frappe/list/list_view.js:1397 -#: frappe/public/js/frappe/list/list_view.js:1413 +#: frappe/public/js/frappe/list/list_view.js:1399 +#: frappe/public/js/frappe/list/list_view.js:1415 msgctxt "Description of a list view shortcut" msgid "Select multiple list items" msgstr "Wählen Sie mehrere Listenelemente aus" @@ -23418,7 +23521,7 @@ msgstr "Serie {0} bereits verwendet in {1}" msgid "Server Action" msgstr "Serveraktion" -#: frappe/app.py:396 frappe/public/js/frappe/request.js:611 +#: frappe/app.py:399 frappe/public/js/frappe/request.js:611 #: frappe/www/error.html:36 frappe/www/error.py:15 msgid "Server Error" msgstr "Serverfehler" @@ -23484,7 +23587,7 @@ msgstr "Sitzungsstandards" msgid "Session Defaults Saved" msgstr "Sitzungsstandards gespeichert" -#: frappe/app.py:373 +#: frappe/app.py:376 msgid "Session Expired" msgstr "Sitzung abgelaufen" @@ -23493,7 +23596,7 @@ msgstr "Sitzung abgelaufen" msgid "Session Expiry (idle timeout)" msgstr "Ablauf der Sitzung (Leerlaufzeit)" -#: frappe/core/doctype/system_settings/system_settings.py:122 +#: frappe/core/doctype/system_settings/system_settings.py:123 msgid "Session Expiry must be in format {0}" msgstr "Sitzungsablauf muss im Format {0} sein" @@ -23542,7 +23645,7 @@ msgstr "Filter setzen" msgid "Set Filters for {0}" msgstr "Setze Filter für {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:2113 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 msgid "Set Level" msgstr "Ebenen einstellen" @@ -23596,7 +23699,7 @@ msgstr "Anzahl festlegen" msgid "Set Role For" msgstr "Rolle festlegen für" -#: frappe/core/doctype/user/user.js:136 +#: frappe/core/doctype/user/user.js:124 #: frappe/core/page/permission_manager/permission_manager.js:72 msgid "Set User Permissions" msgstr "Nutzer-Berechtigungen setzen" @@ -23782,7 +23885,7 @@ msgstr "Einrichtung > Benutzer" msgid "Setup > User Permissions" msgstr "Einrichtung > Benutzerberechtigungen" -#: frappe/public/js/frappe/views/reports/query_report.js:1826 +#: frappe/public/js/frappe/views/reports/query_report.js:1834 #: frappe/public/js/frappe/views/reports/report_view.js:1713 msgid "Setup Auto Email" msgstr "Einstellungen Auto E-Mail" @@ -23923,6 +24026,12 @@ msgstr "Dokument anzeigen" msgid "Show Error" msgstr "Fehler anzeigen" +#. Label of the show_external_link_warning (Select) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Show External Link Warning" +msgstr "" + #: frappe/public/js/frappe/form/layout.js:578 msgid "Show Fieldname (click to copy on clipboard)" msgstr "Feldname anzeigen (klicken um in Zwischenablage zu kopieren)" @@ -24051,7 +24160,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:1849 +#: frappe/public/js/frappe/list/list_view.js:1851 msgid "Show Tags" msgstr "Schlagworte anzeigen" @@ -24258,36 +24367,36 @@ msgstr "Anmeldung deaktiviert" msgid "Signups have been disabled for this website." msgstr "Anmeldungen für diese Website wurden deaktiviert." -#. 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 "Einfacher Python-Ausdruck, Beispiel: status in (\"Closed\", \"Cancelled\")" - #. 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 "Einfacher Python-Ausdruck, Beispiel: status in (\"Invalid\")" +msgid "Simple Python Expression, Example: status == \"Invalid\"" +msgstr "" #. 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 "Einfacher Python-Ausdruck, Beispiel: status == 'Open' and type == 'Bug'" +msgid "Simple Python Expression, Example: status == 'Open' and issue_type == 'Bug'" +msgstr "" + +#. 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 "" #. Label of the simultaneous_sessions (Int) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Simultaneous Sessions" msgstr "Gleichzeitige Sitzungen" -#: frappe/custom/doctype/customize_form/customize_form.py:126 +#: frappe/custom/doctype/customize_form/customize_form.py:128 msgid "Single DocTypes cannot be customized." msgstr "Einzelne DocTypes können nicht angepasst werden." #. Description of the 'Is Single' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:67 +#: frappe/core/doctype/doctype/doctype_list.js:68 msgid "Single Types have only one record no tables associated. Values are stored in tabSingles" msgstr "Einzelne Typen haben nur einen Datensatz, keine Tabellen zugeordnet. Die Werte werden in tabSingles gespeichert" @@ -24623,7 +24732,7 @@ msgid "Splash Image" msgstr "Splash-Bild" #: frappe/desk/reportview.py:455 -#: frappe/public/js/frappe/web_form/web_form_list.js:175 +#: frappe/public/js/frappe/web_form/web_form_list.js:176 #: frappe/templates/print_formats/standard_macros.html:44 msgid "Sr" msgstr "Pos" @@ -24655,7 +24764,7 @@ msgstr "Stack Trace" msgid "Standard" msgstr "Standard" -#: frappe/model/delete_doc.py:79 +#: frappe/model/delete_doc.py:119 msgid "Standard DocType can not be deleted." msgstr "Standard DocType kann nicht gelöscht werden." @@ -24925,7 +25034,7 @@ msgstr "Schritte, um Ihre Anmeldung zu überprüfen" #. Label of the sticky (Check) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json -#: frappe/public/js/frappe/form/grid_row.js:454 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Sticky" msgstr "Fixiert" @@ -24955,7 +25064,7 @@ msgstr "Speichernutzung nach Tabelle" msgid "Store Attached PDF Document" msgstr "Angehängtes PDF-Dokument speichern" -#: frappe/core/doctype/user/user.js:490 +#: frappe/core/doctype/user/user.js:497 msgid "Store the API secret securely. It won't be displayed again." msgstr "" @@ -25067,6 +25176,7 @@ msgstr "Buchungs-Warteschlange" #. 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' +#. Button label of the request-to-delete-data Web Form #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/docshare/docshare.json @@ -25075,10 +25185,11 @@ msgstr "Buchungs-Warteschlange" #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/quick_entry.js:225 #: frappe/public/js/frappe/ui/capture.js:307 +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json msgid "Submit" msgstr "Buchen" -#: frappe/public/js/frappe/list/list_view.js:2231 +#: frappe/public/js/frappe/list/list_view.js:2233 msgctxt "Button in list view actions menu" msgid "Submit" msgstr "Buchen" @@ -25088,7 +25199,7 @@ msgctxt "Button in web form" msgid "Submit" msgstr "Senden" -#: frappe/public/js/frappe/ui/dialog.js:63 +#: frappe/public/js/frappe/ui/dialog.js:64 msgctxt "Primary action in dialog" msgid "Submit" msgstr "Buchen" @@ -25136,7 +25247,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:2236 +#: frappe/public/js/frappe/list/list_view.js:2238 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "{0} Dokumente einreichen?" @@ -25186,7 +25297,7 @@ msgstr "Untertitel" #: 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:1171 +#: frappe/public/js/frappe/form/grid.js:1172 #: frappe/public/js/frappe/views/translation_manager.js:21 #: frappe/templates/includes/login/login.js:230 #: frappe/templates/includes/login/login.js:236 @@ -25401,7 +25512,7 @@ msgstr "Synchronisiert" msgid "Syncing {0} of {1}" msgstr "{0} von {1} synchronisieren" -#: frappe/utils/data.py:2547 +#: frappe/utils/data.py:2573 msgid "Syntax Error" msgstr "Syntaxfehler" @@ -25712,7 +25823,7 @@ msgstr "Tabelle MultiSelect" msgid "Table Trimmed" msgstr "Tabelle gekürzt" -#: frappe/public/js/frappe/form/grid.js:1170 +#: frappe/public/js/frappe/form/grid.js:1171 msgid "Table updated" msgstr "Tabelle aktualisiert" @@ -25929,7 +26040,7 @@ msgstr "Danke" msgid "The Auto Repeat for this document has been disabled." msgstr "Die automatische Wiederholung für dieses Dokument wurde deaktiviert." -#: frappe/public/js/frappe/form/grid.js:1193 +#: frappe/public/js/frappe/form/grid.js:1194 msgid "The CSV format is case sensitive" msgstr "Das CSV-Format unterscheidet zwischen Groß- und Kleinschreibung" @@ -26001,7 +26112,7 @@ msgstr "Der Kommentar darf nicht leer sein" msgid "The contents of this email are strictly confidential. Please do not forward this email to anyone." msgstr "Der Inhalt dieser E-Mail ist streng vertraulich. Bitte leiten Sie diese E-Mail nicht an Dritte weiter." -#: frappe/public/js/frappe/list/list_view.js:685 +#: frappe/public/js/frappe/list/list_view.js:687 msgid "The count shown is an estimated count. Click here to see the accurate count." msgstr "Die angezeigte Anzahl ist eine Schätzung. Klicken Sie hier, um die genaue Anzahl anzuzeigen." @@ -26115,7 +26226,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:388 frappe/public/js/frappe/request.js:149 +#: frappe/app.py:391 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" @@ -26188,12 +26299,12 @@ 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:965 +#: frappe/public/js/frappe/views/reports/query_report.js:973 msgid "There are {0} with the same filters already in the queue:" msgstr "Es gibt bereits {0} mit denselben Filtern in der Warteschlange:" #: frappe/website/doctype/web_form/web_form.js:81 -#: frappe/website/doctype/web_form/web_form.js:317 +#: frappe/website/doctype/web_form/web_form.js:318 msgid "There can be only 9 Page Break fields in a Web Form" msgstr "Es dürfen höchstens 9 Seitenumbrüche in einem Webformular vorkommen" @@ -26217,11 +26328,11 @@ msgstr "" msgid "There is nothing new to show you right now." msgstr "Es gibt im Moment nichts Neues zu sehen." -#: frappe/core/doctype/file/file.py:640 frappe/utils/file_manager.py:372 +#: frappe/core/doctype/file/file.py:643 frappe/utils/file_manager.py:372 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:962 +#: frappe/public/js/frappe/views/reports/query_report.js:970 msgid "There is {0} with the same filters already in the queue:" msgstr "In der Warteschlange befindet sich bereits {0} mit denselben Filtern:" @@ -26233,7 +26344,7 @@ msgstr "Es muss atleast eine Erlaubnis Regel sein." msgid "There was an error building this page" msgstr "Beim Erstellen dieser Seite ist ein Fehler aufgetreten" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:182 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:196 msgid "There was an error saving filters" msgstr "Beim Speichern der Filter ist ein Fehler aufgetreten" @@ -26290,7 +26401,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:391 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:405 msgid "This Kanban Board will be private" msgstr "Dieser Kanbantafel wird privat" @@ -26327,7 +26438,7 @@ msgstr "Diese Aktion ist nur für {} zulässig" msgid "This cannot be undone" msgstr "Das kann nicht rückgängig gemacht werden" -#: frappe/desk/doctype/number_card/number_card.js:480 +#: frappe/desk/doctype/number_card/number_card.js:484 msgctxt "Number Card" msgid "This card is visible only to Administrator and System Managers by default. Set a DocType to share with users who have read access." msgstr "" @@ -26350,7 +26461,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:113 +#: frappe/model/delete_doc.py:153 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." @@ -26396,7 +26507,7 @@ msgstr "Dieses Feld wird nur angezeigt, wenn der hier definierte Feldname einen "eval:doc.myfield=='Mein Wert'\n" "eval:doc.age>18" -#: frappe/core/doctype/file/file.py:522 +#: frappe/core/doctype/file/file.py:525 msgid "This file is attached to a protected document and cannot be deleted." msgstr "Diese Datei ist an ein geschütztes Dokument angehängt und kann nicht gelöscht werden." @@ -26431,7 +26542,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:2189 +#: frappe/public/js/frappe/views/reports/query_report.js:2197 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." @@ -26481,7 +26592,7 @@ msgstr "Dies kann auf mehreren Seiten ausgedruckt werden" msgid "This month" msgstr "Diesen Monat" -#: frappe/public/js/frappe/views/reports/query_report.js:1037 +#: frappe/public/js/frappe/views/reports/query_report.js:1045 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." @@ -26489,7 +26600,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:853 +#: frappe/public/js/frappe/views/reports/query_report.js:861 msgid "This report was generated {0}." msgstr "Dieser Bericht wurde {0} generiert." @@ -26631,9 +26742,11 @@ msgstr "Zeitfenster (Sekunden)" #. Label of the time_zone (Select) field in DocType 'System Settings' #. Label of the time_zone (Autocomplete) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #. 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/core/web_form/edit_profile/edit_profile.json #: frappe/desk/page/setup_wizard/setup_wizard.js:407 #: frappe/website/doctype/web_page_view/web_page_view.json msgid "Time Zone" @@ -26900,7 +27013,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:854 +#: frappe/public/js/frappe/views/reports/query_report.js:862 msgid "To get the updated report, click on {0}." msgstr "Klicken Sie auf {0}, um den aktualisierten Bericht abzurufen." @@ -26975,7 +27088,7 @@ msgstr "Rasteransicht wechseln" msgid "Toggle Sidebar" msgstr "Seitenleiste umschalten" -#: frappe/public/js/frappe/list/list_view.js:1964 +#: frappe/public/js/frappe/list/list_view.js:1966 msgctxt "Button in list view menu" msgid "Toggle Sidebar" msgstr "Seitenleiste ein-/ausblenden" @@ -27101,7 +27214,7 @@ msgstr "Thema" #: frappe/desk/query_report.py:587 #: frappe/public/js/frappe/views/reports/print_grid.html:45 -#: frappe/public/js/frappe/views/reports/query_report.js:1324 +#: frappe/public/js/frappe/views/reports/query_report.js:1332 #: frappe/public/js/frappe/views/reports/report_view.js:1553 msgid "Total" msgstr "Summe" @@ -27260,7 +27373,7 @@ msgstr "Übergänge" msgid "Translatable" msgstr "Übersetzbar" -#: frappe/public/js/frappe/views/reports/query_report.js:2244 +#: frappe/public/js/frappe/views/reports/query_report.js:2252 msgid "Translate Data" msgstr "Daten übersetzen" @@ -27619,7 +27732,7 @@ msgstr "Sie können keine E-Mail senden, weil ein E-Mail-Konto fehlt. Bitte rich msgid "Unable to update event" msgstr "Ereignis kann nicht aktualisiert werden" -#: frappe/core/doctype/file/file.py:486 +#: frappe/core/doctype/file/file.py:489 msgid "Unable to write file format for {0}" msgstr "Das Dateiformat für {0} kann nicht geschrieben werden." @@ -27628,7 +27741,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:396 +#: frappe/app.py:399 msgid "Uncaught Exception" msgstr "Nicht abgefangene Ausnahme" @@ -27644,7 +27757,7 @@ msgstr "Rückgängig machen" msgid "Undo last action" msgstr "Letzte Aktion rückgängig machen" -#: frappe/database/query.py:1495 +#: frappe/database/query.py:1497 msgid "Unescaped quotes in string literal: {0}" msgstr "" @@ -27691,7 +27804,7 @@ msgstr "Unbekannte Spalte: {0}" msgid "Unknown Rounding Method: {}" msgstr "Unbekannte Rundungsmethode: {}" -#: frappe/auth.py:316 +#: frappe/auth.py:319 msgid "Unknown User" msgstr "Unbekannter Benutzer" @@ -27757,8 +27870,8 @@ msgstr "Abmeldeparameter" msgid "Unsubscribed" msgstr "Abgemeldet" -#: frappe/database/query.py:653 frappe/database/query.py:1387 -#: frappe/database/query.py:1397 +#: frappe/database/query.py:655 frappe/database/query.py:1389 +#: frappe/database/query.py:1399 msgid "Unsupported function or invalid field name: {0}" msgstr "" @@ -27792,7 +27905,7 @@ msgstr "Bevorstehenden Veranstaltungen für heute" #: 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:427 +#: frappe/public/js/frappe/form/grid_row.js:428 msgid "Update" msgstr "Aktualisieren" @@ -27826,6 +27939,11 @@ msgstr "Reihenfolge aktualisieren" msgid "Update Password" msgstr "Passwort ändern" +#. Title of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Update Profile" +msgstr "" + #. Label of the update_series (Section Break) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -28041,11 +28159,7 @@ msgstr "Andere E-Mail-Adresse verwenden" msgid "Use if the default settings don't seem to detect your data correctly" msgstr "Verwenden Sie diese Option, wenn die Standardeinstellungen Ihre Daten nicht richtig zu erkennen scheinen" -#: frappe/model/db_query.py:436 -msgid "Use of function {0} in field is restricted" -msgstr "Die Verwendung der Funktion {0} im Feld ist eingeschränkt" - -#: frappe/model/db_query.py:413 +#: frappe/model/db_query.py:411 msgid "Use of sub-query or function is restricted" msgstr "Die Verwendung von Teilabfragen oder Funktionen ist eingeschränkt." @@ -28267,12 +28381,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:1944 +#: frappe/public/js/frappe/views/reports/query_report.js:1952 #: frappe/public/js/frappe/views/reports/report_view.js:1761 msgid "User Permissions" msgstr "Benutzerberechtigungen" -#: frappe/public/js/frappe/list/list_view.js:1922 +#: frappe/public/js/frappe/list/list_view.js:1924 msgctxt "Button in list view menu" msgid "User Permissions" msgstr "Benutzerberechtigungen" @@ -28416,7 +28530,7 @@ msgstr "Benutzer {0} hat sich als {1} ausgegeben" msgid "User {0} is disabled" msgstr "Benutzerkonto {0} ist deaktiviert" -#: frappe/sessions.py:242 +#: frappe/sessions.py:243 msgid "User {0} is disabled. Please contact your System Manager." msgstr "Benutzer {0} ist deaktiviert. Bitte wenden Sie sich an Ihren Systemmanager." @@ -28593,7 +28707,7 @@ msgstr "Der Wert kann für {0} nicht negativ sein: {1}" msgid "Value for a check field can be either 0 or 1" msgstr "Wert für ein Ankreuz-Feld kann entweder 0 oder 1 sein" -#: frappe/custom/doctype/customize_form/customize_form.py:612 +#: frappe/custom/doctype/customize_form/customize_form.py:616 msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters" msgstr "Der Wert für das Feld {0} ist in {1} zu lang. Die Länge sollte kleiner als {2} Zeichen sein" @@ -28714,7 +28828,7 @@ msgstr "Alle ansehen" msgid "View Audit Trail" msgstr "Prüfprotokoll anzeigen" -#: frappe/core/doctype/user/user.js:156 +#: frappe/core/doctype/user/user.js:144 msgid "View Doctype Permissions" msgstr "DocType-Berechtigungen anzeigen" @@ -28726,7 +28840,7 @@ msgstr "Datei anzeigen" msgid "View Full Log" msgstr "Vollständiges Protokoll anzeigen" -#: frappe/public/js/frappe/views/treeview.js:484 +#: frappe/public/js/frappe/views/treeview.js:486 #: frappe/public/js/frappe/widgets/quick_list_widget.js:258 msgid "View List" msgstr "Liste anzeigen" @@ -28736,7 +28850,7 @@ msgstr "Liste anzeigen" msgid "View Log" msgstr "Protokoll anzeigen" -#: frappe/core/doctype/user/user.js:147 +#: frappe/core/doctype/user/user.js:135 #: frappe/core/doctype/user_permission/user_permission.js:24 msgid "View Permitted Documents" msgstr "Anzeigen von zulässigen Dokumenten" @@ -28852,6 +28966,7 @@ msgid "Warehouse" msgstr "Lager" #. Option for the 'Style' (Select) field in DocType 'Workflow State' +#: frappe/public/js/frappe/router.js:613 #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Warning" msgstr "Warnung" @@ -29497,7 +29612,7 @@ msgstr "Workflow erfolgreich aktualisiert" msgid "Workspace" msgstr "Arbeitsbereich" -#: frappe/public/js/frappe/router.js:175 +#: frappe/public/js/frappe/router.js:180 msgid "Workspace {0} does not exist" msgstr "Arbeitsbereich {0} existiert nicht" @@ -29619,7 +29734,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:1225 +#: frappe/public/js/frappe/views/reports/query_report.js:1233 msgid "Y Field" msgstr "Y-Feld" @@ -29681,7 +29796,7 @@ msgstr "Gelb" #: frappe/public/js/form_builder/utils.js:336 #: frappe/public/js/frappe/form/controls/link.js:498 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1665 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 #: frappe/website/doctype/help_article/templates/help_article.html:25 msgid "Yes" msgstr "Ja" @@ -29717,6 +29832,10 @@ msgstr "" msgid "You added {0} rows to {1}" msgstr "" +#: frappe/public/js/frappe/router.js:642 +msgid "You are about to open an external link. To confirm, click the link again." +msgstr "" + #: frappe/public/js/frappe/dom.js:438 msgid "You are connected to internet." msgstr "Sie sind mit dem Internet verbunden." @@ -29760,7 +29879,7 @@ msgstr "Sie sind nicht berechtigt, den Bericht zu bearbeiten." msgid "You are not allowed to export {} doctype" msgstr "Sie dürfen keinen {} Doctype exportieren" -#: frappe/public/js/frappe/views/treeview.js:448 +#: frappe/public/js/frappe/views/treeview.js:450 msgid "You are not allowed to print this report" msgstr "Sie sind nicht berechtigt diesen Bericht zu drucken" @@ -29768,7 +29887,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:605 +#: frappe/website/doctype/web_form/web_form.py:632 msgid "You are not allowed to update this Web Form Document" msgstr "Sie sind nicht berechtigt, dieses Web Form-Dokument zu aktualisieren" @@ -29841,11 +29960,11 @@ 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:137 +#: frappe/model/delete_doc.py:177 msgid "You can disable this {0} instead of deleting it." msgstr "Du kannst diese(n) {0} deaktivieren, anstatt es zu löschen." -#: frappe/core/doctype/file/file.py:758 +#: frappe/core/doctype/file/file.py:761 msgid "You can increase the limit from System Settings." msgstr "Sie können das Limit in den Systemeinstellungen erhöhen." @@ -29895,11 +30014,11 @@ msgstr "Sie können „Formular anpassen“ verwenden, um Berechtigungsebenen f msgid "You can use wildcard %" msgstr "Sie können % als Platzhalter verwenden" -#: frappe/custom/doctype/customize_form/customize_form.py:390 +#: frappe/custom/doctype/customize_form/customize_form.py:394 msgid "You can't set 'Options' for field {0}" msgstr "Sie können 'Optionen' nicht für das Feld {0} setzen" -#: frappe/custom/doctype/customize_form/customize_form.py:394 +#: frappe/custom/doctype/customize_form/customize_form.py:398 msgid "You can't set 'Translatable' for field {0}" msgstr "Sie können 'Übersetzbar' für Feld {0} nicht festlegen" @@ -29917,7 +30036,7 @@ msgstr "Sie haben dieses Dokument {1} storniert" msgid "You cannot create a dashboard chart from single DocTypes" msgstr "Sie können kein Dashboard-Diagramm aus einzelnen DocTypes erstellen" -#: frappe/custom/doctype/customize_form/customize_form.py:386 +#: frappe/custom/doctype/customize_form/customize_form.py:390 msgid "You cannot unset 'Read Only' for field {0}" msgstr "\"Nur lesen\" kann für das Feld {0} nicht rückgängig gemacht werden" @@ -29960,11 +30079,11 @@ 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:381 +#: frappe/app.py:384 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/database/query.py:529 +#: frappe/database/query.py:531 msgid "You do not have permission to access field: {0}" msgstr "" @@ -29980,7 +30099,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:808 +#: frappe/website/doctype/web_form/web_form.py:835 msgid "You don't have permission to access the {0} DocType." msgstr "Sie haben keine Berechtigung, auf den DocType {0} zuzugreifen." @@ -30004,7 +30123,7 @@ msgstr "" msgid "You have been successfully logged out" msgstr "Sie haben sich erfolgreich abgemeldet" -#: frappe/custom/doctype/customize_form/customize_form.py:245 +#: frappe/custom/doctype/customize_form/customize_form.py:247 msgid "You have hit the row size limit on database table: {0}" msgstr "Sie haben das Limit für die Zeilengröße in der Datenbanktabelle erreicht: {0}" @@ -30032,7 +30151,7 @@ msgstr "Du hast {0} nicht gesehen" msgid "You haven't added any Dashboard Charts or Number Cards yet." msgstr "Sie haben noch keine Dashboard-Diagramme oder Zahlenkarten hinzugefügt." -#: frappe/public/js/frappe/list/list_view.js:501 +#: frappe/public/js/frappe/list/list_view.js:503 msgid "You haven't created a {0} yet" msgstr "Sie haben noch kein(en) {0} erstellt" @@ -30049,11 +30168,11 @@ 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:804 +#: frappe/website/doctype/web_form/web_form.py:831 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:645 +#: frappe/website/doctype/web_form/web_form.py:672 msgid "You must login to submit this form" msgstr "Anmeldung erforderlich, um dieses Formular zu übermitteln" @@ -30168,6 +30287,10 @@ msgstr "Sie haben dieses Dokument nicht mehr verfolgt" msgid "You viewed this" msgstr "Von Ihnen angesehen" +#: frappe/public/js/frappe/router.js:653 +msgid "You will be redirected to:" +msgstr "" + #: frappe/core/doctype/user_invitation/user_invitation.py:113 msgid "You've been invited to join {0}" msgstr "" @@ -30213,7 +30336,7 @@ msgstr "Ihre Schnellzugriffe" msgid "Your account has been deleted" msgstr "Ihr Konto wurde gelöscht" -#: frappe/auth.py:514 +#: frappe/auth.py:517 msgid "Your account has been locked and will resume after {0} seconds" msgstr "Ihre Anmeldung wurde gesperrt und ist wieder verfügbar in {0} Sekunden" @@ -30279,7 +30402,7 @@ msgstr "Ihre Anfrage ist eingegangen. Wir werden in Kürze antworten. Wenn Sie z msgid "Your report is being generated in the background. You will receive an email on {0} with a download link once it is ready." msgstr "" -#: frappe/app.py:374 +#: frappe/app.py:377 msgid "Your session has expired, please login again to continue." msgstr "Ihre Sitzung ist abgelaufen, bitte melden Sie sich erneut an, um fortzufahren." @@ -30616,7 +30739,7 @@ msgstr "Liste" msgid "logged in" msgstr "Angemeldet" -#: frappe/website/doctype/web_form/web_form.js:362 +#: frappe/website/doctype/web_form/web_form.js:363 msgid "login_required" msgstr "login_required" @@ -30954,7 +31077,7 @@ msgstr "über Datenimport" msgid "via Google Meet" msgstr "über Google Meet" -#: frappe/email/doctype/notification/notification.py:403 +#: frappe/email/doctype/notification/notification.py:405 msgid "via Notification" msgstr "über Benachrichtigung" @@ -31064,7 +31187,7 @@ msgstr "{0} Diagramm" msgid "{0} Dashboard" msgstr "{0}-Dashboard" -#: frappe/public/js/frappe/form/grid_row.js:486 +#: frappe/public/js/frappe/form/grid_row.js:487 #: frappe/public/js/frappe/list/list_settings.js:225 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:178 msgid "{0} Fields" @@ -31115,7 +31238,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:956 +#: frappe/public/js/frappe/views/reports/query_report.js:964 msgid "{0} Reports" msgstr "{0} Berichte" @@ -31188,7 +31311,7 @@ msgctxt "Form timeline" msgid "{0} attached {1}" msgstr "{0} hat {1} angehängt" -#: frappe/core/doctype/system_settings/system_settings.py:152 +#: frappe/core/doctype/system_settings/system_settings.py:153 msgid "{0} can not be more than {1}" msgstr "{0} darf nicht größer als {1} sein" @@ -31265,7 +31388,7 @@ 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 +#: frappe/database/query.py:710 msgid "{0} fields cannot contain backticks (`): {1}" msgstr "" @@ -31310,7 +31433,7 @@ msgstr "{0} in Zeile {1} kann nicht sowohl die URL als auch Unterpunkte haben" msgid "{0} is a mandatory field" msgstr "{0} ist ein Pflichtfeld" -#: frappe/core/doctype/file/file.py:566 +#: frappe/core/doctype/file/file.py:569 msgid "{0} is a not a valid zip file" msgstr "{0} ist keine gültige Zip-Datei" @@ -31359,7 +31482,7 @@ msgstr "{0} ist wie {1}" msgid "{0} is mandatory" msgstr "{0} ist erforderlich" -#: frappe/database/query.py:485 +#: frappe/database/query.py:487 msgid "{0} is not a child table of {1}" msgstr "" @@ -31379,7 +31502,7 @@ msgstr "{0} ist kein gültiger Kalender. Weiterleitung zum Standard-Kalender." msgid "{0} is not a valid Cron expression." msgstr "{0} ist kein gültiger Cron-Ausdruck." -#: frappe/public/js/frappe/form/controls/dynamic_link.js:27 +#: frappe/public/js/frappe/form/controls/dynamic_link.js:23 msgid "{0} is not a valid DocType for Dynamic Link" msgstr "{0} ist kein gültiger DocType für Dynamic Link" @@ -31416,7 +31539,7 @@ msgstr "{0} ist kein gültiges übergeordnetes Feld für {1}" 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" -#: frappe/core/doctype/file/file.py:546 +#: frappe/core/doctype/file/file.py:549 msgid "{0} is not a zip file" msgstr "{0} ist keine Zip-Datei" @@ -31464,7 +31587,7 @@ msgstr "{0} ist eingetragen" msgid "{0} is within {1}" msgstr "{0} ist innerhalb von {1}" -#: frappe/public/js/frappe/list/list_view.js:1839 +#: frappe/public/js/frappe/list/list_view.js:1841 msgid "{0} items selected" msgstr "{0} Elemente ausgewählt" @@ -31550,11 +31673,11 @@ msgid "{0} not found" msgstr "{0} nicht gefunden" #: frappe/core/doctype/report/report.py:427 -#: frappe/public/js/frappe/list/list_view.js:1211 +#: frappe/public/js/frappe/list/list_view.js:1213 msgid "{0} of {1}" msgstr "{0} von {1}" -#: frappe/public/js/frappe/list/list_view.js:1213 +#: frappe/public/js/frappe/list/list_view.js:1215 msgid "{0} of {1} ({2} rows with children)" msgstr "{0} von {1} ({2} Zeilen mit untergeordneten Elementen)" @@ -31604,7 +31727,7 @@ msgstr "{0} hat seine Zuordnung entfernt." msgid "{0} removed {1} rows from {2}" msgstr "" -#: frappe/public/js/frappe/roles_editor.js:62 +#: frappe/public/js/frappe/roles_editor.js:64 msgid "{0} role does not have permission on any doctype" msgstr "{0} Die Rolle hat keine Berechtigung für einen Doctype" @@ -31678,7 +31801,7 @@ msgstr "{0} bis {1}" msgid "{0} un-shared this document with {1}" msgstr "{0} teilt dieses Dokument nicht mehr mit {1}" -#: frappe/custom/doctype/customize_form/customize_form.py:254 +#: frappe/custom/doctype/customize_form/customize_form.py:256 msgid "{0} updated" msgstr "{0} aktualisiert" @@ -31738,7 +31861,7 @@ msgstr "{0} {1} ist mit den folgenden eingereichten Dokumenten verknüpft: {2}" msgid "{0} {1} not found" msgstr "{0} {1} nicht gefunden" -#: frappe/model/delete_doc.py:248 +#: frappe/model/delete_doc.py:288 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." @@ -31851,7 +31974,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:1283 +#: frappe/public/js/frappe/views/reports/query_report.js:1291 msgid "{0}: {1} vs {2}" msgstr "{0}: {1} vs {2}" @@ -31887,11 +32010,11 @@ msgstr "{{{0}}} ist kein gültiges Format für Feldnamen. Es sollte sein {{field msgid "{} Complete" msgstr "{} Komplett" -#: frappe/utils/data.py:2541 +#: frappe/utils/data.py:2567 msgid "{} Invalid python code on line {}" msgstr "{} Ungültiger Python-Code in Zeile {}" -#: frappe/utils/data.py:2550 +#: frappe/utils/data.py:2576 msgid "{} Possibly invalid python code.
{}" msgstr "{} Possibly invalid python code.
{}" @@ -31917,7 +32040,7 @@ msgstr "{} wurde deaktiviert. Es kann nur aktiviert werden, wenn {} aktiviert is msgid "{} is not a valid date string." msgstr "{} ist keine gültige Datumszeichenfolge." -#: frappe/commands/utils.py:562 +#: frappe/commands/utils.py:561 msgid "{} not found in PATH! This is required to access the console." msgstr "{} in PATH nicht gefunden! Dies ist erforderlich, um auf die Konsole zuzugreifen." diff --git a/frappe/locale/eo.po b/frappe/locale/eo.po index 546009dc1e..f8c71827b6 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-09-21 09:33+0000\n" -"PO-Revision-Date: 2025-09-21 19:58\n" +"POT-Creation-Date: 2025-10-05 09:33+0000\n" +"PO-Revision-Date: 2025-10-06 22:59\n" "Last-Translator: developers@frappe.io\n" "Language-Team: Esperanto\n" "MIME-Version: 1.0\n" @@ -78,7 +78,7 @@ msgstr "crwdns90524:0{0}crwdnd90524:0{1}crwdne90524:0" msgid "'In List View' is not allowed for field {0} of type {1}" msgstr "crwdns90526:0{0}crwdnd90526:0{1}crwdne90526:0" -#: frappe/custom/doctype/customize_form/customize_form.py:363 +#: frappe/custom/doctype/customize_form/customize_form.py:367 msgid "'In List View' not allowed for type {0} in row {1}" msgstr "crwdns90528:0{0}crwdnd90528:0{1}crwdne90528:0" @@ -122,7 +122,7 @@ msgstr "crwdns127912:0crwdne127912:0" msgid "0 is highest" msgstr "crwdns127914:0crwdne127914:0" -#: frappe/public/js/frappe/form/grid_row.js:892 +#: frappe/public/js/frappe/form/grid_row.js:893 msgid "1 = True & 0 = False" msgstr "crwdns90542:0crwdne90542:0" @@ -140,11 +140,11 @@ msgstr "crwdns90546:0crwdne90546:0" msgid "1 Google Calendar Event synced." msgstr "crwdns90548:0crwdne90548:0" -#: frappe/public/js/frappe/views/reports/query_report.js:955 +#: frappe/public/js/frappe/views/reports/query_report.js:963 msgid "1 Report" msgstr "crwdns110780:0crwdne110780:0" -#: frappe/tests/test_utils.py:739 +#: frappe/tests/test_utils.py:845 msgid "1 day ago" msgstr "crwdns90552:0crwdne90552:0" @@ -153,17 +153,17 @@ msgid "1 hour" msgstr "crwdns90554:0crwdne90554:0" #: frappe/public/js/frappe/utils/pretty_date.js:52 -#: frappe/tests/test_utils.py:737 +#: frappe/tests/test_utils.py:843 msgid "1 hour ago" msgstr "crwdns90556:0crwdne90556:0" #: frappe/public/js/frappe/utils/pretty_date.js:48 -#: frappe/tests/test_utils.py:735 +#: frappe/tests/test_utils.py:841 msgid "1 minute ago" msgstr "crwdns90558:0crwdne90558:0" #: frappe/public/js/frappe/utils/pretty_date.js:66 -#: frappe/tests/test_utils.py:743 +#: frappe/tests/test_utils.py:849 msgid "1 month ago" msgstr "crwdns90560:0crwdne90560:0" @@ -185,37 +185,37 @@ msgctxt "User added row to child table" msgid "1 row to {0}" msgstr "crwdns158970:0{0}crwdne158970:0" -#: frappe/tests/test_utils.py:734 +#: frappe/tests/test_utils.py:840 msgid "1 second ago" msgstr "crwdns90564:0crwdne90564:0" #: frappe/public/js/frappe/utils/pretty_date.js:62 -#: frappe/tests/test_utils.py:741 +#: frappe/tests/test_utils.py:847 msgid "1 week ago" msgstr "crwdns90566:0crwdne90566:0" #: frappe/public/js/frappe/utils/pretty_date.js:70 -#: frappe/tests/test_utils.py:745 +#: frappe/tests/test_utils.py:851 msgid "1 year ago" msgstr "crwdns90568:0crwdne90568:0" -#: frappe/tests/test_utils.py:738 +#: frappe/tests/test_utils.py:844 msgid "2 hours ago" msgstr "crwdns90570:0crwdne90570:0" -#: frappe/tests/test_utils.py:744 +#: frappe/tests/test_utils.py:850 msgid "2 months ago" msgstr "crwdns90572:0crwdne90572:0" -#: frappe/tests/test_utils.py:742 +#: frappe/tests/test_utils.py:848 msgid "2 weeks ago" msgstr "crwdns90574:0crwdne90574:0" -#: frappe/tests/test_utils.py:746 +#: frappe/tests/test_utils.py:852 msgid "2 years ago" msgstr "crwdns90576:0crwdne90576:0" -#: frappe/tests/test_utils.py:736 +#: frappe/tests/test_utils.py:842 msgid "3 minutes ago" msgstr "crwdns90578:0crwdne90578:0" @@ -231,7 +231,7 @@ msgstr "crwdns90582:0crwdne90582:0" msgid "5 Records" msgstr "crwdns90584:0crwdne90584:0" -#: frappe/tests/test_utils.py:740 +#: frappe/tests/test_utils.py:846 msgid "5 days ago" msgstr "crwdns90586:0crwdne90586:0" @@ -267,6 +267,16 @@ msgstr "crwdns90594:0{0}crwdne90594:0" 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 "crwdns127922:0crwdne127922:0" +#. Introduction text of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "

Request a file containing your personally identifiable information (PII) that is saved on our system. The file will be in JSON format and is sent to you by email. If you would like to have your PII deleted from our system, please make a request to delete data.

" +msgstr "crwdns160156:0crwdne160156:0" + +#. Introduction text of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "

Send a request to delete your account and personally identifiable information (PII) that is stored on our system. You will receive an email to verify your request. Once the request is verified we will take care of deleting your PII. If you just want to check what PII we have stored, you can request your data.

" +msgstr "crwdns160158:0crwdne160158:0" + #. Content of the 'Help HTML' (HTML) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -570,6 +580,11 @@ msgstr "crwdns90640:0crwdne90640:0" 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" +#. Success message of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "A download link with your data will be sent to the email address associated with your account." +msgstr "crwdns160160:0crwdne160160:0" + #: frappe/custom/doctype/custom_field/custom_field.py:175 msgid "A field with the name {0} already exists in {1}" msgstr "crwdns90644:0{0}crwdnd90644:0{1}crwdne90644:0" @@ -696,7 +711,7 @@ msgstr "crwdns158368:0crwdne158368:0" #. 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.js:452 frappe/core/doctype/user/user.json +#: frappe/core/doctype/user/user.js:459 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 @@ -715,7 +730,7 @@ msgstr "crwdns127994:0crwdne127994:0" msgid "API Key cannot be regenerated" msgstr "crwdns127996:0crwdne127996:0" -#: frappe/core/doctype/user/user.js:449 +#: frappe/core/doctype/user/user.js:456 msgid "API Keys" msgstr "crwdns157436:0crwdne157436:0" @@ -739,7 +754,7 @@ msgstr "crwdns155318:0crwdne155318:0" #. 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.js:459 frappe/core/doctype/user/user.json +#: frappe/core/doctype/user/user.js:466 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" @@ -825,7 +840,7 @@ msgstr "crwdns128008:0crwdne128008:0" msgid "Access Token URL" msgstr "crwdns128010:0crwdne128010:0" -#: frappe/auth.py:491 +#: frappe/auth.py:494 msgid "Access not allowed from this IP Address" msgstr "crwdns90738:0crwdne90738:0" @@ -941,7 +956,7 @@ msgstr "crwdns90774:0{0}crwdnd90774:0{1}crwdnd90774:0{2}crwdnd90774:0{3}crwdne90 #: 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:842 +#: frappe/public/js/frappe/views/reports/query_report.js:850 msgid "Actions" msgstr "crwdns90776:0crwdne90776:0" @@ -998,7 +1013,7 @@ msgstr "crwdns90802:0crwdne90802:0" #: 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:501 +#: frappe/public/js/frappe/form/grid_row.js:502 #: 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 @@ -1009,7 +1024,7 @@ msgstr "crwdns90802:0crwdne90802:0" msgid "Add" msgstr "crwdns90808:0crwdne90808:0" -#: frappe/public/js/frappe/form/grid_row.js:454 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Add / Remove Columns" msgstr "crwdns110786:0crwdne110786:0" @@ -1054,8 +1069,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:1832 -#: frappe/public/js/frappe/views/reports/query_report.js:1835 +#: frappe/public/js/frappe/views/reports/query_report.js:1840 +#: frappe/public/js/frappe/views/reports/query_report.js:1843 #: frappe/public/js/frappe/views/reports/report_view.js:360 #: frappe/public/js/frappe/views/reports/report_view.js:385 #: frappe/public/js/print_format_builder/Field.vue:112 @@ -1149,7 +1164,7 @@ msgstr "crwdns90862:0crwdne90862:0" msgid "Add Tags" msgstr "crwdns90864:0crwdne90864:0" -#: frappe/public/js/frappe/list/list_view.js:2149 +#: frappe/public/js/frappe/list/list_view.js:2151 msgctxt "Button in list view actions menu" msgid "Add Tags" msgstr "crwdns90866:0crwdne90866:0" @@ -1530,11 +1545,11 @@ msgstr "crwdns128094:0crwdne128094:0" msgid "Alerts and Notifications" msgstr "crwdns90990:0crwdne90990:0" -#: frappe/database/query.py:1608 +#: frappe/database/query.py:1610 msgid "Alias cannot be a SQL keyword: {0}" msgstr "crwdns155510:0{0}crwdne155510:0" -#: frappe/database/query.py:1533 +#: frappe/database/query.py:1535 msgid "Alias must be a string" msgstr "crwdns155512:0crwdne155512:0" @@ -1981,6 +1996,12 @@ msgstr "crwdns91158:0{0}crwdne91158:0" msgid "Alternative Email ID" msgstr "crwdns128192:0crwdne128192:0" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Always" +msgstr "crwdns159970:0crwdne159970:0" + #. Label of the always_bcc (Data) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Always BCC Address" @@ -2057,6 +2078,11 @@ msgstr "crwdns151842:0crwdne151842:0" msgid "Amendment naming rules updated." msgstr "crwdns91190:0crwdne91190:0" +#. Success message of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "An email to verify your request has been sent to your email address. Please verify your request to complete the process." +msgstr "crwdns160162:0crwdne160162:0" + #: frappe/public/js/frappe/ui/toolbar/toolbar.js:354 msgid "An error occurred while setting Session Defaults" msgstr "crwdns91192:0crwdne91192:0" @@ -2239,7 +2265,7 @@ msgstr "crwdns128252:0crwdne128252:0" msgid "Apply" msgstr "crwdns142988:0crwdne142988:0" -#: frappe/public/js/frappe/list/list_view.js:2134 +#: frappe/public/js/frappe/list/list_view.js:2136 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" msgstr "crwdns91270:0crwdne91270:0" @@ -2324,7 +2350,7 @@ msgstr "crwdns91306:0crwdne91306:0" msgid "Are you sure you want to cancel the invitation?" msgstr "crwdns157294:0crwdne157294:0" -#: frappe/public/js/frappe/list/list_view.js:2113 +#: frappe/public/js/frappe/list/list_view.js:2115 msgid "Are you sure you want to clear the assignments?" msgstr "crwdns104470:0crwdne104470:0" @@ -2360,7 +2386,7 @@ msgstr "crwdns158706:0crwdne158706:0" msgid "Are you sure you want to discard the changes?" msgstr "crwdns91314:0crwdne91314:0" -#: frappe/public/js/frappe/views/reports/query_report.js:969 +#: frappe/public/js/frappe/views/reports/query_report.js:977 msgid "Are you sure you want to generate a new report?" msgstr "crwdns110808:0crwdne110808:0" @@ -2368,7 +2394,7 @@ msgstr "crwdns110808:0crwdne110808:0" msgid "Are you sure you want to merge {0} with {1}?" msgstr "crwdns91316:0{0}crwdnd91316:0{1}crwdne91316:0" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:108 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:118 msgid "Are you sure you want to proceed?" msgstr "crwdns91318:0crwdne91318:0" @@ -2423,6 +2449,12 @@ msgstr "crwdns91338:0crwdne91338:0" msgid "As per your request, your account and data on {0} associated with email {1} has been permanently deleted" msgstr "crwdns91340:0{0}crwdnd91340:0{1}crwdne91340:0" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Ask" +msgstr "crwdns159972:0crwdne159972:0" + #. Label of the assign_condition (Code) field in DocType 'Assignment Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Assign Condition" @@ -2432,7 +2464,7 @@ msgstr "crwdns128278:0crwdne128278:0" msgid "Assign To" msgstr "crwdns91344:0crwdne91344:0" -#: frappe/public/js/frappe/list/list_view.js:2095 +#: frappe/public/js/frappe/list/list_view.js:2097 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "crwdns91346:0crwdne91346:0" @@ -2575,7 +2607,7 @@ msgstr "crwdns91410:0crwdne91410:0" msgid "Asynchronous" msgstr "crwdns157298:0crwdne157298:0" -#: frappe/public/js/frappe/form/grid_row.js:696 +#: frappe/public/js/frappe/form/grid_row.js:697 msgid "At least one column is required to show in the grid." msgstr "crwdns91414:0crwdne91414:0" @@ -3555,7 +3587,7 @@ msgstr "crwdns91880:0crwdne91880:0" msgid "Bulk Edit" msgstr "crwdns91882:0crwdne91882:0" -#: frappe/public/js/frappe/form/grid.js:1189 +#: frappe/public/js/frappe/form/grid.js:1190 msgid "Bulk Edit {0}" msgstr "crwdns91884:0{0}crwdne91884:0" @@ -3847,7 +3879,7 @@ msgstr "crwdns92008:0{0}crwdnd92008:0{1}crwdnd92008:0{0}crwdne92008:0" #. 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/doctype/doctype_list.js:131 #: frappe/core/doctype/user_document_type/user_document_type.json #: frappe/core/doctype/user_invitation/user_invitation.js:17 #: frappe/email/doctype/notification/notification.json @@ -3855,7 +3887,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:2204 +#: frappe/public/js/frappe/list/list_view.js:2206 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "crwdns92012:0crwdne92012:0" @@ -3873,7 +3905,7 @@ msgstr "crwdns92026:0crwdne92026:0" msgid "Cancel All Documents" msgstr "crwdns92028:0crwdne92028:0" -#: frappe/public/js/frappe/list/list_view.js:2209 +#: frappe/public/js/frappe/list/list_view.js:2211 msgctxt "Title of confirmation dialog" msgid "Cancel {0} documents?" msgstr "crwdns92032:0{0}crwdne92032:0" @@ -3926,7 +3958,7 @@ msgstr "crwdns92058:0crwdne92058:0" msgid "Cannot Update After Submit" msgstr "crwdns92060:0crwdne92060:0" -#: frappe/core/doctype/file/file.py:643 +#: frappe/core/doctype/file/file.py:646 msgid "Cannot access file path {0}" msgstr "crwdns92062:0{0}crwdne92062:0" @@ -3974,7 +4006,7 @@ msgstr "crwdns92082:0crwdne92082:0" msgid "Cannot delete Home and Attachments folders" msgstr "crwdns92084:0crwdne92084:0" -#: frappe/model/delete_doc.py:379 +#: frappe/model/delete_doc.py:419 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" @@ -4054,7 +4086,7 @@ msgstr "crwdns92120:0{0}crwdne92120:0" msgid "Cannot find file {} on disk" msgstr "crwdns92122:0crwdne92122:0" -#: frappe/core/doctype/file/file.py:583 +#: frappe/core/doctype/file/file.py:586 msgid "Cannot get file contents of a Folder" msgstr "crwdns92124:0crwdne92124:0" @@ -4062,7 +4094,7 @@ msgstr "crwdns92124:0crwdne92124:0" msgid "Cannot have multiple printers mapped to a single print format." msgstr "crwdns92126:0crwdne92126:0" -#: frappe/public/js/frappe/form/grid.js:1133 +#: frappe/public/js/frappe/form/grid.js:1134 msgid "Cannot import table with more than 5000 rows." msgstr "crwdns154588:0crwdne154588:0" @@ -4078,7 +4110,7 @@ msgstr "crwdns92130:0crwdne92130:0" msgid "Cannot match column {0} with any field" msgstr "crwdns92132:0{0}crwdne92132:0" -#: frappe/public/js/frappe/form/grid_row.js:175 +#: frappe/public/js/frappe/form/grid_row.js:176 msgid "Cannot move row" msgstr "crwdns92134:0crwdne92134:0" @@ -4107,11 +4139,11 @@ msgstr "crwdns92142:0{0}crwdne92142:0" msgid "Cannot update {0}" msgstr "crwdns92146:0{0}crwdne92146:0" -#: frappe/model/db_query.py:1130 +#: frappe/model/db_query.py:1136 msgid "Cannot use sub-query here." msgstr "crwdns157190:0crwdne157190:0" -#: frappe/model/db_query.py:1162 +#: frappe/model/db_query.py:1168 msgid "Cannot use {0} in order/group by" msgstr "crwdns92150:0{0}crwdne92150:0" @@ -4383,11 +4415,11 @@ msgstr "crwdns92274:0{0}crwdnd92274:0{1}crwdne92274:0" #. Description of the 'Is Child Table' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:52 +#: frappe/core/doctype/doctype/doctype_list.js:53 msgid "Child Tables are shown as a Grid in other DocTypes" msgstr "crwdns92276:0crwdne92276:0" -#: frappe/database/query.py:660 +#: frappe/database/query.py:662 msgid "Child query fields for '{0}' must be a list or tuple." msgstr "crwdns155514:0{0}crwdne155514:0" @@ -4443,7 +4475,7 @@ msgstr "crwdns92298:0crwdne92298:0" msgid "Clear All" msgstr "crwdns155956:0crwdne155956:0" -#: frappe/public/js/frappe/list/list_view.js:2110 +#: frappe/public/js/frappe/list/list_view.js:2112 msgctxt "Button in list view actions menu" msgid "Clear Assignment" msgstr "crwdns104478:0crwdne104478:0" @@ -4537,7 +4569,7 @@ msgstr "crwdns110842:0crwdne110842:0" msgid "Click to Set Filters" msgstr "crwdns110844:0crwdne110844:0" -#: frappe/public/js/frappe/list/list_view.js:739 +#: frappe/public/js/frappe/list/list_view.js:741 msgid "Click to sort by {0}" msgstr "crwdns110846:0{0}crwdne110846:0" @@ -4715,7 +4747,7 @@ msgctxt "Shrink code field." msgid "Collapse" msgstr "crwdns92402:0crwdne92402:0" -#: frappe/public/js/frappe/views/reports/query_report.js:2113 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 #: frappe/public/js/frappe/views/treeview.js:123 msgid "Collapse All" msgstr "crwdns92404:0crwdne92404:0" @@ -4770,7 +4802,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:1233 +#: frappe/public/js/frappe/views/reports/query_report.js:1241 #: frappe/public/js/frappe/widgets/widget_dialog.js:546 #: frappe/public/js/frappe/widgets/widget_dialog.js:694 #: frappe/website/doctype/color/color.json @@ -4826,11 +4858,11 @@ msgstr "crwdns92464:0crwdne92464:0" msgid "Column Name cannot be empty" msgstr "crwdns92468:0crwdne92468:0" -#: frappe/public/js/frappe/form/grid_row.js:454 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Column Width" msgstr "crwdns110850:0crwdne110850:0" -#: frappe/public/js/frappe/form/grid_row.js:661 +#: frappe/public/js/frappe/form/grid_row.js:662 msgid "Column width cannot be zero." msgstr "crwdns92470:0crwdne92470:0" @@ -4857,7 +4889,7 @@ msgstr "crwdns128678:0crwdne128678:0" msgid "Columns / Fields" msgstr "crwdns128680:0crwdne128680:0" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:397 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:411 msgid "Columns based on" msgstr "crwdns92484:0crwdne92484:0" @@ -5121,7 +5153,7 @@ msgstr "crwdns128720:0crwdne128720:0" msgid "Configure Chart" msgstr "crwdns92606:0crwdne92606:0" -#: frappe/public/js/frappe/form/grid_row.js:406 +#: frappe/public/js/frappe/form/grid_row.js:407 msgid "Configure Columns" msgstr "crwdns92608:0crwdne92608:0" @@ -5146,7 +5178,7 @@ msgstr "crwdns128722:0crwdne128722:0" msgid "Configure various aspects of how document naming works like naming series, current counter." msgstr "crwdns111490:0crwdne111490:0" -#: frappe/core/doctype/user/user.js:412 frappe/public/js/frappe/dom.js:345 +#: frappe/core/doctype/user/user.js:400 frappe/public/js/frappe/dom.js:345 #: frappe/www/update-password.html:66 msgid "Confirm" msgstr "crwdns92612:0crwdne92612:0" @@ -5165,7 +5197,7 @@ msgstr "crwdns151116:0crwdne151116:0" msgid "Confirm Deletion of Account" msgstr "crwdns92616:0crwdne92616:0" -#: frappe/core/doctype/user/user.js:196 +#: frappe/core/doctype/user/user.js:184 msgid "Confirm New Password" msgstr "crwdns92618:0crwdne92618:0" @@ -5418,7 +5450,7 @@ msgstr "crwdns92732:0crwdne92732:0" msgid "Copy to Clipboard" msgstr "crwdns148722:0crwdne148722:0" -#: frappe/core/doctype/user/user.js:480 +#: frappe/core/doctype/user/user.js:487 msgid "Copy token to clipboard" msgstr "crwdns157438:0crwdne157438:0" @@ -5427,7 +5459,7 @@ msgstr "crwdns157438:0crwdne157438:0" msgid "Copyright" msgstr "crwdns128758:0crwdne128758:0" -#: frappe/custom/doctype/customize_form/customize_form.py:123 +#: frappe/custom/doctype/customize_form/customize_form.py:125 msgid "Core DocTypes cannot be customized." msgstr "crwdns92738:0crwdne92738:0" @@ -5451,7 +5483,7 @@ 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 +#: frappe/database/query.py:566 msgid "Could not parse field: {0}" msgstr "crwdns155516:0{0}crwdne155516:0" @@ -5543,13 +5575,13 @@ 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:1265 +#: frappe/public/js/frappe/views/reports/query_report.js:1273 #: frappe/public/js/frappe/views/workspace/workspace.js:469 #: frappe/workflow/page/workflow_builder/workflow_builder.js:46 msgid "Create" msgstr "crwdns92782:0crwdne92782:0" -#: frappe/core/doctype/doctype/doctype_list.js:102 +#: frappe/core/doctype/doctype/doctype_list.js:103 msgid "Create & Continue" msgstr "crwdns92790:0crwdne92790:0" @@ -5563,7 +5595,7 @@ msgid "Create Card" msgstr "crwdns92794:0crwdne92794:0" #: frappe/public/js/frappe/views/reports/query_report.js:285 -#: frappe/public/js/frappe/views/reports/query_report.js:1192 +#: frappe/public/js/frappe/views/reports/query_report.js:1200 msgid "Create Chart" msgstr "crwdns92796:0crwdne92796:0" @@ -5597,12 +5629,12 @@ msgstr "crwdns128770:0crwdne128770:0" msgid "Create New" msgstr "crwdns92808:0crwdne92808:0" -#: frappe/public/js/frappe/list/list_view.js:512 +#: frappe/public/js/frappe/list/list_view.js:514 msgctxt "Create a new document from list view" msgid "Create New" msgstr "crwdns110866:0crwdne110866:0" -#: frappe/core/doctype/doctype/doctype_list.js:100 +#: frappe/core/doctype/doctype/doctype_list.js:101 msgid "Create New DocType" msgstr "crwdns92810:0crwdne92810:0" @@ -5610,7 +5642,7 @@ msgstr "crwdns92810:0crwdne92810:0" msgid "Create New Kanban Board" msgstr "crwdns92812:0crwdne92812:0" -#: frappe/core/doctype/user/user.js:276 +#: frappe/core/doctype/user/user.js:264 msgid "Create User Email" msgstr "crwdns92814:0crwdne92814:0" @@ -5633,8 +5665,8 @@ msgstr "crwdns92822:0crwdne92822:0" #: frappe/public/js/frappe/form/controls/link.js:315 #: frappe/public/js/frappe/form/controls/link.js:317 #: frappe/public/js/frappe/form/link_selector.js:139 -#: frappe/public/js/frappe/list/list_view.js:504 -#: frappe/public/js/frappe/web_form/web_form_list.js:225 +#: frappe/public/js/frappe/list/list_view.js:506 +#: frappe/public/js/frappe/web_form/web_form_list.js:226 msgid "Create a new {0}" msgstr "crwdns92824:0{0}crwdne92824:0" @@ -5650,7 +5682,7 @@ msgstr "crwdns92828:0crwdne92828:0" msgid "Create or Edit Workflow" msgstr "crwdns92830:0crwdne92830:0" -#: frappe/public/js/frappe/list/list_view.js:507 +#: frappe/public/js/frappe/list/list_view.js:509 msgid "Create your first {0}" msgstr "crwdns92832:0{0}crwdne92832:0" @@ -5997,7 +6029,7 @@ 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 -#: frappe/core/doctype/doctype/doctype_list.js:82 +#: frappe/core/doctype/doctype/doctype_list.js:83 #: frappe/website/doctype/website_theme/website_theme.json msgid "Custom?" msgstr "crwdns92994:0crwdne92994:0" @@ -6032,7 +6064,7 @@ msgstr "crwdns93014:0{0}crwdnd93014:0{1}crwdne93014:0" msgid "Customize" msgstr "crwdns93016:0crwdne93016:0" -#: frappe/public/js/frappe/list/list_view.js:1947 +#: frappe/public/js/frappe/list/list_view.js:1949 msgctxt "Button in list view menu" msgid "Customize" msgstr "crwdns93018:0crwdne93018:0" @@ -6051,7 +6083,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:343 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 msgid "Customize Form" msgstr "crwdns93024:0crwdne93024:0" @@ -6282,7 +6314,7 @@ msgstr "crwdns93156:0crwdne93156:0" msgid "Data Import Template" msgstr "crwdns93158:0crwdne93158:0" -#: frappe/custom/doctype/customize_form/customize_form.py:615 +#: frappe/custom/doctype/customize_form/customize_form.py:619 msgid "Data Too Long" msgstr "crwdns93160:0crwdne93160:0" @@ -6313,7 +6345,7 @@ msgstr "crwdns93168:0crwdne93168:0" msgid "Database Storage Usage By Tables" msgstr "crwdns93170:0crwdne93170:0" -#: frappe/custom/doctype/customize_form/customize_form.py:249 +#: frappe/custom/doctype/customize_form/customize_form.py:251 msgid "Database Table Row Size Limit" msgstr "crwdns93172:0crwdne93172:0" @@ -6683,13 +6715,13 @@ msgstr "crwdns128908:0crwdne128908:0" #: frappe/public/js/frappe/form/toolbar.js:464 #: frappe/public/js/frappe/views/reports/report_view.js:1749 #: frappe/public/js/frappe/views/treeview.js:329 -#: frappe/public/js/frappe/web_form/web_form_list.js:282 +#: frappe/public/js/frappe/web_form/web_form_list.js:283 #: frappe/templates/discussions/reply_card.html:35 #: frappe/templates/discussions/reply_section.html:29 msgid "Delete" msgstr "crwdns93336:0crwdne93336:0" -#: frappe/public/js/frappe/list/list_view.js:2172 +#: frappe/public/js/frappe/list/list_view.js:2174 msgctxt "Button in list view actions menu" msgid "Delete" msgstr "crwdns93338:0crwdne93338:0" @@ -6722,7 +6754,7 @@ msgstr "crwdns143022:0crwdne143022:0" msgid "Delete Data" msgstr "crwdns93348:0crwdne93348:0" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:106 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:116 msgid "Delete Kanban Board" msgstr "crwdns93350:0crwdne93350:0" @@ -6736,7 +6768,7 @@ msgctxt "Title of confirmation dialog" msgid "Delete Tab" msgstr "crwdns143026:0crwdne143026:0" -#: frappe/public/js/frappe/views/reports/query_report.js:936 +#: frappe/public/js/frappe/views/reports/query_report.js:944 msgid "Delete and Generate New" msgstr "crwdns110882:0crwdne110882:0" @@ -6778,12 +6810,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:2177 +#: frappe/public/js/frappe/list/list_view.js:2179 msgctxt "Title of confirmation dialog" msgid "Delete {0} item permanently?" msgstr "crwdns93358:0{0}crwdne93358:0" -#: frappe/public/js/frappe/list/list_view.js:2183 +#: frappe/public/js/frappe/list/list_view.js:2185 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "crwdns93360:0{0}crwdne93360:0" @@ -7280,10 +7312,14 @@ msgstr "crwdns158720:0crwdne158720:0" msgid "Do not create new user if user with email does not exist in the system" msgstr "crwdns128982:0crwdne128982:0" -#: frappe/public/js/frappe/form/grid.js:1194 +#: frappe/public/js/frappe/form/grid.js:1195 msgid "Do not edit headers which are preset in the template" msgstr "crwdns93560:0crwdne93560:0" +#: frappe/public/js/frappe/router.js:624 +msgid "Do not warn me again about {0}" +msgstr "crwdns159974:0{0}crwdne159974:0" + #: frappe/core/doctype/system_settings/system_settings.js:71 msgid "Do you still want to proceed?" msgstr "crwdns93564:0crwdne93564:0" @@ -7707,7 +7743,7 @@ msgstr "crwdns129014:0crwdne129014:0" #: 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/public/js/frappe/roles_editor.js:68 #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json #: frappe/workflow/doctype/workflow/workflow.json msgid "Document Type" @@ -7758,15 +7794,15 @@ msgstr "crwdns93812:0crwdne93812:0" msgid "Document follow is not enabled for this user." msgstr "crwdns148644:0crwdne148644:0" -#: frappe/public/js/frappe/list/list_view.js:1300 +#: frappe/public/js/frappe/list/list_view.js:1302 msgid "Document has been cancelled" msgstr "crwdns93814:0crwdne93814:0" -#: frappe/public/js/frappe/list/list_view.js:1299 +#: frappe/public/js/frappe/list/list_view.js:1301 msgid "Document has been submitted" msgstr "crwdns93816:0crwdne93816:0" -#: frappe/public/js/frappe/list/list_view.js:1298 +#: frappe/public/js/frappe/list/list_view.js:1300 msgid "Document is in draft state" msgstr "crwdns93818:0crwdne93818:0" @@ -7908,7 +7944,7 @@ msgstr "crwdns129040:0crwdne129040:0" msgid "Double click to edit label" msgstr "crwdns143042:0crwdne143042:0" -#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:467 +#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:474 #: frappe/email/doctype/auto_email_report/auto_email_report.js:8 #: frappe/public/js/frappe/form/grid.js:66 msgid "Download" @@ -7941,7 +7977,7 @@ msgstr "crwdns93890:0crwdne93890:0" msgid "Download PDF" msgstr "crwdns111456:0crwdne111456:0" -#: frappe/public/js/frappe/views/reports/query_report.js:832 +#: frappe/public/js/frappe/views/reports/query_report.js:840 msgid "Download Report" msgstr "crwdns93892:0crwdne93892:0" @@ -8141,8 +8177,8 @@ msgstr "crwdns110894:0crwdne110894:0" #: 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:880 -#: frappe/public/js/frappe/views/reports/query_report.js:1783 +#: frappe/public/js/frappe/views/reports/query_report.js:888 +#: frappe/public/js/frappe/views/reports/query_report.js:1791 #: 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 @@ -8154,7 +8190,7 @@ msgstr "crwdns110894:0crwdne110894:0" msgid "Edit" msgstr "crwdns93974:0crwdne93974:0" -#: frappe/public/js/frappe/list/list_view.js:2258 +#: frappe/public/js/frappe/list/list_view.js:2260 msgctxt "Button in list view actions menu" msgid "Edit" msgstr "crwdns93976:0crwdne93976:0" @@ -8164,7 +8200,7 @@ msgctxt "Button in web form" msgid "Edit" msgstr "crwdns148726:0crwdne148726:0" -#: frappe/public/js/frappe/form/grid_row.js:349 +#: frappe/public/js/frappe/form/grid_row.js:350 msgctxt "Edit grid row" msgid "Edit" msgstr "crwdns110896:0crwdne110896:0" @@ -8193,7 +8229,7 @@ msgstr "crwdns93982:0crwdne93982:0" msgid "Edit DocType" msgstr "crwdns93984:0crwdne93984:0" -#: frappe/public/js/frappe/list/list_view.js:1974 +#: frappe/public/js/frappe/list/list_view.js:1976 msgctxt "Button in list view menu" msgid "Edit DocType" msgstr "crwdns93986:0crwdne93986:0" @@ -8313,7 +8349,7 @@ msgstr "crwdns94018:0{0}crwdne94018:0" #. 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/core/doctype/doctype/doctype_list.js:58 #: frappe/custom/doctype/customize_form/customize_form.json msgid "Editable Grid" msgstr "crwdns94020:0crwdne94020:0" @@ -8358,6 +8394,8 @@ msgstr "crwdns129070:0crwdne129070:0" #. 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' +#. Label of a field in the request-data Web Form +#. Label of a field in the request-to-delete-data Web Form #: frappe/automation/workspace/tools/tools.json #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/custom_docperm/custom_docperm.json @@ -8376,6 +8414,8 @@ msgstr "crwdns129070:0crwdne129070:0" #: 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/website/web_form/request_data/request_data.json +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json #: frappe/www/login.html:8 frappe/www/login.py:104 msgid "Email" msgstr "crwdns94034:0crwdne94034:0" @@ -8607,7 +8647,7 @@ msgstr "crwdns94172:0crwdne94172:0" msgid "Email has been moved to trash" msgstr "crwdns94174:0crwdne94174:0" -#: frappe/core/doctype/user/user.js:278 +#: frappe/core/doctype/user/user.js:266 msgid "Email is mandatory to create User Email" msgstr "crwdns151610:0crwdne151610:0" @@ -8650,7 +8690,7 @@ msgstr "crwdns129108:0crwdne129108:0" msgid "Embed code copied" msgstr "crwdns111510:0crwdne111510:0" -#: frappe/database/query.py:1537 +#: frappe/database/query.py:1539 msgid "Empty alias is not allowed" msgstr "crwdns155522:0crwdne155522:0" @@ -8658,7 +8698,7 @@ msgstr "crwdns155522:0crwdne155522:0" msgid "Empty column" msgstr "crwdns143066:0crwdne143066:0" -#: frappe/database/query.py:1455 +#: frappe/database/query.py:1457 msgid "Empty string arguments are not allowed" msgstr "crwdns155524:0crwdne155524:0" @@ -9114,9 +9154,9 @@ msgstr "crwdns94422:0crwdne94422:0" msgid "Error in Header/Footer Script" msgstr "crwdns110924:0crwdne110924:0" -#: frappe/email/doctype/notification/notification.py:640 -#: frappe/email/doctype/notification/notification.py:780 -#: frappe/email/doctype/notification/notification.py:786 +#: frappe/email/doctype/notification/notification.py:642 +#: frappe/email/doctype/notification/notification.py:782 +#: frappe/email/doctype/notification/notification.py:788 msgid "Error in Notification" msgstr "crwdns94424:0crwdne94424:0" @@ -9136,7 +9176,7 @@ msgstr "crwdns155528:0{0}crwdne155528:0" msgid "Error while connecting to email account {0}" msgstr "crwdns94428:0{0}crwdne94428:0" -#: frappe/email/doctype/notification/notification.py:777 +#: frappe/email/doctype/notification/notification.py:779 msgid "Error while evaluating Notification {0}. Please fix your template." msgstr "crwdns94430:0{0}crwdne94430:0" @@ -9297,7 +9337,7 @@ msgstr "crwdns155330:0crwdne155330:0" msgid "Executing..." msgstr "crwdns94496:0crwdne94496:0" -#: frappe/public/js/frappe/views/reports/query_report.js:2132 +#: frappe/public/js/frappe/views/reports/query_report.js:2140 msgid "Execution Time: {0} sec" msgstr "crwdns94498:0{0}crwdne94498:0" @@ -9323,12 +9363,12 @@ msgctxt "Enlarge code field." msgid "Expand" msgstr "crwdns94504:0crwdne94504:0" -#: frappe/public/js/frappe/views/reports/query_report.js:2113 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 #: frappe/public/js/frappe/views/treeview.js:133 msgid "Expand All" msgstr "crwdns94506:0crwdne94506:0" -#: frappe/database/query.py:352 +#: frappe/database/query.py:354 msgid "Expected 'and' or 'or' operator, found: {0}" msgstr "crwdns155530:0{0}crwdne155530:0" @@ -9386,13 +9426,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:1820 +#: frappe/public/js/frappe/views/reports/query_report.js:1828 #: frappe/public/js/frappe/views/reports/report_view.js:1629 #: frappe/public/js/frappe/widgets/chart_widget.js:315 msgid "Export" msgstr "crwdns94526:0crwdne94526:0" -#: frappe/public/js/frappe/list/list_view.js:2280 +#: frappe/public/js/frappe/list/list_view.js:2282 msgctxt "Button in list view actions menu" msgid "Export" msgstr "crwdns94528:0crwdne94528:0" @@ -9585,7 +9625,7 @@ msgstr "crwdns94600:0crwdne94600:0" msgid "Failed to connect to server" msgstr "crwdns94602:0crwdne94602:0" -#: frappe/auth.py:698 +#: frappe/auth.py:701 msgid "Failed to decode token, please provide a valid base64-encoded token." msgstr "crwdns94604:0crwdne94604:0" @@ -9749,7 +9789,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:236 -#: frappe/public/js/frappe/views/reports/query_report.js:1879 +#: frappe/public/js/frappe/views/reports/query_report.js:1887 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_form_list_column/web_form_list_column.json msgid "Field" @@ -9832,7 +9872,7 @@ msgstr "crwdns94706:0{0}crwdnd94706:0{1}crwdne94706:0" msgid "Field {0} not found." msgstr "crwdns94708:0{0}crwdne94708:0" -#: frappe/email/doctype/notification/notification.py:545 +#: frappe/email/doctype/notification/notification.py:547 msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link" msgstr "crwdns142910:0{0}crwdnd142910:0{1}crwdne142910:0" @@ -9850,7 +9890,7 @@ msgstr "crwdns142910:0{0}crwdnd142910:0{1}crwdne142910:0" #: 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:454 +#: frappe/public/js/frappe/form/grid_row.js:455 #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Fieldname" msgstr "crwdns94710:0crwdne94710:0" @@ -9931,7 +9971,7 @@ 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 +#: frappe/database/query.py:613 msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function" msgstr "crwdns155532:0crwdne155532:0" @@ -9959,7 +9999,7 @@ msgstr "crwdns129292:0crwdne129292:0" msgid "Fieldtype cannot be changed from {0} to {1}" msgstr "crwdns94776:0{0}crwdnd94776:0{1}crwdne94776:0" -#: frappe/custom/doctype/customize_form/customize_form.py:589 +#: frappe/custom/doctype/customize_form/customize_form.py:593 msgid "Fieldtype cannot be changed from {0} to {1} in row {2}" msgstr "crwdns94778:0{0}crwdnd94778:0{1}crwdnd94778:0{2}crwdne94778:0" @@ -10025,7 +10065,7 @@ msgstr "crwdns129304:0crwdne129304:0" msgid "File backup is ready" msgstr "crwdns94810:0crwdne94810:0" -#: frappe/core/doctype/file/file.py:646 +#: frappe/core/doctype/file/file.py:649 msgid "File name cannot have {0}" msgstr "crwdns94812:0{0}crwdne94812:0" @@ -10033,7 +10073,7 @@ msgstr "crwdns94812:0{0}crwdne94812:0" msgid "File not attached" msgstr "crwdns94814:0crwdne94814:0" -#: frappe/core/doctype/file/file.py:756 frappe/public/js/frappe/request.js:200 +#: frappe/core/doctype/file/file.py:759 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 "crwdns94816:0{0}crwdne94816:0" @@ -10046,7 +10086,7 @@ msgstr "crwdns94818:0crwdne94818:0" msgid "File type of {0} is not allowed" msgstr "crwdns94820:0{0}crwdne94820:0" -#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:448 +#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:451 msgid "File {0} does not exist" msgstr "crwdns94822:0{0}crwdne94822:0" @@ -10100,11 +10140,11 @@ msgstr "crwdns94836:0crwdne94836:0" msgid "Filter Values" msgstr "crwdns129314:0crwdne129314:0" -#: frappe/database/query.py:358 +#: frappe/database/query.py:360 msgid "Filter condition missing after operator: {0}" msgstr "crwdns155534:0{0}crwdne155534:0" -#: frappe/database/query.py:425 +#: frappe/database/query.py:427 msgid "Filter fields cannot contain backticks (`)." msgstr "crwdns155536:0crwdne155536:0" @@ -10181,7 +10221,7 @@ msgstr "crwdns129326:0crwdne129326:0" msgid "Filters applied for {0}" msgstr "crwdns94880:0{0}crwdne94880:0" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:188 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:202 msgid "Filters saved" msgstr "crwdns94882:0crwdne94882:0" @@ -10229,9 +10269,12 @@ msgstr "crwdns129334:0crwdne129334:0" #. Label of the first_name (Data) field in DocType 'Contact' #. Label of the first_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json #: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:44 -#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:15 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:15 msgid "First Name" msgstr "crwdns94896:0crwdne94896:0" @@ -10312,7 +10355,7 @@ msgstr "crwdns129348:0crwdne129348:0" msgid "Folder name should not include '/' (slash)" msgstr "crwdns94944:0crwdne94944:0" -#: frappe/core/doctype/file/file.py:494 +#: frappe/core/doctype/file/file.py:497 msgid "Folder {0} is not empty" msgstr "crwdns94946:0{0}crwdne94946:0" @@ -10514,7 +10557,7 @@ msgstr "crwdns95024:0crwdne95024:0" msgid "For Value" msgstr "crwdns129392:0crwdne129392:0" -#: frappe/public/js/frappe/views/reports/query_report.js:2129 +#: frappe/public/js/frappe/views/reports/query_report.js:2137 #: frappe/public/js/frappe/views/reports/report_view.js:108 msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)." msgstr "crwdns95034:0crwdne95034:0" @@ -10799,7 +10842,7 @@ msgstr "crwdns95156:0crwdne95156:0" msgid "From Date Field" msgstr "crwdns129430:0crwdne129430:0" -#: frappe/public/js/frappe/views/reports/query_report.js:1840 +#: frappe/public/js/frappe/views/reports/query_report.js:1848 msgid "From Document Type" msgstr "crwdns95162:0crwdne95162:0" @@ -10861,13 +10904,13 @@ msgstr "crwdns95192:0crwdne95192:0" msgid "Function {0} is not whitelisted." msgstr "crwdns95194:0{0}crwdne95194:0" -#: frappe/database/query.py:1417 +#: frappe/database/query.py:1419 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" +msgid "Further sub-groups can only be created under records marked as 'Group'" +msgstr "crwdns160164:0crwdne160164:0" #: frappe/core/doctype/communication/communication.js:291 msgid "Fw: {0}" @@ -10926,7 +10969,7 @@ msgstr "crwdns111514:0crwdne111514:0" msgid "Generate Keys" msgstr "crwdns129448:0crwdne129448:0" -#: frappe/public/js/frappe/views/reports/query_report.js:874 +#: frappe/public/js/frappe/views/reports/query_report.js:882 msgid "Generate New Report" msgstr "crwdns95224:0crwdne95224:0" @@ -11342,14 +11385,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 +#: frappe/database/query.py:752 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" - #. Label of the ldap_group_objectclass (Data) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Group Object Class" @@ -11679,7 +11718,7 @@ msgstr "crwdns110964:0crwdne110964:0" msgid "Hidden Fields" msgstr "crwdns129556:0crwdne129556:0" -#: frappe/public/js/frappe/views/reports/query_report.js:1642 +#: frappe/public/js/frappe/views/reports/query_report.js:1650 msgid "Hidden columns include: {0}" msgstr "crwdns156080:0{0}crwdne156080:0" @@ -11791,7 +11830,7 @@ msgstr "crwdns129578:0crwdne129578:0" msgid "Hide Standard Menu" msgstr "crwdns129580:0crwdne129580:0" -#: frappe/public/js/frappe/list/list_view.js:1849 +#: frappe/public/js/frappe/list/list_view.js:1851 msgid "Hide Tags" msgstr "crwdns95620:0crwdne95620:0" @@ -12050,7 +12089,7 @@ msgstr "crwdns129620:0crwdne129620:0" #: frappe/core/doctype/doctype/doctype.py:1777 #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45 -#: frappe/public/js/frappe/roles_editor.js:66 +#: frappe/public/js/frappe/roles_editor.js:68 msgid "If Owner" msgstr "crwdns95728:0crwdne95728:0" @@ -12278,8 +12317,8 @@ msgstr "crwdns129680:0crwdne129680:0" msgid "Illegal Document Status for {0}" msgstr "crwdns95818:0{0}crwdne95818:0" -#: frappe/model/db_query.py:453 frappe/model/db_query.py:456 -#: frappe/model/db_query.py:1121 +#: frappe/model/db_query.py:454 frappe/model/db_query.py:457 +#: frappe/model/db_query.py:1122 msgid "Illegal SQL Query" msgstr "crwdns95820:0crwdne95820:0" @@ -12366,11 +12405,11 @@ msgstr "crwdns95860:0crwdne95860:0" #. Option for the 'Operation' (Select) field in DocType 'Activity Log' #: frappe/core/doctype/activity_log/activity_log.json -#: frappe/core/doctype/user/user.js:384 +#: frappe/core/doctype/user/user.js:372 msgid "Impersonate" msgstr "crwdns111408:0crwdne111408:0" -#: frappe/core/doctype/user/user.js:411 +#: frappe/core/doctype/user/user.js:399 msgid "Impersonate as {0}" msgstr "crwdns111412:0{0}crwdne111412:0" @@ -12400,7 +12439,7 @@ msgstr "crwdns129692:0crwdne129692:0" msgid "Import" msgstr "crwdns95866:0crwdne95866:0" -#: frappe/public/js/frappe/list/list_view.js:1911 +#: frappe/public/js/frappe/list/list_view.js:1913 msgctxt "Button in list view menu" msgid "Import" msgstr "crwdns95868:0crwdne95868:0" @@ -12629,15 +12668,15 @@ msgid "Include Web View Link in Email" msgstr "crwdns129732:0crwdne129732:0" #: frappe/public/js/frappe/form/print_utils.js:59 -#: frappe/public/js/frappe/views/reports/query_report.js:1620 +#: frappe/public/js/frappe/views/reports/query_report.js:1628 msgid "Include filters" msgstr "crwdns95980:0crwdne95980:0" -#: frappe/public/js/frappe/views/reports/query_report.js:1640 +#: frappe/public/js/frappe/views/reports/query_report.js:1648 msgid "Include hidden columns" msgstr "crwdns156082:0crwdne156082:0" -#: frappe/public/js/frappe/views/reports/query_report.js:1612 +#: frappe/public/js/frappe/views/reports/query_report.js:1620 msgid "Include indentation" msgstr "crwdns95982:0crwdne95982:0" @@ -12684,7 +12723,7 @@ msgstr "crwdns95994:0crwdne95994:0" msgid "Incomplete Virtual Doctype Implementation" msgstr "crwdns95996:0crwdne95996:0" -#: frappe/auth.py:255 +#: frappe/auth.py:258 msgid "Incomplete login details" msgstr "crwdns95998:0crwdne95998:0" @@ -12795,7 +12834,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:1885 +#: frappe/public/js/frappe/views/reports/query_report.js:1893 msgid "Insert After" msgstr "crwdns96046:0crwdne96046:0" @@ -12868,7 +12907,7 @@ msgstr "crwdns110976:0crwdne110976:0" msgid "Insufficient Permission Level for {0}" msgstr "crwdns96072:0{0}crwdne96072:0" -#: frappe/database/query.py:806 frappe/database/query.py:1052 +#: frappe/database/query.py:808 frappe/database/query.py:1054 msgid "Insufficient Permission for {0}" msgstr "crwdns96074:0{0}crwdne96074:0" @@ -12984,7 +13023,7 @@ msgid "Invalid" msgstr "crwdns129784:0crwdne129784:0" #: frappe/public/js/form_builder/utils.js:221 -#: frappe/public/js/frappe/form/grid_row.js:849 +#: frappe/public/js/frappe/form/grid_row.js:850 #: frappe/public/js/frappe/form/layout.js:810 #: frappe/public/js/frappe/views/reports/report_view.js:721 msgid "Invalid \"depends_on\" expression" @@ -13042,8 +13081,8 @@ 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 +#: frappe/database/query.py:429 frappe/database/query.py:456 +#: frappe/database/query.py:466 frappe/database/query.py:489 msgid "Invalid Filter" msgstr "crwdns155544:0crwdne155544:0" @@ -13115,7 +13154,7 @@ msgstr "crwdns96178:0crwdne96178:0" msgid "Invalid Phone Number" msgstr "crwdns96180:0crwdne96180:0" -#: frappe/auth.py:94 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 +#: frappe/auth.py:97 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 #: frappe/www/login.py:128 msgid "Invalid Request" msgstr "crwdns96182:0crwdne96182:0" @@ -13155,7 +13194,7 @@ msgstr "crwdns96194:0crwdne96194:0" msgid "Invalid aggregate function" msgstr "crwdns96196:0crwdne96196:0" -#: frappe/database/query.py:1542 +#: frappe/database/query.py:1544 msgid "Invalid alias format: {0}. Alias must be a simple identifier." msgstr "crwdns155546:0{0}crwdne155546:0" @@ -13163,19 +13202,19 @@ msgstr "crwdns155546:0{0}crwdne155546:0" msgid "Invalid app" msgstr "crwdns157328:0crwdne157328:0" -#: frappe/database/query.py:1468 +#: frappe/database/query.py:1470 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 +#: frappe/database/query.py:1446 msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed." msgstr "crwdns155550:0{0}crwdne155550:0" -#: frappe/database/query.py:460 +#: frappe/database/query.py:462 msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed." msgstr "crwdns155552:0{0}crwdne155552:0" -#: frappe/database/query.py:575 +#: frappe/database/query.py:577 msgid "Invalid characters in table name: {0}" msgstr "crwdns155554:0{0}crwdne155554:0" @@ -13183,11 +13222,11 @@ msgstr "crwdns155554:0{0}crwdne155554:0" msgid "Invalid column" msgstr "crwdns96198:0crwdne96198:0" -#: frappe/database/query.py:381 +#: frappe/database/query.py:383 msgid "Invalid condition type in nested filters: {0}" msgstr "crwdns155556:0{0}crwdne155556:0" -#: frappe/database/query.py:787 +#: frappe/database/query.py:789 msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'." msgstr "crwdns155558:0{0}crwdne155558:0" @@ -13203,23 +13242,23 @@ msgstr "crwdns96202:0{0}crwdne96202:0" msgid "Invalid expression set in filter {0} ({1})" msgstr "crwdns96204:0{0}crwdnd96204:0{1}crwdne96204:0" -#: frappe/database/query.py:1301 +#: frappe/database/query.py:1303 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 +#: frappe/database/query.py:736 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 +#: frappe/database/query.py:1622 msgid "Invalid field name in function: {0}. Only simple field names are allowed." msgstr "crwdns155564:0{0}crwdne155564:0" -#: frappe/utils/data.py:2215 +#: frappe/utils/data.py:2241 msgid "Invalid field name {0}" msgstr "crwdns96206:0{0}crwdne96206:0" -#: frappe/database/query.py:668 +#: frappe/database/query.py:670 msgid "Invalid field type: {0}" msgstr "crwdns155566:0{0}crwdne155566:0" @@ -13231,11 +13270,11 @@ msgstr "crwdns96208:0{0}crwdne96208:0" msgid "Invalid file path: {0}" msgstr "crwdns96210:0{0}crwdne96210:0" -#: frappe/database/query.py:364 +#: frappe/database/query.py:366 msgid "Invalid filter condition: {0}. Expected a list or tuple." msgstr "crwdns155568:0{0}crwdne155568:0" -#: frappe/database/query.py:450 +#: frappe/database/query.py:452 msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'." msgstr "crwdns155570:0{0}crwdne155570:0" @@ -13243,11 +13282,11 @@ msgstr "crwdns155570:0{0}crwdne155570:0" msgid "Invalid filter: {0}" msgstr "crwdns96212:0{0}crwdne96212:0" -#: frappe/database/query.py:1422 +#: frappe/database/query.py:1424 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 +#: frappe/database/query.py:1385 msgid "Invalid function dictionary format" msgstr "crwdns155574:0crwdne155574:0" @@ -13284,23 +13323,27 @@ msgstr "crwdns96222:0crwdne96222:0" msgid "Invalid redirect regex in row #{}: {}" msgstr "crwdns96224:0crwdne96224:0" -#: frappe/app.py:337 +#: frappe/app.py:340 msgid "Invalid request arguments" msgstr "crwdns96226:0crwdne96226:0" +#: frappe/app.py:327 +msgid "Invalid request body" +msgstr "crwdns160166:0crwdne160166:0" + #: frappe/core/doctype/user_invitation/user_invitation.py:181 msgid "Invalid role" msgstr "crwdns157334:0crwdne157334:0" -#: frappe/database/query.py:410 +#: frappe/database/query.py:412 msgid "Invalid simple filter format: {0}" msgstr "crwdns155576:0{0}crwdne155576:0" -#: frappe/database/query.py:341 +#: frappe/database/query.py:343 msgid "Invalid start for filter condition: {0}. Expected a list or tuple." msgstr "crwdns155578:0{0}crwdne155578:0" -#: frappe/database/query.py:1489 +#: frappe/database/query.py:1491 msgid "Invalid string literal format: {0}" msgstr "crwdns155580:0{0}crwdne155580:0" @@ -13404,7 +13447,7 @@ msgstr "crwdns129792:0crwdne129792:0" #. 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/doctype_list.js:50 #: frappe/core/doctype/doctype_link/doctype_link.json msgid "Is Child Table" msgstr "crwdns96252:0crwdne96252:0" @@ -13457,6 +13500,10 @@ msgstr "crwdns129804:0crwdne129804:0" msgid "Is Global" msgstr "crwdns96282:0crwdne96282:0" +#: frappe/public/js/frappe/views/treeview.js:418 +msgid "Is Group" +msgstr "crwdns160168:0crwdne160168:0" + #. Label of the is_hidden (Check) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "Is Hidden" @@ -13545,7 +13592,7 @@ msgstr "crwdns155334:0crwdne155334:0" #. 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/core/doctype/doctype/doctype_list.js:65 #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Is Single" msgstr "crwdns96314:0crwdne96314:0" @@ -13581,7 +13628,7 @@ msgstr "crwdns129836:0crwdne129836:0" #. Label of the is_submittable (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:39 +#: frappe/core/doctype/doctype/doctype_list.js:40 msgid "Is Submittable" msgstr "crwdns96342:0crwdne96342:0" @@ -13787,11 +13834,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:388 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:402 msgid "Kanban Board Name" msgstr "crwdns96440:0crwdne96440:0" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:265 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:279 msgctxt "Button in kanban view menu" msgid "Kanban Settings" msgstr "crwdns96444:0crwdne96444:0" @@ -14089,10 +14136,13 @@ msgstr "crwdns96576:0crwdne96576:0" #. 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' +#. Label of a field in the edit-profile Web Form #: 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:117 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/printing/page/print/print.js:117 #: frappe/public/js/frappe/form/templates/print_layout.html:11 msgid "Language" msgstr "crwdns96578:0crwdne96578:0" @@ -14180,9 +14230,12 @@ msgstr "crwdns129952:0crwdne129952:0" #. Label of the last_name (Data) field in DocType 'Contact' #. Label of the last_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json #: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:45 -#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:19 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:19 msgid "Last Name" msgstr "crwdns96608:0crwdne96608:0" @@ -14423,7 +14476,7 @@ msgstr "crwdns129994:0crwdne129994:0" #: 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/public/js/frappe/roles_editor.js:68 #: frappe/website/doctype/help_article/help_article.json msgid "Level" msgstr "crwdns96716:0crwdne96716:0" @@ -14716,7 +14769,7 @@ msgstr "crwdns96864:0crwdne96864:0" msgid "List Settings" msgstr "crwdns130060:0crwdne130060:0" -#: frappe/public/js/frappe/list/list_view.js:1991 +#: frappe/public/js/frappe/list/list_view.js:1993 msgctxt "Button in list view menu" msgid "List Settings" msgstr "crwdns96868:0crwdne96868:0" @@ -14767,7 +14820,7 @@ msgid "Load Balancing" msgstr "crwdns130066:0crwdne130066:0" #: frappe/public/js/frappe/list/base_list.js:399 -#: frappe/public/js/frappe/web_form/web_form_list.js:305 +#: frappe/public/js/frappe/web_form/web_form_list.js:306 #: frappe/website/doctype/help_article/templates/help_article_list.html:30 msgid "Load More" msgstr "crwdns96888:0crwdne96888:0" @@ -14787,7 +14840,7 @@ msgstr "crwdns143088:0crwdne143088:0" #: frappe/public/js/frappe/list/base_list.js:526 #: frappe/public/js/frappe/list/list_view.js:363 #: frappe/public/js/frappe/ui/listing.html:16 -#: frappe/public/js/frappe/views/reports/query_report.js:1089 +#: frappe/public/js/frappe/views/reports/query_report.js:1097 msgid "Loading" msgstr "crwdns96892:0crwdne96892:0" @@ -14930,7 +14983,7 @@ msgstr "crwdns96944:0crwdne96944:0" msgid "Login and view in Browser" msgstr "crwdns96948:0crwdne96948:0" -#: frappe/website/doctype/web_form/web_form.js:367 +#: frappe/website/doctype/web_form/web_form.js:368 msgid "Login is required to see web form list view. Enable {0} to see list settings" msgstr "crwdns96950:0{0}crwdne96950:0" @@ -14938,7 +14991,7 @@ msgstr "crwdns96950:0{0}crwdne96950:0" msgid "Login link sent to your email" msgstr "crwdns110998:0crwdne110998:0" -#: frappe/auth.py:339 frappe/auth.py:342 +#: frappe/auth.py:342 frappe/auth.py:345 msgid "Login not allowed at this time" msgstr "crwdns96952:0crwdne96952:0" @@ -14991,7 +15044,7 @@ msgstr "crwdns130088:0crwdne130088:0" msgid "Login with email link expiry (in minutes)" msgstr "crwdns130090:0crwdne130090:0" -#: frappe/auth.py:144 +#: frappe/auth.py:147 msgid "Login with username and password is not allowed." msgstr "crwdns96970:0crwdne96970:0" @@ -15010,7 +15063,7 @@ msgstr "crwdns155976:0crwdne155976:0" msgid "Logout" msgstr "crwdns130092:0crwdne130092:0" -#: frappe/core/doctype/user/user.js:202 +#: frappe/core/doctype/user/user.js:190 msgid "Logout All Sessions" msgstr "crwdns96976:0crwdne96976:0" @@ -15114,7 +15167,10 @@ msgid "Major" msgstr "crwdns130110:0crwdne130110:0" #. Label of the show_name_in_global_search (Check) field in DocType 'DocType' +#. Label of the show_name_in_global_search (Check) field in DocType 'Customize +#. Form' #: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Make \"name\" searchable in Global Search" msgstr "crwdns130112:0crwdne130112:0" @@ -15190,7 +15246,7 @@ msgstr "crwdns130120:0crwdne130120:0" msgid "Mandatory Depends On (JS)" msgstr "crwdns130122:0crwdne130122:0" -#: frappe/website/doctype/web_form/web_form.py:509 +#: frappe/website/doctype/web_form/web_form.py:536 msgid "Mandatory Information missing:" msgstr "crwdns97056:0crwdne97056:0" @@ -15647,6 +15703,11 @@ msgstr "crwdns130202:0crwdne130202:0" msgid "Middle Name" msgstr "crwdns130204:0crwdne130204:0" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Middle Name (Optional)" +msgstr "crwdns160170:0crwdne160170:0" + #. Name of a DocType #. Label of a Link in the Tools Workspace #: frappe/automation/doctype/milestone/milestone.json @@ -15753,6 +15814,11 @@ msgstr "crwdns97304:0crwdne97304:0" msgid "Mobile No" msgstr "crwdns97306:0crwdne97306:0" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Mobile Number" +msgstr "crwdns160172:0crwdne160172:0" + #. 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" @@ -15778,7 +15844,7 @@ msgstr "crwdns130212:0crwdne130212:0" #. 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/doctype/doctype_list.js:31 #: 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 @@ -15954,10 +16020,12 @@ msgstr "crwdns149126:0crwdne149126:0" #. Label of the additional_info (Section Break) field in DocType #. 'Communication' #. Label of the short_bio (Tab Break) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: 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 +#: frappe/core/web_form/edit_profile/edit_profile.json msgid "More Information" msgstr "crwdns130230:0crwdne130230:0" @@ -15987,7 +16055,7 @@ msgstr "crwdns97456:0crwdne97456:0" msgid "Move" msgstr "crwdns97458:0crwdne97458:0" -#: frappe/public/js/frappe/form/grid_row.js:193 +#: frappe/public/js/frappe/form/grid_row.js:194 msgid "Move To" msgstr "crwdns97460:0crwdne97460:0" @@ -16023,7 +16091,7 @@ msgstr "crwdns143092:0crwdne143092:0" msgid "Move the current field and the following fields to a new column" msgstr "crwdns143094:0crwdne143094:0" -#: frappe/public/js/frappe/form/grid_row.js:168 +#: frappe/public/js/frappe/form/grid_row.js:169 msgid "Move to Row Number" msgstr "crwdns97472:0crwdne97472:0" @@ -16091,7 +16159,7 @@ msgid "Mx" msgstr "crwdns148678:0crwdne148678:0" #: frappe/templates/includes/web_sidebar.html:41 -#: frappe/website/doctype/web_form/web_form.py:498 +#: frappe/website/doctype/web_form/web_form.py:525 #: 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" @@ -16233,12 +16301,12 @@ msgstr "crwdns130264:0crwdne130264:0" msgid "Navbar Template Values" msgstr "crwdns130266:0crwdne130266:0" -#: frappe/public/js/frappe/list/list_view.js:1378 +#: frappe/public/js/frappe/list/list_view.js:1380 msgctxt "Description of a list view shortcut" msgid "Navigate list down" msgstr "crwdns97564:0crwdne97564:0" -#: frappe/public/js/frappe/list/list_view.js:1385 +#: frappe/public/js/frappe/list/list_view.js:1387 msgctxt "Description of a list view shortcut" msgid "Navigate list up" msgstr "crwdns97566:0crwdne97566:0" @@ -16253,6 +16321,10 @@ msgstr "crwdns97568:0crwdne97568:0" msgid "Navigation Settings" msgstr "crwdns130268:0crwdne130268:0" +#: frappe/public/js/frappe/list/list_view.js:485 +msgid "Need Help?" +msgstr "crwdns159976:0crwdne159976:0" + #: frappe/desk/doctype/workspace/workspace.py:322 msgid "Need Workspace Manager role to edit private workspace of other users" msgstr "crwdns97572:0crwdne97572:0" @@ -16261,7 +16333,7 @@ msgstr "crwdns97572:0crwdne97572:0" msgid "Negative Value" msgstr "crwdns97576:0crwdne97576:0" -#: frappe/database/query.py:333 +#: frappe/database/query.py:335 msgid "Nested filters must be provided as a list or tuple." msgstr "crwdns155586:0crwdne155586:0" @@ -16274,6 +16346,12 @@ msgstr "crwdns97578:0crwdne97578:0" msgid "Network Printer Settings" msgstr "crwdns97580:0crwdne97580:0" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Never" +msgstr "crwdns159978:0crwdne159978:0" + #. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/core/doctype/success_action/success_action.js:57 @@ -16282,7 +16360,7 @@ msgstr "crwdns97580:0crwdne97580:0" #: 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/treeview.js:473 #: frappe/public/js/frappe/views/workspace/workspace.js:64 #: frappe/website/doctype/web_form/templates/web_list.html:15 #: frappe/www/list.html:19 @@ -16343,7 +16421,7 @@ msgstr "crwdns97604:0crwdne97604:0" msgid "New Folder" msgstr "crwdns97606:0crwdne97606:0" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 msgid "New Kanban Board" msgstr "crwdns97608:0crwdne97608:0" @@ -16378,7 +16456,7 @@ msgstr "crwdns111022:0crwdne111022:0" msgid "New Onboarding" msgstr "crwdns111024:0crwdne111024:0" -#: frappe/core/doctype/user/user.js:190 frappe/www/update-password.html:43 +#: frappe/core/doctype/user/user.js:178 frappe/www/update-password.html:43 msgid "New Password" msgstr "crwdns97622:0crwdne97622:0" @@ -16474,7 +16552,7 @@ msgstr "crwdns130276:0crwdne130276:0" #: frappe/public/js/frappe/ui/toolbar/search_utils.js:227 #: 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:411 +#: frappe/website/doctype/web_form/web_form.py:438 msgid "New {0}" msgstr "crwdns97640:0{0}crwdne97640:0" @@ -16626,7 +16704,7 @@ msgstr "crwdns130294:0crwdne130294:0" #: frappe/public/js/form_builder/utils.js:341 #: frappe/public/js/frappe/form/controls/link.js:498 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1665 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 #: frappe/website/doctype/help_article/templates/help_article.html:26 msgid "No" msgstr "crwdns97696:0crwdne97696:0" @@ -16775,7 +16853,7 @@ msgstr "crwdns97752:0crwdne97752:0" msgid "No Roles Specified" msgstr "crwdns97754:0crwdne97754:0" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 msgid "No Select Field Found" msgstr "crwdns97756:0crwdne97756:0" @@ -16859,7 +16937,7 @@ msgstr "crwdns157354:0crwdne157354:0" msgid "No failed logs" msgstr "crwdns111062:0crwdne111062:0" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:371 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:385 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" @@ -16883,7 +16961,7 @@ msgstr "crwdns97790:0crwdne97790:0" msgid "No matching records. Search something new" msgstr "crwdns97792:0crwdne97792:0" -#: frappe/public/js/frappe/web_form/web_form_list.js:161 +#: frappe/public/js/frappe/web_form/web_form_list.js:162 msgid "No more items to display" msgstr "crwdns97794:0crwdne97794:0" @@ -16927,7 +17005,7 @@ msgctxt "{0} = verb, {1} = object" msgid "No permission to '{0}' {1}" msgstr "crwdns97810:0{0}crwdnd97810:0{1}crwdne97810:0" -#: frappe/model/db_query.py:948 +#: frappe/model/db_query.py:949 msgid "No permission to read {0}" msgstr "crwdns97812:0{0}crwdne97812:0" @@ -16975,11 +17053,11 @@ msgstr "crwdns97824:0{0}crwdne97824:0" msgid "No {0} Found" msgstr "crwdns111076:0{0}crwdne111076:0" -#: frappe/public/js/frappe/web_form/web_form_list.js:233 +#: frappe/public/js/frappe/web_form/web_form_list.js:234 msgid "No {0} found" msgstr "crwdns111078:0{0}crwdne111078:0" -#: frappe/public/js/frappe/list/list_view.js:497 +#: frappe/public/js/frappe/list/list_view.js:499 msgid "No {0} found with matching filters. Clear filters to see all {0}." msgstr "crwdns97826:0{0}crwdnd97826:0{0}crwdne97826:0" @@ -16988,7 +17066,7 @@ msgid "No {0} mail" msgstr "crwdns97828:0{0}crwdne97828:0" #: frappe/public/js/form_builder/utils.js:117 -#: frappe/public/js/frappe/form/grid_row.js:256 +#: frappe/public/js/frappe/form/grid_row.js:257 msgctxt "Title of the 'row number' column" msgid "No." msgstr "crwdns111418:0crwdne111418:0" @@ -17052,7 +17130,7 @@ msgstr "crwdns97850:0crwdne97850:0" msgid "Not Equals" msgstr "crwdns97852:0crwdne97852:0" -#: frappe/app.py:387 frappe/www/404.html:3 +#: frappe/app.py:390 frappe/www/404.html:3 msgid "Not Found" msgstr "crwdns97854:0crwdne97854:0" @@ -17078,9 +17156,9 @@ msgstr "crwdns97862:0crwdne97862:0" msgid "Not Nullable" msgstr "crwdns130314:0crwdne130314:0" -#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26 +#: frappe/__init__.py:550 frappe/app.py:383 frappe/desk/calendar.py:26 #: frappe/public/js/frappe/web_form/webform_script.js:15 -#: frappe/website/doctype/web_form/web_form.py:747 +#: frappe/website/doctype/web_form/web_form.py:774 #: 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 @@ -17099,7 +17177,7 @@ msgstr "crwdns97870:0crwdne97870:0" #: 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/kanban/kanban_view.js:183 #: frappe/public/js/frappe/views/reports/report_view.js:209 #: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39 #: frappe/website/doctype/web_form/templates/web_form.html:85 @@ -17150,7 +17228,7 @@ msgstr "crwdns97892:0crwdne97892:0" msgid "Not allowed for {0}: {1}" msgstr "crwdns97894:0{0}crwdnd97894:0{1}crwdne97894:0" -#: frappe/email/doctype/notification/notification.py:637 +#: frappe/email/doctype/notification/notification.py:639 msgid "Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings" msgstr "crwdns97896:0{0}crwdnd97896:0{0}crwdne97896:0" @@ -17182,12 +17260,12 @@ msgstr "crwdns97908:0crwdne97908:0" msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType." msgstr "crwdns97910:0crwdne97910:0" -#: frappe/core/doctype/system_settings/system_settings.py:216 +#: frappe/core/doctype/system_settings/system_settings.py:217 #: 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:760 +#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:787 #: frappe/website/js/website.js:97 msgid "Not permitted" msgstr "crwdns97912:0crwdne97912:0" @@ -17233,7 +17311,7 @@ msgstr "crwdns130318:0crwdne130318:0" msgid "Note: Multiple sessions will be allowed in case of mobile device" msgstr "crwdns130320:0crwdne130320:0" -#: frappe/core/doctype/user/user.js:399 +#: frappe/core/doctype/user/user.js:387 msgid "Note: This will be shared with user." msgstr "crwdns111420:0crwdne111420:0" @@ -17305,15 +17383,15 @@ msgstr "crwdns97970:0crwdne97970:0" msgid "Notification sent to" msgstr "crwdns111084:0crwdne111084:0" -#: frappe/email/doctype/notification/notification.py:542 +#: frappe/email/doctype/notification/notification.py:544 msgid "Notification: customer {0} has no Mobile number set" msgstr "crwdns142914:0{0}crwdne142914:0" -#: frappe/email/doctype/notification/notification.py:528 +#: frappe/email/doctype/notification/notification.py:530 msgid "Notification: document {0} has no {1} number set (field: {2})" msgstr "crwdns142916:0{0}crwdnd142916:0{1}crwdnd142916:0{2}crwdne142916:0" -#: frappe/email/doctype/notification/notification.py:537 +#: frappe/email/doctype/notification/notification.py:539 msgid "Notification: user {0} has no Mobile number set" msgstr "crwdns142918:0{0}crwdne142918:0" @@ -17427,7 +17505,7 @@ msgstr "crwdns130348:0crwdne130348:0" msgid "Number of attachment fields are more than {}, limit updated to {}." msgstr "crwdns98018:0crwdne98018:0" -#: frappe/core/doctype/system_settings/system_settings.py:171 +#: frappe/core/doctype/system_settings/system_settings.py:172 msgid "Number of backups must be greater than zero." msgstr "crwdns98020:0crwdne98020:0" @@ -17699,7 +17777,7 @@ msgstr "crwdns98098:0crwdne98098:0" #. Description of the 'Is Submittable' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:42 +#: frappe/core/doctype/doctype/doctype_list.js:43 msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended." msgstr "crwdns98100:0crwdne98100:0" @@ -17788,11 +17866,11 @@ msgstr "crwdns98142:0crwdne98142:0" msgid "Only reports of type Report Builder can be edited" msgstr "crwdns98144:0crwdne98144:0" -#: frappe/custom/doctype/customize_form/customize_form.py:129 +#: frappe/custom/doctype/customize_form/customize_form.py:131 msgid "Only standard DocTypes are allowed to be customized from Customize Form." msgstr "crwdns98146:0crwdne98146:0" -#: frappe/model/delete_doc.py:241 +#: frappe/model/delete_doc.py:281 msgid "Only the Administrator can delete a standard DocType." msgstr "crwdns151810:0crwdne151810:0" @@ -17888,7 +17966,7 @@ msgstr "crwdns155340:0crwdne155340:0" msgid "Open in a new tab" msgstr "crwdns143102:0crwdne143102:0" -#: frappe/public/js/frappe/list/list_view.js:1431 +#: frappe/public/js/frappe/list/list_view.js:1433 msgctxt "Description of a list view shortcut" msgid "Open list item" msgstr "crwdns98186:0crwdne98186:0" @@ -17937,7 +18015,7 @@ msgstr "crwdns130426:0crwdne130426:0" msgid "Operation" msgstr "crwdns130428:0crwdne130428:0" -#: frappe/utils/data.py:2146 +#: frappe/utils/data.py:2172 msgid "Operator must be one of {0}" msgstr "crwdns98200:0{0}crwdne98200:0" @@ -17983,6 +18061,7 @@ msgstr "crwdns130432:0crwdne130432:0" #. 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 (Text) field in DocType 'Web Form List Column' #. 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 @@ -17991,6 +18070,7 @@ msgstr "crwdns130432:0crwdne130432:0" #: 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_form_list_column/web_form_list_column.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Options" msgstr "crwdns111106:0crwdne111106:0" @@ -18036,7 +18116,7 @@ msgstr "crwdns130436:0crwdne130436:0" msgid "Order" msgstr "crwdns130438:0crwdne130438:0" -#: frappe/database/query.py:767 +#: frappe/database/query.py:769 msgid "Order By must be a string" msgstr "crwdns155590:0crwdne155590:0" @@ -18134,7 +18214,7 @@ msgstr "crwdns130460:0crwdne130460:0" #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/printing/page/print/print.js:84 #: frappe/public/js/frappe/form/templates/print_layout.html:44 -#: frappe/public/js/frappe/views/reports/query_report.js:1804 +#: frappe/public/js/frappe/views/reports/query_report.js:1812 msgid "PDF" msgstr "crwdns98288:0crwdne98288:0" @@ -18482,8 +18562,8 @@ msgstr "crwdns130516:0crwdne130516:0" #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/system_settings/system_settings.json -#: frappe/core/doctype/user/user.js:177 frappe/core/doctype/user/user.js:224 -#: frappe/core/doctype/user/user.js:244 +#: frappe/core/doctype/user/user.js:165 frappe/core/doctype/user/user.js:212 +#: frappe/core/doctype/user/user.js:232 #: 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 @@ -18506,7 +18586,7 @@ msgstr "crwdns98450:0crwdne98450:0" msgid "Password Reset Link Generation Limit" msgstr "crwdns130518:0crwdne130518:0" -#: frappe/public/js/frappe/form/grid_row.js:896 +#: frappe/public/js/frappe/form/grid_row.js:897 msgid "Password cannot be filtered" msgstr "crwdns98454:0crwdne98454:0" @@ -18543,7 +18623,7 @@ msgstr "crwdns142862:0crwdne142862:0" msgid "Password set" msgstr "crwdns98468:0crwdne98468:0" -#: frappe/auth.py:258 +#: frappe/auth.py:261 msgid "Password size exceeded the maximum allowed size" msgstr "crwdns98470:0crwdne98470:0" @@ -18555,7 +18635,7 @@ msgstr "crwdns98472:0crwdne98472:0" msgid "Passwords do not match" msgstr "crwdns98474:0crwdne98474:0" -#: frappe/core/doctype/user/user.js:210 +#: frappe/core/doctype/user/user.js:198 msgid "Passwords do not match!" msgstr "crwdns98476:0crwdne98476:0" @@ -18706,7 +18786,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/database/query.py:533 +#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:535 msgid "Permission Error" msgstr "crwdns98540:0crwdne98540:0" @@ -18766,8 +18846,8 @@ msgstr "crwdns130556:0crwdne130556:0" #: 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:143 frappe/core/doctype/user/user.js:152 -#: frappe/core/doctype/user/user.js:161 +#: frappe/core/doctype/user/user.js:131 frappe/core/doctype/user/user.js:140 +#: frappe/core/doctype/user/user.js:149 #: 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 @@ -18837,6 +18917,7 @@ msgstr "crwdns98584:0crwdne98584:0" #. Option for the 'Type' (Select) field in DocType 'Communication' #. Option for the 'Type' (Select) field in DocType 'DocField' #. Label of the phone (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #. 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' @@ -18847,6 +18928,7 @@ msgstr "crwdns98584:0crwdne98584:0" #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.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 @@ -19021,7 +19103,7 @@ msgstr "crwdns98674:0crwdne98674:0" msgid "Please duplicate this to make changes" msgstr "crwdns98676:0crwdne98676:0" -#: frappe/core/doctype/system_settings/system_settings.py:164 +#: frappe/core/doctype/system_settings/system_settings.py:165 msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login." msgstr "crwdns98678:0crwdne98678:0" @@ -19153,11 +19235,11 @@ msgstr "crwdns98740:0crwdne98740:0" msgid "Please select Entity Type first" msgstr "crwdns98742:0crwdne98742:0" -#: frappe/core/doctype/system_settings/system_settings.py:115 +#: frappe/core/doctype/system_settings/system_settings.py:116 msgid "Please select Minimum Password Score" msgstr "crwdns98744:0crwdne98744:0" -#: frappe/public/js/frappe/views/reports/query_report.js:1185 +#: frappe/public/js/frappe/views/reports/query_report.js:1193 msgid "Please select X and Y fields" msgstr "crwdns111128:0crwdne111128:0" @@ -19185,7 +19267,7 @@ msgstr "crwdns98752:0crwdne98752:0" msgid "Please select applicable Doctypes" msgstr "crwdns98754:0crwdne98754:0" -#: frappe/model/db_query.py:1157 +#: frappe/model/db_query.py:1163 msgid "Please select atleast 1 column from {0} to sort/group" msgstr "crwdns98756:0{0}crwdne98756:0" @@ -19215,7 +19297,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:1408 +#: frappe/public/js/frappe/views/reports/query_report.js:1416 msgid "Please set filters" msgstr "crwdns98772:0crwdne98772:0" @@ -19235,7 +19317,7 @@ msgstr "crwdns98778:0crwdne98778:0" msgid "Please set the series to be used." msgstr "crwdns98780:0crwdne98780:0" -#: frappe/core/doctype/system_settings/system_settings.py:128 +#: frappe/core/doctype/system_settings/system_settings.py:129 msgid "Please setup SMS before setting it as an authentication method, via SMS Settings" msgstr "crwdns98782:0crwdne98782:0" @@ -19387,7 +19469,7 @@ msgstr "crwdns130594:0crwdne130594:0" msgid "Posting Timestamp" msgstr "crwdns130596:0crwdne130596:0" -#: frappe/database/query.py:1518 +#: frappe/database/query.py:1520 msgid "Potentially dangerous content in string literal: {0}" msgstr "crwdns155592:0{0}crwdne155592:0" @@ -19589,13 +19671,13 @@ msgstr "crwdns112704:0{0}crwdne112704:0" #: 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:1789 +#: frappe/public/js/frappe/views/reports/query_report.js:1797 #: frappe/public/js/frappe/views/reports/report_view.js:1539 -#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18 +#: frappe/public/js/frappe/views/treeview.js:492 frappe/www/printview.html:18 msgid "Print" msgstr "crwdns98924:0crwdne98924:0" -#: frappe/public/js/frappe/list/list_view.js:2164 +#: frappe/public/js/frappe/list/list_view.js:2166 msgctxt "Button in list view actions menu" msgid "Print" msgstr "crwdns98926:0crwdne98926:0" @@ -19665,7 +19747,7 @@ msgstr "crwdns130624:0crwdne130624:0" msgid "Print Format Type" msgstr "crwdns130626:0crwdne130626:0" -#: frappe/public/js/frappe/views/reports/query_report.js:1578 +#: frappe/public/js/frappe/views/reports/query_report.js:1586 msgid "Print Format not found" msgstr "crwdns155998:0crwdne155998:0" @@ -19846,11 +19928,11 @@ 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:932 +#: frappe/public/js/frappe/views/reports/query_report.js:940 msgid "Proceed Anyway" msgstr "crwdns99052:0crwdne99052:0" -#: frappe/public/js/frappe/form/controls/table.js:123 +#: frappe/public/js/frappe/form/controls/table.js:104 msgid "Processing" msgstr "crwdns99054:0crwdne99054:0" @@ -19867,11 +19949,21 @@ msgstr "crwdns148692:0crwdne148692:0" msgid "Profile" msgstr "crwdns130650:0crwdne130650:0" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile Picture" +msgstr "crwdns160174:0crwdne160174:0" + +#. Success message of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile updated successfully." +msgstr "crwdns160176:0crwdne160176:0" + #: frappe/public/js/frappe/socketio_client.js:82 msgid "Progress" msgstr "crwdns99060:0crwdne99060:0" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:408 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:422 msgid "Project" msgstr "crwdns99062:0crwdne99062:0" @@ -19915,7 +20007,7 @@ msgstr "crwdns130654:0crwdne130654:0" msgid "Protect Attached Files" msgstr "crwdns154485:0crwdne154485:0" -#: frappe/core/doctype/file/file.py:523 +#: frappe/core/doctype/file/file.py:526 msgid "Protected File" msgstr "crwdns154487:0crwdne154487:0" @@ -20421,11 +20513,11 @@ msgstr "crwdns130740:0crwdne130740:0" msgid "Reason" msgstr "crwdns99322:0crwdne99322:0" -#: frappe/public/js/frappe/views/reports/query_report.js:886 +#: frappe/public/js/frappe/views/reports/query_report.js:894 msgid "Rebuild" msgstr "crwdns99328:0crwdne99328:0" -#: frappe/public/js/frappe/views/treeview.js:509 +#: frappe/public/js/frappe/views/treeview.js:511 msgid "Rebuild Tree" msgstr "crwdns99330:0crwdne99330:0" @@ -20806,8 +20898,8 @@ 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:1778 -#: frappe/public/js/frappe/views/treeview.js:496 +#: frappe/public/js/frappe/views/reports/query_report.js:1786 +#: frappe/public/js/frappe/views/treeview.js:498 #: frappe/public/js/frappe/widgets/chart_widget.js:291 #: frappe/public/js/frappe/widgets/number_card_widget.js:352 #: frappe/public/js/print_format_builder/Preview.vue:24 @@ -20838,13 +20930,13 @@ msgstr "crwdns158984:0crwdne158984:0" msgid "Refresh Token" msgstr "crwdns130798:0crwdne130798:0" -#: frappe/public/js/frappe/list/list_view.js:534 +#: frappe/public/js/frappe/list/list_view.js:536 msgctxt "Document count in list view" msgid "Refreshing" msgstr "crwdns111160:0crwdne111160:0" #: frappe/core/doctype/system_settings/system_settings.js:57 -#: frappe/core/doctype/user/user.js:374 +#: frappe/core/doctype/user/user.js:362 #: frappe/desk/page/setup_wizard/setup_wizard.js:211 msgid "Refreshing..." msgstr "crwdns99546:0crwdne99546:0" @@ -21229,7 +21321,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:1965 +#: frappe/public/js/frappe/views/reports/query_report.js:1973 msgid "Report Name" msgstr "crwdns99696:0crwdne99696:0" @@ -21281,7 +21373,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:1013 +#: frappe/public/js/frappe/views/reports/query_report.js:1021 msgid "Report initiated, click to view status" msgstr "crwdns99724:0crwdne99724:0" @@ -21301,7 +21393,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:2003 +#: frappe/public/js/frappe/views/reports/query_report.js:2011 msgid "Report with more than 10 columns looks better in Landscape mode." msgstr "crwdns99734:0crwdne99734:0" @@ -21337,7 +21429,7 @@ msgstr "crwdns99746:0crwdne99746:0" msgid "Reports & Masters" msgstr "crwdns99750:0crwdne99750:0" -#: frappe/public/js/frappe/views/reports/query_report.js:929 +#: frappe/public/js/frappe/views/reports/query_report.js:937 msgid "Reports already in Queue" msgstr "crwdns99752:0crwdne99752:0" @@ -21356,7 +21448,10 @@ msgid "Request Body" msgstr "crwdns130840:0crwdne130840:0" #. Label of the data (Code) field in DocType 'Integration Request' +#. Title of the request-data Web Form +#. Button label of the request-data Web Form #: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/website/web_form/request_data/request_data.json msgid "Request Data" msgstr "crwdns130842:0crwdne130842:0" @@ -21408,6 +21503,11 @@ msgstr "crwdns99776:0crwdne99776:0" msgid "Request URL" msgstr "crwdns130856:0crwdne130856:0" +#. Title of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "Request for Account Deletion" +msgstr "crwdns160178:0crwdne160178:0" + #. Label of the requested_numbers (Code) field in DocType 'SMS Log' #: frappe/core/doctype/sms_log/sms_log.json msgid "Requested Numbers" @@ -21463,7 +21563,7 @@ msgstr "crwdns99800:0crwdne99800:0" msgid "Reset Fields" msgstr "crwdns99802:0crwdne99802:0" -#: frappe/core/doctype/user/user.js:184 frappe/core/doctype/user/user.js:187 +#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:175 msgid "Reset LDAP Password" msgstr "crwdns99804:0crwdne99804:0" @@ -21471,11 +21571,11 @@ msgstr "crwdns99804:0crwdne99804:0" msgid "Reset Layout" msgstr "crwdns99806:0crwdne99806:0" -#: frappe/core/doctype/user/user.js:235 +#: frappe/core/doctype/user/user.js:223 msgid "Reset OTP Secret" msgstr "crwdns99808:0crwdne99808:0" -#: frappe/core/doctype/user/user.js:168 frappe/www/login.html:199 +#: frappe/core/doctype/user/user.js:156 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" @@ -21510,7 +21610,7 @@ msgstr "crwdns143128:0crwdne143128:0" msgid "Reset sorting" msgstr "crwdns99820:0crwdne99820:0" -#: frappe/public/js/frappe/form/grid_row.js:433 +#: frappe/public/js/frappe/form/grid_row.js:434 msgid "Reset to default" msgstr "crwdns99824:0crwdne99824:0" @@ -21762,7 +21862,7 @@ msgstr "crwdns99960:0crwdne99960:0" #. 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 +#: frappe/public/js/frappe/roles_editor.js:114 msgid "Role Permissions" msgstr "crwdns99964:0crwdne99964:0" @@ -21772,7 +21872,7 @@ msgstr "crwdns99964:0crwdne99964:0" msgid "Role Permissions Manager" msgstr "crwdns99968:0crwdne99968:0" -#: frappe/public/js/frappe/list/list_view.js:1933 +#: frappe/public/js/frappe/list/list_view.js:1935 msgctxt "Button in list view menu" msgid "Role Permissions Manager" msgstr "crwdns99970:0crwdne99970:0" @@ -21965,11 +22065,11 @@ msgstr "crwdns111182:0crwdne111182:0" msgid "Row {0}" msgstr "crwdns111184:0{0}crwdne111184:0" -#: frappe/custom/doctype/customize_form/customize_form.py:353 +#: frappe/custom/doctype/customize_form/customize_form.py:357 msgid "Row {0}: Not allowed to disable Mandatory for standard fields" msgstr "crwdns100068:0{0}crwdne100068:0" -#: frappe/custom/doctype/customize_form/customize_form.py:342 +#: frappe/custom/doctype/customize_form/customize_form.py:346 msgid "Row {0}: Not allowed to enable Allow on Submit for standard fields" msgstr "crwdns100070:0{0}crwdne100070:0" @@ -21988,7 +22088,10 @@ msgid "Rows Removed" msgstr "crwdns111188:0crwdne111188:0" #. Label of the rows_threshold_for_grid_search (Int) field in DocType 'DocType' +#. Label of the rows_threshold_for_grid_search (Int) field in DocType +#. 'Customize Form' #: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Rows Threshold for Grid Search" msgstr "crwdns155342:0crwdne155342:0" @@ -22196,8 +22299,8 @@ msgstr "crwdns130978:0crwdne130978:0" #: 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:1957 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 +#: frappe/public/js/frappe/views/reports/query_report.js:1965 #: frappe/public/js/frappe/views/reports/report_view.js:1735 #: frappe/public/js/frappe/views/workspace/workspace.js:335 #: frappe/public/js/frappe/widgets/base_widget.js:142 @@ -22220,11 +22323,11 @@ msgstr "crwdns100178:0crwdne100178:0" msgid "Save Customizations" msgstr "crwdns100180:0crwdne100180:0" -#: frappe/public/js/frappe/views/reports/query_report.js:1960 +#: frappe/public/js/frappe/views/reports/query_report.js:1968 msgid "Save Report" msgstr "crwdns100182:0crwdne100182:0" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:97 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:107 msgid "Save filters" msgstr "crwdns100184:0crwdne100184:0" @@ -22596,7 +22699,7 @@ msgstr "crwdns131022:0crwdne131022:0" msgid "See all Activity" msgstr "crwdns111200:0crwdne111200:0" -#: frappe/public/js/frappe/views/reports/query_report.js:855 +#: frappe/public/js/frappe/views/reports/query_report.js:863 msgid "See all past reports." msgstr "crwdns100338:0crwdne100338:0" @@ -22660,7 +22763,7 @@ msgstr "crwdns100362:0crwdne100362:0" #: 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:497 +#: frappe/public/js/frappe/form/grid_row.js:498 msgid "Select All" msgstr "crwdns111204:0crwdne111204:0" @@ -22740,7 +22843,7 @@ msgstr "crwdns100412:0crwdne100412:0" msgid "Select Field..." msgstr "crwdns111208:0crwdne111208:0" -#: frappe/public/js/frappe/form/grid_row.js:489 +#: frappe/public/js/frappe/form/grid_row.js:490 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:181 msgid "Select Fields" msgstr "crwdns100414:0crwdne100414:0" @@ -22860,8 +22963,8 @@ msgid "Select a field to edit its properties." msgstr "crwdns143144:0crwdne143144:0" #: frappe/public/js/frappe/views/treeview.js:358 -msgid "Select a group node first." -msgstr "crwdns100464:0crwdne100464:0" +msgid "Select a group {0} first." +msgstr "crwdns160180:0{0}crwdne160180:0" #: frappe/core/doctype/doctype/doctype.py:1956 msgid "Select a valid Sender Field for creating documents from Email" @@ -22897,13 +23000,13 @@ msgstr "crwdns100474:0crwdne100474:0" msgid "Select atleast 2 actions" msgstr "crwdns100476:0crwdne100476:0" -#: frappe/public/js/frappe/list/list_view.js:1445 +#: frappe/public/js/frappe/list/list_view.js:1447 msgctxt "Description of a list view shortcut" msgid "Select list item" msgstr "crwdns100478:0crwdne100478:0" -#: frappe/public/js/frappe/list/list_view.js:1397 -#: frappe/public/js/frappe/list/list_view.js:1413 +#: frappe/public/js/frappe/list/list_view.js:1399 +#: frappe/public/js/frappe/list/list_view.js:1415 msgctxt "Description of a list view shortcut" msgid "Select multiple list items" msgstr "crwdns100480:0crwdne100480:0" @@ -23225,7 +23328,7 @@ msgstr "crwdns100642:0{0}crwdnd100642:0{1}crwdne100642:0" msgid "Server Action" msgstr "crwdns131128:0crwdne131128:0" -#: frappe/app.py:396 frappe/public/js/frappe/request.js:611 +#: frappe/app.py:399 frappe/public/js/frappe/request.js:611 #: frappe/www/error.html:36 frappe/www/error.py:15 msgid "Server Error" msgstr "crwdns100646:0crwdne100646:0" @@ -23291,7 +23394,7 @@ msgstr "crwdns100674:0crwdne100674:0" msgid "Session Defaults Saved" msgstr "crwdns100678:0crwdne100678:0" -#: frappe/app.py:373 +#: frappe/app.py:376 msgid "Session Expired" msgstr "crwdns100680:0crwdne100680:0" @@ -23300,7 +23403,7 @@ msgstr "crwdns100680:0crwdne100680:0" msgid "Session Expiry (idle timeout)" msgstr "crwdns131134:0crwdne131134:0" -#: frappe/core/doctype/system_settings/system_settings.py:122 +#: frappe/core/doctype/system_settings/system_settings.py:123 msgid "Session Expiry must be in format {0}" msgstr "crwdns100684:0{0}crwdne100684:0" @@ -23349,7 +23452,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:2113 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 msgid "Set Level" msgstr "crwdns148706:0crwdne148706:0" @@ -23403,7 +23506,7 @@ msgstr "crwdns100716:0crwdne100716:0" msgid "Set Role For" msgstr "crwdns131146:0crwdne131146:0" -#: frappe/core/doctype/user/user.js:136 +#: frappe/core/doctype/user/user.js:124 #: frappe/core/page/permission_manager/permission_manager.js:72 msgid "Set User Permissions" msgstr "crwdns100720:0crwdne100720:0" @@ -23565,7 +23668,7 @@ msgstr "crwdns111216:0crwdne111216:0" msgid "Setup > User Permissions" msgstr "crwdns111218:0crwdne111218:0" -#: frappe/public/js/frappe/views/reports/query_report.js:1826 +#: frappe/public/js/frappe/views/reports/query_report.js:1834 #: frappe/public/js/frappe/views/reports/report_view.js:1713 msgid "Setup Auto Email" msgstr "crwdns100774:0crwdne100774:0" @@ -23706,6 +23809,12 @@ msgstr "crwdns131180:0crwdne131180:0" msgid "Show Error" msgstr "crwdns100834:0crwdne100834:0" +#. Label of the show_external_link_warning (Select) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Show External Link Warning" +msgstr "crwdns159980:0crwdne159980:0" + #: frappe/public/js/frappe/form/layout.js:578 msgid "Show Fieldname (click to copy on clipboard)" msgstr "crwdns100838:0crwdne100838:0" @@ -23834,7 +23943,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:1849 +#: frappe/public/js/frappe/list/list_view.js:1851 msgid "Show Tags" msgstr "crwdns100886:0crwdne100886:0" @@ -24041,36 +24150,36 @@ msgstr "crwdns100954:0crwdne100954:0" msgid "Signups have been disabled for this website." msgstr "crwdns100956:0crwdne100956:0" -#. 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 "crwdns131244:0crwdne131244:0" - #. 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 "crwdns131246:0crwdne131246:0" +msgid "Simple Python Expression, Example: status == \"Invalid\"" +msgstr "crwdns159982:0crwdne159982:0" #. 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 "crwdns131248:0crwdne131248:0" +msgid "Simple Python Expression, Example: status == 'Open' and issue_type == 'Bug'" +msgstr "crwdns159984:0crwdne159984:0" + +#. 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 "crwdns159986:0crwdne159986:0" #. Label of the simultaneous_sessions (Int) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Simultaneous Sessions" msgstr "crwdns131250:0crwdne131250:0" -#: frappe/custom/doctype/customize_form/customize_form.py:126 +#: frappe/custom/doctype/customize_form/customize_form.py:128 msgid "Single DocTypes cannot be customized." msgstr "crwdns100966:0crwdne100966:0" #. Description of the 'Is Single' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:67 +#: frappe/core/doctype/doctype/doctype_list.js:68 msgid "Single Types have only one record no tables associated. Values are stored in tabSingles" msgstr "crwdns100968:0crwdne100968:0" @@ -24406,7 +24515,7 @@ msgid "Splash Image" msgstr "crwdns131300:0crwdne131300:0" #: frappe/desk/reportview.py:455 -#: frappe/public/js/frappe/web_form/web_form_list.js:175 +#: frappe/public/js/frappe/web_form/web_form_list.js:176 #: frappe/templates/print_formats/standard_macros.html:44 msgid "Sr" msgstr "crwdns101088:0crwdne101088:0" @@ -24438,7 +24547,7 @@ msgstr "crwdns101090:0crwdne101090:0" msgid "Standard" msgstr "crwdns101094:0crwdne101094:0" -#: frappe/model/delete_doc.py:79 +#: frappe/model/delete_doc.py:119 msgid "Standard DocType can not be deleted." msgstr "crwdns101108:0crwdne101108:0" @@ -24708,7 +24817,7 @@ msgstr "crwdns101252:0crwdne101252:0" #. Label of the sticky (Check) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json -#: frappe/public/js/frappe/form/grid_row.js:454 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Sticky" msgstr "crwdns152394:0crwdne152394:0" @@ -24738,7 +24847,7 @@ msgstr "crwdns131334:0crwdne131334:0" msgid "Store Attached PDF Document" msgstr "crwdns131336:0crwdne131336:0" -#: frappe/core/doctype/user/user.js:490 +#: frappe/core/doctype/user/user.js:497 msgid "Store the API secret securely. It won't be displayed again." msgstr "crwdns157442:0crwdne157442:0" @@ -24850,6 +24959,7 @@ msgstr "crwdns101312:0crwdne101312:0" #. 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' +#. Button label of the request-to-delete-data Web Form #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/docshare/docshare.json @@ -24858,10 +24968,11 @@ msgstr "crwdns101312:0crwdne101312:0" #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/quick_entry.js:225 #: frappe/public/js/frappe/ui/capture.js:307 +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json msgid "Submit" msgstr "crwdns101314:0crwdne101314:0" -#: frappe/public/js/frappe/list/list_view.js:2231 +#: frappe/public/js/frappe/list/list_view.js:2233 msgctxt "Button in list view actions menu" msgid "Submit" msgstr "crwdns101316:0crwdne101316:0" @@ -24871,7 +24982,7 @@ msgctxt "Button in web form" msgid "Submit" msgstr "crwdns111258:0crwdne111258:0" -#: frappe/public/js/frappe/ui/dialog.js:63 +#: frappe/public/js/frappe/ui/dialog.js:64 msgctxt "Primary action in dialog" msgid "Submit" msgstr "crwdns101328:0crwdne101328:0" @@ -24919,7 +25030,7 @@ msgstr "crwdns101344:0crwdne101344:0" msgid "Submit this document to confirm" msgstr "crwdns101346:0crwdne101346:0" -#: frappe/public/js/frappe/list/list_view.js:2236 +#: frappe/public/js/frappe/list/list_view.js:2238 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "crwdns101348:0{0}crwdne101348:0" @@ -24969,7 +25080,7 @@ msgstr "crwdns131368:0crwdne131368:0" #: 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:1171 +#: frappe/public/js/frappe/form/grid.js:1172 #: frappe/public/js/frappe/views/translation_manager.js:21 #: frappe/templates/includes/login/login.js:230 #: frappe/templates/includes/login/login.js:236 @@ -25184,7 +25295,7 @@ msgstr "crwdns101474:0crwdne101474:0" msgid "Syncing {0} of {1}" msgstr "crwdns101476:0{0}crwdnd101476:0{1}crwdne101476:0" -#: frappe/utils/data.py:2547 +#: frappe/utils/data.py:2573 msgid "Syntax Error" msgstr "crwdns101478:0crwdne101478:0" @@ -25495,7 +25606,7 @@ msgstr "crwdns131410:0crwdne131410:0" msgid "Table Trimmed" msgstr "crwdns112742:0crwdne112742:0" -#: frappe/public/js/frappe/form/grid.js:1170 +#: frappe/public/js/frappe/form/grid.js:1171 msgid "Table updated" msgstr "crwdns101536:0crwdne101536:0" @@ -25710,7 +25821,7 @@ msgstr "crwdns101628:0crwdne101628:0" msgid "The Auto Repeat for this document has been disabled." msgstr "crwdns101630:0crwdne101630:0" -#: frappe/public/js/frappe/form/grid.js:1193 +#: frappe/public/js/frappe/form/grid.js:1194 msgid "The CSV format is case sensitive" msgstr "crwdns101632:0crwdne101632:0" @@ -25778,7 +25889,7 @@ msgstr "crwdns101654:0crwdne101654:0" msgid "The contents of this email are strictly confidential. Please do not forward this email to anyone." msgstr "crwdns142920:0crwdne142920:0" -#: frappe/public/js/frappe/list/list_view.js:685 +#: frappe/public/js/frappe/list/list_view.js:687 msgid "The count shown is an estimated count. Click here to see the accurate count." msgstr "crwdns111470:0crwdne111470:0" @@ -25890,7 +26001,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:388 frappe/public/js/frappe/request.js:149 +#: frappe/app.py:391 frappe/public/js/frappe/request.js:149 msgid "The resource you are looking for is not available" msgstr "crwdns101700:0crwdne101700:0" @@ -25963,12 +26074,12 @@ 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:965 +#: frappe/public/js/frappe/views/reports/query_report.js:973 msgid "There are {0} with the same filters already in the queue:" msgstr "crwdns111278:0{0}crwdne111278:0" #: frappe/website/doctype/web_form/web_form.js:81 -#: frappe/website/doctype/web_form/web_form.js:317 +#: frappe/website/doctype/web_form/web_form.js:318 msgid "There can be only 9 Page Break fields in a Web Form" msgstr "crwdns101732:0crwdne101732:0" @@ -25992,11 +26103,11 @@ msgstr "crwdns157366:0crwdne157366:0" msgid "There is nothing new to show you right now." msgstr "crwdns112744:0crwdne112744:0" -#: frappe/core/doctype/file/file.py:640 frappe/utils/file_manager.py:372 +#: frappe/core/doctype/file/file.py:643 frappe/utils/file_manager.py:372 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:962 +#: frappe/public/js/frappe/views/reports/query_report.js:970 msgid "There is {0} with the same filters already in the queue:" msgstr "crwdns111280:0{0}crwdne111280:0" @@ -26008,7 +26119,7 @@ msgstr "crwdns101742:0crwdne101742:0" msgid "There was an error building this page" msgstr "crwdns101746:0crwdne101746:0" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:182 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:196 msgid "There was an error saving filters" msgstr "crwdns101748:0crwdne101748:0" @@ -26065,7 +26176,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:391 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:405 msgid "This Kanban Board will be private" msgstr "crwdns101774:0crwdne101774:0" @@ -26102,7 +26213,7 @@ msgstr "crwdns101776:0crwdne101776:0" msgid "This cannot be undone" msgstr "crwdns101778:0crwdne101778:0" -#: frappe/desk/doctype/number_card/number_card.js:480 +#: frappe/desk/doctype/number_card/number_card.js:484 msgctxt "Number Card" msgid "This card is visible only to Administrator and System Managers by default. Set a DocType to share with users who have read access." msgstr "crwdns159244:0crwdne159244:0" @@ -26125,7 +26236,7 @@ msgstr "crwdns112748:0crwdne112748:0" msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes." msgstr "crwdns112750:0crwdne112750:0" -#: frappe/model/delete_doc.py:113 +#: frappe/model/delete_doc.py:153 msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time." msgstr "crwdns111472:0crwdne111472:0" @@ -26167,7 +26278,7 @@ msgid "This field will appear only if the fieldname defined here has value OR th "eval:doc.age>18" msgstr "crwdns131480:0crwdne131480:0" -#: frappe/core/doctype/file/file.py:522 +#: frappe/core/doctype/file/file.py:525 msgid "This file is attached to a protected document and cannot be deleted." msgstr "crwdns154489:0crwdne154489:0" @@ -26202,7 +26313,7 @@ msgstr "crwdns148744:0crwdne148744:0" msgid "This goes above the slideshow." msgstr "crwdns131484:0crwdne131484:0" -#: frappe/public/js/frappe/views/reports/query_report.js:2189 +#: frappe/public/js/frappe/views/reports/query_report.js:2197 msgid "This is a background report. Please set the appropriate filters and then generate a new one." msgstr "crwdns101812:0crwdne101812:0" @@ -26252,7 +26363,7 @@ msgstr "crwdns101834:0crwdne101834:0" msgid "This month" msgstr "crwdns101836:0crwdne101836:0" -#: frappe/public/js/frappe/views/reports/query_report.js:1037 +#: frappe/public/js/frappe/views/reports/query_report.js:1045 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" @@ -26260,7 +26371,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:853 +#: frappe/public/js/frappe/views/reports/query_report.js:861 msgid "This report was generated {0}." msgstr "crwdns101844:0{0}crwdne101844:0" @@ -26402,9 +26513,11 @@ msgstr "crwdns131508:0crwdne131508:0" #. Label of the time_zone (Select) field in DocType 'System Settings' #. Label of the time_zone (Autocomplete) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #. 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/core/web_form/edit_profile/edit_profile.json #: frappe/desk/page/setup_wizard/setup_wizard.js:407 #: frappe/website/doctype/web_page_view/web_page_view.json msgid "Time Zone" @@ -26665,7 +26778,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:854 +#: frappe/public/js/frappe/views/reports/query_report.js:862 msgid "To get the updated report, click on {0}." msgstr "crwdns102050:0{0}crwdne102050:0" @@ -26740,7 +26853,7 @@ msgstr "crwdns102084:0crwdne102084:0" msgid "Toggle Sidebar" msgstr "crwdns102086:0crwdne102086:0" -#: frappe/public/js/frappe/list/list_view.js:1964 +#: frappe/public/js/frappe/list/list_view.js:1966 msgctxt "Button in list view menu" msgid "Toggle Sidebar" msgstr "crwdns102088:0crwdne102088:0" @@ -26866,7 +26979,7 @@ msgstr "crwdns131574:0crwdne131574:0" #: frappe/desk/query_report.py:587 #: frappe/public/js/frappe/views/reports/print_grid.html:45 -#: frappe/public/js/frappe/views/reports/query_report.js:1324 +#: frappe/public/js/frappe/views/reports/query_report.js:1332 #: frappe/public/js/frappe/views/reports/report_view.js:1553 msgid "Total" msgstr "crwdns102140:0crwdne102140:0" @@ -27023,7 +27136,7 @@ msgstr "crwdns131616:0crwdne131616:0" msgid "Translatable" msgstr "crwdns131618:0crwdne131618:0" -#: frappe/public/js/frappe/views/reports/query_report.js:2244 +#: frappe/public/js/frappe/views/reports/query_report.js:2252 msgid "Translate Data" msgstr "crwdns154320:0crwdne154320:0" @@ -27381,7 +27494,7 @@ msgstr "crwdns102338:0crwdne102338:0" msgid "Unable to update event" msgstr "crwdns102340:0crwdne102340:0" -#: frappe/core/doctype/file/file.py:486 +#: frappe/core/doctype/file/file.py:489 msgid "Unable to write file format for {0}" msgstr "crwdns102342:0{0}crwdne102342:0" @@ -27390,7 +27503,7 @@ msgstr "crwdns102342:0{0}crwdne102342:0" msgid "Unassign Condition" msgstr "crwdns131662:0crwdne131662:0" -#: frappe/app.py:396 +#: frappe/app.py:399 msgid "Uncaught Exception" msgstr "crwdns151458:0crwdne151458:0" @@ -27406,7 +27519,7 @@ msgstr "crwdns102350:0crwdne102350:0" msgid "Undo last action" msgstr "crwdns102352:0crwdne102352:0" -#: frappe/database/query.py:1495 +#: frappe/database/query.py:1497 msgid "Unescaped quotes in string literal: {0}" msgstr "crwdns155596:0{0}crwdne155596:0" @@ -27453,7 +27566,7 @@ msgstr "crwdns102366:0{0}crwdne102366:0" msgid "Unknown Rounding Method: {}" msgstr "crwdns102368:0crwdne102368:0" -#: frappe/auth.py:316 +#: frappe/auth.py:319 msgid "Unknown User" msgstr "crwdns102370:0crwdne102370:0" @@ -27519,8 +27632,8 @@ 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 +#: frappe/database/query.py:655 frappe/database/query.py:1389 +#: frappe/database/query.py:1399 msgid "Unsupported function or invalid field name: {0}" msgstr "crwdns155598:0{0}crwdne155598:0" @@ -27554,7 +27667,7 @@ msgstr "crwdns102410:0crwdne102410:0" #: 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:427 +#: frappe/public/js/frappe/form/grid_row.js:428 msgid "Update" msgstr "crwdns102412:0crwdne102412:0" @@ -27588,6 +27701,11 @@ msgstr "crwdns102426:0crwdne102426:0" msgid "Update Password" msgstr "crwdns149018:0crwdne149018:0" +#. Title of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Update Profile" +msgstr "crwdns160182:0crwdne160182:0" + #. Label of the update_series (Section Break) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -27803,11 +27921,7 @@ msgstr "crwdns131718:0crwdne131718:0" msgid "Use if the default settings don't seem to detect your data correctly" msgstr "crwdns152254:0crwdne152254:0" -#: frappe/model/db_query.py:436 -msgid "Use of function {0} in field is restricted" -msgstr "crwdns102510:0{0}crwdne102510:0" - -#: frappe/model/db_query.py:413 +#: frappe/model/db_query.py:411 msgid "Use of sub-query or function is restricted" msgstr "crwdns102512:0crwdne102512:0" @@ -28029,12 +28143,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:1944 +#: frappe/public/js/frappe/views/reports/query_report.js:1952 #: frappe/public/js/frappe/views/reports/report_view.js:1761 msgid "User Permissions" msgstr "crwdns102628:0crwdne102628:0" -#: frappe/public/js/frappe/list/list_view.js:1922 +#: frappe/public/js/frappe/list/list_view.js:1924 msgctxt "Button in list view menu" msgid "User Permissions" msgstr "crwdns102630:0crwdne102630:0" @@ -28178,7 +28292,7 @@ msgstr "crwdns111442:0{0}crwdnd111442:0{1}crwdne111442:0" msgid "User {0} is disabled" msgstr "crwdns102688:0{0}crwdne102688:0" -#: frappe/sessions.py:242 +#: frappe/sessions.py:243 msgid "User {0} is disabled. Please contact your System Manager." msgstr "crwdns127782:0{0}crwdne127782:0" @@ -28355,7 +28469,7 @@ msgstr "crwdns102754:0{0}crwdnd102754:0{1}crwdne102754:0" msgid "Value for a check field can be either 0 or 1" msgstr "crwdns102756:0crwdne102756:0" -#: frappe/custom/doctype/customize_form/customize_form.py:612 +#: frappe/custom/doctype/customize_form/customize_form.py:616 msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters" msgstr "crwdns102758:0{0}crwdnd102758:0{1}crwdnd102758:0{2}crwdne102758:0" @@ -28476,7 +28590,7 @@ msgstr "crwdns102800:0crwdne102800:0" msgid "View Audit Trail" msgstr "crwdns102802:0crwdne102802:0" -#: frappe/core/doctype/user/user.js:156 +#: frappe/core/doctype/user/user.js:144 msgid "View Doctype Permissions" msgstr "crwdns148750:0crwdne148750:0" @@ -28488,7 +28602,7 @@ msgstr "crwdns152398:0crwdne152398:0" msgid "View Full Log" msgstr "crwdns111324:0crwdne111324:0" -#: frappe/public/js/frappe/views/treeview.js:484 +#: frappe/public/js/frappe/views/treeview.js:486 #: frappe/public/js/frappe/widgets/quick_list_widget.js:258 msgid "View List" msgstr "crwdns102808:0crwdne102808:0" @@ -28498,7 +28612,7 @@ msgstr "crwdns102808:0crwdne102808:0" msgid "View Log" msgstr "crwdns102810:0crwdne102810:0" -#: frappe/core/doctype/user/user.js:147 +#: frappe/core/doctype/user/user.js:135 #: frappe/core/doctype/user_permission/user_permission.js:24 msgid "View Permitted Documents" msgstr "crwdns102812:0crwdne102812:0" @@ -28614,6 +28728,7 @@ msgid "Warehouse" msgstr "crwdns131818:0crwdne131818:0" #. Option for the 'Style' (Select) field in DocType 'Workflow State' +#: frappe/public/js/frappe/router.js:613 #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Warning" msgstr "crwdns131820:0crwdne131820:0" @@ -29259,7 +29374,7 @@ msgstr "crwdns112760:0crwdne112760:0" msgid "Workspace" msgstr "crwdns103156:0crwdne103156:0" -#: frappe/public/js/frappe/router.js:175 +#: frappe/public/js/frappe/router.js:180 msgid "Workspace {0} does not exist" msgstr "crwdns103162:0{0}crwdne103162:0" @@ -29381,7 +29496,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:1225 +#: frappe/public/js/frappe/views/reports/query_report.js:1233 msgid "Y Field" msgstr "crwdns103206:0crwdne103206:0" @@ -29443,7 +29558,7 @@ msgstr "crwdns131908:0crwdne131908:0" #: frappe/public/js/form_builder/utils.js:336 #: frappe/public/js/frappe/form/controls/link.js:498 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1665 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 #: frappe/website/doctype/help_article/templates/help_article.html:25 msgid "Yes" msgstr "crwdns103238:0crwdne103238:0" @@ -29479,6 +29594,10 @@ msgstr "crwdns158988:0{0}crwdne158988:0" msgid "You added {0} rows to {1}" msgstr "crwdns158990:0{0}crwdnd158990:0{1}crwdne158990:0" +#: frappe/public/js/frappe/router.js:642 +msgid "You are about to open an external link. To confirm, click the link again." +msgstr "crwdns159988:0crwdne159988:0" + #: frappe/public/js/frappe/dom.js:438 msgid "You are connected to internet." msgstr "crwdns103256:0crwdne103256:0" @@ -29522,7 +29641,7 @@ msgstr "crwdns103268:0crwdne103268:0" msgid "You are not allowed to export {} doctype" msgstr "crwdns103270:0crwdne103270:0" -#: frappe/public/js/frappe/views/treeview.js:448 +#: frappe/public/js/frappe/views/treeview.js:450 msgid "You are not allowed to print this report" msgstr "crwdns103272:0crwdne103272:0" @@ -29530,7 +29649,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:605 +#: frappe/website/doctype/web_form/web_form.py:632 msgid "You are not allowed to update this Web Form Document" msgstr "crwdns103276:0crwdne103276:0" @@ -29603,11 +29722,11 @@ 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:137 +#: frappe/model/delete_doc.py:177 msgid "You can disable this {0} instead of deleting it." msgstr "crwdns142902:0{0}crwdne142902:0" -#: frappe/core/doctype/file/file.py:758 +#: frappe/core/doctype/file/file.py:761 msgid "You can increase the limit from System Settings." msgstr "crwdns103306:0crwdne103306:0" @@ -29657,11 +29776,11 @@ msgstr "crwdns111342:0crwdne111342:0" msgid "You can use wildcard %" msgstr "crwdns103320:0crwdne103320:0" -#: frappe/custom/doctype/customize_form/customize_form.py:390 +#: frappe/custom/doctype/customize_form/customize_form.py:394 msgid "You can't set 'Options' for field {0}" msgstr "crwdns103322:0{0}crwdne103322:0" -#: frappe/custom/doctype/customize_form/customize_form.py:394 +#: frappe/custom/doctype/customize_form/customize_form.py:398 msgid "You can't set 'Translatable' for field {0}" msgstr "crwdns103324:0{0}crwdne103324:0" @@ -29679,7 +29798,7 @@ msgstr "crwdns103328:0{1}crwdne103328:0" msgid "You cannot create a dashboard chart from single DocTypes" msgstr "crwdns103330:0crwdne103330:0" -#: frappe/custom/doctype/customize_form/customize_form.py:386 +#: frappe/custom/doctype/customize_form/customize_form.py:390 msgid "You cannot unset 'Read Only' for field {0}" msgstr "crwdns103334:0{0}crwdne103334:0" @@ -29722,11 +29841,11 @@ 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:381 +#: frappe/app.py:384 msgid "You do not have enough permissions to complete the action" msgstr "crwdns103352:0crwdne103352:0" -#: frappe/database/query.py:529 +#: frappe/database/query.py:531 msgid "You do not have permission to access field: {0}" msgstr "crwdns155600:0{0}crwdne155600:0" @@ -29742,7 +29861,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:808 +#: frappe/website/doctype/web_form/web_form.py:835 msgid "You don't have permission to access the {0} DocType." msgstr "crwdns103364:0{0}crwdne103364:0" @@ -29766,7 +29885,7 @@ msgstr "crwdns158742:0crwdne158742:0" msgid "You have been successfully logged out" msgstr "crwdns103378:0crwdne103378:0" -#: frappe/custom/doctype/customize_form/customize_form.py:245 +#: frappe/custom/doctype/customize_form/customize_form.py:247 msgid "You have hit the row size limit on database table: {0}" msgstr "crwdns103380:0{0}crwdne103380:0" @@ -29794,7 +29913,7 @@ msgstr "crwdns103390:0{0}crwdne103390:0" msgid "You haven't added any Dashboard Charts or Number Cards yet." msgstr "crwdns111346:0crwdne111346:0" -#: frappe/public/js/frappe/list/list_view.js:501 +#: frappe/public/js/frappe/list/list_view.js:503 msgid "You haven't created a {0} yet" msgstr "crwdns103392:0{0}crwdne103392:0" @@ -29811,11 +29930,11 @@ msgstr "crwdns103396:0crwdne103396:0" msgid "You must add atleast one link." msgstr "crwdns103398:0crwdne103398:0" -#: frappe/website/doctype/web_form/web_form.py:804 +#: frappe/website/doctype/web_form/web_form.py:831 msgid "You must be logged in to use this form." msgstr "crwdns103400:0crwdne103400:0" -#: frappe/website/doctype/web_form/web_form.py:645 +#: frappe/website/doctype/web_form/web_form.py:672 msgid "You must login to submit this form" msgstr "crwdns103402:0crwdne103402:0" @@ -29930,6 +30049,10 @@ msgstr "crwdns103436:0crwdne103436:0" msgid "You viewed this" msgstr "crwdns103438:0crwdne103438:0" +#: frappe/public/js/frappe/router.js:653 +msgid "You will be redirected to:" +msgstr "crwdns159990:0crwdne159990:0" + #: frappe/core/doctype/user_invitation/user_invitation.py:113 msgid "You've been invited to join {0}" msgstr "crwdns157380:0{0}crwdne157380:0" @@ -29975,7 +30098,7 @@ msgstr "crwdns103446:0crwdne103446:0" msgid "Your account has been deleted" msgstr "crwdns103448:0crwdne103448:0" -#: frappe/auth.py:514 +#: frappe/auth.py:517 msgid "Your account has been locked and will resume after {0} seconds" msgstr "crwdns103450:0{0}crwdne103450:0" @@ -30041,7 +30164,7 @@ msgstr "crwdns103468:0crwdne103468:0" msgid "Your report is being generated in the background. You will receive an email on {0} with a download link once it is ready." msgstr "crwdns159246:0{0}crwdne159246:0" -#: frappe/app.py:374 +#: frappe/app.py:377 msgid "Your session has expired, please login again to continue." msgstr "crwdns103470:0crwdne103470:0" @@ -30378,7 +30501,7 @@ msgstr "crwdns131988:0crwdne131988:0" msgid "logged in" msgstr "crwdns103752:0crwdne103752:0" -#: frappe/website/doctype/web_form/web_form.js:362 +#: frappe/website/doctype/web_form/web_form.js:363 msgid "login_required" msgstr "crwdns111362:0crwdne111362:0" @@ -30716,7 +30839,7 @@ msgstr "crwdns104008:0crwdne104008:0" msgid "via Google Meet" msgstr "crwdns132068:0crwdne132068:0" -#: frappe/email/doctype/notification/notification.py:403 +#: frappe/email/doctype/notification/notification.py:405 msgid "via Notification" msgstr "crwdns104012:0crwdne104012:0" @@ -30826,7 +30949,7 @@ msgstr "crwdns104062:0{0}crwdne104062:0" msgid "{0} Dashboard" msgstr "crwdns104064:0{0}crwdne104064:0" -#: frappe/public/js/frappe/form/grid_row.js:486 +#: frappe/public/js/frappe/form/grid_row.js:487 #: frappe/public/js/frappe/list/list_settings.js:225 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:178 msgid "{0} Fields" @@ -30877,7 +31000,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:956 +#: frappe/public/js/frappe/views/reports/query_report.js:964 msgid "{0} Reports" msgstr "crwdns111368:0{0}crwdne111368:0" @@ -30950,7 +31073,7 @@ msgctxt "Form timeline" msgid "{0} attached {1}" msgstr "crwdns104126:0{0}crwdnd104126:0{1}crwdne104126:0" -#: frappe/core/doctype/system_settings/system_settings.py:152 +#: frappe/core/doctype/system_settings/system_settings.py:153 msgid "{0} can not be more than {1}" msgstr "crwdns104508:0{0}crwdnd104508:0{1}crwdne104508:0" @@ -31027,7 +31150,7 @@ 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 +#: frappe/database/query.py:710 msgid "{0} fields cannot contain backticks (`): {1}" msgstr "crwdns155602:0{0}crwdnd155602:0{1}crwdne155602:0" @@ -31072,7 +31195,7 @@ msgstr "crwdns104198:0{0}crwdnd104198:0{1}crwdne104198:0" msgid "{0} is a mandatory field" msgstr "crwdns104200:0{0}crwdne104200:0" -#: frappe/core/doctype/file/file.py:566 +#: frappe/core/doctype/file/file.py:569 msgid "{0} is a not a valid zip file" msgstr "crwdns104202:0{0}crwdne104202:0" @@ -31121,7 +31244,7 @@ msgstr "crwdns104222:0{0}crwdnd104222:0{1}crwdne104222:0" msgid "{0} is mandatory" msgstr "crwdns104224:0{0}crwdne104224:0" -#: frappe/database/query.py:485 +#: frappe/database/query.py:487 msgid "{0} is not a child table of {1}" msgstr "crwdns155604:0{0}crwdnd155604:0{1}crwdne155604:0" @@ -31141,7 +31264,7 @@ msgstr "crwdns104230:0{0}crwdne104230:0" msgid "{0} is not a valid Cron expression." msgstr "crwdns111446:0{0}crwdne111446:0" -#: frappe/public/js/frappe/form/controls/dynamic_link.js:27 +#: frappe/public/js/frappe/form/controls/dynamic_link.js:23 msgid "{0} is not a valid DocType for Dynamic Link" msgstr "crwdns104232:0{0}crwdne104232:0" @@ -31178,7 +31301,7 @@ msgstr "crwdns104244:0{0}crwdnd104244:0{1}crwdne104244:0" 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" -#: frappe/core/doctype/file/file.py:546 +#: frappe/core/doctype/file/file.py:549 msgid "{0} is not a zip file" msgstr "crwdns104248:0{0}crwdne104248:0" @@ -31226,7 +31349,7 @@ 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:1839 +#: frappe/public/js/frappe/list/list_view.js:1841 msgid "{0} items selected" msgstr "crwdns104268:0{0}crwdne104268:0" @@ -31312,11 +31435,11 @@ msgid "{0} not found" msgstr "crwdns104298:0{0}crwdne104298:0" #: frappe/core/doctype/report/report.py:427 -#: frappe/public/js/frappe/list/list_view.js:1211 +#: frappe/public/js/frappe/list/list_view.js:1213 msgid "{0} of {1}" msgstr "crwdns104300:0{0}crwdnd104300:0{1}crwdne104300:0" -#: frappe/public/js/frappe/list/list_view.js:1213 +#: frappe/public/js/frappe/list/list_view.js:1215 msgid "{0} of {1} ({2} rows with children)" msgstr "crwdns104302:0{0}crwdnd104302:0{1}crwdnd104302:0{2}crwdne104302:0" @@ -31366,7 +31489,7 @@ msgstr "crwdns104320:0{0}crwdne104320:0" msgid "{0} removed {1} rows from {2}" msgstr "crwdns159006:0{0}crwdnd159006:0{1}crwdnd159006:0{2}crwdne159006:0" -#: frappe/public/js/frappe/roles_editor.js:62 +#: frappe/public/js/frappe/roles_editor.js:64 msgid "{0} role does not have permission on any doctype" msgstr "crwdns111370:0{0}crwdne111370:0" @@ -31440,7 +31563,7 @@ msgstr "crwdns104350:0{0}crwdnd104350:0{1}crwdne104350:0" msgid "{0} un-shared this document with {1}" msgstr "crwdns104352:0{0}crwdnd104352:0{1}crwdne104352:0" -#: frappe/custom/doctype/customize_form/customize_form.py:254 +#: frappe/custom/doctype/customize_form/customize_form.py:256 msgid "{0} updated" msgstr "crwdns104354:0{0}crwdne104354:0" @@ -31500,7 +31623,7 @@ msgstr "crwdns104380:0{0}crwdnd104380:0{1}crwdnd104380:0{2}crwdne104380:0" msgid "{0} {1} not found" msgstr "crwdns104382:0{0}crwdnd104382:0{1}crwdne104382:0" -#: frappe/model/delete_doc.py:248 +#: frappe/model/delete_doc.py:288 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" @@ -31613,7 +31736,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:1283 +#: frappe/public/js/frappe/views/reports/query_report.js:1291 msgid "{0}: {1} vs {2}" msgstr "crwdns104436:0{0}crwdnd104436:0{1}crwdnd104436:0{2}crwdne104436:0" @@ -31649,11 +31772,11 @@ msgstr "crwdns104448:0{{{0}}}crwdnd104448:0{{field_name}}crwdne104448:0" msgid "{} Complete" msgstr "crwdns104450:0crwdne104450:0" -#: frappe/utils/data.py:2541 +#: frappe/utils/data.py:2567 msgid "{} Invalid python code on line {}" msgstr "crwdns104452:0crwdne104452:0" -#: frappe/utils/data.py:2550 +#: frappe/utils/data.py:2576 msgid "{} Possibly invalid python code.
{}" msgstr "crwdns104454:0crwdne104454:0" @@ -31679,7 +31802,7 @@ msgstr "crwdns104460:0crwdne104460:0" msgid "{} is not a valid date string." msgstr "crwdns104462:0crwdne104462:0" -#: frappe/commands/utils.py:562 +#: frappe/commands/utils.py:561 msgid "{} not found in PATH! This is required to access the console." msgstr "crwdns104464:0crwdne104464:0" diff --git a/frappe/locale/es.po b/frappe/locale/es.po index 106a78f15a..c7a42409da 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-09-21 09:33+0000\n" -"PO-Revision-Date: 2025-09-21 19:57\n" +"POT-Creation-Date: 2025-10-05 09:33+0000\n" +"PO-Revision-Date: 2025-10-06 22:59\n" "Last-Translator: developers@frappe.io\n" "Language-Team: Spanish\n" "MIME-Version: 1.0\n" @@ -78,7 +78,7 @@ msgstr "'En Búsqueda Global' no está permitido para el tipo {0} en la fila {1} msgid "'In List View' is not allowed for field {0} of type {1}" msgstr "'En vista de lista' no está permitido para el campo {0} del tipo {1}" -#: frappe/custom/doctype/customize_form/customize_form.py:363 +#: frappe/custom/doctype/customize_form/customize_form.py:367 msgid "'In List View' not allowed for type {0} in row {1}" msgstr "'En vista de lista' no está permitido para el tipo {0} en el renglón {1}" @@ -122,7 +122,7 @@ msgstr "0 - Borrador; 1 - Validado; 2 - Cancelado" msgid "0 is highest" msgstr "0 es más alto" -#: frappe/public/js/frappe/form/grid_row.js:892 +#: frappe/public/js/frappe/form/grid_row.js:893 msgid "1 = True & 0 = False" msgstr "1 = Verdadero y 0 = Falso" @@ -141,11 +141,11 @@ 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:955 +#: frappe/public/js/frappe/views/reports/query_report.js:963 msgid "1 Report" msgstr "1 Informe" -#: frappe/tests/test_utils.py:739 +#: frappe/tests/test_utils.py:845 msgid "1 day ago" msgstr "Hace 1 día" @@ -154,17 +154,17 @@ msgid "1 hour" msgstr "1 hora" #: frappe/public/js/frappe/utils/pretty_date.js:52 -#: frappe/tests/test_utils.py:737 +#: frappe/tests/test_utils.py:843 msgid "1 hour ago" msgstr "Hace una hora" #: frappe/public/js/frappe/utils/pretty_date.js:48 -#: frappe/tests/test_utils.py:735 +#: frappe/tests/test_utils.py:841 msgid "1 minute ago" msgstr "Hace un minuto" #: frappe/public/js/frappe/utils/pretty_date.js:66 -#: frappe/tests/test_utils.py:743 +#: frappe/tests/test_utils.py:849 msgid "1 month ago" msgstr "Hace 1 mes" @@ -186,37 +186,37 @@ msgctxt "User added row to child table" msgid "1 row to {0}" msgstr "" -#: frappe/tests/test_utils.py:734 +#: frappe/tests/test_utils.py:840 msgid "1 second ago" msgstr "Hace 1 segundo" #: frappe/public/js/frappe/utils/pretty_date.js:62 -#: frappe/tests/test_utils.py:741 +#: frappe/tests/test_utils.py:847 msgid "1 week ago" msgstr "Hace 1 semana" #: frappe/public/js/frappe/utils/pretty_date.js:70 -#: frappe/tests/test_utils.py:745 +#: frappe/tests/test_utils.py:851 msgid "1 year ago" msgstr "Hace 1 año" -#: frappe/tests/test_utils.py:738 +#: frappe/tests/test_utils.py:844 msgid "2 hours ago" msgstr "Hace 2 horas" -#: frappe/tests/test_utils.py:744 +#: frappe/tests/test_utils.py:850 msgid "2 months ago" msgstr "Hace 2 meses" -#: frappe/tests/test_utils.py:742 +#: frappe/tests/test_utils.py:848 msgid "2 weeks ago" msgstr "Hace 2 semanas" -#: frappe/tests/test_utils.py:746 +#: frappe/tests/test_utils.py:852 msgid "2 years ago" msgstr "Hace 2 años" -#: frappe/tests/test_utils.py:736 +#: frappe/tests/test_utils.py:842 msgid "3 minutes ago" msgstr "Hace 3 minutos" @@ -232,7 +232,7 @@ msgstr "4 horas" msgid "5 Records" msgstr "5 registros" -#: frappe/tests/test_utils.py:740 +#: frappe/tests/test_utils.py:846 msgid "5 days ago" msgstr "Hace 5 días" @@ -268,6 +268,16 @@ msgstr "{0} no es una URL válida" 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 "
Por favor, no lo actualice, ya que puede estropear su formulario. Utilice la opción Personalizar vista de formulario y campos personalizados para establecer las propiedades.
" +#. Introduction text of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "

Request a file containing your personally identifiable information (PII) that is saved on our system. The file will be in JSON format and is sent to you by email. If you would like to have your PII deleted from our system, please make a request to delete data.

" +msgstr "" + +#. Introduction text of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "

Send a request to delete your account and personally identifiable information (PII) that is stored on our system. You will receive an email to verify your request. Once the request is verified we will take care of deleting your PII. If you just want to check what PII we have stored, you can request your data.

" +msgstr "" + #. Content of the 'Help HTML' (HTML) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -704,6 +714,11 @@ msgstr "El nombre de un DocType debe empezar por una letra y sólo puede estar f msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three." msgstr "" +#. Success message of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "A download link with your data will be sent to the email address associated with your account." +msgstr "" + #: frappe/custom/doctype/custom_field/custom_field.py:175 msgid "A field with the name {0} already exists in {1}" msgstr "Ya existe un campo con el nombre {0} en {1}" @@ -830,7 +845,7 @@ msgstr "" #. 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.js:452 frappe/core/doctype/user/user.json +#: frappe/core/doctype/user/user.js:459 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 @@ -849,7 +864,7 @@ msgstr "Clave API y secreto para interactuar con el servidor de retransmisión. msgid "API Key cannot be regenerated" msgstr "No se puede regenerar la clave API" -#: frappe/core/doctype/user/user.js:449 +#: frappe/core/doctype/user/user.js:456 msgid "API Keys" msgstr "" @@ -873,7 +888,7 @@ msgstr "" #. 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.js:459 frappe/core/doctype/user/user.json +#: frappe/core/doctype/user/user.js:466 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" @@ -959,7 +974,7 @@ msgstr "Token de Acceso" msgid "Access Token URL" msgstr "URL de Token de Acceso" -#: frappe/auth.py:491 +#: frappe/auth.py:494 msgid "Access not allowed from this IP Address" msgstr "Acceso no permitido desde esta dirección IP" @@ -1075,7 +1090,7 @@ msgstr "La acción {0} falló en {1} {2}. Véalo en {3}" #: 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:842 +#: frappe/public/js/frappe/views/reports/query_report.js:850 msgid "Actions" msgstr "Acciones" @@ -1132,7 +1147,7 @@ msgstr "Registro de Actividad" #: 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:501 +#: frappe/public/js/frappe/form/grid_row.js:502 #: 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 @@ -1143,7 +1158,7 @@ msgstr "Registro de Actividad" msgid "Add" msgstr "Agregar" -#: frappe/public/js/frappe/form/grid_row.js:454 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Add / Remove Columns" msgstr "Añadir / Eliminar Columnas" @@ -1188,8 +1203,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:1832 -#: frappe/public/js/frappe/views/reports/query_report.js:1835 +#: frappe/public/js/frappe/views/reports/query_report.js:1840 +#: frappe/public/js/frappe/views/reports/query_report.js:1843 #: frappe/public/js/frappe/views/reports/report_view.js:360 #: frappe/public/js/frappe/views/reports/report_view.js:385 #: frappe/public/js/print_format_builder/Field.vue:112 @@ -1283,7 +1298,7 @@ msgstr "Añadir Suscriptores" msgid "Add Tags" msgstr "Añadir etiquetas" -#: frappe/public/js/frappe/list/list_view.js:2149 +#: frappe/public/js/frappe/list/list_view.js:2151 msgctxt "Button in list view actions menu" msgid "Add Tags" msgstr "Añadir etiquetas" @@ -1664,11 +1679,11 @@ msgstr "Alerta" msgid "Alerts and Notifications" msgstr "Alertas y Notificaciones" -#: frappe/database/query.py:1608 +#: frappe/database/query.py:1610 msgid "Alias cannot be a SQL keyword: {0}" msgstr "" -#: frappe/database/query.py:1533 +#: frappe/database/query.py:1535 msgid "Alias must be a string" msgstr "" @@ -2116,6 +2131,12 @@ msgstr "También se agrega el campo de dependencia de estado {0}" msgid "Alternative Email ID" msgstr "Correo electrónico alternativo" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Always" +msgstr "" + #. Label of the always_bcc (Data) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Always BCC Address" @@ -2192,6 +2213,11 @@ msgstr "Enmienda no permitida" msgid "Amendment naming rules updated." msgstr "Reglas de nomenclatura rectificada actualizadas." +#. Success message of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "An email to verify your request has been sent to your email address. Please verify your request to complete the process." +msgstr "" + #: 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" @@ -2374,7 +2400,7 @@ msgstr "Aplicado en" msgid "Apply" msgstr "Aplicar" -#: frappe/public/js/frappe/list/list_view.js:2134 +#: frappe/public/js/frappe/list/list_view.js:2136 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" msgstr "Aplicar regla de asignación" @@ -2459,7 +2485,7 @@ msgstr "Columnas archivados" msgid "Are you sure you want to cancel the invitation?" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2113 +#: frappe/public/js/frappe/list/list_view.js:2115 msgid "Are you sure you want to clear the assignments?" msgstr "¿Está seguro de que desea borrar las asignaciones?" @@ -2495,7 +2521,7 @@ msgstr "" 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:969 +#: frappe/public/js/frappe/views/reports/query_report.js:977 msgid "Are you sure you want to generate a new report?" msgstr "¿Está seguro de que desea generar un nuevo informe?" @@ -2503,7 +2529,7 @@ msgstr "¿Está seguro de que desea generar un nuevo informe?" msgid "Are you sure you want to merge {0} with {1}?" msgstr "¿Seguro que quieres fusionar {0} con {1}?" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:108 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:118 msgid "Are you sure you want to proceed?" msgstr "¿Está seguro de que desea continuar?" @@ -2558,6 +2584,12 @@ msgstr "Como el uso compartido de documentos está deshabilitado, otórgueles lo msgid "As per your request, your account and data on {0} associated with email {1} has been permanently deleted" msgstr "De acuerdo con su solicitud, su cuenta y los datos de {0} asociados al correo electrónico {1} se han eliminado de forma permanente." +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Ask" +msgstr "" + #. Label of the assign_condition (Code) field in DocType 'Assignment Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Assign Condition" @@ -2567,7 +2599,7 @@ msgstr "Asignar condición" msgid "Assign To" msgstr "Asignar a" -#: frappe/public/js/frappe/list/list_view.js:2095 +#: frappe/public/js/frappe/list/list_view.js:2097 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "Asignar a" @@ -2710,7 +2742,7 @@ msgstr "Asignaciones" msgid "Asynchronous" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:696 +#: frappe/public/js/frappe/form/grid_row.js:697 msgid "At least one column is required to show in the grid." msgstr "Se requiere al menos una columna para mostrar en la cuadrícula." @@ -3691,7 +3723,7 @@ msgstr "Eliminar a granel" msgid "Bulk Edit" msgstr "Edición masiva" -#: frappe/public/js/frappe/form/grid.js:1189 +#: frappe/public/js/frappe/form/grid.js:1190 msgid "Bulk Edit {0}" msgstr "Editar en masa {0}" @@ -3983,7 +4015,7 @@ msgstr "No se puede renombrar {0} a {1} porque {0} no existe." #. 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/doctype/doctype_list.js:131 #: frappe/core/doctype/user_document_type/user_document_type.json #: frappe/core/doctype/user_invitation/user_invitation.js:17 #: frappe/email/doctype/notification/notification.json @@ -3991,7 +4023,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:2204 +#: frappe/public/js/frappe/list/list_view.js:2206 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "Cancelar" @@ -4009,7 +4041,7 @@ msgstr "Cancelar todo" msgid "Cancel All Documents" msgstr "Cancelar todos los documentos" -#: frappe/public/js/frappe/list/list_view.js:2209 +#: frappe/public/js/frappe/list/list_view.js:2211 msgctxt "Title of confirmation dialog" msgid "Cancel {0} documents?" msgstr "¿Cancelar {0} documentos?" @@ -4062,7 +4094,7 @@ msgstr "No se puede quitar" msgid "Cannot Update After Submit" msgstr "No se puede Actualizar Después de Validar" -#: frappe/core/doctype/file/file.py:643 +#: frappe/core/doctype/file/file.py:646 msgid "Cannot access file path {0}" msgstr "No se puede acceder a la ruta del archivo {0}" @@ -4110,7 +4142,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:379 +#: frappe/model/delete_doc.py:419 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}" @@ -4190,7 +4222,7 @@ msgstr "No se puede habilitar {0} para un tipo de documento que puede ser valida msgid "Cannot find file {} on disk" msgstr "No se puede encontrar el archivo {} en el disco" -#: frappe/core/doctype/file/file.py:583 +#: frappe/core/doctype/file/file.py:586 msgid "Cannot get file contents of a Folder" msgstr "No se pueden obtener los contenidos de archivo de una carpeta" @@ -4198,7 +4230,7 @@ msgstr "No se pueden obtener los contenidos de archivo de una carpeta" msgid "Cannot have multiple printers mapped to a single print format." msgstr "No se pueden asignar varias impresoras a un único formato de impresión." -#: frappe/public/js/frappe/form/grid.js:1133 +#: frappe/public/js/frappe/form/grid.js:1134 msgid "Cannot import table with more than 5000 rows." msgstr "" @@ -4214,7 +4246,7 @@ msgstr "No se puede mapear porque falla la siguiente condición:" msgid "Cannot match column {0} with any field" msgstr "No se puede hacer coincidir la columna {0} con ningún campo" -#: frappe/public/js/frappe/form/grid_row.js:175 +#: frappe/public/js/frappe/form/grid_row.js:176 msgid "Cannot move row" msgstr "No se puede mover la fila" @@ -4243,11 +4275,11 @@ msgstr "No se puede validar {0}." msgid "Cannot update {0}" msgstr "No se puede Actualizar {0}" -#: frappe/model/db_query.py:1130 +#: frappe/model/db_query.py:1136 msgid "Cannot use sub-query here." msgstr "" -#: frappe/model/db_query.py:1162 +#: frappe/model/db_query.py:1168 msgid "Cannot use {0} in order/group by" msgstr "No se puede utilizar {0} en ordenar/agrupar por" @@ -4520,11 +4552,11 @@ msgstr "Tabla secundaria {0} para el campo {1}" #. Description of the 'Is Child Table' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:52 +#: frappe/core/doctype/doctype/doctype_list.js:53 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 +#: frappe/database/query.py:662 msgid "Child query fields for '{0}' must be a list or tuple." msgstr "" @@ -4580,7 +4612,7 @@ msgstr "Borrar y Agregar plantilla" msgid "Clear All" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2110 +#: frappe/public/js/frappe/list/list_view.js:2112 msgctxt "Button in list view actions menu" msgid "Clear Assignment" msgstr "Borrar Asignación" @@ -4674,7 +4706,7 @@ msgstr "Haga clic para establecer Filtros Dinámicos" msgid "Click to Set Filters" msgstr "Clic para establecer filtros" -#: frappe/public/js/frappe/list/list_view.js:739 +#: frappe/public/js/frappe/list/list_view.js:741 msgid "Click to sort by {0}" msgstr "Clic para ordenar por {0}" @@ -4852,7 +4884,7 @@ msgctxt "Shrink code field." msgid "Collapse" msgstr "Colapso" -#: frappe/public/js/frappe/views/reports/query_report.js:2113 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 #: frappe/public/js/frappe/views/treeview.js:123 msgid "Collapse All" msgstr "Desplegar todo" @@ -4907,7 +4939,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:1233 +#: frappe/public/js/frappe/views/reports/query_report.js:1241 #: frappe/public/js/frappe/widgets/widget_dialog.js:546 #: frappe/public/js/frappe/widgets/widget_dialog.js:694 #: frappe/website/doctype/color/color.json @@ -4963,11 +4995,11 @@ msgstr "Nombre de columna" msgid "Column Name cannot be empty" msgstr "Nombre de la columna no puede estar vacío" -#: frappe/public/js/frappe/form/grid_row.js:454 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Column Width" msgstr "Ancho de Columna" -#: frappe/public/js/frappe/form/grid_row.js:661 +#: frappe/public/js/frappe/form/grid_row.js:662 msgid "Column width cannot be zero." msgstr "El ancho de la columna no puede ser cero." @@ -4994,7 +5026,7 @@ msgstr "Columnas" msgid "Columns / Fields" msgstr "Columnas / Campos" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:397 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:411 msgid "Columns based on" msgstr "Columnas basadas en" @@ -5258,7 +5290,7 @@ msgstr "Configuración" msgid "Configure Chart" msgstr "Configurar el Gráfico" -#: frappe/public/js/frappe/form/grid_row.js:406 +#: frappe/public/js/frappe/form/grid_row.js:407 msgid "Configure Columns" msgstr "Configurar columnas" @@ -5285,7 +5317,7 @@ msgstr "Configura cómo se nombrarán los documentos corregidos.
\n\n" msgid "Configure various aspects of how document naming works like naming series, current counter." 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:412 frappe/public/js/frappe/dom.js:345 +#: frappe/core/doctype/user/user.js:400 frappe/public/js/frappe/dom.js:345 #: frappe/www/update-password.html:66 msgid "Confirm" msgstr "Confirmar" @@ -5304,7 +5336,7 @@ msgstr "Confirmar acceso" msgid "Confirm Deletion of Account" msgstr "Confirmar la eliminación de la cuenta" -#: frappe/core/doctype/user/user.js:196 +#: frappe/core/doctype/user/user.js:184 msgid "Confirm New Password" msgstr "Confirmar nueva contraseña" @@ -5557,7 +5589,7 @@ msgstr "Copiar error al Portapapeles" msgid "Copy to Clipboard" msgstr "Copiar al Portapapeles" -#: frappe/core/doctype/user/user.js:480 +#: frappe/core/doctype/user/user.js:487 msgid "Copy token to clipboard" msgstr "" @@ -5566,7 +5598,7 @@ msgstr "" msgid "Copyright" msgstr "Derechos de Autor" -#: frappe/custom/doctype/customize_form/customize_form.py:123 +#: frappe/custom/doctype/customize_form/customize_form.py:125 msgid "Core DocTypes cannot be customized." msgstr "Core DocTypes no se puede personalizar." @@ -5590,7 +5622,7 @@ 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 +#: frappe/database/query.py:566 msgid "Could not parse field: {0}" msgstr "" @@ -5682,13 +5714,13 @@ 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:1265 +#: frappe/public/js/frappe/views/reports/query_report.js:1273 #: frappe/public/js/frappe/views/workspace/workspace.js:469 #: frappe/workflow/page/workflow_builder/workflow_builder.js:46 msgid "Create" msgstr "Crear" -#: frappe/core/doctype/doctype/doctype_list.js:102 +#: frappe/core/doctype/doctype/doctype_list.js:103 msgid "Create & Continue" msgstr "Crear y Continuar" @@ -5702,7 +5734,7 @@ msgid "Create Card" msgstr "Crear tarjeta" #: frappe/public/js/frappe/views/reports/query_report.js:285 -#: frappe/public/js/frappe/views/reports/query_report.js:1192 +#: frappe/public/js/frappe/views/reports/query_report.js:1200 msgid "Create Chart" msgstr "Crear gráfico" @@ -5736,12 +5768,12 @@ msgstr "Crear registro" msgid "Create New" msgstr "Crear" -#: frappe/public/js/frappe/list/list_view.js:512 +#: frappe/public/js/frappe/list/list_view.js:514 msgctxt "Create a new document from list view" msgid "Create New" msgstr "Crear" -#: frappe/core/doctype/doctype/doctype_list.js:100 +#: frappe/core/doctype/doctype/doctype_list.js:101 msgid "Create New DocType" msgstr "Crear nuevo DocType" @@ -5749,7 +5781,7 @@ msgstr "Crear nuevo DocType" msgid "Create New Kanban Board" msgstr "Crear un nuevo Tablero Kanban" -#: frappe/core/doctype/user/user.js:276 +#: frappe/core/doctype/user/user.js:264 msgid "Create User Email" msgstr "Crear correo electrónico de usuario" @@ -5772,8 +5804,8 @@ msgstr "Crea un nuevo registro" #: frappe/public/js/frappe/form/controls/link.js:315 #: frappe/public/js/frappe/form/controls/link.js:317 #: frappe/public/js/frappe/form/link_selector.js:139 -#: frappe/public/js/frappe/list/list_view.js:504 -#: frappe/public/js/frappe/web_form/web_form_list.js:225 +#: frappe/public/js/frappe/list/list_view.js:506 +#: frappe/public/js/frappe/web_form/web_form_list.js:226 msgid "Create a new {0}" msgstr "Crear: {0}" @@ -5789,7 +5821,7 @@ msgstr "Crear o Editar Formato Impresión" msgid "Create or Edit Workflow" msgstr "Crear o editar Flujo de Trabajo" -#: frappe/public/js/frappe/list/list_view.js:507 +#: frappe/public/js/frappe/list/list_view.js:509 msgid "Create your first {0}" msgstr "Crea tu primer {0}" @@ -6136,7 +6168,7 @@ 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/core/doctype/doctype/doctype_list.js:83 #: frappe/website/doctype/website_theme/website_theme.json msgid "Custom?" msgstr "¿Es personalizado? (Solo para esta web)" @@ -6171,7 +6203,7 @@ msgstr "Personalizaciones para {0} exportadas a:
{1}" msgid "Customize" msgstr "Personalización" -#: frappe/public/js/frappe/list/list_view.js:1947 +#: frappe/public/js/frappe/list/list_view.js:1949 msgctxt "Button in list view menu" msgid "Customize" msgstr "Personalización" @@ -6190,7 +6222,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:343 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 msgid "Customize Form" msgstr "Personalizar Formulario" @@ -6421,7 +6453,7 @@ msgstr "Registro de Importación de Datos" msgid "Data Import Template" msgstr "Plantilla para importar datos" -#: frappe/custom/doctype/customize_form/customize_form.py:615 +#: frappe/custom/doctype/customize_form/customize_form.py:619 msgid "Data Too Long" msgstr "Datos demasiado largos" @@ -6452,7 +6484,7 @@ msgstr "Uso de tamaño de fila de base de datos" msgid "Database Storage Usage By Tables" msgstr "Uso de almacenamiento de bases de datos por Tablas" -#: frappe/custom/doctype/customize_form/customize_form.py:249 +#: frappe/custom/doctype/customize_form/customize_form.py:251 msgid "Database Table Row Size Limit" msgstr "Limite de tamaño de la tabla de la base de datos" @@ -6822,13 +6854,13 @@ msgstr "Retrasado" #: frappe/public/js/frappe/form/toolbar.js:464 #: frappe/public/js/frappe/views/reports/report_view.js:1749 #: frappe/public/js/frappe/views/treeview.js:329 -#: frappe/public/js/frappe/web_form/web_form_list.js:282 +#: frappe/public/js/frappe/web_form/web_form_list.js:283 #: frappe/templates/discussions/reply_card.html:35 #: frappe/templates/discussions/reply_section.html:29 msgid "Delete" msgstr "Eliminar" -#: frappe/public/js/frappe/list/list_view.js:2172 +#: frappe/public/js/frappe/list/list_view.js:2174 msgctxt "Button in list view actions menu" msgid "Delete" msgstr "Eliminar" @@ -6861,7 +6893,7 @@ msgstr "Eliminar columna" msgid "Delete Data" msgstr "Borrar datos" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:106 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:116 msgid "Delete Kanban Board" msgstr "Eliminar Tablero Kanban" @@ -6875,7 +6907,7 @@ msgctxt "Title of confirmation dialog" msgid "Delete Tab" msgstr "Eliminar pestaña" -#: frappe/public/js/frappe/views/reports/query_report.js:936 +#: frappe/public/js/frappe/views/reports/query_report.js:944 msgid "Delete and Generate New" msgstr "Eliminar y Generar Nuevo" @@ -6917,12 +6949,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:2177 +#: frappe/public/js/frappe/list/list_view.js:2179 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:2183 +#: frappe/public/js/frappe/list/list_view.js:2185 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "¿Eliminar {0} artículos de forma permanente?" @@ -7419,10 +7451,14 @@ msgstr "No crear nuevo usuario" msgid "Do not create new user if user with email does not exist in the system" msgstr "No crear nuevo usuario si el usuario con correo electrónico no existe en el sistema" -#: frappe/public/js/frappe/form/grid.js:1194 +#: frappe/public/js/frappe/form/grid.js:1195 msgid "Do not edit headers which are preset in the template" msgstr "No edite los encabezados que están preestablecidos en la plantilla" +#: frappe/public/js/frappe/router.js:624 +msgid "Do not warn me again about {0}" +msgstr "" + #: frappe/core/doctype/system_settings/system_settings.js:71 msgid "Do you still want to proceed?" msgstr "¿Aún quiere continuar?" @@ -7849,7 +7885,7 @@ msgstr "Titulo del documento" #: 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/public/js/frappe/roles_editor.js:68 #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json #: frappe/workflow/doctype/workflow/workflow.json msgid "Document Type" @@ -7900,15 +7936,15 @@ msgstr "Documento desbloqueado" msgid "Document follow is not enabled for this user." msgstr "El seguimiento de documentos no está habilitado para este usuario." -#: frappe/public/js/frappe/list/list_view.js:1300 +#: frappe/public/js/frappe/list/list_view.js:1302 msgid "Document has been cancelled" msgstr "El documento ha sido cancelado" -#: frappe/public/js/frappe/list/list_view.js:1299 +#: frappe/public/js/frappe/list/list_view.js:1301 msgid "Document has been submitted" msgstr "El documento ha sido validado" -#: frappe/public/js/frappe/list/list_view.js:1298 +#: frappe/public/js/frappe/list/list_view.js:1300 msgid "Document is in draft state" msgstr "El documento está en estado de borrador" @@ -8050,7 +8086,7 @@ msgstr "Dona" msgid "Double click to edit label" msgstr "Doble clic para editar etiqueta" -#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:467 +#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:474 #: frappe/email/doctype/auto_email_report/auto_email_report.js:8 #: frappe/public/js/frappe/form/grid.js:66 msgid "Download" @@ -8083,7 +8119,7 @@ msgstr "Enlace de descarga" msgid "Download PDF" msgstr "Descargar PDF" -#: frappe/public/js/frappe/views/reports/query_report.js:832 +#: frappe/public/js/frappe/views/reports/query_report.js:840 msgid "Download Report" msgstr "Descargar Informe" @@ -8283,8 +8319,8 @@ msgstr "ESC" #: 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:880 -#: frappe/public/js/frappe/views/reports/query_report.js:1783 +#: frappe/public/js/frappe/views/reports/query_report.js:888 +#: frappe/public/js/frappe/views/reports/query_report.js:1791 #: 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 @@ -8296,7 +8332,7 @@ msgstr "ESC" msgid "Edit" msgstr "Editar" -#: frappe/public/js/frappe/list/list_view.js:2258 +#: frappe/public/js/frappe/list/list_view.js:2260 msgctxt "Button in list view actions menu" msgid "Edit" msgstr "Editar" @@ -8306,7 +8342,7 @@ msgctxt "Button in web form" msgid "Edit" msgstr "Editar" -#: frappe/public/js/frappe/form/grid_row.js:349 +#: frappe/public/js/frappe/form/grid_row.js:350 msgctxt "Edit grid row" msgid "Edit" msgstr "Editar" @@ -8335,7 +8371,7 @@ msgstr "Editar HTML personalizado" msgid "Edit DocType" msgstr "Editar DocType" -#: frappe/public/js/frappe/list/list_view.js:1974 +#: frappe/public/js/frappe/list/list_view.js:1976 msgctxt "Button in list view menu" msgid "Edit DocType" msgstr "Editar DocType" @@ -8455,7 +8491,7 @@ msgstr "Editar {0}" #. 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/core/doctype/doctype/doctype_list.js:58 #: frappe/custom/doctype/customize_form/customize_form.json msgid "Editable Grid" msgstr "Cruadicula Editable" @@ -8500,6 +8536,8 @@ msgstr "Selector de elementos" #. 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' +#. Label of a field in the request-data Web Form +#. Label of a field in the request-to-delete-data Web Form #: frappe/automation/workspace/tools/tools.json #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/custom_docperm/custom_docperm.json @@ -8518,6 +8556,8 @@ msgstr "Selector de elementos" #: 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/website/web_form/request_data/request_data.json +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json #: frappe/www/login.html:8 frappe/www/login.py:104 msgid "Email" msgstr "Correo electrónico" @@ -8749,7 +8789,7 @@ msgstr "El correo electrónico se ha marcado como spam" msgid "Email has been moved to trash" msgstr "El correo electrónico se ha movido a la papelera" -#: frappe/core/doctype/user/user.js:278 +#: frappe/core/doctype/user/user.js:266 msgid "Email is mandatory to create User Email" msgstr "El correo electrónico es obligatorio para crear el correo electrónico del usuario." @@ -8792,7 +8832,7 @@ 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 +#: frappe/database/query.py:1539 msgid "Empty alias is not allowed" msgstr "" @@ -8800,7 +8840,7 @@ msgstr "" msgid "Empty column" msgstr "Columna vacía" -#: frappe/database/query.py:1455 +#: frappe/database/query.py:1457 msgid "Empty string arguments are not allowed" msgstr "" @@ -9257,9 +9297,9 @@ msgstr "Error en el script del cliente." msgid "Error in Header/Footer Script" msgstr "Error en el script de encabezado/pie de página" -#: frappe/email/doctype/notification/notification.py:640 -#: frappe/email/doctype/notification/notification.py:780 -#: frappe/email/doctype/notification/notification.py:786 +#: frappe/email/doctype/notification/notification.py:642 +#: frappe/email/doctype/notification/notification.py:782 +#: frappe/email/doctype/notification/notification.py:788 msgid "Error in Notification" msgstr "Error en la Notificación" @@ -9279,7 +9319,7 @@ msgstr "" msgid "Error while connecting to email account {0}" msgstr "Error al conectarte a la cuenta de correo electrónico {0}" -#: frappe/email/doctype/notification/notification.py:777 +#: frappe/email/doctype/notification/notification.py:779 msgid "Error while evaluating Notification {0}. Please fix your template." msgstr "Error al evaluar Notificación {0}. Por favor arregla tu plantilla." @@ -9440,7 +9480,7 @@ msgstr "" msgid "Executing..." msgstr "Ejecutando..." -#: frappe/public/js/frappe/views/reports/query_report.js:2132 +#: frappe/public/js/frappe/views/reports/query_report.js:2140 msgid "Execution Time: {0} sec" msgstr "Tiempo de ejecución: {0} segundos" @@ -9466,12 +9506,12 @@ msgctxt "Enlarge code field." msgid "Expand" msgstr "Expandir" -#: frappe/public/js/frappe/views/reports/query_report.js:2113 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 #: frappe/public/js/frappe/views/treeview.js:133 msgid "Expand All" msgstr "Expandir todo" -#: frappe/database/query.py:352 +#: frappe/database/query.py:354 msgid "Expected 'and' or 'or' operator, found: {0}" msgstr "" @@ -9529,13 +9569,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:1820 +#: frappe/public/js/frappe/views/reports/query_report.js:1828 #: frappe/public/js/frappe/views/reports/report_view.js:1629 #: frappe/public/js/frappe/widgets/chart_widget.js:315 msgid "Export" msgstr "Exportar" -#: frappe/public/js/frappe/list/list_view.js:2280 +#: frappe/public/js/frappe/list/list_view.js:2282 msgctxt "Button in list view actions menu" msgid "Export" msgstr "Exportar" @@ -9728,7 +9768,7 @@ msgstr "Fallo al calcular el cuerpo de la solicitud: {}" msgid "Failed to connect to server" msgstr "Error al conectar con el servidor" -#: frappe/auth.py:698 +#: frappe/auth.py:701 msgid "Failed to decode token, please provide a valid base64-encoded token." msgstr "No se pudo decodificar el token, proporcione un token codificado en base64 válido." @@ -9892,7 +9932,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:236 -#: frappe/public/js/frappe/views/reports/query_report.js:1879 +#: frappe/public/js/frappe/views/reports/query_report.js:1887 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_form_list_column/web_form_list_column.json msgid "Field" @@ -9975,7 +10015,7 @@ msgstr "El campo {0} se refiere a un doctype inexistente {1}." msgid "Field {0} not found." msgstr "Campo {0} no encontrado." -#: frappe/email/doctype/notification/notification.py:545 +#: frappe/email/doctype/notification/notification.py:547 msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link" msgstr "El campo {0} del documento {1} no es ni un campo de número de móvil ni un enlace de cliente o usuario" @@ -9993,7 +10033,7 @@ msgstr "El campo {0} del documento {1} no es ni un campo de número de móvil ni #: 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:454 +#: frappe/public/js/frappe/form/grid_row.js:455 #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Fieldname" msgstr "Nombre del campo" @@ -10074,7 +10114,7 @@ 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 +#: frappe/database/query.py:613 msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function" msgstr "" @@ -10102,7 +10142,7 @@ msgstr "FieldType" msgid "Fieldtype cannot be changed from {0} to {1}" msgstr "Tipo de campo no se puede cambiar de {0} a {1}" -#: frappe/custom/doctype/customize_form/customize_form.py:589 +#: frappe/custom/doctype/customize_form/customize_form.py:593 msgid "Fieldtype cannot be changed from {0} to {1} in row {2}" msgstr "El tipo de campo de {0} no puede ser cambiado a {1} en la línea {2}" @@ -10168,7 +10208,7 @@ msgstr "URL del archivo" msgid "File backup is ready" msgstr "La copia de seguridad de archivos está lista" -#: frappe/core/doctype/file/file.py:646 +#: frappe/core/doctype/file/file.py:649 msgid "File name cannot have {0}" msgstr "El nombre de archivo no puede tener {0}" @@ -10176,7 +10216,7 @@ msgstr "El nombre de archivo no puede tener {0}" msgid "File not attached" msgstr "Archivo no adjuntado" -#: frappe/core/doctype/file/file.py:756 frappe/public/js/frappe/request.js:200 +#: frappe/core/doctype/file/file.py:759 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 "El tamaño del archivo supera el tamaño máximo permitido de {0} MB" @@ -10189,7 +10229,7 @@ msgstr "El archivo es demasiado grande" msgid "File type of {0} is not allowed" msgstr "El tipo de archivo {0} no está permitido" -#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:448 +#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:451 msgid "File {0} does not exist" msgstr "Archivo {0} no existe" @@ -10243,11 +10283,11 @@ msgstr "Nombre del Filtro" msgid "Filter Values" msgstr "Valores del Filtro" -#: frappe/database/query.py:358 +#: frappe/database/query.py:360 msgid "Filter condition missing after operator: {0}" msgstr "" -#: frappe/database/query.py:425 +#: frappe/database/query.py:427 msgid "Filter fields cannot contain backticks (`)." msgstr "" @@ -10324,7 +10364,7 @@ msgstr "Sección de filtros" msgid "Filters applied for {0}" msgstr "Filtros aplicados para {0}" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:188 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:202 msgid "Filters saved" msgstr "Filtros guardados" @@ -10372,9 +10412,12 @@ msgstr "Primer día de la semana" #. Label of the first_name (Data) field in DocType 'Contact' #. Label of the first_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json #: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:44 -#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:15 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:15 msgid "First Name" msgstr "Primer Nombre" @@ -10455,7 +10498,7 @@ msgstr "Nombre de la carpeta" msgid "Folder name should not include '/' (slash)" msgstr "Nombre de carpeta no debe incluir '/' (slash)" -#: frappe/core/doctype/file/file.py:494 +#: frappe/core/doctype/file/file.py:497 msgid "Folder {0} is not empty" msgstr "Carpeta {0} no está vacía" @@ -10658,7 +10701,7 @@ msgstr "Por Usuario" msgid "For Value" msgstr "Por valor" -#: frappe/public/js/frappe/views/reports/query_report.js:2129 +#: frappe/public/js/frappe/views/reports/query_report.js:2137 #: frappe/public/js/frappe/views/reports/report_view.js:108 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)." @@ -10943,7 +10986,7 @@ msgstr "Desde la fecha" msgid "From Date Field" msgstr "Desde campo de fecha" -#: frappe/public/js/frappe/views/reports/query_report.js:1840 +#: frappe/public/js/frappe/views/reports/query_report.js:1848 msgid "From Document Type" msgstr "Desde tipo de documento" @@ -11005,13 +11048,13 @@ msgstr "Función basada en" msgid "Function {0} is not whitelisted." msgstr "La función {0} no está en la lista blanca." -#: frappe/database/query.py:1417 +#: frappe/database/query.py:1419 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'" +msgid "Further sub-groups can only be created under records marked as 'Group'" +msgstr "" #: frappe/core/doctype/communication/communication.js:291 msgid "Fw: {0}" @@ -11070,7 +11113,7 @@ msgstr "General" msgid "Generate Keys" msgstr "Generar Llaves" -#: frappe/public/js/frappe/views/reports/query_report.js:874 +#: frappe/public/js/frappe/views/reports/query_report.js:882 msgid "Generate New Report" msgstr "Generar Nuevo Informe" @@ -11486,14 +11529,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 +#: frappe/database/query.py:752 msgid "Group By must be a string" msgstr "" -#: frappe/public/js/frappe/views/treeview.js:418 -msgid "Group Node" -msgstr "Agrupar por nota" - #. Label of the ldap_group_objectclass (Data) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Group Object Class" @@ -11823,7 +11862,7 @@ msgstr "Oculto" msgid "Hidden Fields" msgstr "Campos ocultos" -#: frappe/public/js/frappe/views/reports/query_report.js:1642 +#: frappe/public/js/frappe/views/reports/query_report.js:1650 msgid "Hidden columns include: {0}" msgstr "" @@ -11935,7 +11974,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:1849 +#: frappe/public/js/frappe/list/list_view.js:1851 msgid "Hide Tags" msgstr "Ocultar etiquetas" @@ -12194,7 +12233,7 @@ msgstr "Si el estado de flujo de trabajo facturado no anulará el estado en la v #: frappe/core/doctype/doctype/doctype.py:1777 #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45 -#: frappe/public/js/frappe/roles_editor.js:66 +#: frappe/public/js/frappe/roles_editor.js:68 msgid "If Owner" msgstr "Si es dueño" @@ -12422,8 +12461,8 @@ msgstr "Aplicaciones ignoradas" msgid "Illegal Document Status for {0}" msgstr "Estado del Documento ilegal para {0}" -#: frappe/model/db_query.py:453 frappe/model/db_query.py:456 -#: frappe/model/db_query.py:1121 +#: frappe/model/db_query.py:454 frappe/model/db_query.py:457 +#: frappe/model/db_query.py:1122 msgid "Illegal SQL Query" msgstr "Consulta SQL ilegal" @@ -12510,11 +12549,11 @@ msgstr "Imágenes" #. Option for the 'Operation' (Select) field in DocType 'Activity Log' #: frappe/core/doctype/activity_log/activity_log.json -#: frappe/core/doctype/user/user.js:384 +#: frappe/core/doctype/user/user.js:372 msgid "Impersonate" msgstr "Suplantar" -#: frappe/core/doctype/user/user.js:411 +#: frappe/core/doctype/user/user.js:399 msgid "Impersonate as {0}" msgstr "Suplantando a {0}" @@ -12544,7 +12583,7 @@ msgstr "Implícito" msgid "Import" msgstr "Importar / Exportar" -#: frappe/public/js/frappe/list/list_view.js:1911 +#: frappe/public/js/frappe/list/list_view.js:1913 msgctxt "Button in list view menu" msgid "Import" msgstr "Importar / Exportar" @@ -12773,15 +12812,15 @@ 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/form/print_utils.js:59 -#: frappe/public/js/frappe/views/reports/query_report.js:1620 +#: frappe/public/js/frappe/views/reports/query_report.js:1628 msgid "Include filters" msgstr "Incluir filtros" -#: frappe/public/js/frappe/views/reports/query_report.js:1640 +#: frappe/public/js/frappe/views/reports/query_report.js:1648 msgid "Include hidden columns" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1612 +#: frappe/public/js/frappe/views/reports/query_report.js:1620 msgid "Include indentation" msgstr "Incluir sangría" @@ -12828,7 +12867,7 @@ msgstr "Cuenta de Correo Electrónico entrante no es correcta" msgid "Incomplete Virtual Doctype Implementation" msgstr "Implementación incompleta del DocType virtual" -#: frappe/auth.py:255 +#: frappe/auth.py:258 msgid "Incomplete login details" msgstr "Detalles de inicio de sesión incompletos" @@ -12939,7 +12978,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:1885 +#: frappe/public/js/frappe/views/reports/query_report.js:1893 msgid "Insert After" msgstr "Insertar Después" @@ -13012,7 +13051,7 @@ msgstr "Instrucciones enviadas por correo electrónico" msgid "Insufficient Permission Level for {0}" msgstr "Nivel de permiso insuficiente para {0}" -#: frappe/database/query.py:806 frappe/database/query.py:1052 +#: frappe/database/query.py:808 frappe/database/query.py:1054 msgid "Insufficient Permission for {0}" msgstr "Permiso insuficiente para {0}" @@ -13128,7 +13167,7 @@ msgid "Invalid" msgstr "Inválido" #: frappe/public/js/form_builder/utils.js:221 -#: frappe/public/js/frappe/form/grid_row.js:849 +#: frappe/public/js/frappe/form/grid_row.js:850 #: frappe/public/js/frappe/form/layout.js:810 #: frappe/public/js/frappe/views/reports/report_view.js:721 msgid "Invalid \"depends_on\" expression" @@ -13186,8 +13225,8 @@ 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 +#: frappe/database/query.py:429 frappe/database/query.py:456 +#: frappe/database/query.py:466 frappe/database/query.py:489 msgid "Invalid Filter" msgstr "" @@ -13259,7 +13298,7 @@ msgstr "Contraseña invalida" msgid "Invalid Phone Number" msgstr "Numero de telefono invalido" -#: frappe/auth.py:94 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 +#: frappe/auth.py:97 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 #: frappe/www/login.py:128 msgid "Invalid Request" msgstr "Solicitud inválida" @@ -13299,7 +13338,7 @@ msgstr "Secreto de Webhook inválido" msgid "Invalid aggregate function" msgstr "Función de agregación inválida" -#: frappe/database/query.py:1542 +#: frappe/database/query.py:1544 msgid "Invalid alias format: {0}. Alias must be a simple identifier." msgstr "" @@ -13307,19 +13346,19 @@ msgstr "" msgid "Invalid app" msgstr "" -#: frappe/database/query.py:1468 +#: frappe/database/query.py:1470 msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed." msgstr "" -#: frappe/database/query.py:1444 +#: frappe/database/query.py:1446 msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed." msgstr "" -#: frappe/database/query.py:460 +#: frappe/database/query.py:462 msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed." msgstr "" -#: frappe/database/query.py:575 +#: frappe/database/query.py:577 msgid "Invalid characters in table name: {0}" msgstr "" @@ -13327,11 +13366,11 @@ msgstr "" msgid "Invalid column" msgstr "Columna inválida" -#: frappe/database/query.py:381 +#: frappe/database/query.py:383 msgid "Invalid condition type in nested filters: {0}" msgstr "" -#: frappe/database/query.py:787 +#: frappe/database/query.py:789 msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'." msgstr "" @@ -13347,23 +13386,23 @@ 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/database/query.py:1301 +#: frappe/database/query.py:1303 msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'." msgstr "" -#: frappe/database/query.py:734 +#: frappe/database/query.py:736 msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'." msgstr "" -#: frappe/database/query.py:1620 +#: frappe/database/query.py:1622 msgid "Invalid field name in function: {0}. Only simple field names are allowed." msgstr "" -#: frappe/utils/data.py:2215 +#: frappe/utils/data.py:2241 msgid "Invalid field name {0}" msgstr "Nombre de campo inválido {0}" -#: frappe/database/query.py:668 +#: frappe/database/query.py:670 msgid "Invalid field type: {0}" msgstr "" @@ -13375,11 +13414,11 @@ 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:364 +#: frappe/database/query.py:366 msgid "Invalid filter condition: {0}. Expected a list or tuple." msgstr "" -#: frappe/database/query.py:450 +#: frappe/database/query.py:452 msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'." msgstr "" @@ -13387,11 +13426,11 @@ msgstr "" msgid "Invalid filter: {0}" msgstr "Filtro no válido: {0}" -#: frappe/database/query.py:1422 +#: frappe/database/query.py:1424 msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed." msgstr "" -#: frappe/database/query.py:1383 +#: frappe/database/query.py:1385 msgid "Invalid function dictionary format" msgstr "" @@ -13428,23 +13467,27 @@ 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:337 +#: frappe/app.py:340 msgid "Invalid request arguments" msgstr "Argumentos de solicitud inválidos" +#: frappe/app.py:327 +msgid "Invalid request body" +msgstr "" + #: frappe/core/doctype/user_invitation/user_invitation.py:181 msgid "Invalid role" msgstr "" -#: frappe/database/query.py:410 +#: frappe/database/query.py:412 msgid "Invalid simple filter format: {0}" msgstr "" -#: frappe/database/query.py:341 +#: frappe/database/query.py:343 msgid "Invalid start for filter condition: {0}. Expected a list or tuple." msgstr "" -#: frappe/database/query.py:1489 +#: frappe/database/query.py:1491 msgid "Invalid string literal format: {0}" msgstr "" @@ -13548,7 +13591,7 @@ msgstr "Es Calendario y 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/doctype_list.js:50 #: frappe/core/doctype/doctype_link/doctype_link.json msgid "Is Child Table" msgstr "Es una tabla secundaria" @@ -13601,6 +13644,10 @@ msgstr "Es Carpeta" msgid "Is Global" msgstr "Es Global" +#: frappe/public/js/frappe/views/treeview.js:418 +msgid "Is Group" +msgstr "Es un grupo" + #. Label of the is_hidden (Check) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "Is Hidden" @@ -13689,7 +13736,7 @@ 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/core/doctype/doctype/doctype_list.js:65 #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Is Single" msgstr "Es individual" @@ -13725,7 +13772,7 @@ msgstr "Es estándar" #. Label of the is_submittable (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:39 +#: frappe/core/doctype/doctype/doctype_list.js:40 msgid "Is Submittable" msgstr "Se puede validar" @@ -13931,11 +13978,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:388 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:402 msgid "Kanban Board Name" msgstr "Nombre del Tablero Kanban" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:265 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:279 msgctxt "Button in kanban view menu" msgid "Kanban Settings" msgstr "Configuración de Kanban" @@ -14233,10 +14280,13 @@ msgstr "Paisaje" #. 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' +#. Label of a field in the edit-profile Web Form #: 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:117 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/printing/page/print/print.js:117 #: frappe/public/js/frappe/form/templates/print_layout.html:11 msgid "Language" msgstr "Idioma" @@ -14324,9 +14374,12 @@ msgstr "El mes pasado" #. Label of the last_name (Data) field in DocType 'Contact' #. Label of the last_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json #: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:45 -#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:19 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:19 msgid "Last Name" msgstr "Apellido" @@ -14567,7 +14620,7 @@ msgstr "Membrete en HTML" #: 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/public/js/frappe/roles_editor.js:68 #: frappe/website/doctype/help_article/help_article.json msgid "Level" msgstr "Nivel" @@ -14860,7 +14913,7 @@ msgstr "Filtro de Lista" msgid "List Settings" msgstr "Configuración de lista" -#: frappe/public/js/frappe/list/list_view.js:1991 +#: frappe/public/js/frappe/list/list_view.js:1993 msgctxt "Button in list view menu" msgid "List Settings" msgstr "Configuración de lista" @@ -14911,7 +14964,7 @@ msgid "Load Balancing" msgstr "Balanceo de carga" #: frappe/public/js/frappe/list/base_list.js:399 -#: frappe/public/js/frappe/web_form/web_form_list.js:305 +#: frappe/public/js/frappe/web_form/web_form_list.js:306 #: frappe/website/doctype/help_article/templates/help_article_list.html:30 msgid "Load More" msgstr "Carga más" @@ -14931,7 +14984,7 @@ msgstr "Cargar más" #: frappe/public/js/frappe/list/base_list.js:526 #: frappe/public/js/frappe/list/list_view.js:363 #: frappe/public/js/frappe/ui/listing.html:16 -#: frappe/public/js/frappe/views/reports/query_report.js:1089 +#: frappe/public/js/frappe/views/reports/query_report.js:1097 msgid "Loading" msgstr "Cargando" @@ -15074,7 +15127,7 @@ msgstr "Código de verificación de inicio de sesión de {}" msgid "Login and view in Browser" msgstr "Iniciar Sesión y ver en el Navegador" -#: frappe/website/doctype/web_form/web_form.js:367 +#: frappe/website/doctype/web_form/web_form.js:368 msgid "Login is required to see web form list view. Enable {0} to see list settings" msgstr "Es necesario iniciar sesión para ver la vista de lista del formulario web. Habilite {0} para ver la configuración de la lista" @@ -15082,7 +15135,7 @@ msgstr "Es necesario iniciar sesión para ver la vista de lista del formulario w msgid "Login link sent to your email" msgstr "Enlace de inicio de sesión enviado a su correo electrónico" -#: frappe/auth.py:339 frappe/auth.py:342 +#: frappe/auth.py:342 frappe/auth.py:345 msgid "Login not allowed at this time" msgstr "No se permite iniciar sesión en este momento" @@ -15117,7 +15170,7 @@ msgstr "Iniciar sesión con enlace de correo" #: frappe/www/login.html:116 msgid "Login with Frappe Cloud" -msgstr "" +msgstr "Iniciar sesión con Frappe Cloud" #: frappe/www/login.html:49 msgid "Login with LDAP" @@ -15135,7 +15188,7 @@ msgstr "Iniciar sesión con enlace de correo" msgid "Login with email link expiry (in minutes)" msgstr "Caducidad del inicio de sesión con enlace de correo electrónico (en minutos)" -#: frappe/auth.py:144 +#: frappe/auth.py:147 msgid "Login with username and password is not allowed." msgstr "Inicio de sesión con nombre de usuario y contraseña no está permitido." @@ -15154,7 +15207,7 @@ msgstr "" msgid "Logout" msgstr "Salir" -#: frappe/core/doctype/user/user.js:202 +#: frappe/core/doctype/user/user.js:190 msgid "Logout All Sessions" msgstr "Cerrar sesión en todas las sesiones" @@ -15258,7 +15311,10 @@ msgid "Major" msgstr "Mayor" #. Label of the show_name_in_global_search (Check) field in DocType 'DocType' +#. Label of the show_name_in_global_search (Check) field in DocType 'Customize +#. Form' #: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Make \"name\" searchable in Global Search" msgstr "Hacer el \"nombre\" buscable en la búsqueda global" @@ -15334,7 +15390,7 @@ msgstr "Obligatorio depende de" msgid "Mandatory Depends On (JS)" msgstr "Obligatorio Depende de (JS)" -#: frappe/website/doctype/web_form/web_form.py:509 +#: frappe/website/doctype/web_form/web_form.py:536 msgid "Mandatory Information missing:" msgstr "Información obligatoria faltante:" @@ -15587,7 +15643,7 @@ msgstr "Uso de Memoria" #: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:63 msgid "Memory Usage in MB" -msgstr "" +msgstr "Uso de memoria en MB" #. Option for the 'Type' (Select) field in DocType 'Notification Log' #: frappe/desk/doctype/notification_log/notification_log.json @@ -15791,6 +15847,11 @@ msgstr "Centro medio" msgid "Middle Name" msgstr "Segundo Nombre" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Middle Name (Optional)" +msgstr "" + #. Name of a DocType #. Label of a Link in the Tools Workspace #: frappe/automation/doctype/milestone/milestone.json @@ -15897,6 +15958,11 @@ msgstr "Móvil" msgid "Mobile No" msgstr "Nº Móvil" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Mobile Number" +msgstr "Número de teléfono móvil" + #. 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" @@ -15922,7 +15988,7 @@ msgstr "Función del modal" #. 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/doctype/doctype_list.js:31 #: 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 @@ -16098,10 +16164,12 @@ msgstr "Más información" #. Label of the additional_info (Section Break) field in DocType #. 'Communication' #. Label of the short_bio (Tab Break) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: 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 +#: frappe/core/web_form/edit_profile/edit_profile.json msgid "More Information" msgstr "Más información" @@ -16131,7 +16199,7 @@ msgstr "Probablemente su contraseña es demasiado larga." msgid "Move" msgstr "Mover" -#: frappe/public/js/frappe/form/grid_row.js:193 +#: frappe/public/js/frappe/form/grid_row.js:194 msgid "Move To" msgstr "Mover a" @@ -16167,7 +16235,7 @@ msgstr "Mover secciones a una nueva pestaña" msgid "Move the current field and the following fields to a new column" msgstr "Mover el campo actual y los siguientes campos a una nueva columna" -#: frappe/public/js/frappe/form/grid_row.js:168 +#: frappe/public/js/frappe/form/grid_row.js:169 msgid "Move to Row Number" msgstr "Mover al número de fila" @@ -16235,7 +16303,7 @@ msgid "Mx" msgstr "Mx" #: frappe/templates/includes/web_sidebar.html:41 -#: frappe/website/doctype/web_form/web_form.py:498 +#: frappe/website/doctype/web_form/web_form.py:525 #: 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" @@ -16379,12 +16447,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:1378 +#: frappe/public/js/frappe/list/list_view.js:1380 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:1385 +#: frappe/public/js/frappe/list/list_view.js:1387 msgctxt "Description of a list view shortcut" msgid "Navigate list up" msgstr "Navegar lista arriba" @@ -16399,6 +16467,10 @@ msgstr "Ir al contenido principal" msgid "Navigation Settings" msgstr "Configuración de Navegación" +#: frappe/public/js/frappe/list/list_view.js:485 +msgid "Need Help?" +msgstr "" + #: frappe/desk/doctype/workspace/workspace.py:322 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" @@ -16407,7 +16479,7 @@ 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 +#: frappe/database/query.py:335 msgid "Nested filters must be provided as a list or tuple." msgstr "" @@ -16420,6 +16492,12 @@ msgstr "Error de conjunto anidado. Contacta con el administrador." msgid "Network Printer Settings" msgstr "Configuración de la Impresora de Red" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Never" +msgstr "" + #. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/core/doctype/success_action/success_action.js:57 @@ -16428,7 +16506,7 @@ msgstr "Configuración de la Impresora de Red" #: 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/treeview.js:473 #: frappe/public/js/frappe/views/workspace/workspace.js:64 #: frappe/website/doctype/web_form/templates/web_list.html:15 #: frappe/www/list.html:19 @@ -16489,7 +16567,7 @@ msgstr "Nuevo Evento" msgid "New Folder" msgstr "Nueva carpeta" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 msgid "New Kanban Board" msgstr "Nuevo Tablero Kanban" @@ -16524,7 +16602,7 @@ msgstr "Nueva tarjeta numérica" msgid "New Onboarding" msgstr "Nuevo módulo de incorporación" -#: frappe/core/doctype/user/user.js:190 frappe/www/update-password.html:43 +#: frappe/core/doctype/user/user.js:178 frappe/www/update-password.html:43 msgid "New Password" msgstr "Nueva Contraseña" @@ -16620,7 +16698,7 @@ msgstr "Nuevo valor a establecer" #: frappe/public/js/frappe/ui/toolbar/search_utils.js:227 #: 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:411 +#: frappe/website/doctype/web_form/web_form.py:438 msgid "New {0}" msgstr "Nuevo/a: {0}" @@ -16772,7 +16850,7 @@ msgstr "Siguiente al hacer clic" #: frappe/public/js/form_builder/utils.js:341 #: frappe/public/js/frappe/form/controls/link.js:498 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1665 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 #: frappe/website/doctype/help_article/templates/help_article.html:26 msgid "No" msgstr "No" @@ -16921,7 +16999,7 @@ msgstr "No se encontraron resultados" msgid "No Roles Specified" msgstr "No hay Roles especificados" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 msgid "No Select Field Found" msgstr "No se ha encontrado ningún campo de selección" @@ -17005,7 +17083,7 @@ msgstr "" msgid "No failed logs" msgstr "No hay registros fallidos" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:371 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:385 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\"." @@ -17029,7 +17107,7 @@ msgstr "No existen registros nuevos" msgid "No matching records. Search something new" msgstr "No hay registros coincidentes. Buscar algo nuevo" -#: frappe/public/js/frappe/web_form/web_form_list.js:161 +#: frappe/public/js/frappe/web_form/web_form_list.js:162 msgid "No more items to display" msgstr "No hay más elementos para mostrar" @@ -17073,7 +17151,7 @@ msgctxt "{0} = verb, {1} = object" msgid "No permission to '{0}' {1}" msgstr "No tiene permiso para '{0} ' {1}" -#: frappe/model/db_query.py:948 +#: frappe/model/db_query.py:949 msgid "No permission to read {0}" msgstr "No tiene permiso para leer {0}" @@ -17121,11 +17199,11 @@ msgstr "No {0}" msgid "No {0} Found" msgstr "Ningún {0} encontrado" -#: frappe/public/js/frappe/web_form/web_form_list.js:233 +#: frappe/public/js/frappe/web_form/web_form_list.js:234 msgid "No {0} found" msgstr "Ningún {0} encontrado" -#: frappe/public/js/frappe/list/list_view.js:497 +#: frappe/public/js/frappe/list/list_view.js:499 msgid "No {0} found with matching filters. Clear filters to see all {0}." msgstr "No se ha encontrado ningún {0} que coincida con filtros. Borre los filtros para ver todos los {0}." @@ -17134,7 +17212,7 @@ msgid "No {0} mail" msgstr "No {0} electrónico" #: frappe/public/js/form_builder/utils.js:117 -#: frappe/public/js/frappe/form/grid_row.js:256 +#: frappe/public/js/frappe/form/grid_row.js:257 msgctxt "Title of the 'row number' column" msgid "No." msgstr "Nº" @@ -17198,7 +17276,7 @@ msgstr "No son Descendientes de" msgid "Not Equals" msgstr "No es igual" -#: frappe/app.py:387 frappe/www/404.html:3 +#: frappe/app.py:390 frappe/www/404.html:3 msgid "Not Found" msgstr "No encontrado" @@ -17224,9 +17302,9 @@ msgstr "No está vinculado a ningún registro" msgid "Not Nullable" msgstr "No nulo" -#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26 +#: frappe/__init__.py:550 frappe/app.py:383 frappe/desk/calendar.py:26 #: frappe/public/js/frappe/web_form/webform_script.js:15 -#: frappe/website/doctype/web_form/web_form.py:747 +#: frappe/website/doctype/web_form/web_form.py:774 #: 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 @@ -17245,7 +17323,7 @@ msgstr "No publicado" #: 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/kanban/kanban_view.js:183 #: frappe/public/js/frappe/views/reports/report_view.js:209 #: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39 #: frappe/website/doctype/web_form/templates/web_form.html:85 @@ -17296,7 +17374,7 @@ msgstr "No activo" msgid "Not allowed for {0}: {1}" msgstr "No permitido para {0}: {1}" -#: frappe/email/doctype/notification/notification.py:637 +#: frappe/email/doctype/notification/notification.py:639 msgid "Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings" msgstr "No se permite adjuntar {0} documento, habilite Permitir impresión para {0} en Configuración de impresión." @@ -17328,12 +17406,12 @@ msgstr "No se encuentra en modo desarrollador" msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType." msgstr "No se encuentra en modo desarrollador! Debe establecerlo en el archivo site_config.json o crear un 'DocType' personalizado." -#: frappe/core/doctype/system_settings/system_settings.py:216 +#: frappe/core/doctype/system_settings/system_settings.py:217 #: 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:760 +#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:787 #: frappe/website/js/website.js:97 msgid "Not permitted" msgstr "No permitido" @@ -17379,7 +17457,7 @@ msgstr "Nota: Para obtener mejores resultados, las imágenes deben ser del mismo msgid "Note: Multiple sessions will be allowed in case of mobile device" msgstr "Nota: Varias sesiones serán permitidas en el caso de los dispositivos móviles" -#: frappe/core/doctype/user/user.js:399 +#: frappe/core/doctype/user/user.js:387 msgid "Note: This will be shared with user." msgstr "Nota: Se compartirá con el usuario." @@ -17451,15 +17529,15 @@ msgstr "Notificación de documento suscrito" msgid "Notification sent to" msgstr "Notificación enviada a" -#: frappe/email/doctype/notification/notification.py:542 +#: frappe/email/doctype/notification/notification.py:544 msgid "Notification: customer {0} has no Mobile number set" msgstr "Notificación: el cliente {0} no tiene establecido un número de móvil" -#: frappe/email/doctype/notification/notification.py:528 +#: frappe/email/doctype/notification/notification.py:530 msgid "Notification: document {0} has no {1} number set (field: {2})" msgstr "Notificación: el documento {0} no tiene establecido el número {1} (campo: {2})" -#: frappe/email/doctype/notification/notification.py:537 +#: frappe/email/doctype/notification/notification.py:539 msgid "Notification: user {0} has no Mobile number set" msgstr "Notificación: el usuario {0} no tiene número de móvil establecido" @@ -17573,7 +17651,7 @@ msgstr "Número de consultas" msgid "Number of attachment fields are more than {}, limit updated to {}." msgstr "El número de campos adjuntos es superior a {}, límite actualizado a {}." -#: frappe/core/doctype/system_settings/system_settings.py:171 +#: frappe/core/doctype/system_settings/system_settings.py:172 msgid "Number of backups must be greater than zero." msgstr "El número de copias de seguridad debe ser superior a cero." @@ -17845,7 +17923,7 @@ msgstr "Incorporación completada" #. Description of the 'Is Submittable' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:42 +#: frappe/core/doctype/doctype/doctype_list.js:43 msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended." msgstr "Una vez validados, los documentos que se pueden validar no se pueden cambiar. Solo pueden cancelarse y rectificarse." @@ -17934,11 +18012,11 @@ msgstr "Solo se pueden eliminar informes del tipo Generador de Informes" msgid "Only reports of type Report Builder can be edited" msgstr "Solo se pueden editar informes del tipo Generador de Informes" -#: frappe/custom/doctype/customize_form/customize_form.py:129 +#: frappe/custom/doctype/customize_form/customize_form.py:131 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:241 +#: frappe/model/delete_doc.py:281 msgid "Only the Administrator can delete a standard DocType." msgstr "" @@ -18034,7 +18112,7 @@ msgstr "" msgid "Open in a new tab" msgstr "Abrir en una nueva pestaña" -#: frappe/public/js/frappe/list/list_view.js:1431 +#: frappe/public/js/frappe/list/list_view.js:1433 msgctxt "Description of a list view shortcut" msgid "Open list item" msgstr "Abrir elemento de lista" @@ -18083,7 +18161,7 @@ msgstr "Abierto" msgid "Operation" msgstr "Operación" -#: frappe/utils/data.py:2146 +#: frappe/utils/data.py:2172 msgid "Operator must be one of {0}" msgstr "El Operador debe ser uno de {0}" @@ -18129,6 +18207,7 @@ msgstr "Opcional: La alerta será enviada si esta expresión es verdadera" #. 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 (Text) field in DocType 'Web Form List Column' #. 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 @@ -18137,6 +18216,7 @@ msgstr "Opcional: La alerta será enviada si esta expresión es verdadera" #: 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_form_list_column/web_form_list_column.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Options" msgstr "Opciones" @@ -18182,7 +18262,7 @@ msgstr "Naranja" msgid "Order" msgstr "Orden" -#: frappe/database/query.py:767 +#: frappe/database/query.py:769 msgid "Order By must be a string" msgstr "" @@ -18280,7 +18360,7 @@ msgstr "PATCH" #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/printing/page/print/print.js:84 #: frappe/public/js/frappe/form/templates/print_layout.html:44 -#: frappe/public/js/frappe/views/reports/query_report.js:1804 +#: frappe/public/js/frappe/views/reports/query_report.js:1812 msgid "PDF" msgstr "PDF" @@ -18628,8 +18708,8 @@ msgstr "Pasivo" #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/system_settings/system_settings.json -#: frappe/core/doctype/user/user.js:177 frappe/core/doctype/user/user.js:224 -#: frappe/core/doctype/user/user.js:244 +#: frappe/core/doctype/user/user.js:165 frappe/core/doctype/user/user.js:212 +#: frappe/core/doctype/user/user.js:232 #: 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 @@ -18652,7 +18732,7 @@ msgstr "Restablecer contraseña" msgid "Password Reset Link Generation Limit" msgstr "Límite de generación de enlaces de restablecimiento de contraseña" -#: frappe/public/js/frappe/form/grid_row.js:896 +#: frappe/public/js/frappe/form/grid_row.js:897 msgid "Password cannot be filtered" msgstr "No se puede filtrar por contraseña" @@ -18689,7 +18769,7 @@ msgstr "Se han enviado instrucciones para restablecer la contraseña al correo e msgid "Password set" msgstr "Contraseña establecida" -#: frappe/auth.py:258 +#: frappe/auth.py:261 msgid "Password size exceeded the maximum allowed size" msgstr "El tamaño de la contraseña excedió el tamaño máximo permitido" @@ -18701,7 +18781,7 @@ msgstr "El tamaño de la contraseña superó el tamaño máximo permitido." msgid "Passwords do not match" msgstr "Las contraseñas no coinciden" -#: frappe/core/doctype/user/user.js:210 +#: frappe/core/doctype/user/user.js:198 msgid "Passwords do not match!" msgstr "¡Las contraseñas no coinciden!" @@ -18767,7 +18847,7 @@ msgstr "Recuento de datos" #. 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 "Pico de uso de memoria" #. Option for the 'Status' (Select) field in DocType 'Data Import' #. Option for the 'Contribution Status' (Select) field in DocType 'Translation' @@ -18852,7 +18932,7 @@ msgstr "¿Validar permanentemente {0}?" msgid "Permanently delete {0}?" msgstr "¿Eliminar permanentemente \"{0}\"?" -#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533 +#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:535 msgid "Permission Error" msgstr "Error de Permiso" @@ -18912,8 +18992,8 @@ msgstr "Tipo de Permiso" #: 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:143 frappe/core/doctype/user/user.js:152 -#: frappe/core/doctype/user/user.js:161 +#: frappe/core/doctype/user/user.js:131 frappe/core/doctype/user/user.js:140 +#: frappe/core/doctype/user/user.js:149 #: 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 @@ -18983,6 +19063,7 @@ msgstr "Solicitud de descarga de datos personales" #. Option for the 'Type' (Select) field in DocType 'Communication' #. Option for the 'Type' (Select) field in DocType 'DocField' #. Label of the phone (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #. 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' @@ -18993,6 +19074,7 @@ msgstr "Solicitud de descarga de datos personales" #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.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 @@ -19167,7 +19249,7 @@ msgstr "Por favor, no cambie los encabezados de la plantilla." msgid "Please duplicate this to make changes" msgstr "Por favor, duplicar esto para realizar los cambios" -#: frappe/core/doctype/system_settings/system_settings.py:164 +#: frappe/core/doctype/system_settings/system_settings.py:165 msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login." msgstr "Por favor, habilite al menos una Clave de Inicio de Sesión Social o LDAP o Inicio de Sesión con Enlace de Correo Electrónico antes de deshabilitar el inicio de sesión basado en nombre de usuario/contraseña." @@ -19299,11 +19381,11 @@ msgstr "Por favor, seleccione 'DocType' primero" msgid "Please select Entity Type first" msgstr "Por favor, seleccione Tipo de entidad primero" -#: frappe/core/doctype/system_settings/system_settings.py:115 +#: frappe/core/doctype/system_settings/system_settings.py:116 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:1185 +#: frappe/public/js/frappe/views/reports/query_report.js:1193 msgid "Please select X and Y fields" msgstr "Por favor, seleccione campos X e Y" @@ -19331,7 +19413,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:1157 +#: frappe/model/db_query.py:1163 msgid "Please select atleast 1 column from {0} to sort/group" msgstr "Por favor, seleccione al menos 1 columna de {0} para ordenar / agrupar" @@ -19361,7 +19443,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:1408 +#: frappe/public/js/frappe/views/reports/query_report.js:1416 msgid "Please set filters" msgstr "Por favor, defina los filtros" @@ -19381,7 +19463,7 @@ msgstr "Primero configure los siguientes documentos en este Panel como estándar msgid "Please set the series to be used." msgstr "Por favor, configure la serie que se utilizará." -#: frappe/core/doctype/system_settings/system_settings.py:128 +#: frappe/core/doctype/system_settings/system_settings.py:129 msgid "Please setup SMS before setting it as an authentication method, via SMS Settings" msgstr "Configure SMS antes de configurarlo como un método de autenticación, a través de Configuración de SMS" @@ -19533,7 +19615,7 @@ msgstr "Codigo postal" msgid "Posting Timestamp" msgstr "Marca de tiempo de la publicación" -#: frappe/database/query.py:1518 +#: frappe/database/query.py:1520 msgid "Potentially dangerous content in string literal: {0}" msgstr "" @@ -19735,13 +19817,13 @@ msgstr "La clave primaria del doctype {0} no puede modificarse, ya que existen v #: 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:1789 +#: frappe/public/js/frappe/views/reports/query_report.js:1797 #: frappe/public/js/frappe/views/reports/report_view.js:1539 -#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18 +#: frappe/public/js/frappe/views/treeview.js:492 frappe/www/printview.html:18 msgid "Print" msgstr "Impresión" -#: frappe/public/js/frappe/list/list_view.js:2164 +#: frappe/public/js/frappe/list/list_view.js:2166 msgctxt "Button in list view actions menu" msgid "Print" msgstr "Impresión" @@ -19811,7 +19893,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:1578 +#: frappe/public/js/frappe/views/reports/query_report.js:1586 msgid "Print Format not found" msgstr "" @@ -19992,11 +20074,11 @@ msgstr "Protip: Agregar Reference: {{ reference_doctype }} {{ reference_na msgid "Proceed" msgstr "Proceder" -#: frappe/public/js/frappe/views/reports/query_report.js:932 +#: frappe/public/js/frappe/views/reports/query_report.js:940 msgid "Proceed Anyway" msgstr "Procede de todas maneras" -#: frappe/public/js/frappe/form/controls/table.js:123 +#: frappe/public/js/frappe/form/controls/table.js:104 msgid "Processing" msgstr "Procesando" @@ -20013,11 +20095,21 @@ msgstr "Prof" msgid "Profile" msgstr "Perfil" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile Picture" +msgstr "" + +#. Success message of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile updated successfully." +msgstr "Perfil actualizado con éxito." + #: frappe/public/js/frappe/socketio_client.js:82 msgid "Progress" msgstr "Progreso" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:408 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:422 msgid "Project" msgstr "Proyecto" @@ -20061,7 +20153,7 @@ msgstr "Tipo de Inmueble" msgid "Protect Attached Files" msgstr "" -#: frappe/core/doctype/file/file.py:523 +#: frappe/core/doctype/file/file.py:526 msgid "Protected File" msgstr "" @@ -20567,11 +20659,11 @@ msgstr "Tiempo real (SocketIO)" msgid "Reason" msgstr "Razón" -#: frappe/public/js/frappe/views/reports/query_report.js:886 +#: frappe/public/js/frappe/views/reports/query_report.js:894 msgid "Rebuild" msgstr "Reconstruir" -#: frappe/public/js/frappe/views/treeview.js:509 +#: frappe/public/js/frappe/views/treeview.js:511 msgid "Rebuild Tree" msgstr "Reconstruir el árbol" @@ -20952,8 +21044,8 @@ 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:1778 -#: frappe/public/js/frappe/views/treeview.js:496 +#: frappe/public/js/frappe/views/reports/query_report.js:1786 +#: frappe/public/js/frappe/views/treeview.js:498 #: frappe/public/js/frappe/widgets/chart_widget.js:291 #: frappe/public/js/frappe/widgets/number_card_widget.js:352 #: frappe/public/js/print_format_builder/Preview.vue:24 @@ -20984,13 +21076,13 @@ msgstr "" msgid "Refresh Token" msgstr "Actualizar Token" -#: frappe/public/js/frappe/list/list_view.js:534 +#: frappe/public/js/frappe/list/list_view.js:536 msgctxt "Document count in list view" msgid "Refreshing" msgstr "Refrescando" #: frappe/core/doctype/system_settings/system_settings.js:57 -#: frappe/core/doctype/user/user.js:374 +#: frappe/core/doctype/user/user.js:362 #: frappe/desk/page/setup_wizard/setup_wizard.js:211 msgid "Refreshing..." msgstr "Refrescando..." @@ -21375,7 +21467,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:1965 +#: frappe/public/js/frappe/views/reports/query_report.js:1973 msgid "Report Name" msgstr "Nombre del reporte" @@ -21427,7 +21519,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:1013 +#: frappe/public/js/frappe/views/reports/query_report.js:1021 msgid "Report initiated, click to view status" msgstr "Informe iniciado, haga clic para ver el estado" @@ -21447,7 +21539,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:2003 +#: frappe/public/js/frappe/views/reports/query_report.js:2011 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." @@ -21483,7 +21575,7 @@ msgstr "Informes" msgid "Reports & Masters" msgstr "Informes y Maestros" -#: frappe/public/js/frappe/views/reports/query_report.js:929 +#: frappe/public/js/frappe/views/reports/query_report.js:937 msgid "Reports already in Queue" msgstr "Informes ya en cola" @@ -21502,7 +21594,10 @@ msgid "Request Body" msgstr "Body de la solicitud" #. Label of the data (Code) field in DocType 'Integration Request' +#. Title of the request-data Web Form +#. Button label of the request-data Web Form #: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/website/web_form/request_data/request_data.json msgid "Request Data" msgstr "Datos de Solicitud" @@ -21554,6 +21649,11 @@ msgstr "Tiempo de espera de la solicitud" msgid "Request URL" msgstr "URL de Solicitud" +#. Title of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "Request for Account Deletion" +msgstr "" + #. Label of the requested_numbers (Code) field in DocType 'SMS Log' #: frappe/core/doctype/sms_log/sms_log.json msgid "Requested Numbers" @@ -21609,7 +21709,7 @@ msgstr "Restablecer personalizaciones del Tablero" msgid "Reset Fields" msgstr "Reestablecer campos" -#: frappe/core/doctype/user/user.js:184 frappe/core/doctype/user/user.js:187 +#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:175 msgid "Reset LDAP Password" msgstr "Restablecer la contraseña LDAP" @@ -21617,11 +21717,11 @@ msgstr "Restablecer la contraseña LDAP" msgid "Reset Layout" msgstr "Restablecer Disposición" -#: frappe/core/doctype/user/user.js:235 +#: frappe/core/doctype/user/user.js:223 msgid "Reset OTP Secret" msgstr "Restablecer OTP Secret" -#: frappe/core/doctype/user/user.js:168 frappe/www/login.html:199 +#: frappe/core/doctype/user/user.js:156 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" @@ -21656,7 +21756,7 @@ msgstr "Restablecer a valores por defecto" msgid "Reset sorting" msgstr "Restaurar orden" -#: frappe/public/js/frappe/form/grid_row.js:433 +#: frappe/public/js/frappe/form/grid_row.js:434 msgid "Reset to default" msgstr "Restaurar valores" @@ -21908,7 +22008,7 @@ msgstr "Permiso para la función Página e Informe" #. 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 +#: frappe/public/js/frappe/roles_editor.js:114 msgid "Role Permissions" msgstr "Permisos de Rol" @@ -21918,7 +22018,7 @@ msgstr "Permisos de Rol" msgid "Role Permissions Manager" msgstr "Administrar permisos" -#: frappe/public/js/frappe/list/list_view.js:1933 +#: frappe/public/js/frappe/list/list_view.js:1935 msgctxt "Button in list view menu" msgid "Role Permissions Manager" msgstr "Administrar permisos" @@ -22111,11 +22211,11 @@ msgstr "Valores de la Fila Cambiaron" msgid "Row {0}" msgstr "Fila {0}" -#: frappe/custom/doctype/customize_form/customize_form.py:353 +#: frappe/custom/doctype/customize_form/customize_form.py:357 msgid "Row {0}: Not allowed to disable Mandatory for standard fields" msgstr "Fila {0}: No se permite deshabilitar Obligatorio para Campos Estándar" -#: frappe/custom/doctype/customize_form/customize_form.py:342 +#: frappe/custom/doctype/customize_form/customize_form.py:346 msgid "Row {0}: Not allowed to enable Allow on Submit for standard fields" msgstr "Fila {0}: No se permite activar 'Permitir al validar' para los campos estándar" @@ -22134,7 +22234,10 @@ msgid "Rows Removed" msgstr "Filas Eliminadas" #. Label of the rows_threshold_for_grid_search (Int) field in DocType 'DocType' +#. Label of the rows_threshold_for_grid_search (Int) field in DocType +#. 'Customize Form' #: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Rows Threshold for Grid Search" msgstr "" @@ -22342,8 +22445,8 @@ msgstr "Sábado" #: 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:1957 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 +#: frappe/public/js/frappe/views/reports/query_report.js:1965 #: frappe/public/js/frappe/views/reports/report_view.js:1735 #: frappe/public/js/frappe/views/workspace/workspace.js:335 #: frappe/public/js/frappe/widgets/base_widget.js:142 @@ -22366,11 +22469,11 @@ msgstr "Guardar como" msgid "Save Customizations" msgstr "Guardar Personalización" -#: frappe/public/js/frappe/views/reports/query_report.js:1960 +#: frappe/public/js/frappe/views/reports/query_report.js:1968 msgid "Save Report" msgstr "Guardar reporte" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:97 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:107 msgid "Save filters" msgstr "Guardar Filtro" @@ -22742,7 +22845,7 @@ msgstr "Configuración de seguridad" msgid "See all Activity" msgstr "Ver todas las actividades" -#: frappe/public/js/frappe/views/reports/query_report.js:855 +#: frappe/public/js/frappe/views/reports/query_report.js:863 msgid "See all past reports." msgstr "Ver todos los reportes pasados." @@ -22806,7 +22909,7 @@ msgstr "Seleccionar" #: 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:497 +#: frappe/public/js/frappe/form/grid_row.js:498 msgid "Select All" msgstr "Seleccionar Todo" @@ -22886,7 +22989,7 @@ msgstr "Seleccionar campo" msgid "Select Field..." msgstr "Seleccionar campo..." -#: frappe/public/js/frappe/form/grid_row.js:489 +#: frappe/public/js/frappe/form/grid_row.js:490 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:181 msgid "Select Fields" msgstr "Seleccionar campos" @@ -23006,8 +23109,8 @@ msgid "Select a field to edit its properties." msgstr "Seleccione un campo para editar sus propiedades." #: frappe/public/js/frappe/views/treeview.js:358 -msgid "Select a group node first." -msgstr "Seleccione primero un nodo de grupo" +msgid "Select a group {0} first." +msgstr "" #: frappe/core/doctype/doctype/doctype.py:1956 msgid "Select a valid Sender Field for creating documents from Email" @@ -23043,13 +23146,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:1445 +#: frappe/public/js/frappe/list/list_view.js:1447 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:1397 -#: frappe/public/js/frappe/list/list_view.js:1413 +#: frappe/public/js/frappe/list/list_view.js:1399 +#: frappe/public/js/frappe/list/list_view.js:1415 msgctxt "Description of a list view shortcut" msgid "Select multiple list items" msgstr "Seleccionar múltiples elementos de la lista" @@ -23371,7 +23474,7 @@ msgstr "Secuencia {0} ya utilizada en {1}" msgid "Server Action" msgstr "Acción del servidor" -#: frappe/app.py:396 frappe/public/js/frappe/request.js:611 +#: frappe/app.py:399 frappe/public/js/frappe/request.js:611 #: frappe/www/error.html:36 frappe/www/error.py:15 msgid "Server Error" msgstr "Error del Servidor" @@ -23437,7 +23540,7 @@ msgstr "Valores predeterminados de sesión" msgid "Session Defaults Saved" msgstr "Valores predeterminados de sesión guardados" -#: frappe/app.py:373 +#: frappe/app.py:376 msgid "Session Expired" msgstr "Sesión expirada" @@ -23446,7 +23549,7 @@ msgstr "Sesión expirada" msgid "Session Expiry (idle timeout)" msgstr "Expiración de la sesión (tiempo de inactivad)" -#: frappe/core/doctype/system_settings/system_settings.py:122 +#: frappe/core/doctype/system_settings/system_settings.py:123 msgid "Session Expiry must be in format {0}" msgstr "El vencimiento de sesión debe estar en formato {0}" @@ -23495,7 +23598,7 @@ msgstr "Establecer filtros" msgid "Set Filters for {0}" msgstr "Establecer filtros para {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:2113 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 msgid "Set Level" msgstr "Establecer Nivel" @@ -23549,7 +23652,7 @@ msgstr "Establecer cantidad" msgid "Set Role For" msgstr "Establecer Rol Para" -#: frappe/core/doctype/user/user.js:136 +#: frappe/core/doctype/user/user.js:124 #: frappe/core/page/permission_manager/permission_manager.js:72 msgid "Set User Permissions" msgstr "Establecer permisos de usuario" @@ -23735,7 +23838,7 @@ msgstr "Configuración > Usuario" msgid "Setup > User Permissions" msgstr "Configurar > Permisos del Usuario" -#: frappe/public/js/frappe/views/reports/query_report.js:1826 +#: frappe/public/js/frappe/views/reports/query_report.js:1834 #: frappe/public/js/frappe/views/reports/report_view.js:1713 msgid "Setup Auto Email" msgstr "Configuración automática de correo electrónico" @@ -23876,6 +23979,12 @@ msgstr "Mostrar documento" msgid "Show Error" msgstr "Mostrar error" +#. Label of the show_external_link_warning (Select) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Show External Link Warning" +msgstr "" + #: frappe/public/js/frappe/form/layout.js:578 msgid "Show Fieldname (click to copy on clipboard)" msgstr "Mostrar nombre de campo (clic para copiar en el portapapeles)" @@ -24004,7 +24113,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:1849 +#: frappe/public/js/frappe/list/list_view.js:1851 msgid "Show Tags" msgstr "Mostrar etiquetas" @@ -24211,36 +24320,36 @@ msgstr "Registro deshabilitado" msgid "Signups have been disabled for this website." msgstr "Se han desactivado las suscripciones para este sitio web." -#. 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 "Expresión simple de Python, ejemplo: estado en (\"Cerrado\", \"Cancelado\")" - #. 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 "Expresión simple de Python, ejemplo: estado en (\"No válido\")" +msgid "Simple Python Expression, Example: status == \"Invalid\"" +msgstr "" #. 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 "Expresión Python simple, Ejemplo: estado == 'Abierto' y tipo == 'Error'" +msgid "Simple Python Expression, Example: status == 'Open' and issue_type == 'Bug'" +msgstr "" + +#. 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 "" #. Label of the simultaneous_sessions (Int) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Simultaneous Sessions" msgstr "Sesiones simultáneas" -#: frappe/custom/doctype/customize_form/customize_form.py:126 +#: frappe/custom/doctype/customize_form/customize_form.py:128 msgid "Single DocTypes cannot be customized." msgstr "Los DocTypes individuales no se pueden personalizar." #. Description of the 'Is Single' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:67 +#: frappe/core/doctype/doctype/doctype_list.js:68 msgid "Single Types have only one record no tables associated. Values are stored in tabSingles" msgstr "Los campos únicos, solo tienen un registro y no tienen tablas asociadas, los valores serán guardados en una columna aislada." @@ -24576,7 +24685,7 @@ msgid "Splash Image" msgstr "Imagen de bienvenida" #: frappe/desk/reportview.py:455 -#: frappe/public/js/frappe/web_form/web_form_list.js:175 +#: frappe/public/js/frappe/web_form/web_form_list.js:176 #: frappe/templates/print_formats/standard_macros.html:44 msgid "Sr" msgstr "Sr" @@ -24608,7 +24717,7 @@ msgstr "Stack Trace" msgid "Standard" msgstr "Estándar" -#: frappe/model/delete_doc.py:79 +#: frappe/model/delete_doc.py:119 msgid "Standard DocType can not be deleted." msgstr "No se puede eliminar DocType estándar." @@ -24878,7 +24987,7 @@ msgstr "Pasos para verificar su inicio de sesión" #. Label of the sticky (Check) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json -#: frappe/public/js/frappe/form/grid_row.js:454 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Sticky" msgstr "" @@ -24908,7 +25017,7 @@ msgstr "Uso de almacenamiento por tabla" msgid "Store Attached PDF Document" msgstr "Almacenar documento PDF adjunto" -#: frappe/core/doctype/user/user.js:490 +#: frappe/core/doctype/user/user.js:497 msgid "Store the API secret securely. It won't be displayed again." msgstr "" @@ -25020,6 +25129,7 @@ msgstr "Cola de envío" #. 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' +#. Button label of the request-to-delete-data Web Form #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/docshare/docshare.json @@ -25028,10 +25138,11 @@ msgstr "Cola de envío" #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/quick_entry.js:225 #: frappe/public/js/frappe/ui/capture.js:307 +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json msgid "Submit" msgstr "Validar" -#: frappe/public/js/frappe/list/list_view.js:2231 +#: frappe/public/js/frappe/list/list_view.js:2233 msgctxt "Button in list view actions menu" msgid "Submit" msgstr "Validar" @@ -25041,7 +25152,7 @@ msgctxt "Button in web form" msgid "Submit" msgstr "Validar" -#: frappe/public/js/frappe/ui/dialog.js:63 +#: frappe/public/js/frappe/ui/dialog.js:64 msgctxt "Primary action in dialog" msgid "Submit" msgstr "Validar" @@ -25089,7 +25200,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:2236 +#: frappe/public/js/frappe/list/list_view.js:2238 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "¿Validar {0} documentos?" @@ -25139,7 +25250,7 @@ msgstr "Subtitular" #: 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:1171 +#: frappe/public/js/frappe/form/grid.js:1172 #: frappe/public/js/frappe/views/translation_manager.js:21 #: frappe/templates/includes/login/login.js:230 #: frappe/templates/includes/login/login.js:236 @@ -25354,7 +25465,7 @@ msgstr "Sincronización" msgid "Syncing {0} of {1}" msgstr "Sincronizando {0} de {1}" -#: frappe/utils/data.py:2547 +#: frappe/utils/data.py:2573 msgid "Syntax Error" msgstr "Error de sintaxis" @@ -25665,7 +25776,7 @@ msgstr "Tabla Multi-selección" msgid "Table Trimmed" msgstr "Tabla recortada" -#: frappe/public/js/frappe/form/grid.js:1170 +#: frappe/public/js/frappe/form/grid.js:1171 msgid "Table updated" msgstr "Tabla actualiza" @@ -25882,7 +25993,7 @@ msgstr "Gracias" msgid "The Auto Repeat for this document has been disabled." msgstr "La repetición automática para este documento ha sido deshabilitada." -#: frappe/public/js/frappe/form/grid.js:1193 +#: frappe/public/js/frappe/form/grid.js:1194 msgid "The CSV format is case sensitive" msgstr "El formato CSV es sensible a mayúsculas y minúsculas" @@ -25954,7 +26065,7 @@ msgstr "El comentario no puede estar vacío" msgid "The contents of this email are strictly confidential. Please do not forward this email to anyone." msgstr "El contenido de este correo electrónico es estrictamente confidencial. Por favor, no reenvíe este correo electrónico a nadie." -#: frappe/public/js/frappe/list/list_view.js:685 +#: frappe/public/js/frappe/list/list_view.js:687 msgid "The count shown is an estimated count. Click here to see the accurate count." msgstr "El recuento mostrado es un recuento estimado. Pulse aquí para ver el recuento exacto." @@ -26068,7 +26179,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:388 frappe/public/js/frappe/request.js:149 +#: frappe/app.py:391 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" @@ -26141,12 +26252,12 @@ 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:965 +#: frappe/public/js/frappe/views/reports/query_report.js:973 msgid "There are {0} with the same filters already in the queue:" msgstr "Ya hay {0} con los mismos filtros en la cola:" #: frappe/website/doctype/web_form/web_form.js:81 -#: frappe/website/doctype/web_form/web_form.js:317 +#: frappe/website/doctype/web_form/web_form.js:318 msgid "There can be only 9 Page Break fields in a Web Form" msgstr "Sólo puede haber 9 campos de salto de página en un formulario web" @@ -26170,11 +26281,11 @@ msgstr "" msgid "There is nothing new to show you right now." msgstr "No hay nada nuevo que mostrarle en este momento." -#: frappe/core/doctype/file/file.py:640 frappe/utils/file_manager.py:372 +#: frappe/core/doctype/file/file.py:643 frappe/utils/file_manager.py:372 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:962 +#: frappe/public/js/frappe/views/reports/query_report.js:970 msgid "There is {0} with the same filters already in the queue:" msgstr "Ya hay {0} con los mismos filtros en la cola:" @@ -26186,7 +26297,7 @@ msgstr "Debe haber al menos una regla de permiso." msgid "There was an error building this page" msgstr "Se produjo un error al crear esta página." -#: frappe/public/js/frappe/views/kanban/kanban_view.js:182 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:196 msgid "There was an error saving filters" msgstr "Hubo un error al guardar los filtros" @@ -26243,7 +26354,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:391 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:405 msgid "This Kanban Board will be private" msgstr "Este tablero Kanban será privado" @@ -26280,7 +26391,7 @@ msgstr "Esta acción solo está permitida para {}" msgid "This cannot be undone" msgstr "Esto no se puede deshacer" -#: frappe/desk/doctype/number_card/number_card.js:480 +#: frappe/desk/doctype/number_card/number_card.js:484 msgctxt "Number Card" msgid "This card is visible only to Administrator and System Managers by default. Set a DocType to share with users who have read access." msgstr "" @@ -26303,7 +26414,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:113 +#: frappe/model/delete_doc.py:153 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." @@ -26349,7 +26460,7 @@ msgstr "Este campo sólo aparecerá si el nombre de campo definido aquí tiene v "eval:doc.myfield=='Mi valor'\n" "eval:doc.age>18" -#: frappe/core/doctype/file/file.py:522 +#: frappe/core/doctype/file/file.py:525 msgid "This file is attached to a protected document and cannot be deleted." msgstr "" @@ -26384,7 +26495,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:2189 +#: frappe/public/js/frappe/views/reports/query_report.js:2197 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." @@ -26434,7 +26545,7 @@ msgstr "Esto puede imprimirse en varias páginas." msgid "This month" msgstr "Este mes" -#: frappe/public/js/frappe/views/reports/query_report.js:1037 +#: frappe/public/js/frappe/views/reports/query_report.js:1045 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." @@ -26442,7 +26553,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:853 +#: frappe/public/js/frappe/views/reports/query_report.js:861 msgid "This report was generated {0}." msgstr "Este reporte fue generado {0}." @@ -26584,9 +26695,11 @@ msgstr "Ventana de tiempo (segundos)" #. Label of the time_zone (Select) field in DocType 'System Settings' #. Label of the time_zone (Autocomplete) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #. 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/core/web_form/edit_profile/edit_profile.json #: frappe/desk/page/setup_wizard/setup_wizard.js:407 #: frappe/website/doctype/web_page_view/web_page_view.json msgid "Time Zone" @@ -26853,7 +26966,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:854 +#: frappe/public/js/frappe/views/reports/query_report.js:862 msgid "To get the updated report, click on {0}." msgstr "Para obtener el reporte actualizado, hacer clic en {0}." @@ -26928,7 +27041,7 @@ msgstr "Alternar Vista de Cuadrícula" msgid "Toggle Sidebar" msgstr "Alternar Barra Lateral" -#: frappe/public/js/frappe/list/list_view.js:1964 +#: frappe/public/js/frappe/list/list_view.js:1966 msgctxt "Button in list view menu" msgid "Toggle Sidebar" msgstr "Alternar Barra Lateral" @@ -27054,7 +27167,7 @@ msgstr "Tema" #: frappe/desk/query_report.py:587 #: frappe/public/js/frappe/views/reports/print_grid.html:45 -#: frappe/public/js/frappe/views/reports/query_report.js:1324 +#: frappe/public/js/frappe/views/reports/query_report.js:1332 #: frappe/public/js/frappe/views/reports/report_view.js:1553 msgid "Total" msgstr "Total" @@ -27213,7 +27326,7 @@ msgstr "Transiciones" msgid "Translatable" msgstr "Traducible" -#: frappe/public/js/frappe/views/reports/query_report.js:2244 +#: frappe/public/js/frappe/views/reports/query_report.js:2252 msgid "Translate Data" msgstr "" @@ -27572,7 +27685,7 @@ msgstr "No se puede enviar el correo porque falta una cuenta de correo electrón msgid "Unable to update event" msgstr "No se puede actualizar evento" -#: frappe/core/doctype/file/file.py:486 +#: frappe/core/doctype/file/file.py:489 msgid "Unable to write file format for {0}" msgstr "Incapaz de escribir el formato de archivo para {0}" @@ -27581,7 +27694,7 @@ msgstr "Incapaz de escribir el formato de archivo para {0}" msgid "Unassign Condition" msgstr "Desasignar condición" -#: frappe/app.py:396 +#: frappe/app.py:399 msgid "Uncaught Exception" msgstr "Excepción no controlada" @@ -27597,7 +27710,7 @@ msgstr "Deshacer" msgid "Undo last action" msgstr "Deshacer última acción" -#: frappe/database/query.py:1495 +#: frappe/database/query.py:1497 msgid "Unescaped quotes in string literal: {0}" msgstr "" @@ -27644,7 +27757,7 @@ msgstr "Columna desconocida: {0}" msgid "Unknown Rounding Method: {}" msgstr "Método de Redondeo desconocido: {}" -#: frappe/auth.py:316 +#: frappe/auth.py:319 msgid "Unknown User" msgstr "Usuario Desconocido" @@ -27710,8 +27823,8 @@ msgstr "" msgid "Unsubscribed" msgstr "No suscrito" -#: frappe/database/query.py:653 frappe/database/query.py:1387 -#: frappe/database/query.py:1397 +#: frappe/database/query.py:655 frappe/database/query.py:1389 +#: frappe/database/query.py:1399 msgid "Unsupported function or invalid field name: {0}" msgstr "" @@ -27745,7 +27858,7 @@ msgstr "Eventos para hoy" #: 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:427 +#: frappe/public/js/frappe/form/grid_row.js:428 msgid "Update" msgstr "Actualizar" @@ -27779,6 +27892,11 @@ msgstr "Actualizar orden" msgid "Update Password" msgstr "Actualizar contraseña" +#. Title of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Update Profile" +msgstr "" + #. Label of the update_series (Section Break) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -27994,11 +28112,7 @@ msgstr "Utilice un correo electrónico diferente" msgid "Use if the default settings don't seem to detect your data correctly" msgstr "" -#: frappe/model/db_query.py:436 -msgid "Use of function {0} in field is restricted" -msgstr "El uso de la función {0} en el campo está restringido" - -#: frappe/model/db_query.py:413 +#: frappe/model/db_query.py:411 msgid "Use of sub-query or function is restricted" msgstr "El uso de la sub-query o función está restringido" @@ -28220,12 +28334,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:1944 +#: frappe/public/js/frappe/views/reports/query_report.js:1952 #: frappe/public/js/frappe/views/reports/report_view.js:1761 msgid "User Permissions" msgstr "Permisos de Usuario" -#: frappe/public/js/frappe/list/list_view.js:1922 +#: frappe/public/js/frappe/list/list_view.js:1924 msgctxt "Button in list view menu" msgid "User Permissions" msgstr "Permisos de Usuario" @@ -28369,7 +28483,7 @@ msgstr "Usuario {0} suplantado como {1}" msgid "User {0} is disabled" msgstr "El usuario {0} está deshabilitado" -#: frappe/sessions.py:242 +#: frappe/sessions.py:243 msgid "User {0} is disabled. Please contact your System Manager." msgstr "Usuario {0} está deshabilitado. Por favor, póngase en contacto con su administrador del sistema." @@ -28546,7 +28660,7 @@ msgstr "El valor no puede ser negativo para {0}: {1}" msgid "Value for a check field can be either 0 or 1" msgstr "Valor para un campo de verificación puede ser 0 o 1" -#: frappe/custom/doctype/customize_form/customize_form.py:612 +#: frappe/custom/doctype/customize_form/customize_form.py:616 msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters" msgstr "El valor del campo {0} es demasiado largo en {1}. La longitud debe ser inferior a {2} caracteres" @@ -28667,7 +28781,7 @@ msgstr "Ver Todo" msgid "View Audit Trail" msgstr "Ver registros de auditoría" -#: frappe/core/doctype/user/user.js:156 +#: frappe/core/doctype/user/user.js:144 msgid "View Doctype Permissions" msgstr "Ver permisos del doctype" @@ -28679,7 +28793,7 @@ msgstr "Ver Archivo" msgid "View Full Log" msgstr "Ver Registro completo" -#: frappe/public/js/frappe/views/treeview.js:484 +#: frappe/public/js/frappe/views/treeview.js:486 #: frappe/public/js/frappe/widgets/quick_list_widget.js:258 msgid "View List" msgstr "Ver Lista" @@ -28689,7 +28803,7 @@ msgstr "Ver Lista" msgid "View Log" msgstr "Ver registro" -#: frappe/core/doctype/user/user.js:147 +#: frappe/core/doctype/user/user.js:135 #: frappe/core/doctype/user_permission/user_permission.js:24 msgid "View Permitted Documents" msgstr "Ver Documentos Permitidos" @@ -28805,6 +28919,7 @@ msgid "Warehouse" msgstr "Almacén" #. Option for the 'Style' (Select) field in DocType 'Workflow State' +#: frappe/public/js/frappe/router.js:613 #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Warning" msgstr "Advertencia" @@ -29450,7 +29565,7 @@ msgstr "Flujo de trabajo actualizado correctamente" msgid "Workspace" msgstr "Área de Trabajo" -#: frappe/public/js/frappe/router.js:175 +#: frappe/public/js/frappe/router.js:180 msgid "Workspace {0} does not exist" msgstr "El Área de Trabajo {0} no existe" @@ -29572,7 +29687,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:1225 +#: frappe/public/js/frappe/views/reports/query_report.js:1233 msgid "Y Field" msgstr "Campo Y" @@ -29634,7 +29749,7 @@ msgstr "Amarillo" #: frappe/public/js/form_builder/utils.js:336 #: frappe/public/js/frappe/form/controls/link.js:498 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1665 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 #: frappe/website/doctype/help_article/templates/help_article.html:25 msgid "Yes" msgstr "Si" @@ -29670,6 +29785,10 @@ msgstr "" msgid "You added {0} rows to {1}" msgstr "" +#: frappe/public/js/frappe/router.js:642 +msgid "You are about to open an external link. To confirm, click the link again." +msgstr "" + #: frappe/public/js/frappe/dom.js:438 msgid "You are connected to internet." msgstr "Estás conectado a internet." @@ -29713,7 +29832,7 @@ msgstr "No tiene permiso para editar el informe." msgid "You are not allowed to export {} doctype" msgstr "No está permitido exportar {} doctype" -#: frappe/public/js/frappe/views/treeview.js:448 +#: frappe/public/js/frappe/views/treeview.js:450 msgid "You are not allowed to print this report" msgstr "Usted no está autorizado a imprimir este informe" @@ -29721,7 +29840,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:605 +#: frappe/website/doctype/web_form/web_form.py:632 msgid "You are not allowed to update this Web Form Document" msgstr "Usted no está autorizado para modificar este formulario web" @@ -29794,11 +29913,11 @@ 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:137 +#: frappe/model/delete_doc.py:177 msgid "You can disable this {0} instead of deleting it." msgstr "Puede desactivar este {0} en lugar de borrarlo." -#: frappe/core/doctype/file/file.py:758 +#: frappe/core/doctype/file/file.py:761 msgid "You can increase the limit from System Settings." msgstr "Puede aumentar el límite desde Ajustes del sistema." @@ -29848,11 +29967,11 @@ msgstr "Puede utilizar Formularios Personalizados para establecer niveles en cam msgid "You can use wildcard %" msgstr "Puede usar % como comodín" -#: frappe/custom/doctype/customize_form/customize_form.py:390 +#: frappe/custom/doctype/customize_form/customize_form.py:394 msgid "You can't set 'Options' for field {0}" msgstr "No puedes establecer 'Opciones' para el campo {0}" -#: frappe/custom/doctype/customize_form/customize_form.py:394 +#: frappe/custom/doctype/customize_form/customize_form.py:398 msgid "You can't set 'Translatable' for field {0}" msgstr "No puedes establecer 'Traducible' para el campo {0}" @@ -29870,7 +29989,7 @@ msgstr "Cancelaste este documento {1}" msgid "You cannot create a dashboard chart from single DocTypes" msgstr "No puede crear un gráfico de tablero a partir de DocTypes individuales" -#: frappe/custom/doctype/customize_form/customize_form.py:386 +#: frappe/custom/doctype/customize_form/customize_form.py:390 msgid "You cannot unset 'Read Only' for field {0}" msgstr "No se puede desmarcar 'solo lectura' para el campo {0}" @@ -29913,11 +30032,11 @@ 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:381 +#: frappe/app.py:384 msgid "You do not have enough permissions to complete the action" msgstr "Usted no tiene suficientes permisos para completar la acción" -#: frappe/database/query.py:529 +#: frappe/database/query.py:531 msgid "You do not have permission to access field: {0}" msgstr "" @@ -29933,7 +30052,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:808 +#: frappe/website/doctype/web_form/web_form.py:835 msgid "You don't have permission to access the {0} DocType." msgstr "No tienes permiso para acceder al DocType {0} ." @@ -29957,7 +30076,7 @@ msgstr "Tienes un nuevo mensaje de:" msgid "You have been successfully logged out" msgstr "Ha sido desconectado exitosamente" -#: frappe/custom/doctype/customize_form/customize_form.py:245 +#: frappe/custom/doctype/customize_form/customize_form.py:247 msgid "You have hit the row size limit on database table: {0}" msgstr "Ha alcanzado el límite de tamaño de fila en la tabla de la base de datos: {0}" @@ -29985,7 +30104,7 @@ msgstr "No has visto a {0}" msgid "You haven't added any Dashboard Charts or Number Cards yet." msgstr "Aún no ha añadido ningún Tablero de datos o ningún Widget numérico." -#: frappe/public/js/frappe/list/list_view.js:501 +#: frappe/public/js/frappe/list/list_view.js:503 msgid "You haven't created a {0} yet" msgstr "Aún no ha creado un {0}" @@ -30002,11 +30121,11 @@ 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:804 +#: frappe/website/doctype/web_form/web_form.py:831 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:645 +#: frappe/website/doctype/web_form/web_form.py:672 msgid "You must login to submit this form" msgstr "Debes iniciar sesión para enviar este formulario" @@ -30121,6 +30240,10 @@ msgstr "Has dejado de seguir este documento" msgid "You viewed this" msgstr "Ya has visto esto" +#: frappe/public/js/frappe/router.js:653 +msgid "You will be redirected to:" +msgstr "" + #: frappe/core/doctype/user_invitation/user_invitation.py:113 msgid "You've been invited to join {0}" msgstr "" @@ -30166,7 +30289,7 @@ msgstr "Tus atajos" msgid "Your account has been deleted" msgstr "Su cuenta ha sido eliminada" -#: frappe/auth.py:514 +#: frappe/auth.py:517 msgid "Your account has been locked and will resume after {0} seconds" msgstr "Su cuenta ha sido bloqueada y se reanudará después de {0} segundos" @@ -30232,7 +30355,7 @@ msgstr "Su consulta ha sido recibida. Responderemos a la mayor brevedad posible. msgid "Your report is being generated in the background. You will receive an email on {0} with a download link once it is ready." msgstr "" -#: frappe/app.py:374 +#: frappe/app.py:377 msgid "Your session has expired, please login again to continue." msgstr "Tu sesión ha caducado, vuelve a iniciar sesión para continuar." @@ -30569,7 +30692,7 @@ msgstr "lista" msgid "logged in" msgstr "conectado" -#: frappe/website/doctype/web_form/web_form.js:362 +#: frappe/website/doctype/web_form/web_form.js:363 msgid "login_required" msgstr "login_required" @@ -30907,7 +31030,7 @@ msgstr "a través de la importación de datos" msgid "via Google Meet" msgstr "vía Google Meet" -#: frappe/email/doctype/notification/notification.py:403 +#: frappe/email/doctype/notification/notification.py:405 msgid "via Notification" msgstr "vía notificación" @@ -31017,7 +31140,7 @@ msgstr "{0} Gráfico" msgid "{0} Dashboard" msgstr "{0} Panel de control" -#: frappe/public/js/frappe/form/grid_row.js:486 +#: frappe/public/js/frappe/form/grid_row.js:487 #: frappe/public/js/frappe/list/list_settings.js:225 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:178 msgid "{0} Fields" @@ -31068,7 +31191,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:956 +#: frappe/public/js/frappe/views/reports/query_report.js:964 msgid "{0} Reports" msgstr "{0} Informes" @@ -31141,7 +31264,7 @@ msgctxt "Form timeline" msgid "{0} attached {1}" msgstr "{0} adjunto {1}" -#: frappe/core/doctype/system_settings/system_settings.py:152 +#: frappe/core/doctype/system_settings/system_settings.py:153 msgid "{0} can not be more than {1}" msgstr "{0} no puede ser más de {1}" @@ -31218,7 +31341,7 @@ 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 +#: frappe/database/query.py:710 msgid "{0} fields cannot contain backticks (`): {1}" msgstr "" @@ -31263,7 +31386,7 @@ msgstr "{0} en la fila {1} no puede tener tanto URL como elementos hijos" msgid "{0} is a mandatory field" msgstr "{0} es un campo obligatorio" -#: frappe/core/doctype/file/file.py:566 +#: frappe/core/doctype/file/file.py:569 msgid "{0} is a not a valid zip file" msgstr "{0} no es un archivo zip válido" @@ -31312,7 +31435,7 @@ msgstr "{0} es como {1}" msgid "{0} is mandatory" msgstr "{0} es obligatorio" -#: frappe/database/query.py:485 +#: frappe/database/query.py:487 msgid "{0} is not a child table of {1}" msgstr "" @@ -31332,7 +31455,7 @@ msgstr "{0} no es un Calendario válido. Redirigiendo al Calendario por defecto. msgid "{0} is not a valid Cron expression." msgstr "{0} no es una expresión Cron válida." -#: frappe/public/js/frappe/form/controls/dynamic_link.js:27 +#: frappe/public/js/frappe/form/controls/dynamic_link.js:23 msgid "{0} is not a valid DocType for Dynamic Link" msgstr "{0} no es un DocType válido para Dynamic Link" @@ -31369,7 +31492,7 @@ msgstr "{0} no es un campo padre válido para {1}" 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}" -#: frappe/core/doctype/file/file.py:546 +#: frappe/core/doctype/file/file.py:549 msgid "{0} is not a zip file" msgstr "{0} no es un archivo zip" @@ -31417,7 +31540,7 @@ msgstr "{0} está establecido" msgid "{0} is within {1}" msgstr "{0} está dentro de {1}" -#: frappe/public/js/frappe/list/list_view.js:1839 +#: frappe/public/js/frappe/list/list_view.js:1841 msgid "{0} items selected" msgstr "{0} elementos seleccionados" @@ -31503,11 +31626,11 @@ msgid "{0} not found" msgstr "{0} no encontrado" #: frappe/core/doctype/report/report.py:427 -#: frappe/public/js/frappe/list/list_view.js:1211 +#: frappe/public/js/frappe/list/list_view.js:1213 msgid "{0} of {1}" msgstr "{0} de {1}" -#: frappe/public/js/frappe/list/list_view.js:1213 +#: frappe/public/js/frappe/list/list_view.js:1215 msgid "{0} of {1} ({2} rows with children)" msgstr "{0} de {1} ({2} filas con hijos)" @@ -31557,7 +31680,7 @@ msgstr "{0} eliminado su asignación." msgid "{0} removed {1} rows from {2}" msgstr "" -#: frappe/public/js/frappe/roles_editor.js:62 +#: frappe/public/js/frappe/roles_editor.js:64 msgid "{0} role does not have permission on any doctype" msgstr "{0} el rol no tiene permiso sobre ningún doctype" @@ -31631,7 +31754,7 @@ msgstr "{0} a {1}" msgid "{0} un-shared this document with {1}" msgstr "{0} dejó de compartir este documento con {1}" -#: frappe/custom/doctype/customize_form/customize_form.py:254 +#: frappe/custom/doctype/customize_form/customize_form.py:256 msgid "{0} updated" msgstr "{0} actualizado" @@ -31691,7 +31814,7 @@ msgstr "{0} {1} está vinculado con los siguientes documentos enviados: {2}" msgid "{0} {1} not found" msgstr "{0} {1} no encontrado" -#: frappe/model/delete_doc.py:248 +#: frappe/model/delete_doc.py:288 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}." @@ -31804,7 +31927,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:1283 +#: frappe/public/js/frappe/views/reports/query_report.js:1291 msgid "{0}: {1} vs {2}" msgstr "{0}: {1} vs {2}" @@ -31840,11 +31963,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:2541 +#: frappe/utils/data.py:2567 msgid "{} Invalid python code on line {}" msgstr "{} Código python inválido en la línea {}" -#: frappe/utils/data.py:2550 +#: frappe/utils/data.py:2576 msgid "{} Possibly invalid python code.
{}" msgstr "{} Código python posiblemente inválido.
{}" @@ -31870,7 +31993,7 @@ msgstr "{} ha sido deshabilitado. Solo se puede habilitar si {} está marcado." msgid "{} is not a valid date string." msgstr "{} no es una cadena de fecha válida." -#: frappe/commands/utils.py:562 +#: frappe/commands/utils.py:561 msgid "{} not found in PATH! This is required to access the console." msgstr "¡{} no encontrado en PATH! Esto es necesario para acceder a la consola." diff --git a/frappe/locale/fa.po b/frappe/locale/fa.po index 5adda8ab94..6f9dbc7856 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-09-21 09:33+0000\n" -"PO-Revision-Date: 2025-09-22 20:24\n" +"POT-Creation-Date: 2025-10-05 09:33+0000\n" +"PO-Revision-Date: 2025-10-11 00:22\n" "Last-Translator: developers@frappe.io\n" "Language-Team: Persian\n" "MIME-Version: 1.0\n" @@ -78,7 +78,7 @@ msgstr "در جستجوی سراسری برای نوع {0} در ردیف {1} م msgid "'In List View' is not allowed for field {0} of type {1}" msgstr "در نمای فهرست برای فیلد {0} از نوع {1} مجاز نیست" -#: frappe/custom/doctype/customize_form/customize_form.py:363 +#: frappe/custom/doctype/customize_form/customize_form.py:367 msgid "'In List View' not allowed for type {0} in row {1}" msgstr "در نمای فهرست برای نوع {0} در ردیف {1} مجاز نیست" @@ -122,7 +122,7 @@ msgstr "0 - پیش‌نویس؛ 1 - ارسال شده؛ 2 - لغو شده" msgid "0 is highest" msgstr "0 بالاترین است" -#: frappe/public/js/frappe/form/grid_row.js:892 +#: frappe/public/js/frappe/form/grid_row.js:893 msgid "1 = True & 0 = False" msgstr "1 = درست و 0 = نادرست" @@ -141,11 +141,11 @@ msgstr "1 روز" msgid "1 Google Calendar Event synced." msgstr "1 رویداد تقویم Google همگام‌سازی شد." -#: frappe/public/js/frappe/views/reports/query_report.js:955 +#: frappe/public/js/frappe/views/reports/query_report.js:963 msgid "1 Report" msgstr "1 گزارش" -#: frappe/tests/test_utils.py:739 +#: frappe/tests/test_utils.py:845 msgid "1 day ago" msgstr "1 روز پیش" @@ -154,17 +154,17 @@ msgid "1 hour" msgstr "1 ساعت" #: frappe/public/js/frappe/utils/pretty_date.js:52 -#: frappe/tests/test_utils.py:737 +#: frappe/tests/test_utils.py:843 msgid "1 hour ago" msgstr "1 ساعت پیش" #: frappe/public/js/frappe/utils/pretty_date.js:48 -#: frappe/tests/test_utils.py:735 +#: frappe/tests/test_utils.py:841 msgid "1 minute ago" msgstr "1 دقیقه پیش" #: frappe/public/js/frappe/utils/pretty_date.js:66 -#: frappe/tests/test_utils.py:743 +#: frappe/tests/test_utils.py:849 msgid "1 month ago" msgstr "1 ماه پیش" @@ -186,37 +186,37 @@ msgctxt "User added row to child table" msgid "1 row to {0}" msgstr "" -#: frappe/tests/test_utils.py:734 +#: frappe/tests/test_utils.py:840 msgid "1 second ago" msgstr "1 ثانیه پیش" #: frappe/public/js/frappe/utils/pretty_date.js:62 -#: frappe/tests/test_utils.py:741 +#: frappe/tests/test_utils.py:847 msgid "1 week ago" msgstr "1 هفته قبل" #: frappe/public/js/frappe/utils/pretty_date.js:70 -#: frappe/tests/test_utils.py:745 +#: frappe/tests/test_utils.py:851 msgid "1 year ago" msgstr "1 سال پیش" -#: frappe/tests/test_utils.py:738 +#: frappe/tests/test_utils.py:844 msgid "2 hours ago" msgstr "2 ساعت پیش" -#: frappe/tests/test_utils.py:744 +#: frappe/tests/test_utils.py:850 msgid "2 months ago" msgstr "2 ماه پیش" -#: frappe/tests/test_utils.py:742 +#: frappe/tests/test_utils.py:848 msgid "2 weeks ago" msgstr "2 هفته پیش" -#: frappe/tests/test_utils.py:746 +#: frappe/tests/test_utils.py:852 msgid "2 years ago" msgstr "2 سال پیش" -#: frappe/tests/test_utils.py:736 +#: frappe/tests/test_utils.py:842 msgid "3 minutes ago" msgstr "3 دقیقه پیش" @@ -232,7 +232,7 @@ msgstr "4 ساعت" msgid "5 Records" msgstr "5 رکورد" -#: frappe/tests/test_utils.py:740 +#: frappe/tests/test_utils.py:846 msgid "5 days ago" msgstr "5 روز پیش" @@ -268,6 +268,16 @@ msgstr "{0} یک URL معتبر نیست" 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 "
لطفاً آن را به روز نکنید زیرا ممکن است فرم شما را به هم بریزد. از سفارشی‌سازی فرم View و Custom Fields برای تنظیم ویژگی ها استفاده کنید!
" +#. Introduction text of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "

Request a file containing your personally identifiable information (PII) that is saved on our system. The file will be in JSON format and is sent to you by email. If you would like to have your PII deleted from our system, please make a request to delete data.

" +msgstr "" + +#. Introduction text of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "

Send a request to delete your account and personally identifiable information (PII) that is stored on our system. You will receive an email to verify your request. Once the request is verified we will take care of deleting your PII. If you just want to check what PII we have stored, you can request your data.

" +msgstr "" + #. Content of the 'Help HTML' (HTML) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -569,6 +579,11 @@ msgstr "نام DocType باید با یک حرف شروع شود و فقط شا msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three." msgstr "" +#. Success message of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "A download link with your data will be sent to the email address associated with your account." +msgstr "یک لینک دانلود حاوی اطلاعات شما به آدرس ایمیل مرتبط با حساب کاربری‌تان ارسال خواهد شد." + #: frappe/custom/doctype/custom_field/custom_field.py:175 msgid "A field with the name {0} already exists in {1}" msgstr "فیلدی با نام {0} از قبل در {1} وجود دارد" @@ -695,7 +710,7 @@ msgstr "" #. 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.js:452 frappe/core/doctype/user/user.json +#: frappe/core/doctype/user/user.js:459 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 @@ -714,7 +729,7 @@ msgstr "" msgid "API Key cannot be regenerated" msgstr "کلید API قابل بازسازی نیست" -#: frappe/core/doctype/user/user.js:449 +#: frappe/core/doctype/user/user.js:456 msgid "API Keys" msgstr "کلیدهای API" @@ -738,7 +753,7 @@ msgstr "" #. 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.js:459 frappe/core/doctype/user/user.json +#: frappe/core/doctype/user/user.js:466 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" @@ -824,7 +839,7 @@ msgstr "توکن دسترسی" msgid "Access Token URL" msgstr "URL توکن دسترسی" -#: frappe/auth.py:491 +#: frappe/auth.py:494 msgid "Access not allowed from this IP Address" msgstr "دسترسی از این آدرس IP مجاز نیست" @@ -940,7 +955,7 @@ msgstr "عمل {0} در {1} {2} ناموفق بود. مشاهده آن {3}" #: 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:842 +#: frappe/public/js/frappe/views/reports/query_report.js:850 msgid "Actions" msgstr "اقدامات" @@ -997,7 +1012,7 @@ msgstr "لاگ فعالیت" #: 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:501 +#: frappe/public/js/frappe/form/grid_row.js:502 #: 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 @@ -1008,7 +1023,7 @@ msgstr "لاگ فعالیت" msgid "Add" msgstr "افزودن" -#: frappe/public/js/frappe/form/grid_row.js:454 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Add / Remove Columns" msgstr "اضافه / حذف ستون ها" @@ -1053,8 +1068,8 @@ msgid "Add Child" msgstr "افزودن فرزند" #: frappe/public/js/frappe/views/kanban/kanban_board.html:4 -#: frappe/public/js/frappe/views/reports/query_report.js:1832 -#: frappe/public/js/frappe/views/reports/query_report.js:1835 +#: frappe/public/js/frappe/views/reports/query_report.js:1840 +#: frappe/public/js/frappe/views/reports/query_report.js:1843 #: frappe/public/js/frappe/views/reports/report_view.js:360 #: frappe/public/js/frappe/views/reports/report_view.js:385 #: frappe/public/js/print_format_builder/Field.vue:112 @@ -1148,7 +1163,7 @@ msgstr "افزودن مشترکین" msgid "Add Tags" msgstr "افزودن تگ" -#: frappe/public/js/frappe/list/list_view.js:2149 +#: frappe/public/js/frappe/list/list_view.js:2151 msgctxt "Button in list view actions menu" msgid "Add Tags" msgstr "افزودن تگ" @@ -1529,11 +1544,11 @@ msgstr "هشدار" msgid "Alerts and Notifications" msgstr "هشدارها و اعلان ها" -#: frappe/database/query.py:1608 +#: frappe/database/query.py:1610 msgid "Alias cannot be a SQL keyword: {0}" msgstr "" -#: frappe/database/query.py:1533 +#: frappe/database/query.py:1535 msgid "Alias must be a string" msgstr "" @@ -1604,7 +1619,7 @@ msgstr "همه موارد ارسالی" #: frappe/custom/doctype/customize_form/customize_form.js:452 msgid "All customizations will be removed. Please confirm." -msgstr "تمام سفارشی سازی ها حذف خواهند شد. لطفا تایید کنید." +msgstr "تمام سفارشی سازی ها حذف خواهند شد. لطفا تأیید کنید." #: frappe/templates/includes/comments/comments.html:158 msgid "All fields are necessary to submit the comment." @@ -1756,7 +1771,7 @@ msgstr "اجازه نقش ها" #. Transition' #: frappe/workflow/doctype/workflow_transition/workflow_transition.json msgid "Allow Self Approval" -msgstr "اجازه تایید خود" +msgstr "اجازه تأیید خود" #. Label of the enable_telemetry (Check) field in DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json @@ -1767,7 +1782,7 @@ msgstr "اجازه ارسال داده‌های استفاده برای بهبو #. Transition' #: frappe/workflow/doctype/workflow_transition/workflow_transition.json msgid "Allow approval for creator of the document" -msgstr "اجازه تایید برای ایجاد کننده سند" +msgstr "اجازه تأیید برای ایجاد کننده سند" #. Label of the allow_comments (Check) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json @@ -1981,6 +1996,12 @@ msgstr "همچنین افزودن فیلد وابستگی به وضعیت {0}" msgid "Alternative Email ID" msgstr "شناسه ایمیل جایگزین" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Always" +msgstr "همیشه" + #. Label of the always_bcc (Data) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Always BCC Address" @@ -2057,6 +2078,11 @@ msgstr "اصلاحیه مجاز نیست" msgid "Amendment naming rules updated." msgstr "قوانین نام‌گذاری اصلاحیه به روز شد." +#. Success message of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "An email to verify your request has been sent to your email address. Please verify your request to complete the process." +msgstr "ایمیلی برای تأیید درخواست شما به آدرس ایمیل شما ارسال شده است. لطفاً برای تکمیل فرآیند، درخواست خود را تأیید کنید." + #: frappe/public/js/frappe/ui/toolbar/toolbar.js:354 msgid "An error occurred while setting Session Defaults" msgstr "هنگام تنظیم پیش‌فرض‌های نشست خطایی روی داد" @@ -2239,7 +2265,7 @@ msgstr "اعمال شد" msgid "Apply" msgstr "درخواست دادن" -#: frappe/public/js/frappe/list/list_view.js:2134 +#: frappe/public/js/frappe/list/list_view.js:2136 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" msgstr "اعمال قانون تخصیص" @@ -2293,7 +2319,7 @@ msgstr "درخواست: {0}" #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:115 msgid "Approval Required" -msgstr "تایید لازم است" +msgstr "تأیید لازم است" #. Label of a standard navbar item #. Type: Route @@ -2324,7 +2350,7 @@ msgstr "ستون های بایگانی شده" msgid "Are you sure you want to cancel the invitation?" msgstr "آیا مطمئن هستید که می‌خواهید دعوت را لغو کنید؟" -#: frappe/public/js/frappe/list/list_view.js:2113 +#: frappe/public/js/frappe/list/list_view.js:2115 msgid "Are you sure you want to clear the assignments?" msgstr "آیا مطمئن هستید که می‌خواهید واگذاری ها را پاک کنید؟" @@ -2360,7 +2386,7 @@ msgstr "" msgid "Are you sure you want to discard the changes?" msgstr "آیا مطمئن هستید که می‌خواهید تغییرات را نادیده بگیرید؟" -#: frappe/public/js/frappe/views/reports/query_report.js:969 +#: frappe/public/js/frappe/views/reports/query_report.js:977 msgid "Are you sure you want to generate a new report?" msgstr "آیا مطمئن هستید که می‌خواهید یک گزارش جدید ایجاد کنید؟" @@ -2368,7 +2394,7 @@ msgstr "آیا مطمئن هستید که می‌خواهید یک گزارش ج msgid "Are you sure you want to merge {0} with {1}?" msgstr "آیا مطمئنید که می‌خواهید {0} را با {1} ادغام کنید؟" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:108 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:118 msgid "Are you sure you want to proceed?" msgstr "آیا مطمئن هستید که می‌خواهید ادامه دهید؟" @@ -2423,6 +2449,12 @@ msgstr "از آنجایی که اشتراک‌گذاری سند غیرفعال msgid "As per your request, your account and data on {0} associated with email {1} has been permanently deleted" msgstr "طبق درخواست شما، حساب و داده های شما در {0} مرتبط با ایمیل {1} برای همیشه حذف شده است" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Ask" +msgstr "بپرس" + #. Label of the assign_condition (Code) field in DocType 'Assignment Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Assign Condition" @@ -2432,7 +2464,7 @@ msgstr "تعیین شرط" msgid "Assign To" msgstr "اختصاص دادن به" -#: frappe/public/js/frappe/list/list_view.js:2095 +#: frappe/public/js/frappe/list/list_view.js:2097 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "اختصاص دادن به" @@ -2575,7 +2607,7 @@ msgstr "تکالیف" msgid "Asynchronous" msgstr "ناهمزمان" -#: frappe/public/js/frappe/form/grid_row.js:696 +#: frappe/public/js/frappe/form/grid_row.js:697 msgid "At least one column is required to show in the grid." msgstr "حداقل یک ستون برای نمایش در شبکه مورد نیاز است." @@ -3533,7 +3565,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}" @@ -3556,7 +3588,7 @@ msgstr "حذف انبوه" msgid "Bulk Edit" msgstr "ویرایش انبوه" -#: frappe/public/js/frappe/form/grid.js:1189 +#: frappe/public/js/frappe/form/grid.js:1190 msgid "Bulk Edit {0}" msgstr "ویرایش انبوه {0}" @@ -3848,7 +3880,7 @@ msgstr "نمی‌توان نام {0} را به {1} تغییر داد زیرا {0 #. 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/doctype/doctype_list.js:131 #: frappe/core/doctype/user_document_type/user_document_type.json #: frappe/core/doctype/user_invitation/user_invitation.js:17 #: frappe/email/doctype/notification/notification.json @@ -3856,7 +3888,7 @@ msgstr "نمی‌توان نام {0} را به {1} تغییر داد زیرا {0 msgid "Cancel" msgstr "لغو" -#: frappe/public/js/frappe/list/list_view.js:2204 +#: frappe/public/js/frappe/list/list_view.js:2206 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "لغو" @@ -3874,7 +3906,7 @@ msgstr "لغو همه" msgid "Cancel All Documents" msgstr "لغو تمام اسناد" -#: frappe/public/js/frappe/list/list_view.js:2209 +#: frappe/public/js/frappe/list/list_view.js:2211 msgctxt "Title of confirmation dialog" msgid "Cancel {0} documents?" msgstr "{0} سند لغو شود؟" @@ -3927,7 +3959,7 @@ msgstr "نمی‌توان حذف کرد" msgid "Cannot Update After Submit" msgstr "پس از ارسال امکان به‌روزرسانی وجود ندارد" -#: frappe/core/doctype/file/file.py:643 +#: frappe/core/doctype/file/file.py:646 msgid "Cannot access file path {0}" msgstr "دسترسی به مسیر فایل {0} امکان پذیر نیست" @@ -3975,7 +4007,7 @@ msgstr "نمی‌توان محیط کار خصوصی از سایر کاربرا msgid "Cannot delete Home and Attachments folders" msgstr "نمی‌توان پوشه‌های Home و Attachments را حذف کرد" -#: frappe/model/delete_doc.py:379 +#: frappe/model/delete_doc.py:419 msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}" msgstr "نمی‌توان حذف یا لغو کرد زیرا {0} {1} با {2} {3} {4} پیوند داده شده است" @@ -4055,15 +4087,15 @@ msgstr "نمی‌توان {0} را برای یک نوع سند غیر قابل msgid "Cannot find file {} on disk" msgstr "نمی‌توان فایل {} را روی دیسک پیدا کرد" -#: frappe/core/doctype/file/file.py:583 +#: frappe/core/doctype/file/file.py:586 msgid "Cannot get file contents of a Folder" msgstr "محتویات فایل یک پوشه را نمی‌توان دریافت کرد" #: frappe/printing/page/print/print.js:884 msgid "Cannot have multiple printers mapped to a single print format." -msgstr "نمی‌توان چندین چاپگر را به یک قالب چاپی نگاشت کرد." +msgstr "نمی‌توان چندین چاپگر را به یک قالب چاپ واحد نگاشت کرد." -#: frappe/public/js/frappe/form/grid.js:1133 +#: frappe/public/js/frappe/form/grid.js:1134 msgid "Cannot import table with more than 5000 rows." msgstr "" @@ -4079,7 +4111,7 @@ msgstr "نمی‌توان نگاشت کرد زیرا شرایط زیر نامو msgid "Cannot match column {0} with any field" msgstr "ستون {0} با هیچ فیلدی مطابقت ندارد" -#: frappe/public/js/frappe/form/grid_row.js:175 +#: frappe/public/js/frappe/form/grid_row.js:176 msgid "Cannot move row" msgstr "نمی‌توان ردیف را جابجا کرد" @@ -4108,11 +4140,11 @@ msgstr "نمی‌توان {0} را ارسال کرد." msgid "Cannot update {0}" msgstr "نمی‌توان {0} را به روز کرد" -#: frappe/model/db_query.py:1130 +#: frappe/model/db_query.py:1136 msgid "Cannot use sub-query here." msgstr "اینجا نمی‌توان از پرسمان فرعی استفاده کرد." -#: frappe/model/db_query.py:1162 +#: frappe/model/db_query.py:1168 msgid "Cannot use {0} in order/group by" msgstr "نمی‌توان از {0} به ترتیب/گروه بندی بر اساس استفاده کرد" @@ -4385,11 +4417,11 @@ msgstr "جدول فرزند {0} برای فیلد {1}" #. Description of the 'Is Child Table' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:52 +#: frappe/core/doctype/doctype/doctype_list.js:53 msgid "Child Tables are shown as a Grid in other DocTypes" msgstr "جداول Child به صورت Grid در سایر DocType ها نشان داده می‌شوند" -#: frappe/database/query.py:660 +#: frappe/database/query.py:662 msgid "Child query fields for '{0}' must be a list or tuple." msgstr "" @@ -4445,7 +4477,7 @@ msgstr "پاک کردن و افزودن الگو" msgid "Clear All" msgstr "همه را پاک کن" -#: frappe/public/js/frappe/list/list_view.js:2110 +#: frappe/public/js/frappe/list/list_view.js:2112 msgctxt "Button in list view actions menu" msgid "Clear Assignment" msgstr "پاک کردن واگذاری" @@ -4501,7 +4533,7 @@ msgstr "برای ورود به {0} روی دکمه کلیک کنید" #: frappe/templates/emails/data_deletion_approval.html:2 msgid "Click on the link below to approve the request" -msgstr "برای تایید درخواست روی لینک زیر کلیک کنید" +msgstr "برای تأیید درخواست روی لینک زیر کلیک کنید" #: frappe/templates/emails/new_user.html:7 msgid "Click on the link below to complete your registration and set a new password" @@ -4513,7 +4545,7 @@ 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 @@ -4539,7 +4571,7 @@ msgstr "برای تنظیم فیلترهای پویا کلیک کنید" msgid "Click to Set Filters" msgstr "برای تنظیم فیلترها کلیک کنید" -#: frappe/public/js/frappe/list/list_view.js:739 +#: frappe/public/js/frappe/list/list_view.js:741 msgid "Click to sort by {0}" msgstr "برای مرتب سازی بر اساس {0} کلیک کنید" @@ -4717,7 +4749,7 @@ msgctxt "Shrink code field." msgid "Collapse" msgstr "جمع شدن" -#: frappe/public/js/frappe/views/reports/query_report.js:2113 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 #: frappe/public/js/frappe/views/treeview.js:123 msgid "Collapse All" msgstr "جمع کردن همه" @@ -4772,7 +4804,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:1233 +#: frappe/public/js/frappe/views/reports/query_report.js:1241 #: frappe/public/js/frappe/widgets/widget_dialog.js:546 #: frappe/public/js/frappe/widgets/widget_dialog.js:694 #: frappe/website/doctype/color/color.json @@ -4828,11 +4860,11 @@ msgstr "نام ستون" msgid "Column Name cannot be empty" msgstr "نام ستون نمی‌تواند خالی باشد" -#: frappe/public/js/frappe/form/grid_row.js:454 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Column Width" msgstr "عرض ستون" -#: frappe/public/js/frappe/form/grid_row.js:661 +#: frappe/public/js/frappe/form/grid_row.js:662 msgid "Column width cannot be zero." msgstr "عرض ستون نمی‌تواند صفر باشد." @@ -4859,7 +4891,7 @@ msgstr "ستون‌ها" msgid "Columns / Fields" msgstr "ستون ها / فیلدها" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:397 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:411 msgid "Columns based on" msgstr "ستون ها بر اساس" @@ -5111,7 +5143,7 @@ msgstr "شرایط" #. Settings' #: frappe/integrations/doctype/oauth_settings/oauth_settings.json msgid "Config" -msgstr "" +msgstr "پیکربندی" #. Label of the configuration_section (Section Break) field in DocType 'Social #. Login Key' @@ -5123,7 +5155,7 @@ msgstr "پیکربندی" msgid "Configure Chart" msgstr "نمودار را پیکربندی کنید" -#: frappe/public/js/frappe/form/grid_row.js:406 +#: frappe/public/js/frappe/form/grid_row.js:407 msgid "Configure Columns" msgstr "پیکربندی ستون ها" @@ -5150,15 +5182,15 @@ msgstr "نحوه نامگذاری اسناد اصلاح‌شده را پیکرب msgid "Configure various aspects of how document naming works like naming series, current counter." msgstr "" -#: frappe/core/doctype/user/user.js:412 frappe/public/js/frappe/dom.js:345 +#: frappe/core/doctype/user/user.js:400 frappe/public/js/frappe/dom.js:345 #: frappe/www/update-password.html:66 msgid "Confirm" -msgstr "تایید" +msgstr "تأیید" #: frappe/public/js/frappe/ui/messages.js:31 msgctxt "Title of confirmation dialog" msgid "Confirm" -msgstr "تایید" +msgstr "تأیید" #: frappe/integrations/oauth2.py:138 msgid "Confirm Access" @@ -5167,30 +5199,30 @@ 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 "حذف اکانت را تایید کنید" +msgstr "حذف اکانت را تأیید کنید" -#: frappe/core/doctype/user/user.js:196 +#: frappe/core/doctype/user/user.js:184 msgid "Confirm New Password" msgstr "گذرواژه جدید را تأیید کنید" #: frappe/www/update-password.html:55 msgid "Confirm Password" -msgstr "گذرواژه را تایید کنید" +msgstr "گذرواژه را تأیید کنید" #: frappe/templates/emails/data_deletion_approval.html:6 #: frappe/templates/emails/delete_data_confirmation.html:7 msgid "Confirm Request" -msgstr "درخواست را تایید کنید" +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 "الگوی ایمیل تایید" +msgstr "الگوی ایمیل تأیید" #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:397 msgid "Confirmed" -msgstr "تایید شده" +msgstr "تأیید شده" #: 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." @@ -5422,7 +5454,7 @@ msgstr "کپی خطا در کلیپ بورد" msgid "Copy to Clipboard" msgstr "کپی به کلیپ بورد" -#: frappe/core/doctype/user/user.js:480 +#: frappe/core/doctype/user/user.js:487 msgid "Copy token to clipboard" msgstr "کپی کردن توکن در کلیپ بورد" @@ -5431,7 +5463,7 @@ msgstr "کپی کردن توکن در کلیپ بورد" msgid "Copyright" msgstr "کپی رایت" -#: frappe/custom/doctype/customize_form/customize_form.py:123 +#: frappe/custom/doctype/customize_form/customize_form.py:125 msgid "Core DocTypes cannot be customized." msgstr "Core DocTypes را نمی‌توان سفارشی کرد." @@ -5455,7 +5487,7 @@ msgstr "{0} پیدا نشد" msgid "Could not map column {0} to field {1}" msgstr "ستون {0} به فیلد {1} نگاشت نشد" -#: frappe/database/query.py:564 +#: frappe/database/query.py:566 msgid "Could not parse field: {0}" msgstr "" @@ -5547,13 +5579,13 @@ 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:1265 +#: frappe/public/js/frappe/views/reports/query_report.js:1273 #: frappe/public/js/frappe/views/workspace/workspace.js:469 #: frappe/workflow/page/workflow_builder/workflow_builder.js:46 msgid "Create" msgstr "ایجاد کردن" -#: frappe/core/doctype/doctype/doctype_list.js:102 +#: frappe/core/doctype/doctype/doctype_list.js:103 msgid "Create & Continue" msgstr "ایجاد و ادامه" @@ -5567,7 +5599,7 @@ msgid "Create Card" msgstr "ایجاد کارت" #: frappe/public/js/frappe/views/reports/query_report.js:285 -#: frappe/public/js/frappe/views/reports/query_report.js:1192 +#: frappe/public/js/frappe/views/reports/query_report.js:1200 msgid "Create Chart" msgstr "نمودار ایجاد کنید" @@ -5601,12 +5633,12 @@ msgstr "ایجاد لاگ" msgid "Create New" msgstr "ایجاد جدید" -#: frappe/public/js/frappe/list/list_view.js:512 +#: frappe/public/js/frappe/list/list_view.js:514 msgctxt "Create a new document from list view" msgid "Create New" msgstr "ایجاد جدید" -#: frappe/core/doctype/doctype/doctype_list.js:100 +#: frappe/core/doctype/doctype/doctype_list.js:101 msgid "Create New DocType" msgstr "DocType جدید ایجاد کنید" @@ -5614,7 +5646,7 @@ msgstr "DocType جدید ایجاد کنید" msgid "Create New Kanban Board" msgstr "صفحه کانبان جدید ایجاد کنید" -#: frappe/core/doctype/user/user.js:276 +#: frappe/core/doctype/user/user.js:264 msgid "Create User Email" msgstr "ایجاد ایمیل کاربر" @@ -5637,8 +5669,8 @@ msgstr "یک رکورد جدید ایجاد کنید" #: frappe/public/js/frappe/form/controls/link.js:315 #: frappe/public/js/frappe/form/controls/link.js:317 #: frappe/public/js/frappe/form/link_selector.js:139 -#: frappe/public/js/frappe/list/list_view.js:504 -#: frappe/public/js/frappe/web_form/web_form_list.js:225 +#: frappe/public/js/frappe/list/list_view.js:506 +#: frappe/public/js/frappe/web_form/web_form_list.js:226 msgid "Create a new {0}" msgstr "ایجاد یک {0} جدید" @@ -5654,7 +5686,7 @@ msgstr "ایجاد یا ویرایش قالب چاپ" msgid "Create or Edit Workflow" msgstr "ایجاد یا ویرایش گردش کار" -#: frappe/public/js/frappe/list/list_view.js:507 +#: frappe/public/js/frappe/list/list_view.js:509 msgid "Create your first {0}" msgstr "اولین {0} خود را ایجاد کنید" @@ -6001,7 +6033,7 @@ 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/core/doctype/doctype/doctype_list.js:83 #: frappe/website/doctype/website_theme/website_theme.json msgid "Custom?" msgstr "سفارشی؟" @@ -6036,7 +6068,7 @@ msgstr "سفارشی سازی برای {0} صادر شده به:
{1}" msgid "Customize" msgstr "شخصی سازی" -#: frappe/public/js/frappe/list/list_view.js:1947 +#: frappe/public/js/frappe/list/list_view.js:1949 msgctxt "Button in list view menu" msgid "Customize" msgstr "شخصی سازی" @@ -6055,7 +6087,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:343 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 msgid "Customize Form" msgstr "سفارشی‌سازی فرم" @@ -6286,7 +6318,7 @@ msgstr "لاگ درون‌بُرد داده" msgid "Data Import Template" msgstr "الگوی درون‌بُرد داده" -#: frappe/custom/doctype/customize_form/customize_form.py:615 +#: frappe/custom/doctype/customize_form/customize_form.py:619 msgid "Data Too Long" msgstr "داده خیلی طولانی است" @@ -6317,7 +6349,7 @@ msgstr "استفاده از اندازه ردیف پایگاه داده" msgid "Database Storage Usage By Tables" msgstr "استفاده از ذخیره‌سازی پایگاه داده بر اساس جداول" -#: frappe/custom/doctype/customize_form/customize_form.py:249 +#: frappe/custom/doctype/customize_form/customize_form.py:251 msgid "Database Table Row Size Limit" msgstr "محدودیت اندازه ردیف جدول پایگاه داده" @@ -6687,13 +6719,13 @@ msgstr "با تاخیر" #: frappe/public/js/frappe/form/toolbar.js:464 #: frappe/public/js/frappe/views/reports/report_view.js:1749 #: frappe/public/js/frappe/views/treeview.js:329 -#: frappe/public/js/frappe/web_form/web_form_list.js:282 +#: frappe/public/js/frappe/web_form/web_form_list.js:283 #: frappe/templates/discussions/reply_card.html:35 #: frappe/templates/discussions/reply_section.html:29 msgid "Delete" msgstr "حذف" -#: frappe/public/js/frappe/list/list_view.js:2172 +#: frappe/public/js/frappe/list/list_view.js:2174 msgctxt "Button in list view actions menu" msgid "Delete" msgstr "حذف" @@ -6726,7 +6758,7 @@ msgstr "حذف ستون" msgid "Delete Data" msgstr "حذف داده ها" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:106 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:116 msgid "Delete Kanban Board" msgstr "صفحه کانبان را حذف کنید" @@ -6740,7 +6772,7 @@ msgctxt "Title of confirmation dialog" msgid "Delete Tab" msgstr "حذف تب" -#: frappe/public/js/frappe/views/reports/query_report.js:936 +#: frappe/public/js/frappe/views/reports/query_report.js:944 msgid "Delete and Generate New" msgstr "حذف و ایجاد جدید" @@ -6782,12 +6814,12 @@ msgstr "حذف تب" msgid "Delete this record to allow sending to this email address" msgstr "این سابقه را حذف کنید تا امکان ارسال به این آدرس ایمیل فراهم شود" -#: frappe/public/js/frappe/list/list_view.js:2177 +#: frappe/public/js/frappe/list/list_view.js:2179 msgctxt "Title of confirmation dialog" msgid "Delete {0} item permanently?" msgstr "{0} مورد برای همیشه حذف شود؟" -#: frappe/public/js/frappe/list/list_view.js:2183 +#: frappe/public/js/frappe/list/list_view.js:2185 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "{0} مورد برای همیشه حذف شود؟" @@ -7284,10 +7316,14 @@ msgstr "کاربر جدید ایجاد نکنید" msgid "Do not create new user if user with email does not exist in the system" msgstr "اگر کاربر با ایمیل در سیستم وجود ندارد، کاربر جدیدی ایجاد نکنید" -#: frappe/public/js/frappe/form/grid.js:1194 +#: frappe/public/js/frappe/form/grid.js:1195 msgid "Do not edit headers which are preset in the template" msgstr "سرصفحه هایی را که در قالب از پیش تنظیم شده اند ویرایش نکنید" +#: frappe/public/js/frappe/router.js:624 +msgid "Do not warn me again about {0}" +msgstr "دوباره در مورد {0} به من هشدار نده" + #: frappe/core/doctype/system_settings/system_settings.js:71 msgid "Do you still want to proceed?" msgstr "آیا هنوز می‌خواهید ادامه دهید؟" @@ -7711,7 +7747,7 @@ msgstr "عنوان سند" #: 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/public/js/frappe/roles_editor.js:68 #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json #: frappe/workflow/doctype/workflow/workflow.json msgid "Document Type" @@ -7762,15 +7798,15 @@ msgstr "قفل سند باز شد" msgid "Document follow is not enabled for this user." msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1300 +#: frappe/public/js/frappe/list/list_view.js:1302 msgid "Document has been cancelled" msgstr "سند لغو شده است" -#: frappe/public/js/frappe/list/list_view.js:1299 +#: frappe/public/js/frappe/list/list_view.js:1301 msgid "Document has been submitted" msgstr "سند ارسال شده است" -#: frappe/public/js/frappe/list/list_view.js:1298 +#: frappe/public/js/frappe/list/list_view.js:1300 msgid "Document is in draft state" msgstr "سند در حالت پیش‌نویس است" @@ -7912,7 +7948,7 @@ msgstr "دونات" msgid "Double click to edit label" msgstr "" -#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:467 +#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:474 #: frappe/email/doctype/auto_email_report/auto_email_report.js:8 #: frappe/public/js/frappe/form/grid.js:66 msgid "Download" @@ -7945,7 +7981,7 @@ msgstr "لینک دانلود" msgid "Download PDF" msgstr "دانلود PDF" -#: frappe/public/js/frappe/views/reports/query_report.js:832 +#: frappe/public/js/frappe/views/reports/query_report.js:840 msgid "Download Report" msgstr "دانلود گزارش" @@ -8145,8 +8181,8 @@ msgstr "خروج" #: 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:880 -#: frappe/public/js/frappe/views/reports/query_report.js:1783 +#: frappe/public/js/frappe/views/reports/query_report.js:888 +#: frappe/public/js/frappe/views/reports/query_report.js:1791 #: 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 @@ -8158,7 +8194,7 @@ msgstr "خروج" msgid "Edit" msgstr "ویرایش" -#: frappe/public/js/frappe/list/list_view.js:2258 +#: frappe/public/js/frappe/list/list_view.js:2260 msgctxt "Button in list view actions menu" msgid "Edit" msgstr "ویرایش" @@ -8168,7 +8204,7 @@ msgctxt "Button in web form" msgid "Edit" msgstr "ویرایش" -#: frappe/public/js/frappe/form/grid_row.js:349 +#: frappe/public/js/frappe/form/grid_row.js:350 msgctxt "Edit grid row" msgid "Edit" msgstr "ویرایش" @@ -8197,7 +8233,7 @@ msgstr "ویرایش HTML سفارشی" msgid "Edit DocType" msgstr "ویرایش DocType" -#: frappe/public/js/frappe/list/list_view.js:1974 +#: frappe/public/js/frappe/list/list_view.js:1976 msgctxt "Button in list view menu" msgid "Edit DocType" msgstr "ویرایش DocType" @@ -8317,7 +8353,7 @@ msgstr "ویرایش {0}" #. 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/core/doctype/doctype/doctype_list.js:58 #: frappe/custom/doctype/customize_form/customize_form.json msgid "Editable Grid" msgstr "شبکه قابل ویرایش" @@ -8362,6 +8398,8 @@ msgstr "انتخابگر عنصر" #. 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' +#. Label of a field in the request-data Web Form +#. Label of a field in the request-to-delete-data Web Form #: frappe/automation/workspace/tools/tools.json #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/custom_docperm/custom_docperm.json @@ -8380,6 +8418,8 @@ msgstr "انتخابگر عنصر" #: 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/website/web_form/request_data/request_data.json +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json #: frappe/www/login.html:8 frappe/www/login.py:104 msgid "Email" msgstr "ایمیل" @@ -8421,7 +8461,7 @@ 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' @@ -8611,7 +8651,7 @@ msgstr "ایمیل به عنوان هرزنامه علامت گذاری شده msgid "Email has been moved to trash" msgstr "ایمیل به سطل زباله منتقل شد" -#: frappe/core/doctype/user/user.js:278 +#: frappe/core/doctype/user/user.js:266 msgid "Email is mandatory to create User Email" msgstr "ایمیل برای ایجاد ایمیل کاربر الزامی است" @@ -8654,7 +8694,7 @@ msgstr "ایمیل‌ها با اقدامات بعدی ممکن در گردش ک msgid "Embed code copied" msgstr "کد جاسازی کپی شد" -#: frappe/database/query.py:1537 +#: frappe/database/query.py:1539 msgid "Empty alias is not allowed" msgstr "" @@ -8662,7 +8702,7 @@ msgstr "" msgid "Empty column" msgstr "" -#: frappe/database/query.py:1455 +#: frappe/database/query.py:1457 msgid "Empty string arguments are not allowed" msgstr "" @@ -9118,9 +9158,9 @@ msgstr "خطا در اسکریپت کلاینت." msgid "Error in Header/Footer Script" msgstr "خطا در اسکریپت سرصفحه/پانویس" -#: frappe/email/doctype/notification/notification.py:640 -#: frappe/email/doctype/notification/notification.py:780 -#: frappe/email/doctype/notification/notification.py:786 +#: frappe/email/doctype/notification/notification.py:642 +#: frappe/email/doctype/notification/notification.py:782 +#: frappe/email/doctype/notification/notification.py:788 msgid "Error in Notification" msgstr "خطا در اعلان" @@ -9140,7 +9180,7 @@ msgstr "" msgid "Error while connecting to email account {0}" msgstr "خطا هنگام اتصال به حساب ایمیل {0}" -#: frappe/email/doctype/notification/notification.py:777 +#: frappe/email/doctype/notification/notification.py:779 msgid "Error while evaluating Notification {0}. Please fix your template." msgstr "خطا هنگام ارزیابی اعلان {0}. لطفا قالب خود را اصلاح کنید." @@ -9295,13 +9335,13 @@ msgstr "اجرای اسکریپت کنسول" #: frappe/public/js/frappe/ui/dropdown_console.js:132 msgid "Executing Code" -msgstr "" +msgstr "در حال اجرای کد" #: frappe/desk/doctype/system_console/system_console.js:18 msgid "Executing..." msgstr "در حال اجرا..." -#: frappe/public/js/frappe/views/reports/query_report.js:2132 +#: frappe/public/js/frappe/views/reports/query_report.js:2140 msgid "Execution Time: {0} sec" msgstr "زمان اجرا: {0} ثانیه" @@ -9327,12 +9367,12 @@ msgctxt "Enlarge code field." msgid "Expand" msgstr "بسط دادن" -#: frappe/public/js/frappe/views/reports/query_report.js:2113 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 #: frappe/public/js/frappe/views/treeview.js:133 msgid "Expand All" msgstr "گسترش همه" -#: frappe/database/query.py:352 +#: frappe/database/query.py:354 msgid "Expected 'and' or 'or' operator, found: {0}" msgstr "" @@ -9390,13 +9430,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:1820 +#: frappe/public/js/frappe/views/reports/query_report.js:1828 #: frappe/public/js/frappe/views/reports/report_view.js:1629 #: frappe/public/js/frappe/widgets/chart_widget.js:315 msgid "Export" msgstr "برون‌بُرد" -#: frappe/public/js/frappe/list/list_view.js:2280 +#: frappe/public/js/frappe/list/list_view.js:2282 msgctxt "Button in list view actions menu" msgid "Export" msgstr "برون‌بُرد" @@ -9589,7 +9629,7 @@ msgstr "محاسبه بدنه درخواست ناموفق بود: {}" msgid "Failed to connect to server" msgstr "اتصال به سرور ممکن نشد" -#: frappe/auth.py:698 +#: frappe/auth.py:701 msgid "Failed to decode token, please provide a valid base64-encoded token." msgstr "رمزگشایی توکن انجام نشد، لطفاً یک توکن رمزگذاری شده معتبر base64 ارائه دهید." @@ -9753,7 +9793,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:236 -#: frappe/public/js/frappe/views/reports/query_report.js:1879 +#: frappe/public/js/frappe/views/reports/query_report.js:1887 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_form_list_column/web_form_list_column.json msgid "Field" @@ -9836,7 +9876,7 @@ msgstr "فیلد {0} به نوع سند موجود {1} اشاره دارد." msgid "Field {0} not found." msgstr "فیلد {0} یافت نشد." -#: frappe/email/doctype/notification/notification.py:545 +#: frappe/email/doctype/notification/notification.py:547 msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link" msgstr "" @@ -9854,7 +9894,7 @@ msgstr "" #: 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:454 +#: frappe/public/js/frappe/form/grid_row.js:455 #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Fieldname" msgstr "نام فیلد" @@ -9935,7 +9975,7 @@ 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 +#: frappe/database/query.py:613 msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function" msgstr "" @@ -9963,7 +10003,7 @@ msgstr "نوع فیلد" msgid "Fieldtype cannot be changed from {0} to {1}" msgstr "نوع فیلد را نمی‌توان از {0} به {1} تغییر داد" -#: frappe/custom/doctype/customize_form/customize_form.py:589 +#: frappe/custom/doctype/customize_form/customize_form.py:593 msgid "Fieldtype cannot be changed from {0} to {1} in row {2}" msgstr "نوع فیلد را نمی‌توان از {0} به {1} در ردیف {2} تغییر داد" @@ -10029,7 +10069,7 @@ msgstr "آدرس فایل" msgid "File backup is ready" msgstr "پشتیبان گیری از فایل آماده است" -#: frappe/core/doctype/file/file.py:646 +#: frappe/core/doctype/file/file.py:649 msgid "File name cannot have {0}" msgstr "نام فایل نمی‌تواند دارای {0} باشد" @@ -10037,7 +10077,7 @@ msgstr "نام فایل نمی‌تواند دارای {0} باشد" msgid "File not attached" msgstr "فایل پیوست نشده است" -#: frappe/core/doctype/file/file.py:756 frappe/public/js/frappe/request.js:200 +#: frappe/core/doctype/file/file.py:759 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 "اندازه فایل از حداکثر اندازه مجاز {0} مگابایت بیشتر است" @@ -10050,7 +10090,7 @@ msgstr "فایل خیلی بزرگ است" msgid "File type of {0} is not allowed" msgstr "نوع فایل {0} مجاز نیست" -#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:448 +#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:451 msgid "File {0} does not exist" msgstr "فایل {0} وجود ندارد" @@ -10104,11 +10144,11 @@ msgstr "نام فیلتر" msgid "Filter Values" msgstr "مقادیر فیلتر" -#: frappe/database/query.py:358 +#: frappe/database/query.py:360 msgid "Filter condition missing after operator: {0}" msgstr "" -#: frappe/database/query.py:425 +#: frappe/database/query.py:427 msgid "Filter fields cannot contain backticks (`)." msgstr "" @@ -10185,7 +10225,7 @@ msgstr "بخش فیلترها" msgid "Filters applied for {0}" msgstr "فیلترهای اعمال شده برای {0}" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:188 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:202 msgid "Filters saved" msgstr "فیلترها ذخیره شدند" @@ -10233,9 +10273,12 @@ msgstr "اولین روز هفته" #. Label of the first_name (Data) field in DocType 'Contact' #. Label of the first_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json #: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:44 -#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:15 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:15 msgid "First Name" msgstr "نام کوچک" @@ -10316,7 +10359,7 @@ msgstr "نام پوشه" msgid "Folder name should not include '/' (slash)" msgstr "نام پوشه نباید شامل '/' (اسلش) باشد" -#: frappe/core/doctype/file/file.py:494 +#: frappe/core/doctype/file/file.py:497 msgid "Folder {0} is not empty" msgstr "پوشه {0} خالی نیست" @@ -10518,7 +10561,7 @@ msgstr "برای کاربر" msgid "For Value" msgstr "برای مقدار" -#: frappe/public/js/frappe/views/reports/query_report.js:2129 +#: frappe/public/js/frappe/views/reports/query_report.js:2137 #: frappe/public/js/frappe/views/reports/report_view.js:108 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) استفاده کنید." @@ -10803,7 +10846,7 @@ msgstr "از تاریخ" msgid "From Date Field" msgstr "از فیلد تاریخ" -#: frappe/public/js/frappe/views/reports/query_report.js:1840 +#: frappe/public/js/frappe/views/reports/query_report.js:1848 msgid "From Document Type" msgstr "از نوع سند" @@ -10865,13 +10908,13 @@ msgstr "عملکرد بر اساس" msgid "Function {0} is not whitelisted." msgstr "تابع {0} در لیست سفید قرار ندارد." -#: frappe/database/query.py:1417 +#: frappe/database/query.py:1419 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 "گره‌های بیشتر را فقط می‌توان تحت گره‌های نوع «گروهی» ایجاد کرد" +msgid "Further sub-groups can only be created under records marked as 'Group'" +msgstr "زیرگروه‌های بیشتر فقط می‌توانند تحت رکوردهایی که با عنوان «گروه» مشخص شده‌اند، ایجاد شوند" #: frappe/core/doctype/communication/communication.js:291 msgid "Fw: {0}" @@ -10930,7 +10973,7 @@ msgstr "عمومی" msgid "Generate Keys" msgstr "ایجاد کلیدها" -#: frappe/public/js/frappe/views/reports/query_report.js:874 +#: frappe/public/js/frappe/views/reports/query_report.js:882 msgid "Generate New Report" msgstr "ایجاد گزارش جدید" @@ -11346,14 +11389,10 @@ msgstr "گروه بر اساس نوع" msgid "Group By field is required to create a dashboard chart" msgstr "برای ایجاد نمودار داشبورد فیلد Group By لازم است" -#: frappe/database/query.py:750 +#: frappe/database/query.py:752 msgid "Group By must be a string" msgstr "" -#: frappe/public/js/frappe/views/treeview.js:418 -msgid "Group Node" -msgstr "گره گروه" - #. Label of the ldap_group_objectclass (Data) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Group Object Class" @@ -11683,7 +11722,7 @@ msgstr "پنهان شده است" msgid "Hidden Fields" msgstr "فیلدهای پنهان" -#: frappe/public/js/frappe/views/reports/query_report.js:1642 +#: frappe/public/js/frappe/views/reports/query_report.js:1650 msgid "Hidden columns include: {0}" msgstr "" @@ -11795,7 +11834,7 @@ msgstr "نوار کناری، منو و دیدگاه‌ها را پنهان کن msgid "Hide Standard Menu" msgstr "مخفی کردن منوی استاندارد" -#: frappe/public/js/frappe/list/list_view.js:1849 +#: frappe/public/js/frappe/list/list_view.js:1851 msgid "Hide Tags" msgstr "پنهان کردن تگ‌ها" @@ -12054,7 +12093,7 @@ msgstr "اگر وضعیت گردش کار بررسی شده وضعیت را در #: frappe/core/doctype/doctype/doctype.py:1777 #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45 -#: frappe/public/js/frappe/roles_editor.js:66 +#: frappe/public/js/frappe/roles_editor.js:68 msgid "If Owner" msgstr "اگر مالک" @@ -12282,8 +12321,8 @@ msgstr "برنامه های نادیده گرفته شده" msgid "Illegal Document Status for {0}" msgstr "وضعیت سند غیرقانونی برای {0}" -#: frappe/model/db_query.py:453 frappe/model/db_query.py:456 -#: frappe/model/db_query.py:1121 +#: frappe/model/db_query.py:454 frappe/model/db_query.py:457 +#: frappe/model/db_query.py:1122 msgid "Illegal SQL Query" msgstr "پرسمان SQL غیر قانونی" @@ -12370,11 +12409,11 @@ msgstr "تصاویر" #. Option for the 'Operation' (Select) field in DocType 'Activity Log' #: frappe/core/doctype/activity_log/activity_log.json -#: frappe/core/doctype/user/user.js:384 +#: frappe/core/doctype/user/user.js:372 msgid "Impersonate" msgstr "جعل هویت" -#: frappe/core/doctype/user/user.js:411 +#: frappe/core/doctype/user/user.js:399 msgid "Impersonate as {0}" msgstr "جعل هویت به عنوان {0}" @@ -12404,7 +12443,7 @@ msgstr "ضمنی" msgid "Import" msgstr "درون‌بُرد" -#: frappe/public/js/frappe/list/list_view.js:1911 +#: frappe/public/js/frappe/list/list_view.js:1913 msgctxt "Button in list view menu" msgid "Import" msgstr "درون‌بُرد" @@ -12559,7 +12598,7 @@ msgstr "در پیش نمایش" #: frappe/core/doctype/data_import/data_import.js:42 msgid "In Progress" -msgstr "در حال پیش رفت" +msgstr "در حال انجام" #: frappe/database/database.py:287 msgid "In Read Only Mode" @@ -12633,15 +12672,15 @@ msgid "Include Web View Link in Email" msgstr "پیوند مشاهده وب را در ایمیل اضافه کنید" #: frappe/public/js/frappe/form/print_utils.js:59 -#: frappe/public/js/frappe/views/reports/query_report.js:1620 +#: frappe/public/js/frappe/views/reports/query_report.js:1628 msgid "Include filters" msgstr "شامل فیلترها" -#: frappe/public/js/frappe/views/reports/query_report.js:1640 +#: frappe/public/js/frappe/views/reports/query_report.js:1648 msgid "Include hidden columns" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1612 +#: frappe/public/js/frappe/views/reports/query_report.js:1620 msgid "Include indentation" msgstr "شامل تورفتگی" @@ -12688,7 +12727,7 @@ msgstr "حساب ایمیل ورودی صحیح نیست" msgid "Incomplete Virtual Doctype Implementation" msgstr "پیاده‌سازی Virtual Doctype ناقص" -#: frappe/auth.py:255 +#: frappe/auth.py:258 msgid "Incomplete login details" msgstr "جزئیات ورود ناقص" @@ -12799,7 +12838,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:1885 +#: frappe/public/js/frappe/views/reports/query_report.js:1893 msgid "Insert After" msgstr "درج بعد" @@ -12872,7 +12911,7 @@ msgstr "دستورالعمل ها ایمیل شد" msgid "Insufficient Permission Level for {0}" msgstr "سطح مجوز ناکافی برای {0}" -#: frappe/database/query.py:806 frappe/database/query.py:1052 +#: frappe/database/query.py:808 frappe/database/query.py:1054 msgid "Insufficient Permission for {0}" msgstr "مجوز ناکافی برای {0}" @@ -12988,7 +13027,7 @@ msgid "Invalid" msgstr "بی اعتبار" #: frappe/public/js/form_builder/utils.js:221 -#: frappe/public/js/frappe/form/grid_row.js:849 +#: frappe/public/js/frappe/form/grid_row.js:850 #: frappe/public/js/frappe/form/layout.js:810 #: frappe/public/js/frappe/views/reports/report_view.js:721 msgid "Invalid \"depends_on\" expression" @@ -13046,8 +13085,8 @@ 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 +#: frappe/database/query.py:429 frappe/database/query.py:456 +#: frappe/database/query.py:466 frappe/database/query.py:489 msgid "Invalid Filter" msgstr "فیلتر نامعتبر" @@ -13119,7 +13158,7 @@ msgstr "گذرواژه نامعتبر" msgid "Invalid Phone Number" msgstr "شماره تلفن نامعتبر" -#: frappe/auth.py:94 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 +#: frappe/auth.py:97 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 #: frappe/www/login.py:128 msgid "Invalid Request" msgstr "درخواست نامعتبر" @@ -13159,7 +13198,7 @@ msgstr "راز Webhook نامعتبر است" msgid "Invalid aggregate function" msgstr "تابع تجمیع نامعتبر است" -#: frappe/database/query.py:1542 +#: frappe/database/query.py:1544 msgid "Invalid alias format: {0}. Alias must be a simple identifier." msgstr "" @@ -13167,19 +13206,19 @@ msgstr "" msgid "Invalid app" msgstr "" -#: frappe/database/query.py:1468 +#: frappe/database/query.py:1470 msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed." msgstr "" -#: frappe/database/query.py:1444 +#: frappe/database/query.py:1446 msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed." msgstr "" -#: frappe/database/query.py:460 +#: frappe/database/query.py:462 msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed." msgstr "" -#: frappe/database/query.py:575 +#: frappe/database/query.py:577 msgid "Invalid characters in table name: {0}" msgstr "" @@ -13187,11 +13226,11 @@ msgstr "" msgid "Invalid column" msgstr "ستون نامعتبر است" -#: frappe/database/query.py:381 +#: frappe/database/query.py:383 msgid "Invalid condition type in nested filters: {0}" msgstr "" -#: frappe/database/query.py:787 +#: frappe/database/query.py:789 msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'." msgstr "" @@ -13207,23 +13246,23 @@ msgstr "عبارت نامعتبر تنظیم شده در فیلتر {0}" msgid "Invalid expression set in filter {0} ({1})" msgstr "عبارت نامعتبر تنظیم شده در فیلتر {0} ({1})" -#: frappe/database/query.py:1301 +#: frappe/database/query.py:1303 msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'." msgstr "" -#: frappe/database/query.py:734 +#: frappe/database/query.py:736 msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'." msgstr "" -#: frappe/database/query.py:1620 +#: frappe/database/query.py:1622 msgid "Invalid field name in function: {0}. Only simple field names are allowed." msgstr "" -#: frappe/utils/data.py:2215 +#: frappe/utils/data.py:2241 msgid "Invalid field name {0}" msgstr "نام فیلد نامعتبر {0}" -#: frappe/database/query.py:668 +#: frappe/database/query.py:670 msgid "Invalid field type: {0}" msgstr "" @@ -13235,11 +13274,11 @@ msgstr "نام فیلد \"{0}\" در نام خودکار نامعتبر است" msgid "Invalid file path: {0}" msgstr "مسیر فایل نامعتبر: {0}" -#: frappe/database/query.py:364 +#: frappe/database/query.py:366 msgid "Invalid filter condition: {0}. Expected a list or tuple." msgstr "" -#: frappe/database/query.py:450 +#: frappe/database/query.py:452 msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'." msgstr "" @@ -13247,11 +13286,11 @@ msgstr "" msgid "Invalid filter: {0}" msgstr "فیلتر نامعتبر: {0}" -#: frappe/database/query.py:1422 +#: frappe/database/query.py:1424 msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed." msgstr "" -#: frappe/database/query.py:1383 +#: frappe/database/query.py:1385 msgid "Invalid function dictionary format" msgstr "" @@ -13288,23 +13327,27 @@ msgstr "محتوای نامعتبر یا خراب برای درون‌بُرد" msgid "Invalid redirect regex in row #{}: {}" msgstr "Regex تغییر مسیر نامعتبر در ردیف #{}: {}" -#: frappe/app.py:337 +#: frappe/app.py:340 msgid "Invalid request arguments" msgstr "آرگومان های درخواست نامعتبر" +#: frappe/app.py:327 +msgid "Invalid request body" +msgstr "Invalid request body" + #: frappe/core/doctype/user_invitation/user_invitation.py:181 msgid "Invalid role" msgstr "" -#: frappe/database/query.py:410 +#: frappe/database/query.py:412 msgid "Invalid simple filter format: {0}" msgstr "" -#: frappe/database/query.py:341 +#: frappe/database/query.py:343 msgid "Invalid start for filter condition: {0}. Expected a list or tuple." msgstr "" -#: frappe/database/query.py:1489 +#: frappe/database/query.py:1491 msgid "Invalid string literal format: {0}" msgstr "" @@ -13408,7 +13451,7 @@ msgstr "تقویم و گانت است" #. 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/doctype_list.js:50 #: frappe/core/doctype/doctype_link/doctype_link.json msgid "Is Child Table" msgstr "جدول فرزند است" @@ -13461,6 +13504,10 @@ msgstr "پوشه است" msgid "Is Global" msgstr "سراسری است" +#: frappe/public/js/frappe/views/treeview.js:418 +msgid "Is Group" +msgstr "گروه است" + #. Label of the is_hidden (Check) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "Is Hidden" @@ -13489,7 +13536,7 @@ msgstr "اصلی است" #: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:43 msgid "Is Primary Address" -msgstr "" +msgstr "آدرس اصلی است" #. Label of the is_primary_contact (Check) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json @@ -13549,7 +13596,7 @@ 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/core/doctype/doctype/doctype_list.js:65 #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Is Single" msgstr "مجرد است" @@ -13585,7 +13632,7 @@ msgstr "استاندارد است" #. Label of the is_submittable (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:39 +#: frappe/core/doctype/doctype/doctype_list.js:40 msgid "Is Submittable" msgstr "قابل ارسال است" @@ -13791,11 +13838,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:388 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:402 msgid "Kanban Board Name" msgstr "نام نمودار کانبان" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:265 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:279 msgctxt "Button in kanban view menu" msgid "Kanban Settings" msgstr "تنظیمات کانبان" @@ -14093,10 +14140,13 @@ msgstr "افقی" #. 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' +#. Label of a field in the edit-profile Web Form #: 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:117 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/printing/page/print/print.js:117 #: frappe/public/js/frappe/form/templates/print_layout.html:11 msgid "Language" msgstr "زبان" @@ -14184,9 +14234,12 @@ msgstr "ماه گذشته" #. Label of the last_name (Data) field in DocType 'Contact' #. Label of the last_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json #: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:45 -#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:19 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:19 msgid "Last Name" msgstr "نام خانوادگی" @@ -14427,7 +14480,7 @@ msgstr "سربرگ در HTML" #: 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/public/js/frappe/roles_editor.js:68 #: frappe/website/doctype/help_article/help_article.json msgid "Level" msgstr "سطح" @@ -14720,7 +14773,7 @@ msgstr "فیلتر لیست" msgid "List Settings" msgstr "تنظیمات لیست" -#: frappe/public/js/frappe/list/list_view.js:1991 +#: frappe/public/js/frappe/list/list_view.js:1993 msgctxt "Button in list view menu" msgid "List Settings" msgstr "تنظیمات لیست" @@ -14771,7 +14824,7 @@ msgid "Load Balancing" msgstr "تعادل بار" #: frappe/public/js/frappe/list/base_list.js:399 -#: frappe/public/js/frappe/web_form/web_form_list.js:305 +#: frappe/public/js/frappe/web_form/web_form_list.js:306 #: frappe/website/doctype/help_article/templates/help_article_list.html:30 msgid "Load More" msgstr "بارگذاری بیشتر" @@ -14791,7 +14844,7 @@ msgstr "بارگذاری بیشتر" #: frappe/public/js/frappe/list/base_list.js:526 #: frappe/public/js/frappe/list/list_view.js:363 #: frappe/public/js/frappe/ui/listing.html:16 -#: frappe/public/js/frappe/views/reports/query_report.js:1089 +#: frappe/public/js/frappe/views/reports/query_report.js:1097 msgid "Loading" msgstr "بارگذاری" @@ -14934,7 +14987,7 @@ msgstr "کد تأیید ورود از {}" msgid "Login and view in Browser" msgstr "وارد شوید و در مرورگر مشاهده کنید" -#: frappe/website/doctype/web_form/web_form.js:367 +#: frappe/website/doctype/web_form/web_form.js:368 msgid "Login is required to see web form list view. Enable {0} to see list settings" msgstr "ورود به سیستم برای مشاهده لیست فرم وب مورد نیاز است. برای مشاهده تنظیمات لیست، {0} را فعال کنید" @@ -14942,7 +14995,7 @@ msgstr "ورود به سیستم برای مشاهده لیست فرم وب مو msgid "Login link sent to your email" msgstr "لینک ورود به ایمیل شما ارسال شد" -#: frappe/auth.py:339 frappe/auth.py:342 +#: frappe/auth.py:342 frappe/auth.py:345 msgid "Login not allowed at this time" msgstr "ورود به سیستم در حال حاضر مجاز نیست" @@ -14995,7 +15048,7 @@ msgstr "با لینک ایمیل وارد شوید" msgid "Login with email link expiry (in minutes)" msgstr "ورود با انقضای لینک ایمیل (بر حسب دقیقه)" -#: frappe/auth.py:144 +#: frappe/auth.py:147 msgid "Login with username and password is not allowed." msgstr "ورود با نام کاربری و گذرواژه مجاز نمی باشد." @@ -15014,7 +15067,7 @@ msgstr "" msgid "Logout" msgstr "خروج" -#: frappe/core/doctype/user/user.js:202 +#: frappe/core/doctype/user/user.js:190 msgid "Logout All Sessions" msgstr "خروج از تمام نشست‌ها" @@ -15118,7 +15171,10 @@ msgid "Major" msgstr "عمده" #. Label of the show_name_in_global_search (Check) field in DocType 'DocType' +#. Label of the show_name_in_global_search (Check) field in DocType 'Customize +#. Form' #: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Make \"name\" searchable in Global Search" msgstr "نام را در جستجوی سراسری قابل جستجو کنید" @@ -15194,7 +15250,7 @@ msgstr "اجباری بستگی دارد" msgid "Mandatory Depends On (JS)" msgstr "اجباری بستگی دارد به (JS)" -#: frappe/website/doctype/web_form/web_form.py:509 +#: frappe/website/doctype/web_form/web_form.py:536 msgid "Mandatory Information missing:" msgstr "اطلاعات اجباری از دست رفته:" @@ -15651,6 +15707,11 @@ msgstr "مرکز میانی" msgid "Middle Name" msgstr "نام میانی" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Middle Name (Optional)" +msgstr "نام میانی (اختیاری)" + #. Name of a DocType #. Label of a Link in the Tools Workspace #: frappe/automation/doctype/milestone/milestone.json @@ -15757,6 +15818,11 @@ msgstr "تلفن همراه" msgid "Mobile No" msgstr "شماره موبایل" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Mobile Number" +msgstr "شماره موبایل" + #. 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" @@ -15782,7 +15848,7 @@ msgstr "ماشه مدال" #. 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/doctype/doctype_list.js:31 #: 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 @@ -15958,10 +16024,12 @@ msgstr "اطلاعات بیشتر" #. Label of the additional_info (Section Break) field in DocType #. 'Communication' #. Label of the short_bio (Tab Break) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: 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 +#: frappe/core/web_form/edit_profile/edit_profile.json msgid "More Information" msgstr "اطلاعات بیشتر" @@ -15991,7 +16059,7 @@ msgstr "به احتمال زیاد گذرواژه شما خیلی طولانی msgid "Move" msgstr "حرکت" -#: frappe/public/js/frappe/form/grid_row.js:193 +#: frappe/public/js/frappe/form/grid_row.js:194 msgid "Move To" msgstr "حرکت به" @@ -16027,7 +16095,7 @@ msgstr "" msgid "Move the current field and the following fields to a new column" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:168 +#: frappe/public/js/frappe/form/grid_row.js:169 msgid "Move to Row Number" msgstr "به شماره ردیف بروید" @@ -16095,7 +16163,7 @@ msgid "Mx" msgstr "" #: frappe/templates/includes/web_sidebar.html:41 -#: frappe/website/doctype/web_form/web_form.py:498 +#: frappe/website/doctype/web_form/web_form.py:525 #: 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" @@ -16237,12 +16305,12 @@ msgstr "الگوی نوار ناوبری" msgid "Navbar Template Values" msgstr "مقادیر الگوی نوار ناوبری" -#: frappe/public/js/frappe/list/list_view.js:1378 +#: frappe/public/js/frappe/list/list_view.js:1380 msgctxt "Description of a list view shortcut" msgid "Navigate list down" msgstr "پیمایش لیست به پایین" -#: frappe/public/js/frappe/list/list_view.js:1385 +#: frappe/public/js/frappe/list/list_view.js:1387 msgctxt "Description of a list view shortcut" msgid "Navigate list up" msgstr "پیمایش لیست به بالا" @@ -16257,6 +16325,10 @@ msgstr "به محتوای اصلی بروید" msgid "Navigation Settings" msgstr "تنظیمات ناوبری" +#: frappe/public/js/frappe/list/list_view.js:485 +msgid "Need Help?" +msgstr "به کمک نیاز دارید؟" + #: frappe/desk/doctype/workspace/workspace.py:322 msgid "Need Workspace Manager role to edit private workspace of other users" msgstr "برای ویرایش محیط کار خصوصی سایر کاربران به نقش مدیر محیط کار نیاز دارید" @@ -16265,7 +16337,7 @@ msgstr "برای ویرایش محیط کار خصوصی سایر کاربران msgid "Negative Value" msgstr "مقدار منفی" -#: frappe/database/query.py:333 +#: frappe/database/query.py:335 msgid "Nested filters must be provided as a list or tuple." msgstr "" @@ -16278,6 +16350,12 @@ msgstr "خطای مجموعه تو در تو. لطفا با ادمین تماس msgid "Network Printer Settings" msgstr "تنظیمات چاپگر شبکه" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Never" +msgstr "هرگز" + #. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/core/doctype/success_action/success_action.js:57 @@ -16286,7 +16364,7 @@ msgstr "تنظیمات چاپگر شبکه" #: 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/treeview.js:473 #: frappe/public/js/frappe/views/workspace/workspace.js:64 #: frappe/website/doctype/web_form/templates/web_list.html:15 #: frappe/www/list.html:19 @@ -16347,7 +16425,7 @@ msgstr "رویداد جدید" msgid "New Folder" msgstr "پوشه جدید" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 msgid "New Kanban Board" msgstr "نمودار کانبان جدید" @@ -16382,7 +16460,7 @@ msgstr "کارت شماره جدید" msgid "New Onboarding" msgstr "آشناسازی جدید" -#: frappe/core/doctype/user/user.js:190 frappe/www/update-password.html:43 +#: frappe/core/doctype/user/user.js:178 frappe/www/update-password.html:43 msgid "New Password" msgstr "گذرواژه جدید" @@ -16478,7 +16556,7 @@ msgstr "مقدار جدیدی که باید تنظیم شود" #: frappe/public/js/frappe/ui/toolbar/search_utils.js:227 #: 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:411 +#: frappe/website/doctype/web_form/web_form.py:438 msgid "New {0}" msgstr "{0} جدید" @@ -16630,7 +16708,7 @@ msgstr "بعد روی کلیک کنید" #: frappe/public/js/form_builder/utils.js:341 #: frappe/public/js/frappe/form/controls/link.js:498 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1665 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 #: frappe/website/doctype/help_article/templates/help_article.html:26 msgid "No" msgstr "خیر" @@ -16779,7 +16857,7 @@ msgstr "نتیجه ای پیدا نشد" msgid "No Roles Specified" msgstr "هیچ نقشی مشخص نشده است" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 msgid "No Select Field Found" msgstr "فیلد انتخابی یافت نشد" @@ -16863,7 +16941,7 @@ msgstr "" msgid "No failed logs" msgstr "هیچ لاگ ناموفقی نیست" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:371 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:385 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 استفاده کرد. از فرم سفارشی برای افزودن یک فیلد سفارشی از نوع \"انتخاب\" استفاده کنید." @@ -16887,7 +16965,7 @@ msgstr "هیچ رکورد دیگری وجود ندارد" msgid "No matching records. Search something new" msgstr "هیچ رکورد منطبقی وجود ندارد. چیز جدیدی را جستجو کنید" -#: frappe/public/js/frappe/web_form/web_form_list.js:161 +#: frappe/public/js/frappe/web_form/web_form_list.js:162 msgid "No more items to display" msgstr "موارد دیگری برای نمایش وجود ندارد" @@ -16931,7 +17009,7 @@ msgctxt "{0} = verb, {1} = object" msgid "No permission to '{0}' {1}" msgstr "بدون مجوز برای \"{0}\" {1}" -#: frappe/model/db_query.py:948 +#: frappe/model/db_query.py:949 msgid "No permission to read {0}" msgstr "بدون اجازه خواندن {0}" @@ -16979,11 +17057,11 @@ msgstr "نه {0}" msgid "No {0} Found" msgstr "هیچ {0} یافت نشد" -#: frappe/public/js/frappe/web_form/web_form_list.js:233 +#: frappe/public/js/frappe/web_form/web_form_list.js:234 msgid "No {0} found" msgstr "هیچ {0} یافت نشد" -#: frappe/public/js/frappe/list/list_view.js:497 +#: frappe/public/js/frappe/list/list_view.js:499 msgid "No {0} found with matching filters. Clear filters to see all {0}." msgstr "هیچ {0} با فیلترهای منطبق پیدا نشد. برای دیدن همه {0} فیلترها را پاک کنید." @@ -16992,7 +17070,7 @@ msgid "No {0} mail" msgstr "نامه {0} وجود ندارد" #: frappe/public/js/form_builder/utils.js:117 -#: frappe/public/js/frappe/form/grid_row.js:256 +#: frappe/public/js/frappe/form/grid_row.js:257 msgctxt "Title of the 'row number' column" msgid "No." msgstr "شماره" @@ -17056,7 +17134,7 @@ msgstr "زیرمجموعه‌اش نیست" msgid "Not Equals" msgstr "برابر نیست با" -#: frappe/app.py:387 frappe/www/404.html:3 +#: frappe/app.py:390 frappe/www/404.html:3 msgid "Not Found" msgstr "پیدا نشد" @@ -17082,9 +17160,9 @@ msgstr "به هیچ رکوردی مرتبط نیست" msgid "Not Nullable" msgstr "غیرقابل تهی" -#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26 +#: frappe/__init__.py:550 frappe/app.py:383 frappe/desk/calendar.py:26 #: frappe/public/js/frappe/web_form/webform_script.js:15 -#: frappe/website/doctype/web_form/web_form.py:747 +#: frappe/website/doctype/web_form/web_form.py:774 #: 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 @@ -17103,7 +17181,7 @@ msgstr "منتشر نشده" #: 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/kanban/kanban_view.js:183 #: frappe/public/js/frappe/views/reports/report_view.js:209 #: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39 #: frappe/website/doctype/web_form/templates/web_form.html:85 @@ -17154,7 +17232,7 @@ msgstr "غیر فعال" msgid "Not allowed for {0}: {1}" msgstr "برای {0} مجاز نیست: {1}" -#: frappe/email/doctype/notification/notification.py:637 +#: frappe/email/doctype/notification/notification.py:639 msgid "Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings" msgstr "مجاز به پیوست کردن سند {0} نیست، لطفاً Allow Print For {0} را در تنظیمات چاپ فعال کنید" @@ -17186,12 +17264,12 @@ msgstr "در حالت توسعه دهنده نیست" msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType." msgstr "در حالت توسعه دهنده نیست! در site_config.json تنظیم کنید یا DocType را «Custom» بسازید." -#: frappe/core/doctype/system_settings/system_settings.py:216 +#: frappe/core/doctype/system_settings/system_settings.py:217 #: 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:760 +#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:787 #: frappe/website/js/website.js:97 msgid "Not permitted" msgstr "غیر مجاز" @@ -17237,7 +17315,7 @@ msgstr "توجه: برای بهترین نتیجه، تصاویر باید از msgid "Note: Multiple sessions will be allowed in case of mobile device" msgstr "توجه: نشست‌های متعدد در مورد دستگاه تلفن همراه مجاز خواهد بود" -#: frappe/core/doctype/user/user.js:399 +#: frappe/core/doctype/user/user.js:387 msgid "Note: This will be shared with user." msgstr "توجه: این با کاربر به اشتراک گذاشته خواهد شد." @@ -17309,15 +17387,15 @@ msgstr "سند ثبت شده اعلان" msgid "Notification sent to" msgstr "اعلان ارسال شد به" -#: frappe/email/doctype/notification/notification.py:542 +#: frappe/email/doctype/notification/notification.py:544 msgid "Notification: customer {0} has no Mobile number set" msgstr "" -#: frappe/email/doctype/notification/notification.py:528 +#: frappe/email/doctype/notification/notification.py:530 msgid "Notification: document {0} has no {1} number set (field: {2})" msgstr "" -#: frappe/email/doctype/notification/notification.py:537 +#: frappe/email/doctype/notification/notification.py:539 msgid "Notification: user {0} has no Mobile number set" msgstr "" @@ -17431,7 +17509,7 @@ msgstr "تعداد پرسمان‌ها" msgid "Number of attachment fields are more than {}, limit updated to {}." msgstr "تعداد فیلدهای پیوست بیش از {} است، محدودیت به {} به روز شده است." -#: frappe/core/doctype/system_settings/system_settings.py:171 +#: frappe/core/doctype/system_settings/system_settings.py:172 msgid "Number of backups must be greater than zero." msgstr "تعداد نسخه های پشتیبان باید بیشتر از صفر باشد." @@ -17703,7 +17781,7 @@ msgstr "تکمیل آشناسازی" #. Description of the 'Is Submittable' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:42 +#: frappe/core/doctype/doctype/doctype_list.js:43 msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended." msgstr "پس از ارسال، اسناد قابل ارسال قابل تغییر نیستند. آنها فقط می‌توانند لغو و اصلاح شوند." @@ -17792,11 +17870,11 @@ msgstr "فقط گزارش هایی از نوع Report Builder قابل حذف ه msgid "Only reports of type Report Builder can be edited" msgstr "فقط گزارش‌هایی از نوع Report Builder قابل ویرایش هستند" -#: frappe/custom/doctype/customize_form/customize_form.py:129 +#: frappe/custom/doctype/customize_form/customize_form.py:131 msgid "Only standard DocTypes are allowed to be customized from Customize Form." msgstr "فقط DocType های استاندارد مجاز به سفارشی سازی از سفارشی‌سازی فرم هستند." -#: frappe/model/delete_doc.py:241 +#: frappe/model/delete_doc.py:281 msgid "Only the Administrator can delete a standard DocType." msgstr "" @@ -17892,7 +17970,7 @@ msgstr "" msgid "Open in a new tab" msgstr "باز کردن در یک تب جدید" -#: frappe/public/js/frappe/list/list_view.js:1431 +#: frappe/public/js/frappe/list/list_view.js:1433 msgctxt "Description of a list view shortcut" msgid "Open list item" msgstr "مورد فهرست را باز کنید" @@ -17941,7 +18019,7 @@ msgstr "باز شد" msgid "Operation" msgstr "عملیات" -#: frappe/utils/data.py:2146 +#: frappe/utils/data.py:2172 msgid "Operator must be one of {0}" msgstr "اپراتور باید یکی از {0} باشد" @@ -17987,6 +18065,7 @@ msgstr "اختیاری: اگر این عبارت درست باشد، هشدار #. 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 (Text) field in DocType 'Web Form List Column' #. 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 @@ -17995,6 +18074,7 @@ msgstr "اختیاری: اگر این عبارت درست باشد، هشدار #: 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_form_list_column/web_form_list_column.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Options" msgstr "گزینه‌ها" @@ -18040,7 +18120,7 @@ msgstr "نارنجی" msgid "Order" msgstr "سفارش" -#: frappe/database/query.py:767 +#: frappe/database/query.py:769 msgid "Order By must be a string" msgstr "" @@ -18138,7 +18218,7 @@ msgstr "پچ" #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/printing/page/print/print.js:84 #: frappe/public/js/frappe/form/templates/print_layout.html:44 -#: frappe/public/js/frappe/views/reports/query_report.js:1804 +#: frappe/public/js/frappe/views/reports/query_report.js:1812 msgid "PDF" msgstr "PDF" @@ -18486,8 +18566,8 @@ msgstr "منفعل" #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/system_settings/system_settings.json -#: frappe/core/doctype/user/user.js:177 frappe/core/doctype/user/user.js:224 -#: frappe/core/doctype/user/user.js:244 +#: frappe/core/doctype/user/user.js:165 frappe/core/doctype/user/user.js:212 +#: frappe/core/doctype/user/user.js:232 #: 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 @@ -18510,7 +18590,7 @@ msgstr "بازنشانی گذرواژه" msgid "Password Reset Link Generation Limit" msgstr "بازنشانی گذرواژه محدودیت تولید پیوند" -#: frappe/public/js/frappe/form/grid_row.js:896 +#: frappe/public/js/frappe/form/grid_row.js:897 msgid "Password cannot be filtered" msgstr "گذرواژه را نمی‌توان فیلتر کرد" @@ -18547,7 +18627,7 @@ msgstr "" msgid "Password set" msgstr "تنظیم گذرواژه" -#: frappe/auth.py:258 +#: frappe/auth.py:261 msgid "Password size exceeded the maximum allowed size" msgstr "اندازه گذرواژه از حداکثر اندازه مجاز بیشتر است" @@ -18559,7 +18639,7 @@ msgstr "اندازه گذرواژه از حداکثر اندازه مجاز بی msgid "Passwords do not match" msgstr "گذرواژه‌ها مطابقت ندارند" -#: frappe/core/doctype/user/user.js:210 +#: frappe/core/doctype/user/user.js:198 msgid "Passwords do not match!" msgstr "گذرواژه‌ها مطابقت ندارند!" @@ -18643,7 +18723,7 @@ msgstr "انتظار" #. Request' #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json msgid "Pending Approval" -msgstr "در انتظار تایید" +msgstr "در انتظار تأیید" #. Label of the pending_emails (Int) field in DocType 'System Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json @@ -18660,7 +18740,7 @@ msgstr "" #. Request' #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json msgid "Pending Verification" -msgstr "در انتظار تایید" +msgstr "در انتظار تأیید" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' @@ -18710,7 +18790,7 @@ msgstr "برای همیشه {0} ارسال شود؟" msgid "Permanently delete {0}?" msgstr "{0} برای همیشه حذف شود؟" -#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533 +#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:535 msgid "Permission Error" msgstr "خطای مجوز" @@ -18770,8 +18850,8 @@ msgstr "نوع مجوز" #: 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:143 frappe/core/doctype/user/user.js:152 -#: frappe/core/doctype/user/user.js:161 +#: frappe/core/doctype/user/user.js:131 frappe/core/doctype/user/user.js:140 +#: frappe/core/doctype/user/user.js:149 #: 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 @@ -18841,6 +18921,7 @@ msgstr "درخواست دانلود داده های شخصی" #. Option for the 'Type' (Select) field in DocType 'Communication' #. Option for the 'Type' (Select) field in DocType 'DocField' #. Label of the phone (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #. 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' @@ -18851,6 +18932,7 @@ msgstr "درخواست دانلود داده های شخصی" #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.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 @@ -18971,7 +19053,7 @@ msgstr "لطفاً مقدار تنظیم شده \"Fetch From\" را برای ف #: frappe/core/doctype/user/user.py:1074 msgid "Please check your email for verification" -msgstr "لطفا ایمیل خود را برای تایید بررسی کنید" +msgstr "لطفا ایمیل خود را برای تأیید بررسی کنید" #: frappe/email/smtp.py:134 msgid "Please check your email login credentials." @@ -19025,7 +19107,7 @@ msgstr "لطفا عناوین قالب را تغییر ندهید." msgid "Please duplicate this to make changes" msgstr "لطفاً برای ایجاد تغییرات این را کپی کنید" -#: frappe/core/doctype/system_settings/system_settings.py:164 +#: frappe/core/doctype/system_settings/system_settings.py:165 msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login." msgstr "لطفاً حداقل یک کلید ورود به سیستم اجتماعی یا LDAP یا ورود با پیوند ایمیل را قبل از غیرفعال کردن ورود مبتنی بر نام کاربری/گذرواژه فعال کنید." @@ -19157,11 +19239,11 @@ msgstr "لطفا ابتدا DocType را انتخاب کنید" msgid "Please select Entity Type first" msgstr "لطفا ابتدا Entity Type را انتخاب کنید" -#: frappe/core/doctype/system_settings/system_settings.py:115 +#: frappe/core/doctype/system_settings/system_settings.py:116 msgid "Please select Minimum Password Score" msgstr "لطفا حداقل امتیاز گذرواژه را انتخاب کنید" -#: frappe/public/js/frappe/views/reports/query_report.js:1185 +#: frappe/public/js/frappe/views/reports/query_report.js:1193 msgid "Please select X and Y fields" msgstr "لطفاً فیلدهای X و Y را انتخاب کنید" @@ -19189,7 +19271,7 @@ msgstr "لطفاً یک فیلتر تاریخ معتبر انتخاب کنید" msgid "Please select applicable Doctypes" msgstr "لطفاً Doctypes قابل اجرا را انتخاب کنید" -#: frappe/model/db_query.py:1157 +#: frappe/model/db_query.py:1163 msgid "Please select atleast 1 column from {0} to sort/group" msgstr "لطفاً حداقل 1 ستون از {0} برای مرتب‌سازی/گروه‌بندی انتخاب کنید" @@ -19219,7 +19301,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:1408 +#: frappe/public/js/frappe/views/reports/query_report.js:1416 msgid "Please set filters" msgstr "لطفا فیلترها را تنظیم کنید" @@ -19239,7 +19321,7 @@ msgstr "لطفاً ابتدا اسناد زیر را در این داشبورد msgid "Please set the series to be used." msgstr "لطفاً سریال مورد استفاده را تنظیم کنید." -#: frappe/core/doctype/system_settings/system_settings.py:128 +#: frappe/core/doctype/system_settings/system_settings.py:129 msgid "Please setup SMS before setting it as an authentication method, via SMS Settings" msgstr "لطفاً SMS را قبل از تنظیم آن به عنوان یک روش احراز هویت، از طریق تنظیمات پیامک تنظیم کنید" @@ -19391,7 +19473,7 @@ msgstr "کد پستی" msgid "Posting Timestamp" msgstr "" -#: frappe/database/query.py:1518 +#: frappe/database/query.py:1520 msgid "Potentially dangerous content in string literal: {0}" msgstr "" @@ -19593,13 +19675,13 @@ msgstr "" #: 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:1789 +#: frappe/public/js/frappe/views/reports/query_report.js:1797 #: frappe/public/js/frappe/views/reports/report_view.js:1539 -#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18 +#: frappe/public/js/frappe/views/treeview.js:492 frappe/www/printview.html:18 msgid "Print" msgstr "چاپ" -#: frappe/public/js/frappe/list/list_view.js:2164 +#: frappe/public/js/frappe/list/list_view.js:2166 msgctxt "Button in list view actions menu" msgid "Print" msgstr "چاپ" @@ -19669,7 +19751,7 @@ msgstr "راهنما قالب چاپ" msgid "Print Format Type" msgstr "نوع قالب چاپ" -#: frappe/public/js/frappe/views/reports/query_report.js:1578 +#: frappe/public/js/frappe/views/reports/query_report.js:1586 msgid "Print Format not found" msgstr "" @@ -19850,11 +19932,11 @@ msgstr "نکته پیشنهادی: برای ارسال مرجع سند، msgid "Proceed" msgstr "ادامه دهید" -#: frappe/public/js/frappe/views/reports/query_report.js:932 +#: frappe/public/js/frappe/views/reports/query_report.js:940 msgid "Proceed Anyway" msgstr "در هر صورت انجام شود" -#: frappe/public/js/frappe/form/controls/table.js:123 +#: frappe/public/js/frappe/form/controls/table.js:104 msgid "Processing" msgstr "در حال پردازش" @@ -19871,11 +19953,21 @@ msgstr "پروفسور" msgid "Profile" msgstr "نمایه" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile Picture" +msgstr "تصویر نمایه" + +#. Success message of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile updated successfully." +msgstr "نمایه با موفقیت به‌روزرسانی شد." + #: frappe/public/js/frappe/socketio_client.js:82 msgid "Progress" msgstr "پیشرفت" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:408 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:422 msgid "Project" msgstr "پروژه" @@ -19919,7 +20011,7 @@ msgstr "نوع ویژگی" msgid "Protect Attached Files" msgstr "محافظت از فایل های پیوست شده" -#: frappe/core/doctype/file/file.py:523 +#: frappe/core/doctype/file/file.py:526 msgid "Protected File" msgstr "فایل محافظت شده" @@ -20425,11 +20517,11 @@ msgstr "" msgid "Reason" msgstr "دلیل" -#: frappe/public/js/frappe/views/reports/query_report.js:886 +#: frappe/public/js/frappe/views/reports/query_report.js:894 msgid "Rebuild" msgstr "بازسازی" -#: frappe/public/js/frappe/views/treeview.js:509 +#: frappe/public/js/frappe/views/treeview.js:511 msgid "Rebuild Tree" msgstr "بازسازی درخت" @@ -20573,7 +20665,7 @@ 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 "پس از تایید موفقیت آمیز به این URL تغییر مسیر دهید." +msgstr "پس از تأیید موفقیت آمیز به این URL تغییر مسیر دهید." #. Label of the redirects_tab (Tab Break) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json @@ -20810,8 +20902,8 @@ 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:1778 -#: frappe/public/js/frappe/views/treeview.js:496 +#: frappe/public/js/frappe/views/reports/query_report.js:1786 +#: frappe/public/js/frappe/views/treeview.js:498 #: frappe/public/js/frappe/widgets/chart_widget.js:291 #: frappe/public/js/frappe/widgets/number_card_widget.js:352 #: frappe/public/js/print_format_builder/Preview.vue:24 @@ -20842,13 +20934,13 @@ msgstr "" msgid "Refresh Token" msgstr "Refresh Token" -#: frappe/public/js/frappe/list/list_view.js:534 +#: frappe/public/js/frappe/list/list_view.js:536 msgctxt "Document count in list view" msgid "Refreshing" msgstr "تازه کردن" #: frappe/core/doctype/system_settings/system_settings.js:57 -#: frappe/core/doctype/user/user.js:374 +#: frappe/core/doctype/user/user.js:362 #: frappe/desk/page/setup_wizard/setup_wizard.js:211 msgid "Refreshing..." msgstr "تازه کردن..." @@ -21233,7 +21325,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:1965 +#: frappe/public/js/frappe/views/reports/query_report.js:1973 msgid "Report Name" msgstr "نام گزارش" @@ -21285,7 +21377,7 @@ msgstr "گزارش داده ای ندارد، لطفاً فیلترها را ت msgid "Report has no numeric fields, please change the Report Name" msgstr "گزارش هیچ فیلد عددی ندارد، لطفاً نام گزارش را تغییر دهید" -#: frappe/public/js/frappe/views/reports/query_report.js:1013 +#: frappe/public/js/frappe/views/reports/query_report.js:1021 msgid "Report initiated, click to view status" msgstr "گزارش شروع شد، برای مشاهده وضعیت کلیک کنید" @@ -21305,7 +21397,7 @@ msgstr "گزارش با موفقیت به روز شد" msgid "Report was not saved (there were errors)" msgstr "گزارش ذخیره نشد (خطاهایی وجود داشت)" -#: frappe/public/js/frappe/views/reports/query_report.js:2003 +#: frappe/public/js/frappe/views/reports/query_report.js:2011 msgid "Report with more than 10 columns looks better in Landscape mode." msgstr "گزارش با بیش از 10 ستون در حالت افقی بهتر به نظر می رسد." @@ -21341,7 +21433,7 @@ msgstr "گزارش ها" msgid "Reports & Masters" msgstr "گزارش ها و مستندات" -#: frappe/public/js/frappe/views/reports/query_report.js:929 +#: frappe/public/js/frappe/views/reports/query_report.js:937 msgid "Reports already in Queue" msgstr "گزارش‌ها از قبل در صف هستند" @@ -21360,7 +21452,10 @@ msgid "Request Body" msgstr "درخواست بدن" #. Label of the data (Code) field in DocType 'Integration Request' +#. Title of the request-data Web Form +#. Button label of the request-data Web Form #: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/website/web_form/request_data/request_data.json msgid "Request Data" msgstr "درخواست داده" @@ -21412,6 +21507,11 @@ msgstr "درخواست مهلت زمانی" msgid "Request URL" msgstr "درخواست URL" +#. Title of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "Request for Account Deletion" +msgstr "درخواست حذف حساب کاربری" + #. Label of the requested_numbers (Code) field in DocType 'SMS Log' #: frappe/core/doctype/sms_log/sms_log.json msgid "Requested Numbers" @@ -21467,7 +21567,7 @@ msgstr "بازنشانی سفارشی سازی داشبورد" msgid "Reset Fields" msgstr "بازنشانی فیلدها" -#: frappe/core/doctype/user/user.js:184 frappe/core/doctype/user/user.js:187 +#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:175 msgid "Reset LDAP Password" msgstr "بازنشانی گذرواژه LDAP" @@ -21475,11 +21575,11 @@ msgstr "بازنشانی گذرواژه LDAP" msgid "Reset Layout" msgstr "بازنشانی چیدمان" -#: frappe/core/doctype/user/user.js:235 +#: frappe/core/doctype/user/user.js:223 msgid "Reset OTP Secret" msgstr "بازنشانی OTP Secret" -#: frappe/core/doctype/user/user.js:168 frappe/www/login.html:199 +#: frappe/core/doctype/user/user.js:156 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" @@ -21514,7 +21614,7 @@ msgstr "" msgid "Reset sorting" msgstr "بازنشانی مرتب‌سازی" -#: frappe/public/js/frappe/form/grid_row.js:433 +#: frappe/public/js/frappe/form/grid_row.js:434 msgid "Reset to default" msgstr "بازنشانی به حالت پیش‌فرض" @@ -21766,7 +21866,7 @@ 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 +#: frappe/public/js/frappe/roles_editor.js:114 msgid "Role Permissions" msgstr "مجوزهای نقش" @@ -21776,7 +21876,7 @@ msgstr "مجوزهای نقش" msgid "Role Permissions Manager" msgstr "مدیر مجوزهای نقش" -#: frappe/public/js/frappe/list/list_view.js:1933 +#: frappe/public/js/frappe/list/list_view.js:1935 msgctxt "Button in list view menu" msgid "Role Permissions Manager" msgstr "مدیر مجوزهای نقش" @@ -21969,11 +22069,11 @@ msgstr "مقادیر ردیف تغییر کرد" msgid "Row {0}" msgstr "ردیف {0}" -#: frappe/custom/doctype/customize_form/customize_form.py:353 +#: frappe/custom/doctype/customize_form/customize_form.py:357 msgid "Row {0}: Not allowed to disable Mandatory for standard fields" msgstr "ردیف {0}: غیرفعال کردن الزامی برای فیلدهای استاندارد مجاز نیست" -#: frappe/custom/doctype/customize_form/customize_form.py:342 +#: frappe/custom/doctype/customize_form/customize_form.py:346 msgid "Row {0}: Not allowed to enable Allow on Submit for standard fields" msgstr "ردیف {0}: مجاز به فعال کردن Allow on Submit برای فیلدهای استاندارد نیست" @@ -21992,7 +22092,10 @@ msgid "Rows Removed" msgstr "ردیف ها حذف شدند" #. Label of the rows_threshold_for_grid_search (Int) field in DocType 'DocType' +#. Label of the rows_threshold_for_grid_search (Int) field in DocType +#. 'Customize Form' #: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Rows Threshold for Grid Search" msgstr "" @@ -22200,8 +22303,8 @@ msgstr "شنبه" #: 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:1957 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 +#: frappe/public/js/frappe/views/reports/query_report.js:1965 #: frappe/public/js/frappe/views/reports/report_view.js:1735 #: frappe/public/js/frappe/views/workspace/workspace.js:335 #: frappe/public/js/frappe/widgets/base_widget.js:142 @@ -22224,11 +22327,11 @@ msgstr "ذخیره به عنوان" msgid "Save Customizations" msgstr "سفارشی سازی ها را ذخیره کنید" -#: frappe/public/js/frappe/views/reports/query_report.js:1960 +#: frappe/public/js/frappe/views/reports/query_report.js:1968 msgid "Save Report" msgstr "ذخیره گزارش" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:97 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:107 msgid "Save filters" msgstr "ذخیره فیلترها" @@ -22600,7 +22703,7 @@ msgstr "تنظیمات امنیتی" msgid "See all Activity" msgstr "مشاهده تمام فعالیت ها" -#: frappe/public/js/frappe/views/reports/query_report.js:855 +#: frappe/public/js/frappe/views/reports/query_report.js:863 msgid "See all past reports." msgstr "مشاهده تمام گزارش های گذشته" @@ -22664,7 +22767,7 @@ msgstr "انتخاب کردن" #: 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:497 +#: frappe/public/js/frappe/form/grid_row.js:498 msgid "Select All" msgstr "انتخاب همه" @@ -22744,7 +22847,7 @@ msgstr "فیلد را انتخاب کنید" msgid "Select Field..." msgstr "انتخاب فیلد..." -#: frappe/public/js/frappe/form/grid_row.js:489 +#: frappe/public/js/frappe/form/grid_row.js:490 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:181 msgid "Select Fields" msgstr "فیلدها را انتخاب کنید" @@ -22864,8 +22967,8 @@ msgid "Select a field to edit its properties." msgstr "یک فیلد را برای ویرایش ویژگی‌های آن انتخاب کنید." #: frappe/public/js/frappe/views/treeview.js:358 -msgid "Select a group node first." -msgstr "ابتدا یک گره گروهی را انتخاب کنید." +msgid "Select a group {0} first." +msgstr "ابتدا یک گروه {0} انتخاب کنید." #: frappe/core/doctype/doctype/doctype.py:1956 msgid "Select a valid Sender Field for creating documents from Email" @@ -22901,13 +23004,13 @@ msgstr "حداقل 1 رکورد برای چاپ انتخاب کنید" msgid "Select atleast 2 actions" msgstr "حداقل 2 عمل را انتخاب کنید" -#: frappe/public/js/frappe/list/list_view.js:1445 +#: frappe/public/js/frappe/list/list_view.js:1447 msgctxt "Description of a list view shortcut" msgid "Select list item" msgstr "مورد فهرست را انتخاب کنید" -#: frappe/public/js/frappe/list/list_view.js:1397 -#: frappe/public/js/frappe/list/list_view.js:1413 +#: frappe/public/js/frappe/list/list_view.js:1399 +#: frappe/public/js/frappe/list/list_view.js:1415 msgctxt "Description of a list view shortcut" msgid "Select multiple list items" msgstr "چندین مورد از فهرست را انتخاب کنید" @@ -22943,7 +23046,7 @@ msgstr "انتخاب {0}" #: frappe/model/workflow.py:120 msgid "Self approval is not allowed" -msgstr "تایید خود مجاز نیست" +msgstr "تأیید خود مجاز نیست" #: frappe/www/contact.html:41 msgid "Send" @@ -23229,7 +23332,7 @@ msgstr "سری {0} قبلاً در {1} استفاده شده است" msgid "Server Action" msgstr "اقدام سرور" -#: frappe/app.py:396 frappe/public/js/frappe/request.js:611 +#: frappe/app.py:399 frappe/public/js/frappe/request.js:611 #: frappe/www/error.html:36 frappe/www/error.py:15 msgid "Server Error" msgstr "خطای سرور" @@ -23295,7 +23398,7 @@ msgstr "پیش‌فرض‌های نشست" msgid "Session Defaults Saved" msgstr "پیش‌فرض‌های نشست ذخیره شد" -#: frappe/app.py:373 +#: frappe/app.py:376 msgid "Session Expired" msgstr "نشست منقضی شده" @@ -23304,7 +23407,7 @@ msgstr "نشست منقضی شده" msgid "Session Expiry (idle timeout)" msgstr "انقضای نشست (تایم بیکار)" -#: frappe/core/doctype/system_settings/system_settings.py:122 +#: frappe/core/doctype/system_settings/system_settings.py:123 msgid "Session Expiry must be in format {0}" msgstr "انقضای نشست باید در قالب {0} باشد" @@ -23353,7 +23456,7 @@ msgstr "فیلترها را تنظیم کنید" msgid "Set Filters for {0}" msgstr "تنظیم فیلترها برای {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:2113 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 msgid "Set Level" msgstr "" @@ -23407,7 +23510,7 @@ msgstr "تنظیم مقدار" msgid "Set Role For" msgstr "تنظیم نقش برای" -#: frappe/core/doctype/user/user.js:136 +#: frappe/core/doctype/user/user.js:124 #: frappe/core/page/permission_manager/permission_manager.js:72 msgid "Set User Permissions" msgstr "تنظیم مجوزهای کاربر" @@ -23569,7 +23672,7 @@ msgstr "راه‌اندازی > کاربر" msgid "Setup > User Permissions" msgstr "راه‌اندازی > مجوزهای کاربر" -#: frappe/public/js/frappe/views/reports/query_report.js:1826 +#: frappe/public/js/frappe/views/reports/query_report.js:1834 #: frappe/public/js/frappe/views/reports/report_view.js:1713 msgid "Setup Auto Email" msgstr "تنظیم ایمیل خودکار" @@ -23710,6 +23813,12 @@ msgstr "نمایش سند" msgid "Show Error" msgstr "نمایش خطا" +#. Label of the show_external_link_warning (Select) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Show External Link Warning" +msgstr "نمایش هشدار لینک خارجی" + #: frappe/public/js/frappe/form/layout.js:578 msgid "Show Fieldname (click to copy on clipboard)" msgstr "نمایش نام فیلد (برای کپی در کلیپ بورد کلیک کنید)" @@ -23838,7 +23947,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:1849 +#: frappe/public/js/frappe/list/list_view.js:1851 msgid "Show Tags" msgstr "نمایش برچسب ها" @@ -24006,7 +24115,7 @@ msgstr "نوار کناری و دیدگاه‌ها" #. DocType 'Email Group' #: frappe/email/doctype/email_group/email_group.json msgid "Sign Up and Confirmation" -msgstr "ثبت نام و تایید" +msgstr "ثبت نام و تأیید" #: frappe/core/doctype/user/user.py:1029 msgid "Sign Up is disabled" @@ -24045,36 +24154,36 @@ msgstr "ثبت نام غیرفعال شد" msgid "Signups have been disabled for this website." msgstr "ثبت نام برای این وب سایت غیرفعال شده است." -#. 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 "عبارت ساده پایتون، مثال: Status in (\"بسته\"، \"لغو\")" - #. 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 "عبارت ساده پایتون، مثال: وضعیت در (\"نامعتبر\")" +msgid "Simple Python Expression, Example: status == \"Invalid\"" +msgstr "عبارت ساده پایتون، مثال: status == \"Invalid\"" #. 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 "عبارت ساده پایتون، مثال: status == 'Open' و نوع == 'Bug'" +msgid "Simple Python Expression, Example: status == 'Open' and issue_type == 'Bug'" +msgstr "عبارت ساده پایتون، مثال: status == 'Open' and issue_type == 'Bug'" + +#. 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 "عبارت ساده پایتون، مثال: status in (\"Closed\", \"Cancelled\")" #. Label of the simultaneous_sessions (Int) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Simultaneous Sessions" msgstr "نشست‌های همزمان" -#: frappe/custom/doctype/customize_form/customize_form.py:126 +#: frappe/custom/doctype/customize_form/customize_form.py:128 msgid "Single DocTypes cannot be customized." msgstr "Single DocType ها را نمی‌توان سفارشی کرد." #. Description of the 'Is Single' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:67 +#: frappe/core/doctype/doctype/doctype_list.js:68 msgid "Single Types have only one record no tables associated. Values are stored in tabSingles" msgstr "Single Type ها فقط یک رکورد دارند و هیچ جدولی مرتبط نیست. مقادیر در tabSingles ذخیره می‌شوند" @@ -24410,7 +24519,7 @@ msgid "Splash Image" msgstr "تصویر اسپلش" #: frappe/desk/reportview.py:455 -#: frappe/public/js/frappe/web_form/web_form_list.js:175 +#: frappe/public/js/frappe/web_form/web_form_list.js:176 #: frappe/templates/print_formats/standard_macros.html:44 msgid "Sr" msgstr "پدر" @@ -24442,7 +24551,7 @@ msgstr "ردیابی پشته" msgid "Standard" msgstr "استاندارد" -#: frappe/model/delete_doc.py:79 +#: frappe/model/delete_doc.py:119 msgid "Standard DocType can not be deleted." msgstr "DocType استاندارد را نمی‌توان حذف کرد." @@ -24708,11 +24817,11 @@ msgstr "مراحل" #: frappe/www/qrcode.html:11 msgid "Steps to verify your login" -msgstr "مراحل تایید ورود شما" +msgstr "مراحل تأیید ورود شما" #. Label of the sticky (Check) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json -#: frappe/public/js/frappe/form/grid_row.js:454 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Sticky" msgstr "چسبنده" @@ -24742,7 +24851,7 @@ msgstr "" msgid "Store Attached PDF Document" msgstr "سند PDF پیوست شده را ذخیره کنید" -#: frappe/core/doctype/user/user.js:490 +#: frappe/core/doctype/user/user.js:497 msgid "Store the API secret securely. It won't be displayed again." msgstr "" @@ -24854,6 +24963,7 @@ msgstr "صف ارسال" #. 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' +#. Button label of the request-to-delete-data Web Form #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/docshare/docshare.json @@ -24862,10 +24972,11 @@ msgstr "صف ارسال" #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/quick_entry.js:225 #: frappe/public/js/frappe/ui/capture.js:307 +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json msgid "Submit" msgstr "ارسال" -#: frappe/public/js/frappe/list/list_view.js:2231 +#: frappe/public/js/frappe/list/list_view.js:2233 msgctxt "Button in list view actions menu" msgid "Submit" msgstr "ارسال" @@ -24875,7 +24986,7 @@ msgctxt "Button in web form" msgid "Submit" msgstr "ارسال" -#: frappe/public/js/frappe/ui/dialog.js:63 +#: frappe/public/js/frappe/ui/dialog.js:64 msgctxt "Primary action in dialog" msgid "Submit" msgstr "ارسال" @@ -24921,9 +25032,9 @@ 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:2236 +#: frappe/public/js/frappe/list/list_view.js:2238 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "{0} سند ارسال شود؟" @@ -24973,7 +25084,7 @@ msgstr "عنوان فرعی" #: 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:1171 +#: frappe/public/js/frappe/form/grid.js:1172 #: frappe/public/js/frappe/views/translation_manager.js:21 #: frappe/templates/includes/login/login.js:230 #: frappe/templates/includes/login/login.js:236 @@ -25188,7 +25299,7 @@ msgstr "در حال همگام سازی" msgid "Syncing {0} of {1}" msgstr "در حال همگام سازی {0} از {1}" -#: frappe/utils/data.py:2547 +#: frappe/utils/data.py:2573 msgid "Syntax Error" msgstr "اشتباه نوشتاری" @@ -25499,7 +25610,7 @@ msgstr "جدول MultiSelect" msgid "Table Trimmed" msgstr "جدول بریده شده" -#: frappe/public/js/frappe/form/grid.js:1170 +#: frappe/public/js/frappe/form/grid.js:1171 msgid "Table updated" msgstr "جدول به روز شد" @@ -25714,7 +25825,7 @@ msgstr "با تشکر" msgid "The Auto Repeat for this document has been disabled." msgstr "تکرار خودکار برای این سند غیرفعال شده است." -#: frappe/public/js/frappe/form/grid.js:1193 +#: frappe/public/js/frappe/form/grid.js:1194 msgid "The CSV format is case sensitive" msgstr "قالب CSV به حروف بزرگ و کوچک حساس است" @@ -25782,7 +25893,7 @@ msgstr "نظر نمی‌تواند خالی باشد" 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:685 +#: frappe/public/js/frappe/list/list_view.js:687 msgid "The count shown is an estimated count. Click here to see the accurate count." msgstr "تعداد نشان داده شده یک تعداد تخمینی است. برای مشاهده شمارش دقیق اینجا کلیک کنید." @@ -25894,7 +26005,7 @@ msgstr "پیوند بازنشانی گذرواژه منقضی شده است" msgid "The reset password link has either been used before or is invalid" msgstr "پیوند بازنشانی گذرواژه یا قبلا استفاده شده است یا نامعتبر است" -#: frappe/app.py:388 frappe/public/js/frappe/request.js:149 +#: frappe/app.py:391 frappe/public/js/frappe/request.js:149 msgid "The resource you are looking for is not available" msgstr "منبع مورد نظر شما در دسترس نیست" @@ -25967,12 +26078,12 @@ 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:965 +#: frappe/public/js/frappe/views/reports/query_report.js:973 msgid "There are {0} with the same filters already in the queue:" msgstr "{0} با فیلترهای مشابه از قبل در صف وجود دارد:" #: frappe/website/doctype/web_form/web_form.js:81 -#: frappe/website/doctype/web_form/web_form.js:317 +#: frappe/website/doctype/web_form/web_form.js:318 msgid "There can be only 9 Page Break fields in a Web Form" msgstr "در یک فرم وب فقط 9 فیلد شکستگی صفحه وجود دارد" @@ -25996,11 +26107,11 @@ msgstr "" msgid "There is nothing new to show you right now." msgstr "در حال حاضر چیز جدیدی برای نشان دادن شما وجود ندارد." -#: frappe/core/doctype/file/file.py:640 frappe/utils/file_manager.py:372 +#: frappe/core/doctype/file/file.py:643 frappe/utils/file_manager.py:372 msgid "There is some problem with the file url: {0}" msgstr "آدرس فایل مشکلی دارد: {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:962 +#: frappe/public/js/frappe/views/reports/query_report.js:970 msgid "There is {0} with the same filters already in the queue:" msgstr "{0} با فیلترهای مشابه از قبل در صف وجود دارد:" @@ -26012,7 +26123,7 @@ msgstr "حداقل یک قانون مجوز باید وجود داشته باش msgid "There was an error building this page" msgstr "در ساخت این صفحه خطایی روی داد" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:182 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:196 msgid "There was an error saving filters" msgstr "هنگام ذخیره فیلترها خطایی روی داد" @@ -26069,7 +26180,7 @@ msgstr "احراز هویت شخص ثالث" msgid "This Currency is disabled. Enable to use in transactions" msgstr "این ارز غیرفعال است. فعال کردن برای استفاده در معاملات" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:391 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:405 msgid "This Kanban Board will be private" msgstr "این نمودار کانبان خصوصی خواهد بود" @@ -26106,7 +26217,7 @@ msgstr "این عمل فقط برای {} مجاز است" msgid "This cannot be undone" msgstr "این قابل بازگشت نیست" -#: frappe/desk/doctype/number_card/number_card.js:480 +#: frappe/desk/doctype/number_card/number_card.js:484 msgctxt "Number Card" msgid "This card is visible only to Administrator and System Managers by default. Set a DocType to share with users who have read access." msgstr "" @@ -26129,7 +26240,7 @@ msgstr "این doctype هیچ زمینه یتیمی برای اصلاح ندار msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes." msgstr "" -#: frappe/model/delete_doc.py:113 +#: frappe/model/delete_doc.py:153 msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time." msgstr "این سند در حال حاضر قابل حذف نیست زیرا توسط کاربر دیگری در حال تغییر است. لطفا بعد از مدتی دوباره امتحان کنید." @@ -26171,7 +26282,7 @@ msgid "This field will appear only if the fieldname defined here has value OR th "eval:doc.age>18" msgstr "" -#: frappe/core/doctype/file/file.py:522 +#: frappe/core/doctype/file/file.py:525 msgid "This file is attached to a protected document and cannot be deleted." msgstr "این فایل به یک سند محافظت شده پیوست شده است و قابل حذف نیست." @@ -26206,7 +26317,7 @@ msgstr "این ارائه دهنده موقعیت جغرافیایی هنوز پ msgid "This goes above the slideshow." msgstr "این بالاتر از نمایش اسلاید است." -#: frappe/public/js/frappe/views/reports/query_report.js:2189 +#: frappe/public/js/frappe/views/reports/query_report.js:2197 msgid "This is a background report. Please set the appropriate filters and then generate a new one." msgstr "این یک گزارش پس زمینه است. لطفا فیلترهای مناسب را تنظیم کنید و سپس گزارش جدیدی ایجاد کنید." @@ -26256,7 +26367,7 @@ msgstr "این ممکن است در چندین صفحه چاپ شود" msgid "This month" msgstr "این ماه" -#: frappe/public/js/frappe/views/reports/query_report.js:1037 +#: frappe/public/js/frappe/views/reports/query_report.js:1045 msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead." msgstr "" @@ -26264,13 +26375,13 @@ msgstr "" msgid "This report was generated on {0}" msgstr "این گزارش در {0} ایجاد شد" -#: frappe/public/js/frappe/views/reports/query_report.js:853 +#: frappe/public/js/frappe/views/reports/query_report.js:861 msgid "This report was generated {0}." 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." @@ -26406,9 +26517,11 @@ msgstr "پنجره زمانی (ثانیه)" #. Label of the time_zone (Select) field in DocType 'System Settings' #. Label of the time_zone (Autocomplete) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #. 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/core/web_form/edit_profile/edit_profile.json #: frappe/desk/page/setup_wizard/setup_wizard.js:407 #: frappe/website/doctype/web_page_view/web_page_view.json msgid "Time Zone" @@ -26669,7 +26782,7 @@ msgstr "برای صادر کردن این مرحله به عنوان JSON، آن msgid "To generate password click {0}" msgstr "برای ایجاد رمز عبور، روی {0} کلیک کنید" -#: frappe/public/js/frappe/views/reports/query_report.js:854 +#: frappe/public/js/frappe/views/reports/query_report.js:862 msgid "To get the updated report, click on {0}." msgstr "برای دریافت گزارش به روز شده، روی {0} کلیک کنید." @@ -26744,7 +26857,7 @@ msgstr "تغییر نمای شبکه‌ای" msgid "Toggle Sidebar" msgstr "تغییر وضعیت نوار کناری" -#: frappe/public/js/frappe/list/list_view.js:1964 +#: frappe/public/js/frappe/list/list_view.js:1966 msgctxt "Button in list view menu" msgid "Toggle Sidebar" msgstr "تغییر وضعیت نوار کناری" @@ -26870,7 +26983,7 @@ msgstr "موضوع" #: frappe/desk/query_report.py:587 #: frappe/public/js/frappe/views/reports/print_grid.html:45 -#: frappe/public/js/frappe/views/reports/query_report.js:1324 +#: frappe/public/js/frappe/views/reports/query_report.js:1332 #: frappe/public/js/frappe/views/reports/report_view.js:1553 msgid "Total" msgstr "جمع" @@ -27029,9 +27142,9 @@ msgstr "انتقال ها" msgid "Translatable" msgstr "قابل ترجمه" -#: frappe/public/js/frappe/views/reports/query_report.js:2244 +#: frappe/public/js/frappe/views/reports/query_report.js:2252 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' @@ -27387,7 +27500,7 @@ msgstr "به دلیل وجود حساب ایمیل از دست رفته امکا msgid "Unable to update event" msgstr "رویداد به‌روزرسانی نشد" -#: frappe/core/doctype/file/file.py:486 +#: frappe/core/doctype/file/file.py:489 msgid "Unable to write file format for {0}" msgstr "امکان نوشتن فرمت فایل برای {0} وجود ندارد" @@ -27396,7 +27509,7 @@ msgstr "امکان نوشتن فرمت فایل برای {0} وجود ندارد msgid "Unassign Condition" msgstr "شرط لغو اختصاص" -#: frappe/app.py:396 +#: frappe/app.py:399 msgid "Uncaught Exception" msgstr "" @@ -27412,7 +27525,7 @@ msgstr "واگرد" msgid "Undo last action" msgstr "واگرد آخرین اقدام" -#: frappe/database/query.py:1495 +#: frappe/database/query.py:1497 msgid "Unescaped quotes in string literal: {0}" msgstr "" @@ -27459,7 +27572,7 @@ msgstr "ستون ناشناخته: {0}" msgid "Unknown Rounding Method: {}" msgstr "روش گرد کردن نامشخص: {}" -#: frappe/auth.py:316 +#: frappe/auth.py:319 msgid "Unknown User" msgstr "کاربر ناشناس" @@ -27525,8 +27638,8 @@ msgstr "" msgid "Unsubscribed" msgstr "لغو اشتراک شده" -#: frappe/database/query.py:653 frappe/database/query.py:1387 -#: frappe/database/query.py:1397 +#: frappe/database/query.py:655 frappe/database/query.py:1389 +#: frappe/database/query.py:1399 msgid "Unsupported function or invalid field name: {0}" msgstr "" @@ -27560,7 +27673,7 @@ msgstr "رویدادهای آینده برای امروز" #: 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:427 +#: frappe/public/js/frappe/form/grid_row.js:428 msgid "Update" msgstr "به‌روزرسانی" @@ -27594,6 +27707,11 @@ msgstr "سفارش به‌روزرسانی" msgid "Update Password" msgstr "به‌روزرسانی گذرواژه" +#. Title of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Update Profile" +msgstr "به‌روزرسانی نمایه" + #. Label of the update_series (Section Break) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -27691,7 +27809,7 @@ 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" @@ -27809,11 +27927,7 @@ msgstr "از شناسه ایمیل متفاوت استفاده کنید" msgid "Use if the default settings don't seem to detect your data correctly" msgstr "استفاده کنید اگر تنظیمات پیش‌فرض به درستی داده‌های شما را شناسایی نمی‌کنند" -#: frappe/model/db_query.py:436 -msgid "Use of function {0} in field is restricted" -msgstr "استفاده از تابع {0} در فیلد محدود شده است" - -#: frappe/model/db_query.py:413 +#: frappe/model/db_query.py:411 msgid "Use of sub-query or function is restricted" msgstr "استفاده از زیرپرسمان یا تابع محدود شده است" @@ -28035,12 +28149,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:1944 +#: frappe/public/js/frappe/views/reports/query_report.js:1952 #: frappe/public/js/frappe/views/reports/report_view.js:1761 msgid "User Permissions" msgstr "مجوزهای کاربر" -#: frappe/public/js/frappe/list/list_view.js:1922 +#: frappe/public/js/frappe/list/list_view.js:1924 msgctxt "Button in list view menu" msgid "User Permissions" msgstr "مجوزهای کاربر" @@ -28184,7 +28298,7 @@ msgstr "کاربر {0} جعل هویت به عنوان {1}" msgid "User {0} is disabled" msgstr "کاربر {0} غیرفعال است" -#: frappe/sessions.py:242 +#: frappe/sessions.py:243 msgid "User {0} is disabled. Please contact your System Manager." msgstr "کاربر {0} غیرفعال است. لطفا با مدیر سیستم خود تماس بگیرید." @@ -28287,7 +28401,7 @@ msgstr "" #: frappe/email/doctype/email_account/email_account.json #: frappe/email/doctype/email_domain/email_domain.json msgid "Validate SSL Certificate" -msgstr "تایید گواهی SSL" +msgstr "تأیید گواهی SSL" #: frappe/public/js/frappe/web_form/web_form.js:384 msgid "Validation Error" @@ -28361,7 +28475,7 @@ msgstr "مقدار نمی‌تواند برای {0} منفی باشد: {1}" msgid "Value for a check field can be either 0 or 1" msgstr "مقدار یک فیلد چک می‌تواند 0 یا 1 باشد" -#: frappe/custom/doctype/customize_form/customize_form.py:612 +#: frappe/custom/doctype/customize_form/customize_form.py:616 msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters" msgstr "مقدار فیلد {0} در {1} خیلی طولانی است. طول باید کمتر از {2} کاراکتر باشد" @@ -28434,12 +28548,12 @@ 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 @@ -28482,7 +28596,7 @@ msgstr "مشاهده همه" msgid "View Audit Trail" msgstr "" -#: frappe/core/doctype/user/user.js:156 +#: frappe/core/doctype/user/user.js:144 msgid "View Doctype Permissions" msgstr "مشاهده مجوزهای Doctype" @@ -28494,7 +28608,7 @@ msgstr "نمایش فایل" msgid "View Full Log" msgstr "مشاهده لاگ کامل" -#: frappe/public/js/frappe/views/treeview.js:484 +#: frappe/public/js/frappe/views/treeview.js:486 #: frappe/public/js/frappe/widgets/quick_list_widget.js:258 msgid "View List" msgstr "مشاهده لیست" @@ -28504,7 +28618,7 @@ msgstr "مشاهده لیست" msgid "View Log" msgstr "مشاهده لاگ" -#: frappe/core/doctype/user/user.js:147 +#: frappe/core/doctype/user/user.js:135 #: frappe/core/doctype/user_permission/user_permission.js:24 msgid "View Permitted Documents" msgstr "مشاهده اسناد مجاز" @@ -28620,6 +28734,7 @@ msgid "Warehouse" msgstr "انبار" #. Option for the 'Style' (Select) field in DocType 'Workflow State' +#: frappe/public/js/frappe/router.js:613 #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Warning" msgstr "هشدار" @@ -29265,7 +29380,7 @@ msgstr "گردش کار با موفقیت به روز شد" msgid "Workspace" msgstr "فضای کار" -#: frappe/public/js/frappe/router.js:175 +#: frappe/public/js/frappe/router.js:180 msgid "Workspace {0} does not exist" msgstr "محیط کار {0} وجود ندارد" @@ -29387,7 +29502,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:1225 +#: frappe/public/js/frappe/views/reports/query_report.js:1233 msgid "Y Field" msgstr "فیلد Y" @@ -29449,7 +29564,7 @@ msgstr "زرد" #: frappe/public/js/form_builder/utils.js:336 #: frappe/public/js/frappe/form/controls/link.js:498 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1665 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 #: frappe/website/doctype/help_article/templates/help_article.html:25 msgid "Yes" msgstr "بله" @@ -29485,6 +29600,10 @@ msgstr "" msgid "You added {0} rows to {1}" msgstr "" +#: frappe/public/js/frappe/router.js:642 +msgid "You are about to open an external link. To confirm, click the link again." +msgstr "شما در حال باز کردن یک لینک خارجی هستید. برای تأیید، دوباره روی لینک کلیک کنید." + #: frappe/public/js/frappe/dom.js:438 msgid "You are connected to internet." msgstr "شما به اینترنت متصل هستید." @@ -29528,7 +29647,7 @@ msgstr "شما مجاز به ویرایش گزارش نیستید." msgid "You are not allowed to export {} doctype" msgstr "شما مجاز به برون‌بُرد {} doctype نیستید" -#: frappe/public/js/frappe/views/treeview.js:448 +#: frappe/public/js/frappe/views/treeview.js:450 msgid "You are not allowed to print this report" msgstr "شما مجاز به چاپ این گزارش نیستید" @@ -29536,7 +29655,7 @@ msgstr "شما مجاز به چاپ این گزارش نیستید" msgid "You are not allowed to send emails related to this document" msgstr "شما مجاز به ارسال ایمیل های مرتبط با این سند نیستید" -#: frappe/website/doctype/web_form/web_form.py:605 +#: frappe/website/doctype/web_form/web_form.py:632 msgid "You are not allowed to update this Web Form Document" msgstr "شما مجاز به به‌روزرسانی این سند فرم وب نیستید" @@ -29554,7 +29673,7 @@ msgstr "شما اجازه دسترسی به این صفحه را ندارید." #: frappe/__init__.py:465 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." @@ -29609,11 +29728,11 @@ msgstr "می‌توانید خط مشی حفظ را از {0} تغییر دهید msgid "You can continue with the onboarding after exploring this page" msgstr "پس از کاوش در این صفحه می‌توانید به آشناسازی ادامه دهید" -#: frappe/model/delete_doc.py:137 +#: frappe/model/delete_doc.py:177 msgid "You can disable this {0} instead of deleting it." msgstr "می‌توانید به جای حذف این {0} آن را غیرفعال کنید." -#: frappe/core/doctype/file/file.py:758 +#: frappe/core/doctype/file/file.py:761 msgid "You can increase the limit from System Settings." msgstr "می‌توانید از تنظیمات سیستم محدودیت را افزایش دهید." @@ -29663,11 +29782,11 @@ msgstr "برای تنظیم سطوح فیلدها می‌توانید از سف msgid "You can use wildcard %" msgstr "می‌توانید از نویسه جانشین % استفاده کنید" -#: frappe/custom/doctype/customize_form/customize_form.py:390 +#: frappe/custom/doctype/customize_form/customize_form.py:394 msgid "You can't set 'Options' for field {0}" msgstr "نمی‌توانید «گزینه‌ها» را برای فیلد {0} تنظیم کنید" -#: frappe/custom/doctype/customize_form/customize_form.py:394 +#: frappe/custom/doctype/customize_form/customize_form.py:398 msgid "You can't set 'Translatable' for field {0}" msgstr "نمی‌توانید «قابل ترجمه» را برای فیلد {0} تنظیم کنید" @@ -29685,7 +29804,7 @@ msgstr "شما این سند را لغو کردید {1}" msgid "You cannot create a dashboard chart from single DocTypes" msgstr "شما نمی‌توانید یک نمودار داشبورد از تک DocType ایجاد کنید" -#: frappe/custom/doctype/customize_form/customize_form.py:386 +#: frappe/custom/doctype/customize_form/customize_form.py:390 msgid "You cannot unset 'Read Only' for field {0}" msgstr "نمی‌توانید «فقط خواندن» را برای فیلد {0} لغو تنظیم کنید" @@ -29728,11 +29847,11 @@ msgstr "شما مجوزهای خواندن یا انتخاب برای {} را ن msgid "You do not have enough permissions to access this resource. Please contact your manager to get access." msgstr "شما مجوز کافی برای دسترسی به این منبع را ندارید. لطفاً برای دسترسی با مدیر خود تماس بگیرید." -#: frappe/app.py:381 +#: frappe/app.py:384 msgid "You do not have enough permissions to complete the action" msgstr "شما مجوز کافی برای تکمیل عمل را ندارید" -#: frappe/database/query.py:529 +#: frappe/database/query.py:531 msgid "You do not have permission to access field: {0}" msgstr "" @@ -29748,7 +29867,7 @@ msgstr "شما مجوز لغو همه اسناد مرتبط را ندارید." msgid "You don't have access to Report: {0}" msgstr "شما به گزارش دسترسی ندارید: {0}" -#: frappe/website/doctype/web_form/web_form.py:808 +#: frappe/website/doctype/web_form/web_form.py:835 msgid "You don't have permission to access the {0} DocType." msgstr "شما اجازه دسترسی به {0} DocType را ندارید." @@ -29772,7 +29891,7 @@ msgstr "شما یک پیام جدید دارید از:" msgid "You have been successfully logged out" msgstr "شما با موفقیت از سیستم خارج شدید" -#: frappe/custom/doctype/customize_form/customize_form.py:245 +#: frappe/custom/doctype/customize_form/customize_form.py:247 msgid "You have hit the row size limit on database table: {0}" msgstr "شما به محدودیت اندازه ردیف در جدول پایگاه داده رسیده اید: {0}" @@ -29800,7 +29919,7 @@ msgstr "شما {0} را ندیده اید" msgid "You haven't added any Dashboard Charts or Number Cards yet." msgstr "شما هنوز نمودار داشبورد یا کارت شماره اضافه نکرده‌اید." -#: frappe/public/js/frappe/list/list_view.js:501 +#: frappe/public/js/frappe/list/list_view.js:503 msgid "You haven't created a {0} yet" msgstr "شما هنوز یک {0} ایجاد نکرده‌اید" @@ -29817,11 +29936,11 @@ msgstr "شما آخرین بار این را ویرایش کردید" msgid "You must add atleast one link." msgstr "شما باید حداقل یک لینک اضافه کنید." -#: frappe/website/doctype/web_form/web_form.py:804 +#: frappe/website/doctype/web_form/web_form.py:831 msgid "You must be logged in to use this form." msgstr "برای استفاده از این فرم باید وارد سیستم شوید." -#: frappe/website/doctype/web_form/web_form.py:645 +#: frappe/website/doctype/web_form/web_form.py:672 msgid "You must login to submit this form" msgstr "برای ارسال این فرم باید وارد شوید" @@ -29936,6 +30055,10 @@ msgstr "شما این سند را لغو دنبال کردید" msgid "You viewed this" msgstr "شما این را مشاهده کردید" +#: frappe/public/js/frappe/router.js:653 +msgid "You will be redirected to:" +msgstr "شما هدایت خواهید شد به:" + #: frappe/core/doctype/user_invitation/user_invitation.py:113 msgid "You've been invited to join {0}" msgstr "" @@ -29981,7 +30104,7 @@ msgstr "میانبرهای شما" msgid "Your account has been deleted" msgstr "حساب شما حذف شده است" -#: frappe/auth.py:514 +#: frappe/auth.py:517 msgid "Your account has been locked and will resume after {0} seconds" msgstr "حساب شما قفل شده است و پس از {0} ثانیه از سر گرفته می‌شود" @@ -30047,7 +30170,7 @@ msgstr "پرسمان شما دریافت شد. ما به زودی پاسخ خو msgid "Your report is being generated in the background. You will receive an email on {0} with a download link once it is ready." msgstr "" -#: frappe/app.py:374 +#: frappe/app.py:377 msgid "Your session has expired, please login again to continue." msgstr "نشست شما منقضی شده است، لطفا برای ادامه دوباره وارد شوید." @@ -30384,7 +30507,7 @@ msgstr "فهرست" msgid "logged in" msgstr "وارد شده" -#: frappe/website/doctype/web_form/web_form.js:362 +#: frappe/website/doctype/web_form/web_form.js:363 msgid "login_required" msgstr "login_required" @@ -30722,7 +30845,7 @@ msgstr "از طریق درون‌بُرد داده" msgid "via Google Meet" msgstr "از طریق Google Meet" -#: frappe/email/doctype/notification/notification.py:403 +#: frappe/email/doctype/notification/notification.py:405 msgid "via Notification" msgstr "از طریق اطلاع رسانی" @@ -30832,7 +30955,7 @@ msgstr "{0} نمودار" msgid "{0} Dashboard" msgstr "داشبورد {0}" -#: frappe/public/js/frappe/form/grid_row.js:486 +#: frappe/public/js/frappe/form/grid_row.js:487 #: frappe/public/js/frappe/list/list_settings.js:225 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:178 msgid "{0} Fields" @@ -30883,7 +31006,7 @@ msgstr "{0} مجاز به تغییر {1} پس از ارسال از {2} به {3} msgid "{0} Report" msgstr "گزارش {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:956 +#: frappe/public/js/frappe/views/reports/query_report.js:964 msgid "{0} Reports" msgstr "{0} گزارش ها" @@ -30956,7 +31079,7 @@ msgctxt "Form timeline" msgid "{0} attached {1}" msgstr "{0} پیوست {1}" -#: frappe/core/doctype/system_settings/system_settings.py:152 +#: frappe/core/doctype/system_settings/system_settings.py:153 msgid "{0} can not be more than {1}" msgstr "{0} نمی‌تواند بیشتر از {1} باشد" @@ -31033,7 +31156,7 @@ 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 +#: frappe/database/query.py:710 msgid "{0} fields cannot contain backticks (`): {1}" msgstr "" @@ -31078,7 +31201,7 @@ msgstr "{0} در ردیف {1} نمی‌تواند هم URL و هم موارد ف msgid "{0} is a mandatory field" msgstr "{0} یک فیلد اجباری است" -#: frappe/core/doctype/file/file.py:566 +#: frappe/core/doctype/file/file.py:569 msgid "{0} is a not a valid zip file" msgstr "{0} یک فایل فشرده معتبر نیست" @@ -31127,7 +31250,7 @@ msgstr "{0} مانند {1} است" msgid "{0} is mandatory" msgstr "{0} اجباری است" -#: frappe/database/query.py:485 +#: frappe/database/query.py:487 msgid "{0} is not a child table of {1}" msgstr "" @@ -31147,7 +31270,7 @@ msgstr "{0} یک تقویم معتبر نیست. تغییر مسیر به تقو msgid "{0} is not a valid Cron expression." msgstr "{0} یک عبارت Cron معتبر نیست." -#: frappe/public/js/frappe/form/controls/dynamic_link.js:27 +#: frappe/public/js/frappe/form/controls/dynamic_link.js:23 msgid "{0} is not a valid DocType for Dynamic Link" msgstr "{0} یک DocType معتبر برای پیوند پویا نیست" @@ -31184,7 +31307,7 @@ msgstr "{0} یک فیلد والد معتبر برای {1} نیست" msgid "{0} is not a valid report format. Report format should one of the following {1}" msgstr "{0} قالب گزارش معتبری نیست. قالب گزارش باید یکی از موارد زیر باشد {1}" -#: frappe/core/doctype/file/file.py:546 +#: frappe/core/doctype/file/file.py:549 msgid "{0} is not a zip file" msgstr "{0} یک فایل فشرده نیست" @@ -31232,7 +31355,7 @@ msgstr "{0} تنظیم شده است" msgid "{0} is within {1}" msgstr "{0} در محدوده {1} است" -#: frappe/public/js/frappe/list/list_view.js:1839 +#: frappe/public/js/frappe/list/list_view.js:1841 msgid "{0} items selected" msgstr "{0} مورد انتخاب شد" @@ -31318,11 +31441,11 @@ msgid "{0} not found" msgstr "{0} یافت نشد" #: frappe/core/doctype/report/report.py:427 -#: frappe/public/js/frappe/list/list_view.js:1211 +#: frappe/public/js/frappe/list/list_view.js:1213 msgid "{0} of {1}" msgstr "{0} از {1}" -#: frappe/public/js/frappe/list/list_view.js:1213 +#: frappe/public/js/frappe/list/list_view.js:1215 msgid "{0} of {1} ({2} rows with children)" msgstr "{0} از {1} ({2} ردیف با فرزندان)" @@ -31372,7 +31495,7 @@ msgstr "{0} تخصیص خود را حذف کرد." msgid "{0} removed {1} rows from {2}" msgstr "" -#: frappe/public/js/frappe/roles_editor.js:62 +#: frappe/public/js/frappe/roles_editor.js:64 msgid "{0} role does not have permission on any doctype" msgstr "نقش {0} اجازه هیچ نوع doctype را ندارد" @@ -31446,7 +31569,7 @@ msgstr "{0} تا {1}" msgid "{0} un-shared this document with {1}" msgstr "{0} لغو اشتراک‌گذاری این سند با {1}" -#: frappe/custom/doctype/customize_form/customize_form.py:254 +#: frappe/custom/doctype/customize_form/customize_form.py:256 msgid "{0} updated" msgstr "{0} به روز شد" @@ -31506,7 +31629,7 @@ msgstr "{0} {1} با اسناد ارسالی زیر پیوند داده شده msgid "{0} {1} not found" msgstr "{0} {1} یافت نشد" -#: frappe/model/delete_doc.py:248 +#: frappe/model/delete_doc.py:288 msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first." msgstr "{0} {1}: رکورد ارسال شده قابل حذف نیست. ابتدا باید آن را {2} لغو {3} کنید." @@ -31619,7 +31742,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:1283 +#: frappe/public/js/frappe/views/reports/query_report.js:1291 msgid "{0}: {1} vs {2}" msgstr "{0}: {1} در مقابل {2}" @@ -31655,11 +31778,11 @@ msgstr "{{{0}}} یک الگوی نام فیلد معتبر نیست. باید {{ msgid "{} Complete" msgstr "{} کامل" -#: frappe/utils/data.py:2541 +#: frappe/utils/data.py:2567 msgid "{} Invalid python code on line {}" msgstr "{} کد پایتون نامعتبر در خط {}" -#: frappe/utils/data.py:2550 +#: frappe/utils/data.py:2576 msgid "{} Possibly invalid python code.
{}" msgstr "{} احتمالاً کد پایتون نامعتبر است.
{}" @@ -31685,7 +31808,7 @@ msgstr "{} غیر فعال شده است. فقط در صورتی می‌توان msgid "{} is not a valid date string." msgstr "{} یک رشته تاریخ معتبر نیست." -#: frappe/commands/utils.py:562 +#: frappe/commands/utils.py:561 msgid "{} not found in PATH! This is required to access the console." msgstr "{} در PATH یافت نشد! این برای دسترسی به کنسول مورد نیاز است." diff --git a/frappe/locale/fr.po b/frappe/locale/fr.po index d1656cd392..9f1ae2cdb4 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-09-21 09:33+0000\n" -"PO-Revision-Date: 2025-09-21 19:57\n" +"POT-Creation-Date: 2025-10-05 09:33+0000\n" +"PO-Revision-Date: 2025-10-06 22:58\n" "Last-Translator: developers@frappe.io\n" "Language-Team: French\n" "MIME-Version: 1.0\n" @@ -78,7 +78,7 @@ msgstr "'Dans la Recherche Globale' n'est pas autorisé pour le type {0} dans la msgid "'In List View' is not allowed for field {0} of type {1}" msgstr "'Dans la vue liste' n'est pas autorisé pour le champ {0} de type {1}" -#: frappe/custom/doctype/customize_form/customize_form.py:363 +#: frappe/custom/doctype/customize_form/customize_form.py:367 msgid "'In List View' not allowed for type {0} in row {1}" msgstr "'Dans La Vue En Liste’ n'est pas permis pour le type {0} à la ligne {1}" @@ -122,7 +122,7 @@ msgstr "0 - Brouillon; 1 - Validé; 2 - Annulé" msgid "0 is highest" msgstr "0 est le plus élevé" -#: frappe/public/js/frappe/form/grid_row.js:892 +#: frappe/public/js/frappe/form/grid_row.js:893 msgid "1 = True & 0 = False" msgstr "1 = Vrai & 0 = Faux" @@ -141,11 +141,11 @@ 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:955 +#: frappe/public/js/frappe/views/reports/query_report.js:963 msgid "1 Report" msgstr "" -#: frappe/tests/test_utils.py:739 +#: frappe/tests/test_utils.py:845 msgid "1 day ago" msgstr "Il y a 1 jour" @@ -154,17 +154,17 @@ msgid "1 hour" msgstr "1 heure" #: frappe/public/js/frappe/utils/pretty_date.js:52 -#: frappe/tests/test_utils.py:737 +#: frappe/tests/test_utils.py:843 msgid "1 hour ago" msgstr "Il y a 1 heure" #: frappe/public/js/frappe/utils/pretty_date.js:48 -#: frappe/tests/test_utils.py:735 +#: frappe/tests/test_utils.py:841 msgid "1 minute ago" msgstr "Il y a 1 minute" #: frappe/public/js/frappe/utils/pretty_date.js:66 -#: frappe/tests/test_utils.py:743 +#: frappe/tests/test_utils.py:849 msgid "1 month ago" msgstr "Il y a 1 mois" @@ -186,37 +186,37 @@ msgctxt "User added row to child table" msgid "1 row to {0}" msgstr "" -#: frappe/tests/test_utils.py:734 +#: frappe/tests/test_utils.py:840 msgid "1 second ago" msgstr "Il y a 1 seconde" #: frappe/public/js/frappe/utils/pretty_date.js:62 -#: frappe/tests/test_utils.py:741 +#: frappe/tests/test_utils.py:847 msgid "1 week ago" msgstr "Il ya 1 semaine" #: frappe/public/js/frappe/utils/pretty_date.js:70 -#: frappe/tests/test_utils.py:745 +#: frappe/tests/test_utils.py:851 msgid "1 year ago" msgstr "Il y a 1 an" -#: frappe/tests/test_utils.py:738 +#: frappe/tests/test_utils.py:844 msgid "2 hours ago" msgstr "Il y a 2 heures" -#: frappe/tests/test_utils.py:744 +#: frappe/tests/test_utils.py:850 msgid "2 months ago" msgstr "Il y a 2 mois" -#: frappe/tests/test_utils.py:742 +#: frappe/tests/test_utils.py:848 msgid "2 weeks ago" msgstr "Il y a 2 semaines" -#: frappe/tests/test_utils.py:746 +#: frappe/tests/test_utils.py:852 msgid "2 years ago" msgstr "Il y a 2 ans" -#: frappe/tests/test_utils.py:736 +#: frappe/tests/test_utils.py:842 msgid "3 minutes ago" msgstr "Il y a 3 minutes" @@ -232,7 +232,7 @@ msgstr "4 heures" msgid "5 Records" msgstr "5 enregistrements" -#: frappe/tests/test_utils.py:740 +#: frappe/tests/test_utils.py:846 msgid "5 days ago" msgstr "" @@ -268,6 +268,16 @@ msgstr "" 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 "
Veuillez ne pas le mettre à jour car cela pourrait gâcher votre formulaire. Utilisez la vue Personnaliser Le Formulaire et les Champs Personnalisés pour définir les propriétés !
" +#. Introduction text of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "

Request a file containing your personally identifiable information (PII) that is saved on our system. The file will be in JSON format and is sent to you by email. If you would like to have your PII deleted from our system, please make a request to delete data.

" +msgstr "" + +#. Introduction text of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "

Send a request to delete your account and personally identifiable information (PII) that is stored on our system. You will receive an email to verify your request. Once the request is verified we will take care of deleting your PII. If you just want to check what PII we have stored, you can request your data.

" +msgstr "" + #. Content of the 'Help HTML' (HTML) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -671,6 +681,11 @@ msgstr "" msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three." msgstr "" +#. Success message of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "A download link with your data will be sent to the email address associated with your account." +msgstr "" + #: frappe/custom/doctype/custom_field/custom_field.py:175 msgid "A field with the name {0} already exists in {1}" msgstr "" @@ -797,7 +812,7 @@ msgstr "" #. 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.js:452 frappe/core/doctype/user/user.json +#: frappe/core/doctype/user/user.js:459 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 @@ -816,7 +831,7 @@ msgstr "" msgid "API Key cannot be regenerated" msgstr "La clé API ne peut pas être régénérée" -#: frappe/core/doctype/user/user.js:449 +#: frappe/core/doctype/user/user.js:456 msgid "API Keys" msgstr "" @@ -840,7 +855,7 @@ msgstr "" #. 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.js:459 frappe/core/doctype/user/user.json +#: frappe/core/doctype/user/user.js:466 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" @@ -926,7 +941,7 @@ msgstr "Jeton d'Accès" msgid "Access Token URL" msgstr "URL du jeton d'accès" -#: frappe/auth.py:491 +#: frappe/auth.py:494 msgid "Access not allowed from this IP Address" msgstr "Accès non autorisé à partir de cette adresse IP" @@ -1042,7 +1057,7 @@ msgstr "L'action {0} a échoué sur {1} {2}. Voir {3}" #: 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:842 +#: frappe/public/js/frappe/views/reports/query_report.js:850 msgid "Actions" msgstr "Actions" @@ -1099,7 +1114,7 @@ msgstr "Historique d'activité" #: 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:501 +#: frappe/public/js/frappe/form/grid_row.js:502 #: 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 @@ -1110,7 +1125,7 @@ msgstr "Historique d'activité" msgid "Add" msgstr "Ajouter" -#: frappe/public/js/frappe/form/grid_row.js:454 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Add / Remove Columns" msgstr "" @@ -1155,8 +1170,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:1832 -#: frappe/public/js/frappe/views/reports/query_report.js:1835 +#: frappe/public/js/frappe/views/reports/query_report.js:1840 +#: frappe/public/js/frappe/views/reports/query_report.js:1843 #: frappe/public/js/frappe/views/reports/report_view.js:360 #: frappe/public/js/frappe/views/reports/report_view.js:385 #: frappe/public/js/print_format_builder/Field.vue:112 @@ -1250,7 +1265,7 @@ msgstr "Ajouter des Abonnés" msgid "Add Tags" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2149 +#: frappe/public/js/frappe/list/list_view.js:2151 msgctxt "Button in list view actions menu" msgid "Add Tags" msgstr "" @@ -1631,11 +1646,11 @@ msgstr "Alerte" msgid "Alerts and Notifications" msgstr "Alertes et notifications" -#: frappe/database/query.py:1608 +#: frappe/database/query.py:1610 msgid "Alias cannot be a SQL keyword: {0}" msgstr "" -#: frappe/database/query.py:1533 +#: frappe/database/query.py:1535 msgid "Alias must be a string" msgstr "" @@ -2083,6 +2098,12 @@ msgstr "Ajout également du champ de dépendance de statut {0}" msgid "Alternative Email ID" msgstr "Email de connexion alternatif" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Always" +msgstr "" + #. Label of the always_bcc (Data) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Always BCC Address" @@ -2159,6 +2180,11 @@ msgstr "" msgid "Amendment naming rules updated." msgstr "Règles de nommage mises à jour." +#. Success message of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "An email to verify your request has been sent to your email address. Please verify your request to complete the process." +msgstr "" + #: 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." @@ -2341,7 +2367,7 @@ msgstr "Appliqué sur" msgid "Apply" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2134 +#: frappe/public/js/frappe/list/list_view.js:2136 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" msgstr "Appliquer la règle d'assignation" @@ -2426,7 +2452,7 @@ msgstr "Colonnes Archivées" msgid "Are you sure you want to cancel the invitation?" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2113 +#: frappe/public/js/frappe/list/list_view.js:2115 msgid "Are you sure you want to clear the assignments?" msgstr "" @@ -2462,7 +2488,7 @@ msgstr "" msgid "Are you sure you want to discard the changes?" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:969 +#: frappe/public/js/frappe/views/reports/query_report.js:977 msgid "Are you sure you want to generate a new report?" msgstr "" @@ -2470,7 +2496,7 @@ msgstr "" msgid "Are you sure you want to merge {0} with {1}?" msgstr "Voulez-vous vraiment fusionner {0} avec {1}?" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:108 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:118 msgid "Are you sure you want to proceed?" msgstr "" @@ -2525,6 +2551,12 @@ msgstr "" msgid "As per your request, your account and data on {0} associated with email {1} has been permanently deleted" msgstr "" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Ask" +msgstr "" + #. Label of the assign_condition (Code) field in DocType 'Assignment Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Assign Condition" @@ -2534,7 +2566,7 @@ msgstr "Attribuer une condition" msgid "Assign To" msgstr "Attribuer À" -#: frappe/public/js/frappe/list/list_view.js:2095 +#: frappe/public/js/frappe/list/list_view.js:2097 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "Attribuer À" @@ -2677,7 +2709,7 @@ msgstr "Affectations" msgid "Asynchronous" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:696 +#: frappe/public/js/frappe/form/grid_row.js:697 msgid "At least one column is required to show in the grid." msgstr "Au moins une colonne est requise pour s'afficher dans la grille." @@ -3657,7 +3689,7 @@ msgstr "Suppression en masse" msgid "Bulk Edit" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1189 +#: frappe/public/js/frappe/form/grid.js:1190 msgid "Bulk Edit {0}" msgstr "Modifier en Masse {0}" @@ -3949,7 +3981,7 @@ msgstr "" #. 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/doctype/doctype_list.js:131 #: frappe/core/doctype/user_document_type/user_document_type.json #: frappe/core/doctype/user_invitation/user_invitation.js:17 #: frappe/email/doctype/notification/notification.json @@ -3957,7 +3989,7 @@ msgstr "" msgid "Cancel" msgstr "Annuler" -#: frappe/public/js/frappe/list/list_view.js:2204 +#: frappe/public/js/frappe/list/list_view.js:2206 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "Annuler" @@ -3975,7 +4007,7 @@ msgstr "" msgid "Cancel All Documents" msgstr "Annuler tous les documents" -#: frappe/public/js/frappe/list/list_view.js:2209 +#: frappe/public/js/frappe/list/list_view.js:2211 msgctxt "Title of confirmation dialog" msgid "Cancel {0} documents?" msgstr "Annuler les documents {0}?" @@ -4028,7 +4060,7 @@ msgstr "Ne peut être retiré" msgid "Cannot Update After Submit" msgstr "" -#: frappe/core/doctype/file/file.py:643 +#: frappe/core/doctype/file/file.py:646 msgid "Cannot access file path {0}" msgstr "" @@ -4076,7 +4108,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:379 +#: frappe/model/delete_doc.py:419 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}" @@ -4156,7 +4188,7 @@ msgstr "" msgid "Cannot find file {} on disk" msgstr "" -#: frappe/core/doctype/file/file.py:583 +#: frappe/core/doctype/file/file.py:586 msgid "Cannot get file contents of a Folder" msgstr "" @@ -4164,7 +4196,7 @@ msgstr "" msgid "Cannot have multiple printers mapped to a single print format." msgstr "Impossible d'imprimer plusieurs imprimantes sur un seul format d'impression." -#: frappe/public/js/frappe/form/grid.js:1133 +#: frappe/public/js/frappe/form/grid.js:1134 msgid "Cannot import table with more than 5000 rows." msgstr "" @@ -4180,7 +4212,7 @@ msgstr "" msgid "Cannot match column {0} with any field" msgstr "Impossible de faire correspondre la colonne {0} avec un champ" -#: frappe/public/js/frappe/form/grid_row.js:175 +#: frappe/public/js/frappe/form/grid_row.js:176 msgid "Cannot move row" msgstr "Impossible de déplacer la ligne" @@ -4209,11 +4241,11 @@ msgstr "" msgid "Cannot update {0}" msgstr "Impossible de mettre à jour {0}" -#: frappe/model/db_query.py:1130 +#: frappe/model/db_query.py:1136 msgid "Cannot use sub-query here." msgstr "" -#: frappe/model/db_query.py:1162 +#: frappe/model/db_query.py:1168 msgid "Cannot use {0} in order/group by" msgstr "" @@ -4486,11 +4518,11 @@ msgstr "" #. Description of the 'Is Child Table' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:52 +#: frappe/core/doctype/doctype/doctype_list.js:53 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 +#: frappe/database/query.py:662 msgid "Child query fields for '{0}' must be a list or tuple." msgstr "" @@ -4546,7 +4578,7 @@ msgstr "" msgid "Clear All" msgstr "Tout effacer" -#: frappe/public/js/frappe/list/list_view.js:2110 +#: frappe/public/js/frappe/list/list_view.js:2112 msgctxt "Button in list view actions menu" msgid "Clear Assignment" msgstr "" @@ -4640,7 +4672,7 @@ msgstr "" msgid "Click to Set Filters" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:739 +#: frappe/public/js/frappe/list/list_view.js:741 msgid "Click to sort by {0}" msgstr "" @@ -4818,7 +4850,7 @@ msgctxt "Shrink code field." msgid "Collapse" msgstr "Réduire" -#: frappe/public/js/frappe/views/reports/query_report.js:2113 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 #: frappe/public/js/frappe/views/treeview.js:123 msgid "Collapse All" msgstr "Tout réduire" @@ -4873,7 +4905,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:1233 +#: frappe/public/js/frappe/views/reports/query_report.js:1241 #: frappe/public/js/frappe/widgets/widget_dialog.js:546 #: frappe/public/js/frappe/widgets/widget_dialog.js:694 #: frappe/website/doctype/color/color.json @@ -4929,11 +4961,11 @@ msgstr "Nom de la Colonne" msgid "Column Name cannot be empty" msgstr "Nom de la Colonne ne peut pas être vide" -#: frappe/public/js/frappe/form/grid_row.js:454 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Column Width" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:661 +#: frappe/public/js/frappe/form/grid_row.js:662 msgid "Column width cannot be zero." msgstr "" @@ -4960,7 +4992,7 @@ msgstr "Colonnes" msgid "Columns / Fields" msgstr "Colonnes / Champs" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:397 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:411 msgid "Columns based on" msgstr "Colonnes basées sur" @@ -5224,7 +5256,7 @@ msgstr "" msgid "Configure Chart" msgstr "Configurer le graphique" -#: frappe/public/js/frappe/form/grid_row.js:406 +#: frappe/public/js/frappe/form/grid_row.js:407 msgid "Configure Columns" msgstr "Configurer Les Colonnes" @@ -5251,7 +5283,7 @@ msgstr "Configurez la manière dont les documents modifiés seront nommés.
\ msgid "Configure various aspects of how document naming works like naming series, current counter." msgstr "" -#: frappe/core/doctype/user/user.js:412 frappe/public/js/frappe/dom.js:345 +#: frappe/core/doctype/user/user.js:400 frappe/public/js/frappe/dom.js:345 #: frappe/www/update-password.html:66 msgid "Confirm" msgstr "Confirmer" @@ -5270,7 +5302,7 @@ msgstr "" msgid "Confirm Deletion of Account" msgstr "" -#: frappe/core/doctype/user/user.js:196 +#: frappe/core/doctype/user/user.js:184 msgid "Confirm New Password" msgstr "Confirmer le nouveau mot de passe" @@ -5523,7 +5555,7 @@ msgstr "" msgid "Copy to Clipboard" msgstr "Copier vers le presse-papiers" -#: frappe/core/doctype/user/user.js:480 +#: frappe/core/doctype/user/user.js:487 msgid "Copy token to clipboard" msgstr "" @@ -5532,7 +5564,7 @@ msgstr "" msgid "Copyright" msgstr "Droit d'Auteur" -#: frappe/custom/doctype/customize_form/customize_form.py:123 +#: frappe/custom/doctype/customize_form/customize_form.py:125 msgid "Core DocTypes cannot be customized." msgstr "Les DocTypes de base ne peuvent pas être personnalisés." @@ -5556,7 +5588,7 @@ 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 +#: frappe/database/query.py:566 msgid "Could not parse field: {0}" msgstr "" @@ -5648,13 +5680,13 @@ 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:1265 +#: frappe/public/js/frappe/views/reports/query_report.js:1273 #: frappe/public/js/frappe/views/workspace/workspace.js:469 #: frappe/workflow/page/workflow_builder/workflow_builder.js:46 msgid "Create" msgstr "Créer" -#: frappe/core/doctype/doctype/doctype_list.js:102 +#: frappe/core/doctype/doctype/doctype_list.js:103 msgid "Create & Continue" msgstr "" @@ -5668,7 +5700,7 @@ msgid "Create Card" msgstr "Créer une carte" #: frappe/public/js/frappe/views/reports/query_report.js:285 -#: frappe/public/js/frappe/views/reports/query_report.js:1192 +#: frappe/public/js/frappe/views/reports/query_report.js:1200 msgid "Create Chart" msgstr "Créer un graphique" @@ -5702,12 +5734,12 @@ msgstr "Créer un journal" msgid "Create New" msgstr "Créer Nouveau(elle)" -#: frappe/public/js/frappe/list/list_view.js:512 +#: frappe/public/js/frappe/list/list_view.js:514 msgctxt "Create a new document from list view" msgid "Create New" msgstr "Créer Nouveau(elle)" -#: frappe/core/doctype/doctype/doctype_list.js:100 +#: frappe/core/doctype/doctype/doctype_list.js:101 msgid "Create New DocType" msgstr "" @@ -5715,7 +5747,7 @@ msgstr "" msgid "Create New Kanban Board" msgstr "" -#: frappe/core/doctype/user/user.js:276 +#: frappe/core/doctype/user/user.js:264 msgid "Create User Email" msgstr "Créer un Email Utilisateur" @@ -5738,8 +5770,8 @@ msgstr "Créer un nouvel enregistrement" #: frappe/public/js/frappe/form/controls/link.js:315 #: frappe/public/js/frappe/form/controls/link.js:317 #: frappe/public/js/frappe/form/link_selector.js:139 -#: frappe/public/js/frappe/list/list_view.js:504 -#: frappe/public/js/frappe/web_form/web_form_list.js:225 +#: frappe/public/js/frappe/list/list_view.js:506 +#: frappe/public/js/frappe/web_form/web_form_list.js:226 msgid "Create a new {0}" msgstr "Créer un(e) nouveau(elle) {0}" @@ -5755,7 +5787,7 @@ msgstr "" msgid "Create or Edit Workflow" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:507 +#: frappe/public/js/frappe/list/list_view.js:509 msgid "Create your first {0}" msgstr "Créez votre premier {0}" @@ -6102,7 +6134,7 @@ 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/core/doctype/doctype/doctype_list.js:83 #: frappe/website/doctype/website_theme/website_theme.json msgid "Custom?" msgstr "Personnaliser ?" @@ -6137,7 +6169,7 @@ msgstr "Personnalisations pour {0} exportées vers:
{1}" msgid "Customize" msgstr "Personnaliser" -#: frappe/public/js/frappe/list/list_view.js:1947 +#: frappe/public/js/frappe/list/list_view.js:1949 msgctxt "Button in list view menu" msgid "Customize" msgstr "Personnaliser" @@ -6156,7 +6188,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:343 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 msgid "Customize Form" msgstr "Personnaliser le formulaire" @@ -6387,7 +6419,7 @@ msgstr "" msgid "Data Import Template" msgstr "Modèle d'importation de données" -#: frappe/custom/doctype/customize_form/customize_form.py:615 +#: frappe/custom/doctype/customize_form/customize_form.py:619 msgid "Data Too Long" msgstr "Données trop longues" @@ -6418,7 +6450,7 @@ msgstr "" msgid "Database Storage Usage By Tables" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:249 +#: frappe/custom/doctype/customize_form/customize_form.py:251 msgid "Database Table Row Size Limit" msgstr "" @@ -6720,7 +6752,7 @@ 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 "Devise d'affichage par défaut" #: frappe/core/doctype/doctype/doctype.py:1377 msgid "Default for 'Check' type of field {0} must be either '0' or '1'" @@ -6788,13 +6820,13 @@ msgstr "Différé" #: frappe/public/js/frappe/form/toolbar.js:464 #: frappe/public/js/frappe/views/reports/report_view.js:1749 #: frappe/public/js/frappe/views/treeview.js:329 -#: frappe/public/js/frappe/web_form/web_form_list.js:282 +#: frappe/public/js/frappe/web_form/web_form_list.js:283 #: frappe/templates/discussions/reply_card.html:35 #: frappe/templates/discussions/reply_section.html:29 msgid "Delete" msgstr "Supprimer" -#: frappe/public/js/frappe/list/list_view.js:2172 +#: frappe/public/js/frappe/list/list_view.js:2174 msgctxt "Button in list view actions menu" msgid "Delete" msgstr "Supprimer" @@ -6827,7 +6859,7 @@ msgstr "" msgid "Delete Data" msgstr "Suprimmer les données" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:106 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:116 msgid "Delete Kanban Board" msgstr "" @@ -6841,7 +6873,7 @@ msgctxt "Title of confirmation dialog" msgid "Delete Tab" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:936 +#: frappe/public/js/frappe/views/reports/query_report.js:944 msgid "Delete and Generate New" msgstr "" @@ -6883,12 +6915,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:2177 +#: frappe/public/js/frappe/list/list_view.js:2179 msgctxt "Title of confirmation dialog" msgid "Delete {0} item permanently?" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2183 +#: frappe/public/js/frappe/list/list_view.js:2185 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "Supprimer {0} éléments de façon permanente?" @@ -7385,10 +7417,14 @@ msgstr "" msgid "Do not create new user if user with email does not exist in the system" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1194 +#: frappe/public/js/frappe/form/grid.js:1195 msgid "Do not edit headers which are preset in the template" msgstr "Ne pas modifier les en-têtes prédéfinis dans le modèle" +#: frappe/public/js/frappe/router.js:624 +msgid "Do not warn me again about {0}" +msgstr "" + #: frappe/core/doctype/system_settings/system_settings.js:71 msgid "Do you still want to proceed?" msgstr "" @@ -7812,7 +7848,7 @@ msgstr "Titre du document" #: 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/public/js/frappe/roles_editor.js:68 #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json #: frappe/workflow/doctype/workflow/workflow.json msgid "Document Type" @@ -7863,15 +7899,15 @@ msgstr "" msgid "Document follow is not enabled for this user." msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1300 +#: frappe/public/js/frappe/list/list_view.js:1302 msgid "Document has been cancelled" msgstr "Document annule" -#: frappe/public/js/frappe/list/list_view.js:1299 +#: frappe/public/js/frappe/list/list_view.js:1301 msgid "Document has been submitted" msgstr "Document valide" -#: frappe/public/js/frappe/list/list_view.js:1298 +#: frappe/public/js/frappe/list/list_view.js:1300 msgid "Document is in draft state" msgstr "Document au statut brouillon" @@ -8013,7 +8049,7 @@ msgstr "" msgid "Double click to edit label" msgstr "" -#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:467 +#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:474 #: frappe/email/doctype/auto_email_report/auto_email_report.js:8 #: frappe/public/js/frappe/form/grid.js:66 msgid "Download" @@ -8046,7 +8082,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:832 +#: frappe/public/js/frappe/views/reports/query_report.js:840 msgid "Download Report" msgstr "Télécharger le rapport" @@ -8246,8 +8282,8 @@ msgstr "" #: 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:880 -#: frappe/public/js/frappe/views/reports/query_report.js:1783 +#: frappe/public/js/frappe/views/reports/query_report.js:888 +#: frappe/public/js/frappe/views/reports/query_report.js:1791 #: 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 @@ -8259,7 +8295,7 @@ msgstr "" msgid "Edit" msgstr "modifier" -#: frappe/public/js/frappe/list/list_view.js:2258 +#: frappe/public/js/frappe/list/list_view.js:2260 msgctxt "Button in list view actions menu" msgid "Edit" msgstr "modifier" @@ -8269,7 +8305,7 @@ msgctxt "Button in web form" msgid "Edit" msgstr "modifier" -#: frappe/public/js/frappe/form/grid_row.js:349 +#: frappe/public/js/frappe/form/grid_row.js:350 msgctxt "Edit grid row" msgid "Edit" msgstr "modifier" @@ -8298,7 +8334,7 @@ msgstr "Modifier HTML Personnalisé" msgid "Edit DocType" msgstr "Modifier le DocType" -#: frappe/public/js/frappe/list/list_view.js:1974 +#: frappe/public/js/frappe/list/list_view.js:1976 msgctxt "Button in list view menu" msgid "Edit DocType" msgstr "Modifier le DocType" @@ -8418,7 +8454,7 @@ msgstr "Modifier {0}" #. 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/core/doctype/doctype/doctype_list.js:58 #: frappe/custom/doctype/customize_form/customize_form.json msgid "Editable Grid" msgstr "Grille Éditable" @@ -8463,6 +8499,8 @@ msgstr "" #. 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' +#. Label of a field in the request-data Web Form +#. Label of a field in the request-to-delete-data Web Form #: frappe/automation/workspace/tools/tools.json #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/custom_docperm/custom_docperm.json @@ -8481,6 +8519,8 @@ msgstr "" #: 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/website/web_form/request_data/request_data.json +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json #: frappe/www/login.html:8 frappe/www/login.py:104 msgid "Email" msgstr "Courriel" @@ -8712,7 +8752,7 @@ msgstr "L'Email a été marqué comme étant un spam" msgid "Email has been moved to trash" msgstr "L'Email a été déplacé dans la corbeille" -#: frappe/core/doctype/user/user.js:278 +#: frappe/core/doctype/user/user.js:266 msgid "Email is mandatory to create User Email" msgstr "" @@ -8755,7 +8795,7 @@ msgstr "Les e-mails seront envoyés lors des actions de workflow" msgid "Embed code copied" msgstr "" -#: frappe/database/query.py:1537 +#: frappe/database/query.py:1539 msgid "Empty alias is not allowed" msgstr "" @@ -8763,7 +8803,7 @@ msgstr "" msgid "Empty column" msgstr "" -#: frappe/database/query.py:1455 +#: frappe/database/query.py:1457 msgid "Empty string arguments are not allowed" msgstr "" @@ -9219,9 +9259,9 @@ msgstr "" msgid "Error in Header/Footer Script" msgstr "" -#: frappe/email/doctype/notification/notification.py:640 -#: frappe/email/doctype/notification/notification.py:780 -#: frappe/email/doctype/notification/notification.py:786 +#: frappe/email/doctype/notification/notification.py:642 +#: frappe/email/doctype/notification/notification.py:782 +#: frappe/email/doctype/notification/notification.py:788 msgid "Error in Notification" msgstr "Erreur dans la notification" @@ -9241,7 +9281,7 @@ msgstr "" msgid "Error while connecting to email account {0}" msgstr "Erreur lors de la connexion au compte Email {0}" -#: frappe/email/doctype/notification/notification.py:777 +#: frappe/email/doctype/notification/notification.py:779 msgid "Error while evaluating Notification {0}. Please fix your template." msgstr "Erreur lors de l'évaluation de la notification {0}. Veuillez corriger votre modèle." @@ -9402,7 +9442,7 @@ msgstr "" msgid "Executing..." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2132 +#: frappe/public/js/frappe/views/reports/query_report.js:2140 msgid "Execution Time: {0} sec" msgstr "Temps d'exécution: {0} s" @@ -9428,12 +9468,12 @@ msgctxt "Enlarge code field." msgid "Expand" msgstr "Développer" -#: frappe/public/js/frappe/views/reports/query_report.js:2113 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 #: frappe/public/js/frappe/views/treeview.js:133 msgid "Expand All" msgstr "Développer Tout" -#: frappe/database/query.py:352 +#: frappe/database/query.py:354 msgid "Expected 'and' or 'or' operator, found: {0}" msgstr "" @@ -9491,13 +9531,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:1820 +#: frappe/public/js/frappe/views/reports/query_report.js:1828 #: frappe/public/js/frappe/views/reports/report_view.js:1629 #: frappe/public/js/frappe/widgets/chart_widget.js:315 msgid "Export" msgstr "Exporter" -#: frappe/public/js/frappe/list/list_view.js:2280 +#: frappe/public/js/frappe/list/list_view.js:2282 msgctxt "Button in list view actions menu" msgid "Export" msgstr "Exporter" @@ -9690,7 +9730,7 @@ msgstr "" msgid "Failed to connect to server" msgstr "échec de connexion au serveur" -#: frappe/auth.py:698 +#: frappe/auth.py:701 msgid "Failed to decode token, please provide a valid base64-encoded token." msgstr "Échec du décodage du jeton, veuillez fournir un jeton encodé en base64 valide." @@ -9854,7 +9894,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:236 -#: frappe/public/js/frappe/views/reports/query_report.js:1879 +#: frappe/public/js/frappe/views/reports/query_report.js:1887 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_form_list_column/web_form_list_column.json msgid "Field" @@ -9937,7 +9977,7 @@ msgstr "" msgid "Field {0} not found." msgstr "Champ {0} introuvable." -#: frappe/email/doctype/notification/notification.py:545 +#: frappe/email/doctype/notification/notification.py:547 msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link" msgstr "" @@ -9955,7 +9995,7 @@ msgstr "" #: 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:454 +#: frappe/public/js/frappe/form/grid_row.js:455 #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Fieldname" msgstr "Nom du Champ" @@ -10036,7 +10076,7 @@ msgstr "" msgid "Fields must be a list or tuple when as_list is enabled" msgstr "" -#: frappe/database/query.py:611 +#: frappe/database/query.py:613 msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function" msgstr "" @@ -10064,7 +10104,7 @@ msgstr "Type de Champ" msgid "Fieldtype cannot be changed from {0} to {1}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:589 +#: frappe/custom/doctype/customize_form/customize_form.py:593 msgid "Fieldtype cannot be changed from {0} to {1} in row {2}" msgstr "FieldType ne peut pas être modifié de {0} à {1}, à la ligne {2}" @@ -10130,7 +10170,7 @@ msgstr "URL du fichier" msgid "File backup is ready" msgstr "La sauvegarde de fichier est prête" -#: frappe/core/doctype/file/file.py:646 +#: frappe/core/doctype/file/file.py:649 msgid "File name cannot have {0}" msgstr "Le nom de fichier ne peut pas avoir {0}" @@ -10138,7 +10178,7 @@ msgstr "Le nom de fichier ne peut pas avoir {0}" msgid "File not attached" msgstr "Fichier joint manquant" -#: frappe/core/doctype/file/file.py:756 frappe/public/js/frappe/request.js:200 +#: frappe/core/doctype/file/file.py:759 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 "La taille du fichier a dépassé la taille maximale autorisée de {0} Mo" @@ -10151,7 +10191,7 @@ msgstr "Fichier trop grand" msgid "File type of {0} is not allowed" msgstr "" -#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:448 +#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:451 msgid "File {0} does not exist" msgstr "Fichier {0} n'existe pas" @@ -10205,11 +10245,11 @@ msgstr "Nom du filtre" msgid "Filter Values" msgstr "Valeurs du filtre" -#: frappe/database/query.py:358 +#: frappe/database/query.py:360 msgid "Filter condition missing after operator: {0}" msgstr "" -#: frappe/database/query.py:425 +#: frappe/database/query.py:427 msgid "Filter fields cannot contain backticks (`)." msgstr "" @@ -10286,7 +10326,7 @@ msgstr "Section Filtres" msgid "Filters applied for {0}" msgstr "Filtres appliqués pour {0}" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:188 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:202 msgid "Filters saved" msgstr "Filtres sauvegardés" @@ -10334,9 +10374,12 @@ msgstr "" #. Label of the first_name (Data) field in DocType 'Contact' #. Label of the first_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json #: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:44 -#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:15 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:15 msgid "First Name" msgstr "Prénom" @@ -10417,7 +10460,7 @@ msgstr "Nom du dossier" msgid "Folder name should not include '/' (slash)" msgstr "Le nom du Dossier ne doit pas inclure de '/' (slash)" -#: frappe/core/doctype/file/file.py:494 +#: frappe/core/doctype/file/file.py:497 msgid "Folder {0} is not empty" msgstr "Dossier {0} n’est pas vide" @@ -10619,7 +10662,7 @@ msgstr "Pour l\\'Utilisateur" msgid "For Value" msgstr "Pour la Valeur" -#: frappe/public/js/frappe/views/reports/query_report.js:2129 +#: frappe/public/js/frappe/views/reports/query_report.js:2137 #: frappe/public/js/frappe/views/reports/report_view.js:108 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)." @@ -10904,7 +10947,7 @@ msgstr "A partir du" msgid "From Date Field" msgstr "Champ date" -#: frappe/public/js/frappe/views/reports/query_report.js:1840 +#: frappe/public/js/frappe/views/reports/query_report.js:1848 msgid "From Document Type" msgstr "De type de document" @@ -10966,13 +11009,13 @@ msgstr "Fonction basée sur" msgid "Function {0} is not whitelisted." msgstr "" -#: frappe/database/query.py:1417 +#: frappe/database/query.py:1419 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'" +msgid "Further sub-groups can only be created under records marked as 'Group'" +msgstr "" #: frappe/core/doctype/communication/communication.js:291 msgid "Fw: {0}" @@ -11031,7 +11074,7 @@ msgstr "Général" msgid "Generate Keys" msgstr "Générer des clés" -#: frappe/public/js/frappe/views/reports/query_report.js:874 +#: frappe/public/js/frappe/views/reports/query_report.js:882 msgid "Generate New Report" msgstr "Générer un nouveau rapport" @@ -11267,7 +11310,7 @@ msgstr "Google Agenda - Impossible d'extraire l'événement de Google Ag #: frappe/integrations/doctype/google_calendar/google_calendar.py:252 msgid "Google Calendar - Could not find Calendar for {0}, error code {1}." -msgstr "" +msgstr "Google Agenda - Impossible de trouver l'agenda de {0}, code d'erreur {1}." #: frappe/integrations/doctype/google_contacts/google_contacts.py:232 msgid "Google Calendar - Could not insert contact in Google Contacts {0}, error code {1}." @@ -11447,14 +11490,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 +#: frappe/database/query.py:752 msgid "Group By must be a string" msgstr "" -#: frappe/public/js/frappe/views/treeview.js:418 -msgid "Group Node" -msgstr "Niveau parent" - #. Label of the ldap_group_objectclass (Data) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Group Object Class" @@ -11784,7 +11823,7 @@ msgstr "Caché" msgid "Hidden Fields" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1642 +#: frappe/public/js/frappe/views/reports/query_report.js:1650 msgid "Hidden columns include: {0}" msgstr "" @@ -11896,7 +11935,7 @@ msgstr "" msgid "Hide Standard Menu" msgstr "Masquer le Menu Standard" -#: frappe/public/js/frappe/list/list_view.js:1849 +#: frappe/public/js/frappe/list/list_view.js:1851 msgid "Hide Tags" msgstr "" @@ -12155,7 +12194,7 @@ msgstr "Si coché, le statut du workflow ne remplacera pas le statut de la vue e #: frappe/core/doctype/doctype/doctype.py:1777 #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45 -#: frappe/public/js/frappe/roles_editor.js:66 +#: frappe/public/js/frappe/roles_editor.js:68 msgid "If Owner" msgstr "Si Responsable" @@ -12383,8 +12422,8 @@ msgstr "Applications ignorées" msgid "Illegal Document Status for {0}" msgstr "Statut de document non autorisé pour {0}" -#: frappe/model/db_query.py:453 frappe/model/db_query.py:456 -#: frappe/model/db_query.py:1121 +#: frappe/model/db_query.py:454 frappe/model/db_query.py:457 +#: frappe/model/db_query.py:1122 msgid "Illegal SQL Query" msgstr "Requête SQL illégale" @@ -12471,11 +12510,11 @@ msgstr "" #. Option for the 'Operation' (Select) field in DocType 'Activity Log' #: frappe/core/doctype/activity_log/activity_log.json -#: frappe/core/doctype/user/user.js:384 +#: frappe/core/doctype/user/user.js:372 msgid "Impersonate" msgstr "" -#: frappe/core/doctype/user/user.js:411 +#: frappe/core/doctype/user/user.js:399 msgid "Impersonate as {0}" msgstr "" @@ -12505,7 +12544,7 @@ msgstr "Implicite" msgid "Import" msgstr "Importer" -#: frappe/public/js/frappe/list/list_view.js:1911 +#: frappe/public/js/frappe/list/list_view.js:1913 msgctxt "Button in list view menu" msgid "Import" msgstr "Importer" @@ -12734,15 +12773,15 @@ msgid "Include Web View Link in Email" msgstr "Envoyer le lien de la vue Web du document par e-mail" #: frappe/public/js/frappe/form/print_utils.js:59 -#: frappe/public/js/frappe/views/reports/query_report.js:1620 +#: frappe/public/js/frappe/views/reports/query_report.js:1628 msgid "Include filters" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1640 +#: frappe/public/js/frappe/views/reports/query_report.js:1648 msgid "Include hidden columns" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1612 +#: frappe/public/js/frappe/views/reports/query_report.js:1620 msgid "Include indentation" msgstr "Inclure l'indentation" @@ -12789,7 +12828,7 @@ msgstr "Compte Email entrant incorrect" msgid "Incomplete Virtual Doctype Implementation" msgstr "" -#: frappe/auth.py:255 +#: frappe/auth.py:258 msgid "Incomplete login details" msgstr "Détails de connexion incomplets" @@ -12900,7 +12939,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:1885 +#: frappe/public/js/frappe/views/reports/query_report.js:1893 msgid "Insert After" msgstr "Insérer Après" @@ -12973,7 +13012,7 @@ msgstr "" msgid "Insufficient Permission Level for {0}" msgstr "" -#: frappe/database/query.py:806 frappe/database/query.py:1052 +#: frappe/database/query.py:808 frappe/database/query.py:1054 msgid "Insufficient Permission for {0}" msgstr "Autorisation Insuffisante Pour {0}" @@ -13089,7 +13128,7 @@ msgid "Invalid" msgstr "Invalide" #: frappe/public/js/form_builder/utils.js:221 -#: frappe/public/js/frappe/form/grid_row.js:849 +#: frappe/public/js/frappe/form/grid_row.js:850 #: frappe/public/js/frappe/form/layout.js:810 #: frappe/public/js/frappe/views/reports/report_view.js:721 msgid "Invalid \"depends_on\" expression" @@ -13147,8 +13186,8 @@ 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 +#: frappe/database/query.py:429 frappe/database/query.py:456 +#: frappe/database/query.py:466 frappe/database/query.py:489 msgid "Invalid Filter" msgstr "" @@ -13220,7 +13259,7 @@ msgstr "Mot de Passe Invalide" msgid "Invalid Phone Number" msgstr "" -#: frappe/auth.py:94 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 +#: frappe/auth.py:97 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 #: frappe/www/login.py:128 msgid "Invalid Request" msgstr "Requête Invalide" @@ -13260,7 +13299,7 @@ msgstr "" msgid "Invalid aggregate function" msgstr "" -#: frappe/database/query.py:1542 +#: frappe/database/query.py:1544 msgid "Invalid alias format: {0}. Alias must be a simple identifier." msgstr "" @@ -13268,19 +13307,19 @@ msgstr "" msgid "Invalid app" msgstr "" -#: frappe/database/query.py:1468 +#: frappe/database/query.py:1470 msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed." msgstr "" -#: frappe/database/query.py:1444 +#: frappe/database/query.py:1446 msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed." msgstr "" -#: frappe/database/query.py:460 +#: frappe/database/query.py:462 msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed." msgstr "" -#: frappe/database/query.py:575 +#: frappe/database/query.py:577 msgid "Invalid characters in table name: {0}" msgstr "" @@ -13288,11 +13327,11 @@ msgstr "" msgid "Invalid column" msgstr "Colonne incorrecte" -#: frappe/database/query.py:381 +#: frappe/database/query.py:383 msgid "Invalid condition type in nested filters: {0}" msgstr "" -#: frappe/database/query.py:787 +#: frappe/database/query.py:789 msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'." msgstr "" @@ -13308,23 +13347,23 @@ 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/database/query.py:1301 +#: frappe/database/query.py:1303 msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'." msgstr "" -#: frappe/database/query.py:734 +#: frappe/database/query.py:736 msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'." msgstr "" -#: frappe/database/query.py:1620 +#: frappe/database/query.py:1622 msgid "Invalid field name in function: {0}. Only simple field names are allowed." msgstr "" -#: frappe/utils/data.py:2215 +#: frappe/utils/data.py:2241 msgid "Invalid field name {0}" msgstr "Nom de champ {0} invalide" -#: frappe/database/query.py:668 +#: frappe/database/query.py:670 msgid "Invalid field type: {0}" msgstr "" @@ -13336,11 +13375,11 @@ msgstr "Champ invalide '{0}' dans nom automatique" msgid "Invalid file path: {0}" msgstr "Chemin de fichier invalide : {0}" -#: frappe/database/query.py:364 +#: frappe/database/query.py:366 msgid "Invalid filter condition: {0}. Expected a list or tuple." msgstr "" -#: frappe/database/query.py:450 +#: frappe/database/query.py:452 msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'." msgstr "" @@ -13348,11 +13387,11 @@ msgstr "" msgid "Invalid filter: {0}" msgstr "Filtre non valide: {0}" -#: frappe/database/query.py:1422 +#: frappe/database/query.py:1424 msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed." msgstr "" -#: frappe/database/query.py:1383 +#: frappe/database/query.py:1385 msgid "Invalid function dictionary format" msgstr "" @@ -13389,23 +13428,27 @@ msgstr "Contenu non valide ou corrompu pour l'importation" msgid "Invalid redirect regex in row #{}: {}" msgstr "" -#: frappe/app.py:337 +#: frappe/app.py:340 msgid "Invalid request arguments" msgstr "" +#: frappe/app.py:327 +msgid "Invalid request body" +msgstr "" + #: frappe/core/doctype/user_invitation/user_invitation.py:181 msgid "Invalid role" msgstr "" -#: frappe/database/query.py:410 +#: frappe/database/query.py:412 msgid "Invalid simple filter format: {0}" msgstr "" -#: frappe/database/query.py:341 +#: frappe/database/query.py:343 msgid "Invalid start for filter condition: {0}. Expected a list or tuple." msgstr "" -#: frappe/database/query.py:1489 +#: frappe/database/query.py:1491 msgid "Invalid string literal format: {0}" msgstr "" @@ -13509,7 +13552,7 @@ msgstr "" #. 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/doctype_list.js:50 #: frappe/core/doctype/doctype_link/doctype_link.json msgid "Is Child Table" msgstr "Est Table Enfant" @@ -13562,6 +13605,10 @@ msgstr "Est un Dossier" msgid "Is Global" msgstr "Est Global" +#: frappe/public/js/frappe/views/treeview.js:418 +msgid "Is Group" +msgstr "Est un Groupe" + #. Label of the is_hidden (Check) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "Is Hidden" @@ -13650,7 +13697,7 @@ 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/core/doctype/doctype/doctype_list.js:65 #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Is Single" msgstr "Est Seul" @@ -13686,7 +13733,7 @@ msgstr "Est 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 +#: frappe/core/doctype/doctype/doctype_list.js:40 msgid "Is Submittable" msgstr "Est Validable" @@ -13892,11 +13939,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:388 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:402 msgid "Kanban Board Name" msgstr "Nom du Tableau Kanban" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:265 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:279 msgctxt "Button in kanban view menu" msgid "Kanban Settings" msgstr "" @@ -14194,10 +14241,13 @@ msgstr "Paysage" #. 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' +#. Label of a field in the edit-profile Web Form #: 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:117 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/printing/page/print/print.js:117 #: frappe/public/js/frappe/form/templates/print_layout.html:11 msgid "Language" msgstr "Langue" @@ -14285,9 +14335,12 @@ msgstr "Le mois dernier" #. Label of the last_name (Data) field in DocType 'Contact' #. Label of the last_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json #: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:45 -#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:19 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:19 msgid "Last Name" msgstr "Nom de Famille" @@ -14528,7 +14581,7 @@ msgstr "En-Tête en HTML" #: 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/public/js/frappe/roles_editor.js:68 #: frappe/website/doctype/help_article/help_article.json msgid "Level" msgstr "Niveau" @@ -14821,7 +14874,7 @@ msgstr "Filtre de liste" msgid "List Settings" msgstr "Paramètres de liste" -#: frappe/public/js/frappe/list/list_view.js:1991 +#: frappe/public/js/frappe/list/list_view.js:1993 msgctxt "Button in list view menu" msgid "List Settings" msgstr "Paramètres de liste" @@ -14872,7 +14925,7 @@ msgid "Load Balancing" msgstr "L'équilibrage de charge" #: frappe/public/js/frappe/list/base_list.js:399 -#: frappe/public/js/frappe/web_form/web_form_list.js:305 +#: frappe/public/js/frappe/web_form/web_form_list.js:306 #: frappe/website/doctype/help_article/templates/help_article_list.html:30 msgid "Load More" msgstr "Charger plus" @@ -14892,7 +14945,7 @@ msgstr "" #: frappe/public/js/frappe/list/base_list.js:526 #: frappe/public/js/frappe/list/list_view.js:363 #: frappe/public/js/frappe/ui/listing.html:16 -#: frappe/public/js/frappe/views/reports/query_report.js:1089 +#: frappe/public/js/frappe/views/reports/query_report.js:1097 msgid "Loading" msgstr "Chargement" @@ -15035,7 +15088,7 @@ msgstr "Code de Vérification de Connexion depuis {}" msgid "Login and view in Browser" msgstr "Connectez-vous et affichez la page dans le navigateur" -#: frappe/website/doctype/web_form/web_form.js:367 +#: frappe/website/doctype/web_form/web_form.js:368 msgid "Login is required to see web form list view. Enable {0} to see list settings" msgstr "" @@ -15043,7 +15096,7 @@ msgstr "" msgid "Login link sent to your email" msgstr "" -#: frappe/auth.py:339 frappe/auth.py:342 +#: frappe/auth.py:342 frappe/auth.py:345 msgid "Login not allowed at this time" msgstr "Connexion non autorisée pour le moment" @@ -15096,7 +15149,7 @@ msgstr "" msgid "Login with email link expiry (in minutes)" msgstr "" -#: frappe/auth.py:144 +#: frappe/auth.py:147 msgid "Login with username and password is not allowed." msgstr "" @@ -15115,7 +15168,7 @@ msgstr "" msgid "Logout" msgstr "Déconnecté" -#: frappe/core/doctype/user/user.js:202 +#: frappe/core/doctype/user/user.js:190 msgid "Logout All Sessions" msgstr "Déconnecter toutes les sessions" @@ -15219,7 +15272,10 @@ msgid "Major" msgstr "" #. Label of the show_name_in_global_search (Check) field in DocType 'DocType' +#. Label of the show_name_in_global_search (Check) field in DocType 'Customize +#. Form' #: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Make \"name\" searchable in Global Search" msgstr "Rendre \"nom\" cherchable dans la Recherche Globale" @@ -15295,7 +15351,7 @@ msgstr "Obligatoire dépend de" msgid "Mandatory Depends On (JS)" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:509 +#: frappe/website/doctype/web_form/web_form.py:536 msgid "Mandatory Information missing:" msgstr "Renseignements Obligatoires manquants :" @@ -15752,6 +15808,11 @@ msgstr "" msgid "Middle Name" msgstr "Deuxième Nom" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Middle Name (Optional)" +msgstr "" + #. Name of a DocType #. Label of a Link in the Tools Workspace #: frappe/automation/doctype/milestone/milestone.json @@ -15858,6 +15919,11 @@ msgstr "" msgid "Mobile No" msgstr "N° Mobile" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Mobile Number" +msgstr "" + #. 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" @@ -15883,7 +15949,7 @@ msgstr "" #. 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/doctype/doctype_list.js:31 #: 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 @@ -16059,10 +16125,12 @@ msgstr "Plus d'infos" #. Label of the additional_info (Section Break) field in DocType #. 'Communication' #. Label of the short_bio (Tab Break) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: 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 +#: frappe/core/web_form/edit_profile/edit_profile.json msgid "More Information" msgstr "Informations Complémentaires" @@ -16092,7 +16160,7 @@ msgstr "" msgid "Move" msgstr "mouvement" -#: frappe/public/js/frappe/form/grid_row.js:193 +#: frappe/public/js/frappe/form/grid_row.js:194 msgid "Move To" msgstr "Déménager à" @@ -16128,7 +16196,7 @@ msgstr "" msgid "Move the current field and the following fields to a new column" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:168 +#: frappe/public/js/frappe/form/grid_row.js:169 msgid "Move to Row Number" msgstr "Déplacer vers le numéro de ligne" @@ -16196,7 +16264,7 @@ msgid "Mx" msgstr "" #: frappe/templates/includes/web_sidebar.html:41 -#: frappe/website/doctype/web_form/web_form.py:498 +#: frappe/website/doctype/web_form/web_form.py:525 #: 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" @@ -16338,12 +16406,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:1378 +#: frappe/public/js/frappe/list/list_view.js:1380 msgctxt "Description of a list view shortcut" msgid "Navigate list down" msgstr "Naviguer dans la liste" -#: frappe/public/js/frappe/list/list_view.js:1385 +#: frappe/public/js/frappe/list/list_view.js:1387 msgctxt "Description of a list view shortcut" msgid "Navigate list up" msgstr "Naviguer dans la liste en haut" @@ -16358,6 +16426,10 @@ msgstr "" msgid "Navigation Settings" msgstr "" +#: frappe/public/js/frappe/list/list_view.js:485 +msgid "Need Help?" +msgstr "" + #: frappe/desk/doctype/workspace/workspace.py:322 msgid "Need Workspace Manager role to edit private workspace of other users" msgstr "" @@ -16366,7 +16438,7 @@ msgstr "" msgid "Negative Value" msgstr "Valeur négative" -#: frappe/database/query.py:333 +#: frappe/database/query.py:335 msgid "Nested filters must be provided as a list or tuple." msgstr "" @@ -16379,6 +16451,12 @@ msgstr "Erreur d'ensemble imbriqué. Veuillez contacter l'Administrateur." msgid "Network Printer Settings" msgstr "" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Never" +msgstr "" + #. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/core/doctype/success_action/success_action.js:57 @@ -16387,7 +16465,7 @@ msgstr "" #: 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/treeview.js:473 #: frappe/public/js/frappe/views/workspace/workspace.js:64 #: frappe/website/doctype/web_form/templates/web_list.html:15 #: frappe/www/list.html:19 @@ -16448,7 +16526,7 @@ msgstr "Nouvel évènement" msgid "New Folder" msgstr "Nouveau Dossier" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 msgid "New Kanban Board" msgstr "Nouveau Tableau Kanban" @@ -16483,7 +16561,7 @@ msgstr "" msgid "New Onboarding" msgstr "" -#: frappe/core/doctype/user/user.js:190 frappe/www/update-password.html:43 +#: frappe/core/doctype/user/user.js:178 frappe/www/update-password.html:43 msgid "New Password" msgstr "Nouveau Mot de Passe" @@ -16579,7 +16657,7 @@ msgstr "Nouvelle valeur à définir" #: frappe/public/js/frappe/ui/toolbar/search_utils.js:227 #: 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:411 +#: frappe/website/doctype/web_form/web_form.py:438 msgid "New {0}" msgstr "Nouveau(elle) {0}" @@ -16731,7 +16809,7 @@ msgstr "" #: frappe/public/js/form_builder/utils.js:341 #: frappe/public/js/frappe/form/controls/link.js:498 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1665 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 #: frappe/website/doctype/help_article/templates/help_article.html:26 msgid "No" msgstr "Non" @@ -16880,7 +16958,7 @@ msgstr "Aucun résultat trouvs" msgid "No Roles Specified" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 msgid "No Select Field Found" msgstr "" @@ -16964,7 +17042,7 @@ msgstr "" msgid "No failed logs" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:371 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:385 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 "" @@ -16988,7 +17066,7 @@ msgstr "Pas d'autre enregistrements" msgid "No matching records. Search something new" msgstr "Aucun enregistrement correspondant. Recherchez autre chose." -#: frappe/public/js/frappe/web_form/web_form_list.js:161 +#: frappe/public/js/frappe/web_form/web_form_list.js:162 msgid "No more items to display" msgstr "Pas plus d'articles à afficher" @@ -17032,7 +17110,7 @@ msgctxt "{0} = verb, {1} = object" msgid "No permission to '{0}' {1}" msgstr "Pas d'autorisation pour '{0}' {1}" -#: frappe/model/db_query.py:948 +#: frappe/model/db_query.py:949 msgid "No permission to read {0}" msgstr "Pas d'autorisation pour lire {0}" @@ -17080,11 +17158,11 @@ msgstr "" msgid "No {0} Found" msgstr "" -#: frappe/public/js/frappe/web_form/web_form_list.js:233 +#: frappe/public/js/frappe/web_form/web_form_list.js:234 msgid "No {0} found" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:497 +#: frappe/public/js/frappe/list/list_view.js:499 msgid "No {0} found with matching filters. Clear filters to see all {0}." msgstr "" @@ -17093,7 +17171,7 @@ msgid "No {0} mail" msgstr "Pas de courrier {0}" #: frappe/public/js/form_builder/utils.js:117 -#: frappe/public/js/frappe/form/grid_row.js:256 +#: frappe/public/js/frappe/form/grid_row.js:257 msgctxt "Title of the 'row number' column" msgid "No." msgstr "N°." @@ -17157,7 +17235,7 @@ msgstr "Pas des descendants de" msgid "Not Equals" msgstr "Non égaux" -#: frappe/app.py:387 frappe/www/404.html:3 +#: frappe/app.py:390 frappe/www/404.html:3 msgid "Not Found" msgstr "Non Trouvé" @@ -17183,9 +17261,9 @@ msgstr "Lié à aucun enregistrement" msgid "Not Nullable" msgstr "" -#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26 +#: frappe/__init__.py:550 frappe/app.py:383 frappe/desk/calendar.py:26 #: frappe/public/js/frappe/web_form/webform_script.js:15 -#: frappe/website/doctype/web_form/web_form.py:747 +#: frappe/website/doctype/web_form/web_form.py:774 #: 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 @@ -17204,7 +17282,7 @@ msgstr "Non Publié" #: 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/kanban/kanban_view.js:183 #: frappe/public/js/frappe/views/reports/report_view.js:209 #: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39 #: frappe/website/doctype/web_form/templates/web_form.html:85 @@ -17255,7 +17333,7 @@ msgstr "Non actif" msgid "Not allowed for {0}: {1}" msgstr "Non autorisé pour {0}: {1}" -#: frappe/email/doctype/notification/notification.py:637 +#: frappe/email/doctype/notification/notification.py:639 msgid "Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings" msgstr "Vous n'êtes pas autorisé à joindre un document {0}, veuillez activer Autoriser l'impression pour {0} dans les paramètres d'impression" @@ -17287,12 +17365,12 @@ msgstr "Pas en Mode Développeur" msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType." msgstr "Pas en Mode Développeur! Configurez le dans site_config.json ou créez un DocType 'Custom'." -#: frappe/core/doctype/system_settings/system_settings.py:216 +#: frappe/core/doctype/system_settings/system_settings.py:217 #: 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:760 +#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:787 #: frappe/website/js/website.js:97 msgid "Not permitted" msgstr "Pas permis" @@ -17338,7 +17416,7 @@ msgstr "Remarque: pour obtenir les meilleurs résultats, les images doivent avoi msgid "Note: Multiple sessions will be allowed in case of mobile device" msgstr "Remarque : Plusieurs sessions seront autorisées en cas d'appareil mobile" -#: frappe/core/doctype/user/user.js:399 +#: frappe/core/doctype/user/user.js:387 msgid "Note: This will be shared with user." msgstr "" @@ -17410,15 +17488,15 @@ msgstr "Document souscrit à la notification" msgid "Notification sent to" msgstr "" -#: frappe/email/doctype/notification/notification.py:542 +#: frappe/email/doctype/notification/notification.py:544 msgid "Notification: customer {0} has no Mobile number set" msgstr "" -#: frappe/email/doctype/notification/notification.py:528 +#: frappe/email/doctype/notification/notification.py:530 msgid "Notification: document {0} has no {1} number set (field: {2})" msgstr "" -#: frappe/email/doctype/notification/notification.py:537 +#: frappe/email/doctype/notification/notification.py:539 msgid "Notification: user {0} has no Mobile number set" msgstr "" @@ -17532,7 +17610,7 @@ msgstr "" msgid "Number of attachment fields are more than {}, limit updated to {}." msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:171 +#: frappe/core/doctype/system_settings/system_settings.py:172 msgid "Number of backups must be greater than zero." msgstr "" @@ -17804,7 +17882,7 @@ msgstr "" #. Description of the 'Is Submittable' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:42 +#: frappe/core/doctype/doctype/doctype_list.js:43 msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended." msgstr "Une fois validé, les documents à valider ne peuvent plus être modifiés. Ils ne peuvent être annulés et modifiés (Nouv. version)." @@ -17893,11 +17971,11 @@ msgstr "" msgid "Only reports of type Report Builder can be edited" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:129 +#: frappe/custom/doctype/customize_form/customize_form.py:131 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:241 +#: frappe/model/delete_doc.py:281 msgid "Only the Administrator can delete a standard DocType." msgstr "" @@ -17993,7 +18071,7 @@ msgstr "" msgid "Open in a new tab" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1431 +#: frappe/public/js/frappe/list/list_view.js:1433 msgctxt "Description of a list view shortcut" msgid "Open list item" msgstr "Ouvrir un élément de la liste" @@ -18042,7 +18120,7 @@ msgstr "Ouvert" msgid "Operation" msgstr "Opération" -#: frappe/utils/data.py:2146 +#: frappe/utils/data.py:2172 msgid "Operator must be one of {0}" msgstr "L'Opérateur doit être parmi {0}" @@ -18088,6 +18166,7 @@ msgstr "Optionel : L'alerte sera envoyée si cette expression est vraie" #. 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 (Text) field in DocType 'Web Form List Column' #. 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 @@ -18096,6 +18175,7 @@ msgstr "Optionel : L'alerte sera envoyée si cette expression est vraie" #: 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_form_list_column/web_form_list_column.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Options" msgstr "" @@ -18141,7 +18221,7 @@ msgstr "" msgid "Order" msgstr "Commande" -#: frappe/database/query.py:767 +#: frappe/database/query.py:769 msgid "Order By must be a string" msgstr "" @@ -18239,7 +18319,7 @@ msgstr "" #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/printing/page/print/print.js:84 #: frappe/public/js/frappe/form/templates/print_layout.html:44 -#: frappe/public/js/frappe/views/reports/query_report.js:1804 +#: frappe/public/js/frappe/views/reports/query_report.js:1812 msgid "PDF" msgstr "" @@ -18587,8 +18667,8 @@ msgstr "Passif" #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/system_settings/system_settings.json -#: frappe/core/doctype/user/user.js:177 frappe/core/doctype/user/user.js:224 -#: frappe/core/doctype/user/user.js:244 +#: frappe/core/doctype/user/user.js:165 frappe/core/doctype/user/user.js:212 +#: frappe/core/doctype/user/user.js:232 #: 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 @@ -18611,7 +18691,7 @@ msgstr "Réinitialisation du Mot de Passe" msgid "Password Reset Link Generation Limit" msgstr "Limite de génération de lien de réinitialisation de mot de passe" -#: frappe/public/js/frappe/form/grid_row.js:896 +#: frappe/public/js/frappe/form/grid_row.js:897 msgid "Password cannot be filtered" msgstr "" @@ -18648,7 +18728,7 @@ msgstr "" msgid "Password set" msgstr "" -#: frappe/auth.py:258 +#: frappe/auth.py:261 msgid "Password size exceeded the maximum allowed size" msgstr "" @@ -18660,7 +18740,7 @@ msgstr "" msgid "Passwords do not match" msgstr "" -#: frappe/core/doctype/user/user.js:210 +#: frappe/core/doctype/user/user.js:198 msgid "Passwords do not match!" msgstr "Les mots de passe ne correspondent pas!" @@ -18811,7 +18891,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/database/query.py:533 +#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:535 msgid "Permission Error" msgstr "Erreur d'autorisation" @@ -18871,8 +18951,8 @@ msgstr "" #: 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:143 frappe/core/doctype/user/user.js:152 -#: frappe/core/doctype/user/user.js:161 +#: frappe/core/doctype/user/user.js:131 frappe/core/doctype/user/user.js:140 +#: frappe/core/doctype/user/user.js:149 #: 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 @@ -18942,6 +19022,7 @@ msgstr "Demande de téléchargement de données personnelles" #. Option for the 'Type' (Select) field in DocType 'Communication' #. Option for the 'Type' (Select) field in DocType 'DocField' #. Label of the phone (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #. 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' @@ -18952,6 +19033,7 @@ msgstr "Demande de téléchargement de données personnelles" #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.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 @@ -19126,7 +19208,7 @@ msgstr "Veuillez ne pas modifier les sections du modèle." msgid "Please duplicate this to make changes" msgstr "Veuillez créer un duplicata pour faire des changements" -#: frappe/core/doctype/system_settings/system_settings.py:164 +#: frappe/core/doctype/system_settings/system_settings.py:165 msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login." msgstr "" @@ -19258,11 +19340,11 @@ msgstr "Veuillez d’abord sélectionner un DocType" msgid "Please select Entity Type first" msgstr "Veuillez d'abord sélectionner le type d'entité" -#: frappe/core/doctype/system_settings/system_settings.py:115 +#: frappe/core/doctype/system_settings/system_settings.py:116 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:1185 +#: frappe/public/js/frappe/views/reports/query_report.js:1193 msgid "Please select X and Y fields" msgstr "" @@ -19290,7 +19372,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:1157 +#: frappe/model/db_query.py:1163 msgid "Please select atleast 1 column from {0} to sort/group" msgstr "Veuillez sélectionner au moins 1 colonne de {0} pour trier / grouper" @@ -19320,7 +19402,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:1408 +#: frappe/public/js/frappe/views/reports/query_report.js:1416 msgid "Please set filters" msgstr "Veuillez définir des filtres" @@ -19340,7 +19422,7 @@ msgstr "Veuillez d'abord définir les documents suivants dans ce tableau de msgid "Please set the series to be used." msgstr "Veuillez définir la série à utiliser." -#: frappe/core/doctype/system_settings/system_settings.py:128 +#: frappe/core/doctype/system_settings/system_settings.py:129 msgid "Please setup SMS before setting it as an authentication method, via SMS Settings" msgstr "Veuillez configurer les SMS avant de les choisir comme méthode d'authentification" @@ -19492,7 +19574,7 @@ msgstr "code postal" msgid "Posting Timestamp" msgstr "" -#: frappe/database/query.py:1518 +#: frappe/database/query.py:1520 msgid "Potentially dangerous content in string literal: {0}" msgstr "" @@ -19694,13 +19776,13 @@ msgstr "" #: 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:1789 +#: frappe/public/js/frappe/views/reports/query_report.js:1797 #: frappe/public/js/frappe/views/reports/report_view.js:1539 -#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18 +#: frappe/public/js/frappe/views/treeview.js:492 frappe/www/printview.html:18 msgid "Print" msgstr "Impression" -#: frappe/public/js/frappe/list/list_view.js:2164 +#: frappe/public/js/frappe/list/list_view.js:2166 msgctxt "Button in list view actions menu" msgid "Print" msgstr "Impression" @@ -19770,7 +19852,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:1578 +#: frappe/public/js/frappe/views/reports/query_report.js:1586 msgid "Print Format not found" msgstr "" @@ -19951,11 +20033,11 @@ msgstr "ProTip: Ajouter Reference: {{ reference_doctype }} {{ reference_na msgid "Proceed" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:932 +#: frappe/public/js/frappe/views/reports/query_report.js:940 msgid "Proceed Anyway" msgstr "Continuer malgré tout" -#: frappe/public/js/frappe/form/controls/table.js:123 +#: frappe/public/js/frappe/form/controls/table.js:104 msgid "Processing" msgstr "En traitement" @@ -19972,11 +20054,21 @@ msgstr "" msgid "Profile" msgstr "" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile Picture" +msgstr "" + +#. Success message of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile updated successfully." +msgstr "Profil mis à jour avec succès." + #: frappe/public/js/frappe/socketio_client.js:82 msgid "Progress" msgstr "Progression" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:408 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:422 msgid "Project" msgstr "Projet" @@ -20020,7 +20112,7 @@ msgstr "Type de Propriété" msgid "Protect Attached Files" msgstr "" -#: frappe/core/doctype/file/file.py:523 +#: frappe/core/doctype/file/file.py:526 msgid "Protected File" msgstr "" @@ -20526,11 +20618,11 @@ msgstr "" msgid "Reason" msgstr "Raison" -#: frappe/public/js/frappe/views/reports/query_report.js:886 +#: frappe/public/js/frappe/views/reports/query_report.js:894 msgid "Rebuild" msgstr "Reconstruire" -#: frappe/public/js/frappe/views/treeview.js:509 +#: frappe/public/js/frappe/views/treeview.js:511 msgid "Rebuild Tree" msgstr "" @@ -20911,8 +21003,8 @@ 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:1778 -#: frappe/public/js/frappe/views/treeview.js:496 +#: frappe/public/js/frappe/views/reports/query_report.js:1786 +#: frappe/public/js/frappe/views/treeview.js:498 #: frappe/public/js/frappe/widgets/chart_widget.js:291 #: frappe/public/js/frappe/widgets/number_card_widget.js:352 #: frappe/public/js/print_format_builder/Preview.vue:24 @@ -20943,13 +21035,13 @@ msgstr "" msgid "Refresh Token" msgstr "Jeton de Rafraîchissement" -#: frappe/public/js/frappe/list/list_view.js:534 +#: frappe/public/js/frappe/list/list_view.js:536 msgctxt "Document count in list view" msgid "Refreshing" msgstr "" #: frappe/core/doctype/system_settings/system_settings.js:57 -#: frappe/core/doctype/user/user.js:374 +#: frappe/core/doctype/user/user.js:362 #: frappe/desk/page/setup_wizard/setup_wizard.js:211 msgid "Refreshing..." msgstr "Actualisation..." @@ -21334,7 +21426,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:1965 +#: frappe/public/js/frappe/views/reports/query_report.js:1973 msgid "Report Name" msgstr "Nom du Rapport" @@ -21386,7 +21478,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:1013 +#: frappe/public/js/frappe/views/reports/query_report.js:1021 msgid "Report initiated, click to view status" msgstr "" @@ -21406,7 +21498,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:2003 +#: frappe/public/js/frappe/views/reports/query_report.js:2011 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." @@ -21442,7 +21534,7 @@ msgstr "Rapports" msgid "Reports & Masters" msgstr "Ecrans principaux et Rapports" -#: frappe/public/js/frappe/views/reports/query_report.js:929 +#: frappe/public/js/frappe/views/reports/query_report.js:937 msgid "Reports already in Queue" msgstr "Rapports déjà en file d'attente" @@ -21461,7 +21553,10 @@ msgid "Request Body" msgstr "" #. Label of the data (Code) field in DocType 'Integration Request' +#. Title of the request-data Web Form +#. Button label of the request-data Web Form #: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/website/web_form/request_data/request_data.json msgid "Request Data" msgstr "Données de la requête" @@ -21513,6 +21608,11 @@ msgstr "" msgid "Request URL" msgstr "URL de Demande" +#. Title of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "Request for Account Deletion" +msgstr "" + #. Label of the requested_numbers (Code) field in DocType 'SMS Log' #: frappe/core/doctype/sms_log/sms_log.json msgid "Requested Numbers" @@ -21568,7 +21668,7 @@ msgstr "" msgid "Reset Fields" msgstr "Réinitialisation des champs" -#: frappe/core/doctype/user/user.js:184 frappe/core/doctype/user/user.js:187 +#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:175 msgid "Reset LDAP Password" msgstr "Réinitialiser le mot de passe LDAP" @@ -21576,11 +21676,11 @@ msgstr "Réinitialiser le mot de passe LDAP" msgid "Reset Layout" msgstr "" -#: frappe/core/doctype/user/user.js:235 +#: frappe/core/doctype/user/user.js:223 msgid "Reset OTP Secret" msgstr "Réinitialiser le Secret OTP" -#: frappe/core/doctype/user/user.js:168 frappe/www/login.html:199 +#: frappe/core/doctype/user/user.js:156 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" @@ -21615,7 +21715,7 @@ msgstr "" msgid "Reset sorting" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:433 +#: frappe/public/js/frappe/form/grid_row.js:434 msgid "Reset to default" msgstr "" @@ -21867,7 +21967,7 @@ msgstr "Autorisation du Rôle pour la Page et le Rapport" #. 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 +#: frappe/public/js/frappe/roles_editor.js:114 msgid "Role Permissions" msgstr "Autorisations du Rôle" @@ -21877,7 +21977,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:1933 +#: frappe/public/js/frappe/list/list_view.js:1935 msgctxt "Button in list view menu" msgid "Role Permissions Manager" msgstr "Gestionnaire d’Autorisations du Rôle" @@ -22070,11 +22170,11 @@ msgstr "" msgid "Row {0}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:353 +#: frappe/custom/doctype/customize_form/customize_form.py:357 msgid "Row {0}: Not allowed to disable Mandatory for standard fields" msgstr "Ligne {0}: impossible de désactiver Obligatoire pour les champs standard" -#: frappe/custom/doctype/customize_form/customize_form.py:342 +#: frappe/custom/doctype/customize_form/customize_form.py:346 msgid "Row {0}: Not allowed to enable Allow on Submit for standard fields" msgstr "Ligne {0} : Il n’est pas autorisé d’activer Autoriser à la Validation pour les champs standards" @@ -22093,7 +22193,10 @@ msgid "Rows Removed" msgstr "Lignes Supprimées" #. Label of the rows_threshold_for_grid_search (Int) field in DocType 'DocType' +#. Label of the rows_threshold_for_grid_search (Int) field in DocType +#. 'Customize Form' #: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Rows Threshold for Grid Search" msgstr "" @@ -22301,8 +22404,8 @@ msgstr "Samedi" #: 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:1957 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 +#: frappe/public/js/frappe/views/reports/query_report.js:1965 #: frappe/public/js/frappe/views/reports/report_view.js:1735 #: frappe/public/js/frappe/views/workspace/workspace.js:335 #: frappe/public/js/frappe/widgets/base_widget.js:142 @@ -22325,11 +22428,11 @@ msgstr "Enregistrer Sous" msgid "Save Customizations" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1960 +#: frappe/public/js/frappe/views/reports/query_report.js:1968 msgid "Save Report" msgstr "Enregistrer le rapport" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:97 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:107 msgid "Save filters" msgstr "Enregistrer les filtres" @@ -22701,7 +22804,7 @@ msgstr "Paramètres de Sécurité" msgid "See all Activity" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:855 +#: frappe/public/js/frappe/views/reports/query_report.js:863 msgid "See all past reports." msgstr "Voir tous les rapports passés." @@ -22765,7 +22868,7 @@ msgstr "Sélectionner" #: 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:497 +#: frappe/public/js/frappe/form/grid_row.js:498 msgid "Select All" msgstr "" @@ -22845,7 +22948,7 @@ msgstr "Sélectionner un champ" msgid "Select Field..." msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:489 +#: frappe/public/js/frappe/form/grid_row.js:490 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:181 msgid "Select Fields" msgstr "Sélectionnez les champs" @@ -22965,8 +23068,8 @@ msgid "Select a field to edit its properties." msgstr "" #: frappe/public/js/frappe/views/treeview.js:358 -msgid "Select a group node first." -msgstr "Sélectionner d'abord un niveau parent" +msgid "Select a group {0} first." +msgstr "" #: frappe/core/doctype/doctype/doctype.py:1956 msgid "Select a valid Sender Field for creating documents from Email" @@ -23002,13 +23105,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:1445 +#: frappe/public/js/frappe/list/list_view.js:1447 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:1397 -#: frappe/public/js/frappe/list/list_view.js:1413 +#: frappe/public/js/frappe/list/list_view.js:1399 +#: frappe/public/js/frappe/list/list_view.js:1415 msgctxt "Description of a list view shortcut" msgid "Select multiple list items" msgstr "Sélectionner plusieurs éléments de liste" @@ -23330,7 +23433,7 @@ msgstr "Séries {0} déjà utilisé dans {1}" msgid "Server Action" msgstr "Action du serveur" -#: frappe/app.py:396 frappe/public/js/frappe/request.js:611 +#: frappe/app.py:399 frappe/public/js/frappe/request.js:611 #: frappe/www/error.html:36 frappe/www/error.py:15 msgid "Server Error" msgstr "Erreur du Serveur" @@ -23396,7 +23499,7 @@ msgstr "Session par défaut" msgid "Session Defaults Saved" msgstr "Session par défaut enregistrée" -#: frappe/app.py:373 +#: frappe/app.py:376 msgid "Session Expired" msgstr "La Session a Expiré" @@ -23405,7 +23508,7 @@ msgstr "La Session a Expiré" msgid "Session Expiry (idle timeout)" msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:122 +#: frappe/core/doctype/system_settings/system_settings.py:123 msgid "Session Expiry must be in format {0}" msgstr "Expiration de Session doit être au format {0}" @@ -23454,7 +23557,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:2113 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 msgid "Set Level" msgstr "" @@ -23508,7 +23611,7 @@ msgstr "Définir Quantité" msgid "Set Role For" msgstr "Définir le Rôle Pour" -#: frappe/core/doctype/user/user.js:136 +#: frappe/core/doctype/user/user.js:124 #: frappe/core/page/permission_manager/permission_manager.js:72 msgid "Set User Permissions" msgstr "Définir les Autorisations des Utilisateurs" @@ -23670,7 +23773,7 @@ msgstr "" msgid "Setup > User Permissions" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1826 +#: frappe/public/js/frappe/views/reports/query_report.js:1834 #: frappe/public/js/frappe/views/reports/report_view.js:1713 msgid "Setup Auto Email" msgstr "Configuration Auto Email" @@ -23811,6 +23914,12 @@ msgstr "" msgid "Show Error" msgstr "" +#. Label of the show_external_link_warning (Select) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Show External Link Warning" +msgstr "" + #: frappe/public/js/frappe/form/layout.js:578 msgid "Show Fieldname (click to copy on clipboard)" msgstr "" @@ -23939,7 +24048,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:1849 +#: frappe/public/js/frappe/list/list_view.js:1851 msgid "Show Tags" msgstr "Voir les étiquettes" @@ -24146,36 +24255,36 @@ msgstr "Inscription désactivée" msgid "Signups have been disabled for this website." msgstr "Les inscriptions ont été désactivées pour ce site Web." -#. 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 "Expression Python simple, Exemple: Statut dans ("Fermé", "Annulé")" - #. 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 "Expression Python simple, Exemple: Statut dans ("non valide")" +msgid "Simple Python Expression, Example: status == \"Invalid\"" +msgstr "" #. 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 "Expression Python simple, Exemple: status == 'Open' et tapez == 'Bug'" +msgid "Simple Python Expression, Example: status == 'Open' and issue_type == 'Bug'" +msgstr "" + +#. 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 "" #. Label of the simultaneous_sessions (Int) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Simultaneous Sessions" msgstr "Sessions Simultanées" -#: frappe/custom/doctype/customize_form/customize_form.py:126 +#: frappe/custom/doctype/customize_form/customize_form.py:128 msgid "Single DocTypes cannot be customized." msgstr "Un seul DocTypes ne peut pas être personnalisé." #. Description of the 'Is Single' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:67 +#: frappe/core/doctype/doctype/doctype_list.js:68 msgid "Single Types have only one record no tables associated. Values are stored in tabSingles" msgstr "Types Simples ont un seul enregistrement aucunes tables associées. Les valeurs sont stockées dans tabSingles" @@ -24511,7 +24620,7 @@ msgid "Splash Image" msgstr "" #: frappe/desk/reportview.py:455 -#: frappe/public/js/frappe/web_form/web_form_list.js:175 +#: frappe/public/js/frappe/web_form/web_form_list.js:176 #: frappe/templates/print_formats/standard_macros.html:44 msgid "Sr" msgstr "" @@ -24543,7 +24652,7 @@ msgstr "" msgid "Standard" msgstr "" -#: frappe/model/delete_doc.py:79 +#: frappe/model/delete_doc.py:119 msgid "Standard DocType can not be deleted." msgstr "" @@ -24813,7 +24922,7 @@ msgstr "Étapes pour vérifier votre connexion" #. Label of the sticky (Check) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json -#: frappe/public/js/frappe/form/grid_row.js:454 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Sticky" msgstr "" @@ -24843,7 +24952,7 @@ msgstr "" msgid "Store Attached PDF Document" msgstr "" -#: frappe/core/doctype/user/user.js:490 +#: frappe/core/doctype/user/user.js:497 msgid "Store the API secret securely. It won't be displayed again." msgstr "" @@ -24955,6 +25064,7 @@ msgstr "" #. 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' +#. Button label of the request-to-delete-data Web Form #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/docshare/docshare.json @@ -24963,10 +25073,11 @@ msgstr "" #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/quick_entry.js:225 #: frappe/public/js/frappe/ui/capture.js:307 +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json msgid "Submit" msgstr "Valider" -#: frappe/public/js/frappe/list/list_view.js:2231 +#: frappe/public/js/frappe/list/list_view.js:2233 msgctxt "Button in list view actions menu" msgid "Submit" msgstr "Valider" @@ -24976,7 +25087,7 @@ msgctxt "Button in web form" msgid "Submit" msgstr "Valider" -#: frappe/public/js/frappe/ui/dialog.js:63 +#: frappe/public/js/frappe/ui/dialog.js:64 msgctxt "Primary action in dialog" msgid "Submit" msgstr "Valider" @@ -25024,7 +25135,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:2236 +#: frappe/public/js/frappe/list/list_view.js:2238 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "Valider {0} documents ?" @@ -25074,7 +25185,7 @@ msgstr "" #: 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:1171 +#: frappe/public/js/frappe/form/grid.js:1172 #: frappe/public/js/frappe/views/translation_manager.js:21 #: frappe/templates/includes/login/login.js:230 #: frappe/templates/includes/login/login.js:236 @@ -25223,7 +25334,7 @@ msgstr "Passer Au Bureau" #: frappe/public/js/frappe/list/list_sidebar.js:319 msgid "Switch to Frappe CRM for smarter sales" -msgstr "" +msgstr "Passez à Frappe CRM pour des ventes plus intelligentes" #: frappe/public/js/frappe/ui/capture.js:281 msgid "Switching Camera" @@ -25289,7 +25400,7 @@ msgstr "Synchronisation" msgid "Syncing {0} of {1}" msgstr "Synchroniser {0} sur {1}" -#: frappe/utils/data.py:2547 +#: frappe/utils/data.py:2573 msgid "Syntax Error" msgstr "" @@ -25600,7 +25711,7 @@ msgstr "Tableau MultiSelect" msgid "Table Trimmed" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1170 +#: frappe/public/js/frappe/form/grid.js:1171 msgid "Table updated" msgstr "Table Mise à Jour" @@ -25815,7 +25926,7 @@ msgstr "" msgid "The Auto Repeat for this document has been disabled." msgstr "La répétition automatique de ce document a été désactivée." -#: frappe/public/js/frappe/form/grid.js:1193 +#: frappe/public/js/frappe/form/grid.js:1194 msgid "The CSV format is case sensitive" msgstr "Le format CSV est sensible à la casse" @@ -25883,7 +25994,7 @@ msgstr "Le commentaire ne peut pas être vide" 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:685 +#: frappe/public/js/frappe/list/list_view.js:687 msgid "The count shown is an estimated count. Click here to see the accurate count." msgstr "" @@ -25995,7 +26106,7 @@ msgstr "" msgid "The reset password link has either been used before or is invalid" msgstr "" -#: frappe/app.py:388 frappe/public/js/frappe/request.js:149 +#: frappe/app.py:391 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" @@ -26068,12 +26179,12 @@ 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:965 +#: frappe/public/js/frappe/views/reports/query_report.js:973 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 +#: frappe/website/doctype/web_form/web_form.js:318 msgid "There can be only 9 Page Break fields in a Web Form" msgstr "" @@ -26097,11 +26208,11 @@ msgstr "" msgid "There is nothing new to show you right now." msgstr "" -#: frappe/core/doctype/file/file.py:640 frappe/utils/file_manager.py:372 +#: frappe/core/doctype/file/file.py:643 frappe/utils/file_manager.py:372 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:962 +#: frappe/public/js/frappe/views/reports/query_report.js:970 msgid "There is {0} with the same filters already in the queue:" msgstr "" @@ -26113,7 +26224,7 @@ msgstr "Il doit y avoir au moins une règle d'autorisation." msgid "There was an error building this page" msgstr "Une erreur s'est produite lors de la construction de cette page" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:182 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:196 msgid "There was an error saving filters" msgstr "Une erreur s'est produite lors de l'enregistrement des filtres" @@ -26170,7 +26281,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:391 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:405 msgid "This Kanban Board will be private" msgstr "Ce Tableau Kanban sera privé" @@ -26207,7 +26318,7 @@ msgstr "Cette action n'est autorisée que pour {}" msgid "This cannot be undone" msgstr "Ça ne peut pas être annulé" -#: frappe/desk/doctype/number_card/number_card.js:480 +#: frappe/desk/doctype/number_card/number_card.js:484 msgctxt "Number Card" msgid "This card is visible only to Administrator and System Managers by default. Set a DocType to share with users who have read access." msgstr "" @@ -26230,7 +26341,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:113 +#: frappe/model/delete_doc.py:153 msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time." msgstr "" @@ -26272,7 +26383,7 @@ msgid "This field will appear only if the fieldname defined here has value OR th "eval:doc.age>18" msgstr "" -#: frappe/core/doctype/file/file.py:522 +#: frappe/core/doctype/file/file.py:525 msgid "This file is attached to a protected document and cannot be deleted." msgstr "" @@ -26307,7 +26418,7 @@ msgstr "" msgid "This goes above the slideshow." msgstr "Ceci va au-dessus du diaporama." -#: frappe/public/js/frappe/views/reports/query_report.js:2189 +#: frappe/public/js/frappe/views/reports/query_report.js:2197 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." @@ -26357,7 +26468,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:1037 +#: frappe/public/js/frappe/views/reports/query_report.js:1045 msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead." msgstr "" @@ -26365,7 +26476,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:853 +#: frappe/public/js/frappe/views/reports/query_report.js:861 msgid "This report was generated {0}." msgstr "Ce rapport a été généré {0}." @@ -26507,9 +26618,11 @@ msgstr "" #. Label of the time_zone (Select) field in DocType 'System Settings' #. Label of the time_zone (Autocomplete) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #. 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/core/web_form/edit_profile/edit_profile.json #: frappe/desk/page/setup_wizard/setup_wizard.js:407 #: frappe/website/doctype/web_page_view/web_page_view.json msgid "Time Zone" @@ -26772,7 +26885,7 @@ msgstr "" msgid "To generate password click {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:854 +#: frappe/public/js/frappe/views/reports/query_report.js:862 msgid "To get the updated report, click on {0}." msgstr "Pour obtenir le rapport mis à jour, cliquez sur {0}." @@ -26847,7 +26960,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:1964 +#: frappe/public/js/frappe/list/list_view.js:1966 msgctxt "Button in list view menu" msgid "Toggle Sidebar" msgstr "Afficher/Cacher la barre latérale" @@ -26973,7 +27086,7 @@ msgstr "Sujet" #: frappe/desk/query_report.py:587 #: frappe/public/js/frappe/views/reports/print_grid.html:45 -#: frappe/public/js/frappe/views/reports/query_report.js:1324 +#: frappe/public/js/frappe/views/reports/query_report.js:1332 #: frappe/public/js/frappe/views/reports/report_view.js:1553 msgid "Total" msgstr "" @@ -27130,7 +27243,7 @@ msgstr "" msgid "Translatable" msgstr "Traduisible" -#: frappe/public/js/frappe/views/reports/query_report.js:2244 +#: frappe/public/js/frappe/views/reports/query_report.js:2252 msgid "Translate Data" msgstr "" @@ -27488,7 +27601,7 @@ msgstr "Impossible d'envoyer du courrier en raison d'un compte de messagerie man msgid "Unable to update event" msgstr "Impossible de mettre à jour l'événement" -#: frappe/core/doctype/file/file.py:486 +#: frappe/core/doctype/file/file.py:489 msgid "Unable to write file format for {0}" msgstr "Impossible d'écrire le format de fichier pour {0}" @@ -27497,7 +27610,7 @@ msgstr "Impossible d'écrire le format de fichier pour {0}" msgid "Unassign Condition" msgstr "" -#: frappe/app.py:396 +#: frappe/app.py:399 msgid "Uncaught Exception" msgstr "" @@ -27513,7 +27626,7 @@ msgstr "Annuler l'action" msgid "Undo last action" msgstr "Annuler l'action précédente" -#: frappe/database/query.py:1495 +#: frappe/database/query.py:1497 msgid "Unescaped quotes in string literal: {0}" msgstr "" @@ -27560,7 +27673,7 @@ msgstr "Colonne Inconnue : {0}" msgid "Unknown Rounding Method: {}" msgstr "" -#: frappe/auth.py:316 +#: frappe/auth.py:319 msgid "Unknown User" msgstr "Utilisateur Inconnu" @@ -27626,8 +27739,8 @@ msgstr "" msgid "Unsubscribed" msgstr "Désinscrit" -#: frappe/database/query.py:653 frappe/database/query.py:1387 -#: frappe/database/query.py:1397 +#: frappe/database/query.py:655 frappe/database/query.py:1389 +#: frappe/database/query.py:1399 msgid "Unsupported function or invalid field name: {0}" msgstr "" @@ -27661,7 +27774,7 @@ msgstr "Événements À Venir Aujourd'hui" #: 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:427 +#: frappe/public/js/frappe/form/grid_row.js:428 msgid "Update" msgstr "Mettre à Jour" @@ -27695,6 +27808,11 @@ msgstr "" msgid "Update Password" msgstr "" +#. Title of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Update Profile" +msgstr "" + #. Label of the update_series (Section Break) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -27796,7 +27914,7 @@ msgstr "" #: frappe/public/js/frappe/list/list_sidebar.js:331 msgid "Upgrade your support experience with Frappe Helpdesk" -msgstr "" +msgstr "Améliorez votre expérience d'assistance avec Frappe Helpdesk" #: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:143 #: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:144 @@ -27910,11 +28028,7 @@ msgstr "Utiliser une authentification email différente" msgid "Use if the default settings don't seem to detect your data correctly" msgstr "" -#: frappe/model/db_query.py:436 -msgid "Use of function {0} in field is restricted" -msgstr "" - -#: frappe/model/db_query.py:413 +#: frappe/model/db_query.py:411 msgid "Use of sub-query or function is restricted" msgstr "L'utilisation de la sous-requête ou de la fonction est restreinte" @@ -28136,12 +28250,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:1944 +#: frappe/public/js/frappe/views/reports/query_report.js:1952 #: frappe/public/js/frappe/views/reports/report_view.js:1761 msgid "User Permissions" msgstr "Autorisations des Utilisateurs" -#: frappe/public/js/frappe/list/list_view.js:1922 +#: frappe/public/js/frappe/list/list_view.js:1924 msgctxt "Button in list view menu" msgid "User Permissions" msgstr "Autorisations des Utilisateurs" @@ -28285,7 +28399,7 @@ msgstr "" msgid "User {0} is disabled" msgstr "Utilisateur {0} est désactivé" -#: frappe/sessions.py:242 +#: frappe/sessions.py:243 msgid "User {0} is disabled. Please contact your System Manager." msgstr "" @@ -28462,7 +28576,7 @@ msgstr "La valeur ne peut pas être négative pour {0}: {1}" msgid "Value for a check field can be either 0 or 1" msgstr "La valeur pour un champ de contrôle peut être 0 ou 1" -#: frappe/custom/doctype/customize_form/customize_form.py:612 +#: frappe/custom/doctype/customize_form/customize_form.py:616 msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters" msgstr "La valeur du champ {0} est trop longue dans {1}. La longueur doit être inférieure à {2} caractères" @@ -28583,7 +28697,7 @@ msgstr "Tout voir" msgid "View Audit Trail" msgstr "" -#: frappe/core/doctype/user/user.js:156 +#: frappe/core/doctype/user/user.js:144 msgid "View Doctype Permissions" msgstr "" @@ -28595,7 +28709,7 @@ msgstr "" msgid "View Full Log" msgstr "" -#: frappe/public/js/frappe/views/treeview.js:484 +#: frappe/public/js/frappe/views/treeview.js:486 #: frappe/public/js/frappe/widgets/quick_list_widget.js:258 msgid "View List" msgstr "Voir La Liste" @@ -28605,7 +28719,7 @@ msgstr "Voir La Liste" msgid "View Log" msgstr "Voir le journal" -#: frappe/core/doctype/user/user.js:147 +#: frappe/core/doctype/user/user.js:135 #: frappe/core/doctype/user_permission/user_permission.js:24 msgid "View Permitted Documents" msgstr "Afficher les Documents Autorisés" @@ -28721,6 +28835,7 @@ msgid "Warehouse" msgstr "Entrepôt" #. Option for the 'Style' (Select) field in DocType 'Workflow State' +#: frappe/public/js/frappe/router.js:613 #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Warning" msgstr "Avertissement" @@ -29366,7 +29481,7 @@ msgstr "" msgid "Workspace" msgstr "" -#: frappe/public/js/frappe/router.js:175 +#: frappe/public/js/frappe/router.js:180 msgid "Workspace {0} does not exist" msgstr "" @@ -29488,7 +29603,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:1225 +#: frappe/public/js/frappe/views/reports/query_report.js:1233 msgid "Y Field" msgstr "Champ Y" @@ -29550,7 +29665,7 @@ msgstr "" #: frappe/public/js/form_builder/utils.js:336 #: frappe/public/js/frappe/form/controls/link.js:498 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1665 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 #: frappe/website/doctype/help_article/templates/help_article.html:25 msgid "Yes" msgstr "Oui" @@ -29586,6 +29701,10 @@ msgstr "" msgid "You added {0} rows to {1}" msgstr "" +#: frappe/public/js/frappe/router.js:642 +msgid "You are about to open an external link. To confirm, click the link again." +msgstr "" + #: frappe/public/js/frappe/dom.js:438 msgid "You are connected to internet." msgstr "Vous êtes connecté à Internet." @@ -29629,7 +29748,7 @@ msgstr "" msgid "You are not allowed to export {} doctype" msgstr "Vous n'êtes pas autorisé à exporter {} doctype" -#: frappe/public/js/frappe/views/treeview.js:448 +#: frappe/public/js/frappe/views/treeview.js:450 msgid "You are not allowed to print this report" msgstr "Vous n'êtes pas autorisé à imprimer ce rapport" @@ -29637,7 +29756,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:605 +#: frappe/website/doctype/web_form/web_form.py:632 msgid "You are not allowed to update this Web Form Document" msgstr "Vous n'êtes pas autorisé à mettre à jour ce formulaire Web" @@ -29710,11 +29829,11 @@ msgstr "" msgid "You can continue with the onboarding after exploring this page" msgstr "" -#: frappe/model/delete_doc.py:137 +#: frappe/model/delete_doc.py:177 msgid "You can disable this {0} instead of deleting it." msgstr "" -#: frappe/core/doctype/file/file.py:758 +#: frappe/core/doctype/file/file.py:761 msgid "You can increase the limit from System Settings." msgstr "" @@ -29764,11 +29883,11 @@ msgstr "" msgid "You can use wildcard %" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:390 +#: frappe/custom/doctype/customize_form/customize_form.py:394 msgid "You can't set 'Options' for field {0}" msgstr "Vous ne pouvez pas configurer 'Options' pour le champ {0}" -#: frappe/custom/doctype/customize_form/customize_form.py:394 +#: frappe/custom/doctype/customize_form/customize_form.py:398 msgid "You can't set 'Translatable' for field {0}" msgstr "Vous ne pouvez pas définir \"Traduisible\" pour le champ {0}" @@ -29786,7 +29905,7 @@ msgstr "" msgid "You cannot create a dashboard chart from single DocTypes" msgstr "Vous ne pouvez pas créer un graphique de tableau de bord à partir de DocTypes uniques" -#: frappe/custom/doctype/customize_form/customize_form.py:386 +#: frappe/custom/doctype/customize_form/customize_form.py:390 msgid "You cannot unset 'Read Only' for field {0}" msgstr "Vous ne pouvez pas désactiver 'Lecture Seule' pour le champ {0}\"" @@ -29829,11 +29948,11 @@ 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:381 +#: frappe/app.py:384 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/database/query.py:529 +#: frappe/database/query.py:531 msgid "You do not have permission to access field: {0}" msgstr "" @@ -29849,7 +29968,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:808 +#: frappe/website/doctype/web_form/web_form.py:835 msgid "You don't have permission to access the {0} DocType." msgstr "" @@ -29873,7 +29992,7 @@ msgstr "" msgid "You have been successfully logged out" msgstr "Vous avez été déconnecté avec succès" -#: frappe/custom/doctype/customize_form/customize_form.py:245 +#: frappe/custom/doctype/customize_form/customize_form.py:247 msgid "You have hit the row size limit on database table: {0}" msgstr "" @@ -29901,7 +30020,7 @@ msgstr "Vous avez invisible {0}" msgid "You haven't added any Dashboard Charts or Number Cards yet." msgstr "" -#: frappe/public/js/frappe/list/list_view.js:501 +#: frappe/public/js/frappe/list/list_view.js:503 msgid "You haven't created a {0} yet" msgstr "" @@ -29918,11 +30037,11 @@ 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:804 +#: frappe/website/doctype/web_form/web_form.py:831 msgid "You must be logged in to use this form." msgstr "" -#: frappe/website/doctype/web_form/web_form.py:645 +#: frappe/website/doctype/web_form/web_form.py:672 msgid "You must login to submit this form" msgstr "Vous devez vous connecter pour valider ce formulaire" @@ -30037,6 +30156,10 @@ msgstr "Vous avez non suivi ce document" msgid "You viewed this" msgstr "" +#: frappe/public/js/frappe/router.js:653 +msgid "You will be redirected to:" +msgstr "" + #: frappe/core/doctype/user_invitation/user_invitation.py:113 msgid "You've been invited to join {0}" msgstr "" @@ -30082,7 +30205,7 @@ msgstr "Vos raccourcis" msgid "Your account has been deleted" msgstr "" -#: frappe/auth.py:514 +#: frappe/auth.py:517 msgid "Your account has been locked and will resume after {0} seconds" msgstr "Votre compte a été verrouillé et reprendra après {0} secondes" @@ -30148,7 +30271,7 @@ msgstr "Votre requête a été reçue. Nous vous répondrons au plus vite. Si vo msgid "Your report is being generated in the background. You will receive an email on {0} with a download link once it is ready." msgstr "" -#: frappe/app.py:374 +#: frappe/app.py:377 msgid "Your session has expired, please login again to continue." msgstr "Votre session a expiré, connectez-vous à nouveau pour continuer." @@ -30485,7 +30608,7 @@ msgstr "liste" msgid "logged in" msgstr "connecté" -#: frappe/website/doctype/web_form/web_form.js:362 +#: frappe/website/doctype/web_form/web_form.js:363 msgid "login_required" msgstr "" @@ -30823,7 +30946,7 @@ msgstr "via importation de données" msgid "via Google Meet" msgstr "" -#: frappe/email/doctype/notification/notification.py:403 +#: frappe/email/doctype/notification/notification.py:405 msgid "via Notification" msgstr "via notification" @@ -30933,7 +31056,7 @@ msgstr "Graphique {0}" msgid "{0} Dashboard" msgstr "{0} Tableau de bord" -#: frappe/public/js/frappe/form/grid_row.js:486 +#: frappe/public/js/frappe/form/grid_row.js:487 #: frappe/public/js/frappe/list/list_settings.js:225 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:178 msgid "{0} Fields" @@ -30984,7 +31107,7 @@ msgstr "" msgid "{0} Report" msgstr "Rapport {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:956 +#: frappe/public/js/frappe/views/reports/query_report.js:964 msgid "{0} Reports" msgstr "" @@ -31057,7 +31180,7 @@ msgctxt "Form timeline" msgid "{0} attached {1}" msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:152 +#: frappe/core/doctype/system_settings/system_settings.py:153 msgid "{0} can not be more than {1}" msgstr "" @@ -31134,7 +31257,7 @@ 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 +#: frappe/database/query.py:710 msgid "{0} fields cannot contain backticks (`): {1}" msgstr "" @@ -31179,7 +31302,7 @@ msgstr "{0} à la ligne {1} ne peut pas avoir à la fois une URL et des sous-art msgid "{0} is a mandatory field" msgstr "{0} est un champ obligatoire" -#: frappe/core/doctype/file/file.py:566 +#: frappe/core/doctype/file/file.py:569 msgid "{0} is a not a valid zip file" msgstr "" @@ -31228,7 +31351,7 @@ msgstr "" msgid "{0} is mandatory" msgstr "{0} est obligatoire" -#: frappe/database/query.py:485 +#: frappe/database/query.py:487 msgid "{0} is not a child table of {1}" msgstr "" @@ -31248,7 +31371,7 @@ msgstr "" msgid "{0} is not a valid Cron expression." msgstr "{0} n'est pas une expression Cron valide." -#: frappe/public/js/frappe/form/controls/dynamic_link.js:27 +#: frappe/public/js/frappe/form/controls/dynamic_link.js:23 msgid "{0} is not a valid DocType for Dynamic Link" msgstr "{0} n'est pas un DocType valide pour Dynamic Link" @@ -31285,7 +31408,7 @@ msgstr "" 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" -#: frappe/core/doctype/file/file.py:546 +#: frappe/core/doctype/file/file.py:549 msgid "{0} is not a zip file" msgstr "" @@ -31333,7 +31456,7 @@ msgstr "" msgid "{0} is within {1}" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1839 +#: frappe/public/js/frappe/list/list_view.js:1841 msgid "{0} items selected" msgstr "{0} articles sélectionnés" @@ -31419,11 +31542,11 @@ msgid "{0} not found" msgstr "{0} introuvable" #: frappe/core/doctype/report/report.py:427 -#: frappe/public/js/frappe/list/list_view.js:1211 +#: frappe/public/js/frappe/list/list_view.js:1213 msgid "{0} of {1}" msgstr "{0} sur {1}" -#: frappe/public/js/frappe/list/list_view.js:1213 +#: frappe/public/js/frappe/list/list_view.js:1215 msgid "{0} of {1} ({2} rows with children)" msgstr "{0} sur {1} ({2} lignes avec des enfants)" @@ -31473,7 +31596,7 @@ msgstr "" msgid "{0} removed {1} rows from {2}" msgstr "" -#: frappe/public/js/frappe/roles_editor.js:62 +#: frappe/public/js/frappe/roles_editor.js:64 msgid "{0} role does not have permission on any doctype" msgstr "" @@ -31547,7 +31670,7 @@ msgstr "{0} à {1}" msgid "{0} un-shared this document with {1}" msgstr "{0} ne partage plus ce document avec {1}" -#: frappe/custom/doctype/customize_form/customize_form.py:254 +#: frappe/custom/doctype/customize_form/customize_form.py:256 msgid "{0} updated" msgstr "{0} mis(e) à jour" @@ -31607,7 +31730,7 @@ msgstr "{0} {1} est lié aux documents validés suivants: {2}" msgid "{0} {1} not found" msgstr "{0} {1} introuvable" -#: frappe/model/delete_doc.py:248 +#: frappe/model/delete_doc.py:288 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}." @@ -31720,7 +31843,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:1283 +#: frappe/public/js/frappe/views/reports/query_report.js:1291 msgid "{0}: {1} vs {2}" msgstr "{0}: {1} contre {2}" @@ -31756,11 +31879,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:2541 +#: frappe/utils/data.py:2567 msgid "{} Invalid python code on line {}" msgstr "" -#: frappe/utils/data.py:2550 +#: frappe/utils/data.py:2576 msgid "{} Possibly invalid python code.
{}" msgstr "" @@ -31786,7 +31909,7 @@ msgstr "" msgid "{} is not a valid date string." msgstr "{} n'est pas une chaîne de date valide." -#: frappe/commands/utils.py:562 +#: frappe/commands/utils.py:561 msgid "{} not found in PATH! This is required to access the console." msgstr "" diff --git a/frappe/locale/hr.po b/frappe/locale/hr.po index 31e3b9722c..fc3e482745 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-09-21 09:33+0000\n" -"PO-Revision-Date: 2025-09-21 19:58\n" +"POT-Creation-Date: 2025-10-05 09:33+0000\n" +"PO-Revision-Date: 2025-10-06 22:59\n" "Last-Translator: developers@frappe.io\n" "Language-Team: Croatian\n" "MIME-Version: 1.0\n" @@ -78,7 +78,7 @@ msgstr "'U Globalnom Pretraživanju' nije dopušteno za tip {0} u retku {1}" msgid "'In List View' is not allowed for field {0} of type {1}" msgstr "'U Prikazu Liste' nije dopušteno za polje {0} tipa {1}" -#: frappe/custom/doctype/customize_form/customize_form.py:363 +#: frappe/custom/doctype/customize_form/customize_form.py:367 msgid "'In List View' not allowed for type {0} in row {1}" msgstr "'U Prikazu Liste' nije dopušteno za tip {0} u redu {1}" @@ -122,7 +122,7 @@ msgstr "0 - Nacrt; 1 - Podneseno; 2 - Otkazano" msgid "0 is highest" msgstr "0 je najviše" -#: frappe/public/js/frappe/form/grid_row.js:892 +#: frappe/public/js/frappe/form/grid_row.js:893 msgid "1 = True & 0 = False" msgstr "1 = Točno & 0 = Netočno" @@ -141,11 +141,11 @@ 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:955 +#: frappe/public/js/frappe/views/reports/query_report.js:963 msgid "1 Report" msgstr "1 Izvješće" -#: frappe/tests/test_utils.py:739 +#: frappe/tests/test_utils.py:845 msgid "1 day ago" msgstr "prije 1 dan" @@ -154,17 +154,17 @@ msgid "1 hour" msgstr "1 sat" #: frappe/public/js/frappe/utils/pretty_date.js:52 -#: frappe/tests/test_utils.py:737 +#: frappe/tests/test_utils.py:843 msgid "1 hour ago" msgstr "prije 1 sat" #: frappe/public/js/frappe/utils/pretty_date.js:48 -#: frappe/tests/test_utils.py:735 +#: frappe/tests/test_utils.py:841 msgid "1 minute ago" msgstr "prije 1 minutu" #: frappe/public/js/frappe/utils/pretty_date.js:66 -#: frappe/tests/test_utils.py:743 +#: frappe/tests/test_utils.py:849 msgid "1 month ago" msgstr "prije 1 mjesec" @@ -186,37 +186,37 @@ msgctxt "User added row to child table" msgid "1 row to {0}" msgstr "1 red do {0}" -#: frappe/tests/test_utils.py:734 +#: frappe/tests/test_utils.py:840 msgid "1 second ago" msgstr "prije 1 sekundu" #: frappe/public/js/frappe/utils/pretty_date.js:62 -#: frappe/tests/test_utils.py:741 +#: frappe/tests/test_utils.py:847 msgid "1 week ago" msgstr "prije 1 tjedan" #: frappe/public/js/frappe/utils/pretty_date.js:70 -#: frappe/tests/test_utils.py:745 +#: frappe/tests/test_utils.py:851 msgid "1 year ago" msgstr "prije 1 godinu" -#: frappe/tests/test_utils.py:738 +#: frappe/tests/test_utils.py:844 msgid "2 hours ago" msgstr "prije 2 sata" -#: frappe/tests/test_utils.py:744 +#: frappe/tests/test_utils.py:850 msgid "2 months ago" msgstr "prije 2 mjeseca" -#: frappe/tests/test_utils.py:742 +#: frappe/tests/test_utils.py:848 msgid "2 weeks ago" msgstr "prije 2 tjedna" -#: frappe/tests/test_utils.py:746 +#: frappe/tests/test_utils.py:852 msgid "2 years ago" msgstr "prije 2 godine" -#: frappe/tests/test_utils.py:736 +#: frappe/tests/test_utils.py:842 msgid "3 minutes ago" msgstr "prije 3 minute" @@ -232,7 +232,7 @@ msgstr "4 sata" msgid "5 Records" msgstr "5 Zapisa" -#: frappe/tests/test_utils.py:740 +#: frappe/tests/test_utils.py:846 msgid "5 days ago" msgstr "prije 5 dana" @@ -270,6 +270,16 @@ msgstr "{0} nije važeći URL" 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 "
Nemojažurirati jer može pokvarit vaš obrazac. Koristi Prilagodi Prikaz Obrasca i Prilagođena Polja za postavljanje svojstava!
" +#. Introduction text of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "

Request a file containing your personally identifiable information (PII) that is saved on our system. The file will be in JSON format and is sent to you by email. If you would like to have your PII deleted from our system, please make a request to delete data.

" +msgstr "

Zatražite datoteku koja sadrži vaše osobne podatke (PII) koji su pohranjeni u našem sustavu. Datoteka će biti u JSON formatu i bit će vam poslana e-poštom. Ako želite da se vaši PII izbrišu iz našeg sustava, molimo vas da podnesete zahtjev za brisanje podataka.

" + +#. Introduction text of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "

Send a request to delete your account and personally identifiable information (PII) that is stored on our system. You will receive an email to verify your request. Once the request is verified we will take care of deleting your PII. If you just want to check what PII we have stored, you can request your data.

" +msgstr "

Pošaljite zahtjev za brisanje vašeg računa i osobnih podataka (PII) koji su pohranjeni u našem sustavu. Primit ćete e-poštu za potvrdu vašeg zahtjeva. Nakon što zahtjev bude potvrđen, pobrinut ćemo se za brisanje vaših PII podataka. Ako samo želite provjeriti koje smo PII podatke pohranili, možete zatražiti svoje podatke.

" + #. Content of the 'Help HTML' (HTML) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -754,6 +764,11 @@ msgstr "Ime DocType treba započeti slovom i može se sastojati samo od slova, b 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." +#. Success message of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "A download link with your data will be sent to the email address associated with your account." +msgstr "Veza za preuzimanje s vašim podacima bit će poslana na adresu e-pošte povezanu s vašim računom." + #: frappe/custom/doctype/custom_field/custom_field.py:175 msgid "A field with the name {0} already exists in {1}" msgstr "Polje s imenom {0} već postoji u {1}" @@ -882,7 +897,7 @@ msgstr "Argumenti krajnje API točke trebaju biti valjani JSON" #. 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.js:452 frappe/core/doctype/user/user.json +#: frappe/core/doctype/user/user.js:459 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 @@ -901,7 +916,7 @@ msgstr "API Ključ i tajna za interakciju s relejnim poslužiteljem. Oni će se msgid "API Key cannot be regenerated" msgstr "API Ključ se ne može regenerirati" -#: frappe/core/doctype/user/user.js:449 +#: frappe/core/doctype/user/user.js:456 msgid "API Keys" msgstr "API Ključevi" @@ -925,7 +940,7 @@ msgstr "Zapisnik API zahtjeva" #. 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.js:459 frappe/core/doctype/user/user.json +#: frappe/core/doctype/user/user.js:466 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" @@ -1011,7 +1026,7 @@ msgstr "Pristupni Token" msgid "Access Token URL" msgstr "URL Pristupnog Tokena" -#: frappe/auth.py:491 +#: frappe/auth.py:494 msgid "Access not allowed from this IP Address" msgstr "Pristup nije dozvoljen s ove IP adrese" @@ -1127,7 +1142,7 @@ msgstr "Radnja {0} nije uspjela {1} {2}. Pogledaj {3}" #: 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:842 +#: frappe/public/js/frappe/views/reports/query_report.js:850 msgid "Actions" msgstr "Radnje" @@ -1184,7 +1199,7 @@ msgstr "Zapisnik Aktivnosti" #: 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:501 +#: frappe/public/js/frappe/form/grid_row.js:502 #: 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 @@ -1195,7 +1210,7 @@ msgstr "Zapisnik Aktivnosti" msgid "Add" msgstr "Dodaj" -#: frappe/public/js/frappe/form/grid_row.js:454 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Add / Remove Columns" msgstr "Dodaj/Ukloni Stupce" @@ -1240,8 +1255,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:1832 -#: frappe/public/js/frappe/views/reports/query_report.js:1835 +#: frappe/public/js/frappe/views/reports/query_report.js:1840 +#: frappe/public/js/frappe/views/reports/query_report.js:1843 #: frappe/public/js/frappe/views/reports/report_view.js:360 #: frappe/public/js/frappe/views/reports/report_view.js:385 #: frappe/public/js/print_format_builder/Field.vue:112 @@ -1335,7 +1350,7 @@ msgstr "Dodaj Pretplatnike" msgid "Add Tags" msgstr "Dodaj Oznake" -#: frappe/public/js/frappe/list/list_view.js:2149 +#: frappe/public/js/frappe/list/list_view.js:2151 msgctxt "Button in list view actions menu" msgid "Add Tags" msgstr "Dodaj Oznake" @@ -1716,11 +1731,11 @@ msgstr "Upozorenje" msgid "Alerts and Notifications" msgstr "Upozorenja i Obavještenja" -#: frappe/database/query.py:1608 +#: frappe/database/query.py:1610 msgid "Alias cannot be a SQL keyword: {0}" msgstr "Alias ne može biti SQL ključna riječ: {0}" -#: frappe/database/query.py:1533 +#: frappe/database/query.py:1535 msgid "Alias must be a string" msgstr "Alias mora biti niz" @@ -2168,6 +2183,12 @@ msgstr "Takođe se dodaje polje statusne zavisnosti {0}" msgid "Alternative Email ID" msgstr "Alternativni ID e-pošte" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Always" +msgstr "Uvijek" + #. Label of the always_bcc (Data) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Always BCC Address" @@ -2244,6 +2265,11 @@ msgstr "Izmjena nije Dozvoljena" msgid "Amendment naming rules updated." msgstr "Pravila Izmjene Imenovanje ažurirana" +#. Success message of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "An email to verify your request has been sent to your email address. Please verify your request to complete the process." +msgstr "E-pošta za potvrdu vašeg zahtjeva poslana je na vašu adresu e-pošte. Molimo vas da potvrdite svoj zahtjev kako biste dovršili postupak." + #: 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" @@ -2426,7 +2452,7 @@ msgstr "Primijenjeno na" msgid "Apply" msgstr "Primjeni" -#: frappe/public/js/frappe/list/list_view.js:2134 +#: frappe/public/js/frappe/list/list_view.js:2136 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" msgstr "Primijeni Pravilo Dodjele" @@ -2511,7 +2537,7 @@ msgstr "Arhivirane Kolone" msgid "Are you sure you want to cancel the invitation?" msgstr "Jeste li sigurni da želite otkazati pozivnicu?" -#: frappe/public/js/frappe/list/list_view.js:2113 +#: frappe/public/js/frappe/list/list_view.js:2115 msgid "Are you sure you want to clear the assignments?" msgstr "Jeste li sigurni da želite izbrisati zadatke?" @@ -2547,7 +2573,7 @@ msgstr "Jeste li sigurni da želite izbrisati ovaj zapis?" 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:969 +#: frappe/public/js/frappe/views/reports/query_report.js:977 msgid "Are you sure you want to generate a new report?" msgstr "Jeste li sigurni da želite generisati novi izvještaj?" @@ -2555,7 +2581,7 @@ msgstr "Jeste li sigurni da želite generisati novi izvještaj?" msgid "Are you sure you want to merge {0} with {1}?" msgstr "Jeste li sigurni da želite spojiti {0} sa {1}?" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:108 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:118 msgid "Are you sure you want to proceed?" msgstr "Jeste li sigurni da želite nastaviti?" @@ -2610,6 +2636,12 @@ msgstr "Budući da je dijeljenje dokumenata onemogućeno, dajte im potrebne dozv msgid "As per your request, your account and data on {0} associated with email {1} has been permanently deleted" msgstr "Prema vašem zahtjevu, vaš račun i podaci na {0} povezani sa e-poštom {1} su trajno izbrisani" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Ask" +msgstr "Pitaj" + #. Label of the assign_condition (Code) field in DocType 'Assignment Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Assign Condition" @@ -2619,7 +2651,7 @@ msgstr "Dodijeli Uslov" msgid "Assign To" msgstr "Dodijeli" -#: frappe/public/js/frappe/list/list_view.js:2095 +#: frappe/public/js/frappe/list/list_view.js:2097 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "Dodijeli" @@ -2762,7 +2794,7 @@ msgstr "Dodjele" msgid "Asynchronous" msgstr "Asinkrono" -#: frappe/public/js/frappe/form/grid_row.js:696 +#: frappe/public/js/frappe/form/grid_row.js:697 msgid "At least one column is required to show in the grid." msgstr "Najmanje jedna kolona je potrebna da se prikaže u mreži." @@ -3742,7 +3774,7 @@ msgstr "Grupno Brisanje" msgid "Bulk Edit" msgstr "Grupno Uređivanje" -#: frappe/public/js/frappe/form/grid.js:1189 +#: frappe/public/js/frappe/form/grid.js:1190 msgid "Bulk Edit {0}" msgstr "Grupno uređivanje {0}" @@ -4034,7 +4066,7 @@ msgstr "Nije moguće preimenovati {0} u {1} jer {0} ne postoji." #. 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/doctype/doctype_list.js:131 #: frappe/core/doctype/user_document_type/user_document_type.json #: frappe/core/doctype/user_invitation/user_invitation.js:17 #: frappe/email/doctype/notification/notification.json @@ -4042,7 +4074,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:2204 +#: frappe/public/js/frappe/list/list_view.js:2206 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "Otkaži" @@ -4060,7 +4092,7 @@ msgstr "Otkaži" msgid "Cancel All Documents" msgstr "Otkaži Sve Dokumente" -#: frappe/public/js/frappe/list/list_view.js:2209 +#: frappe/public/js/frappe/list/list_view.js:2211 msgctxt "Title of confirmation dialog" msgid "Cancel {0} documents?" msgstr "Otkaži {0} dokumenta?" @@ -4113,7 +4145,7 @@ msgstr "Nije Moguće Ukloniti" msgid "Cannot Update After Submit" msgstr "Nije Moguće Ažurirati Nakon Podnošenja" -#: frappe/core/doctype/file/file.py:643 +#: frappe/core/doctype/file/file.py:646 msgid "Cannot access file path {0}" msgstr "Nije moguće pristupiti putu datoteke {0}" @@ -4161,7 +4193,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:379 +#: frappe/model/delete_doc.py:419 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}" @@ -4241,7 +4273,7 @@ msgstr "Nije moguće omogućiti {0} za tip dokumenta koji se ne može podnijeti" msgid "Cannot find file {} on disk" msgstr "Nije moguće pronaći datoteku {} na disku" -#: frappe/core/doctype/file/file.py:583 +#: frappe/core/doctype/file/file.py:586 msgid "Cannot get file contents of a Folder" msgstr "Nije moguće dobiti sadržaj mape" @@ -4249,7 +4281,7 @@ msgstr "Nije moguće dobiti sadržaj mape" msgid "Cannot have multiple printers mapped to a single print format." msgstr "Nije moguće imati više pisača mapiranih u jedan format pisača." -#: frappe/public/js/frappe/form/grid.js:1133 +#: frappe/public/js/frappe/form/grid.js:1134 msgid "Cannot import table with more than 5000 rows." msgstr "Nije moguće uvesti tablicu s više od 5000 redaka." @@ -4265,7 +4297,7 @@ msgstr "Nije moguće mapirati jer sljedeći uslov nije ispunjen:" msgid "Cannot match column {0} with any field" msgstr "Nije moguće uskladiti kolonu {0} ni sa jednim poljem" -#: frappe/public/js/frappe/form/grid_row.js:175 +#: frappe/public/js/frappe/form/grid_row.js:176 msgid "Cannot move row" msgstr "Nije moguće pomjeriti red" @@ -4294,11 +4326,11 @@ msgstr "Nije moguće podnijeti {0}." msgid "Cannot update {0}" msgstr "Nije moguće ažurirati {0}" -#: frappe/model/db_query.py:1130 +#: frappe/model/db_query.py:1136 msgid "Cannot use sub-query here." msgstr "Ovdje se ne može koristiti podupit." -#: frappe/model/db_query.py:1162 +#: frappe/model/db_query.py:1168 msgid "Cannot use {0} in order/group by" msgstr "Ne može se koristiti {0} u redoslijedu/grupiranju po" @@ -4571,11 +4603,11 @@ msgstr "Podređena tabela {0} za polje {1}" #. Description of the 'Is Child Table' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:52 +#: frappe/core/doctype/doctype/doctype_list.js:53 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 +#: frappe/database/query.py:662 msgid "Child query fields for '{0}' must be a list or tuple." msgstr "Podređena polja upita za '{0}' moraju biti popis ili torka." @@ -4631,7 +4663,7 @@ msgstr "Očisti & Dodaj Šablon" msgid "Clear All" msgstr "Obriši Sve" -#: frappe/public/js/frappe/list/list_view.js:2110 +#: frappe/public/js/frappe/list/list_view.js:2112 msgctxt "Button in list view actions menu" msgid "Clear Assignment" msgstr "Obriši Dodjelu" @@ -4725,7 +4757,7 @@ msgstr "Klikni da Postavite Dinamičke Filtere" msgid "Click to Set Filters" msgstr "Klikni da Postavite Filtere" -#: frappe/public/js/frappe/list/list_view.js:739 +#: frappe/public/js/frappe/list/list_view.js:741 msgid "Click to sort by {0}" msgstr "Klikni da sortirate po {0}" @@ -4903,7 +4935,7 @@ msgctxt "Shrink code field." msgid "Collapse" msgstr "Sklopi" -#: frappe/public/js/frappe/views/reports/query_report.js:2113 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 #: frappe/public/js/frappe/views/treeview.js:123 msgid "Collapse All" msgstr "Sklopi Sve" @@ -4958,7 +4990,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:1233 +#: frappe/public/js/frappe/views/reports/query_report.js:1241 #: frappe/public/js/frappe/widgets/widget_dialog.js:546 #: frappe/public/js/frappe/widgets/widget_dialog.js:694 #: frappe/website/doctype/color/color.json @@ -5014,11 +5046,11 @@ msgstr "Naziv Kolone" msgid "Column Name cannot be empty" msgstr "Naziv Kolone ne može biti prazan" -#: frappe/public/js/frappe/form/grid_row.js:454 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Column Width" msgstr "Širina Kolone" -#: frappe/public/js/frappe/form/grid_row.js:661 +#: frappe/public/js/frappe/form/grid_row.js:662 msgid "Column width cannot be zero." msgstr "Širina kolone ne može biti nula." @@ -5045,7 +5077,7 @@ msgstr "Kolone" msgid "Columns / Fields" msgstr "Kolone / Polja" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:397 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:411 msgid "Columns based on" msgstr "Kolone zasnovane na" @@ -5309,7 +5341,7 @@ msgstr "Konfiguracija" msgid "Configure Chart" msgstr "Konfiguriši Grafikon" -#: frappe/public/js/frappe/form/grid_row.js:406 +#: frappe/public/js/frappe/form/grid_row.js:407 msgid "Configure Columns" msgstr "Konfiguriši Kolone" @@ -5336,7 +5368,7 @@ msgstr "Konfiguriši kako će se izmijenjeni dokumenti imenovati.
\n\n" msgid "Configure various aspects of how document naming works like naming series, current counter." 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:412 frappe/public/js/frappe/dom.js:345 +#: frappe/core/doctype/user/user.js:400 frappe/public/js/frappe/dom.js:345 #: frappe/www/update-password.html:66 msgid "Confirm" msgstr "Potvrdi" @@ -5355,7 +5387,7 @@ msgstr "Potvrdi Pristup" msgid "Confirm Deletion of Account" msgstr "Potvrdi Brisanje Računa" -#: frappe/core/doctype/user/user.js:196 +#: frappe/core/doctype/user/user.js:184 msgid "Confirm New Password" msgstr "Potvrdi Novu Lozinku" @@ -5608,7 +5640,7 @@ msgstr "Greška pri kopiranju u međuspremnik" msgid "Copy to Clipboard" msgstr "Kopiraj u Međuspremnik" -#: frappe/core/doctype/user/user.js:480 +#: frappe/core/doctype/user/user.js:487 msgid "Copy token to clipboard" msgstr "Kopiraj token u međuspremnik" @@ -5617,7 +5649,7 @@ msgstr "Kopiraj token u međuspremnik" msgid "Copyright" msgstr "Autorska prava" -#: frappe/custom/doctype/customize_form/customize_form.py:123 +#: frappe/custom/doctype/customize_form/customize_form.py:125 msgid "Core DocTypes cannot be customized." msgstr "Osnovni DocTypes se ne mogu prilagoditi." @@ -5641,7 +5673,7 @@ 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 +#: frappe/database/query.py:566 msgid "Could not parse field: {0}" msgstr "Nije moguće parsati polje: {0}" @@ -5733,13 +5765,13 @@ msgstr "Potražuje" #: 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:1265 +#: frappe/public/js/frappe/views/reports/query_report.js:1273 #: frappe/public/js/frappe/views/workspace/workspace.js:469 #: frappe/workflow/page/workflow_builder/workflow_builder.js:46 msgid "Create" msgstr "Kreiraj" -#: frappe/core/doctype/doctype/doctype_list.js:102 +#: frappe/core/doctype/doctype/doctype_list.js:103 msgid "Create & Continue" msgstr "Kreiraj & Nastavi" @@ -5753,7 +5785,7 @@ msgid "Create Card" msgstr "Kreiraj Karticu" #: frappe/public/js/frappe/views/reports/query_report.js:285 -#: frappe/public/js/frappe/views/reports/query_report.js:1192 +#: frappe/public/js/frappe/views/reports/query_report.js:1200 msgid "Create Chart" msgstr "Kreiraj Grafikon" @@ -5787,12 +5819,12 @@ msgstr "Kreiraj Zapisnik" msgid "Create New" msgstr "Kreiraj" -#: frappe/public/js/frappe/list/list_view.js:512 +#: frappe/public/js/frappe/list/list_view.js:514 msgctxt "Create a new document from list view" msgid "Create New" msgstr "Kreiraj" -#: frappe/core/doctype/doctype/doctype_list.js:100 +#: frappe/core/doctype/doctype/doctype_list.js:101 msgid "Create New DocType" msgstr "Kreiraj Novi DocType" @@ -5800,7 +5832,7 @@ msgstr "Kreiraj Novi DocType" msgid "Create New Kanban Board" msgstr "Kreiraj Novu Natpisnu Tablu" -#: frappe/core/doctype/user/user.js:276 +#: frappe/core/doctype/user/user.js:264 msgid "Create User Email" msgstr "Kreiraj Korisničku e-poštu" @@ -5823,8 +5855,8 @@ msgstr "Kreiraj novi zapis" #: frappe/public/js/frappe/form/controls/link.js:315 #: frappe/public/js/frappe/form/controls/link.js:317 #: frappe/public/js/frappe/form/link_selector.js:139 -#: frappe/public/js/frappe/list/list_view.js:504 -#: frappe/public/js/frappe/web_form/web_form_list.js:225 +#: frappe/public/js/frappe/list/list_view.js:506 +#: frappe/public/js/frappe/web_form/web_form_list.js:226 msgid "Create a new {0}" msgstr "+ {0}" @@ -5840,7 +5872,7 @@ msgstr "Kreiraj ili Uredi Format Ispisa" msgid "Create or Edit Workflow" msgstr "Kreiraj ili Uredi Radni Tok" -#: frappe/public/js/frappe/list/list_view.js:507 +#: frappe/public/js/frappe/list/list_view.js:509 msgid "Create your first {0}" msgstr "+ {0}" @@ -6187,7 +6219,7 @@ msgstr "Prilagođena metoda get_list za {0} mora vratiti objekt QueryBuilder ili #. 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/core/doctype/doctype/doctype_list.js:83 #: frappe/website/doctype/website_theme/website_theme.json msgid "Custom?" msgstr "Prilagođeno?" @@ -6222,7 +6254,7 @@ msgstr "Prilagođavanja za {0} eksportirana u:
{1}" msgid "Customize" msgstr "Prilagodi" -#: frappe/public/js/frappe/list/list_view.js:1947 +#: frappe/public/js/frappe/list/list_view.js:1949 msgctxt "Button in list view menu" msgid "Customize" msgstr "Prilagodi" @@ -6241,7 +6273,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:343 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 msgid "Customize Form" msgstr "Prilagodi Formu" @@ -6472,7 +6504,7 @@ msgstr "Zapisnik Uvoza Podataka" msgid "Data Import Template" msgstr "Šablon Uvoza Podataka" -#: frappe/custom/doctype/customize_form/customize_form.py:615 +#: frappe/custom/doctype/customize_form/customize_form.py:619 msgid "Data Too Long" msgstr "Predugi Podaci" @@ -6503,7 +6535,7 @@ msgstr "Iskorištenost Veličine Reda Tabele Baze Podataka" msgid "Database Storage Usage By Tables" msgstr "Pohranjena Iskorištenost Baze Podataka po Tabelama" -#: frappe/custom/doctype/customize_form/customize_form.py:249 +#: frappe/custom/doctype/customize_form/customize_form.py:251 msgid "Database Table Row Size Limit" msgstr "Ograničenje Veličine Reda Tabele Baze Podataka" @@ -6873,13 +6905,13 @@ msgstr "Odgođeno" #: frappe/public/js/frappe/form/toolbar.js:464 #: frappe/public/js/frappe/views/reports/report_view.js:1749 #: frappe/public/js/frappe/views/treeview.js:329 -#: frappe/public/js/frappe/web_form/web_form_list.js:282 +#: frappe/public/js/frappe/web_form/web_form_list.js:283 #: frappe/templates/discussions/reply_card.html:35 #: frappe/templates/discussions/reply_section.html:29 msgid "Delete" msgstr "Izbriši" -#: frappe/public/js/frappe/list/list_view.js:2172 +#: frappe/public/js/frappe/list/list_view.js:2174 msgctxt "Button in list view actions menu" msgid "Delete" msgstr "Izbriši" @@ -6912,7 +6944,7 @@ msgstr "Izbriši Kolonu" msgid "Delete Data" msgstr "Izbriši Podatke" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:106 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:116 msgid "Delete Kanban Board" msgstr "Izbriši Natpisnu Tablu" @@ -6926,7 +6958,7 @@ msgctxt "Title of confirmation dialog" msgid "Delete Tab" msgstr "Izbriši Karticu" -#: frappe/public/js/frappe/views/reports/query_report.js:936 +#: frappe/public/js/frappe/views/reports/query_report.js:944 msgid "Delete and Generate New" msgstr "Izbriši i Generiši Novi" @@ -6968,12 +7000,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:2177 +#: frappe/public/js/frappe/list/list_view.js:2179 msgctxt "Title of confirmation dialog" msgid "Delete {0} item permanently?" msgstr "Trajno izbriši stavku {0}?" -#: frappe/public/js/frappe/list/list_view.js:2183 +#: frappe/public/js/frappe/list/list_view.js:2185 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "Trajno izbriši {0} stavke?" @@ -7470,10 +7502,14 @@ msgstr "Nemoj kreirati novog korisnika" msgid "Do not create new user if user with email does not exist in the system" msgstr "Ne kreiraj novog korisnika ako korisnik sa e-poštom ne postoji u sistemu" -#: frappe/public/js/frappe/form/grid.js:1194 +#: frappe/public/js/frappe/form/grid.js:1195 msgid "Do not edit headers which are preset in the template" msgstr "Ne uređiuji zaglavlja koja su unaprijed postavljena u šablonu" +#: frappe/public/js/frappe/router.js:624 +msgid "Do not warn me again about {0}" +msgstr "Nemoj me više upozoravati o {0}" + #: frappe/core/doctype/system_settings/system_settings.js:71 msgid "Do you still want to proceed?" msgstr "Želiš li i dalje nastaviti?" @@ -7900,7 +7936,7 @@ msgstr "Naziv Dokumenta" #: 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/public/js/frappe/roles_editor.js:68 #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json #: frappe/workflow/doctype/workflow/workflow.json msgid "Document Type" @@ -7951,15 +7987,15 @@ msgstr "Dokument Otključan" msgid "Document follow is not enabled for this user." msgstr "Praćenje dokumenta nije omogućeno za ovog korisnika." -#: frappe/public/js/frappe/list/list_view.js:1300 +#: frappe/public/js/frappe/list/list_view.js:1302 msgid "Document has been cancelled" msgstr "Dokument je otkazan" -#: frappe/public/js/frappe/list/list_view.js:1299 +#: frappe/public/js/frappe/list/list_view.js:1301 msgid "Document has been submitted" msgstr "Dokument je podnesen" -#: frappe/public/js/frappe/list/list_view.js:1298 +#: frappe/public/js/frappe/list/list_view.js:1300 msgid "Document is in draft state" msgstr "Dokument je u stanju nacrta" @@ -8101,7 +8137,7 @@ msgstr "Krofna" msgid "Double click to edit label" msgstr "Dvaput klikni za uređivanje oznake" -#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:467 +#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:474 #: frappe/email/doctype/auto_email_report/auto_email_report.js:8 #: frappe/public/js/frappe/form/grid.js:66 msgid "Download" @@ -8134,7 +8170,7 @@ msgstr "Link Preuzimanja" msgid "Download PDF" msgstr "Preuzmi PDF" -#: frappe/public/js/frappe/views/reports/query_report.js:832 +#: frappe/public/js/frappe/views/reports/query_report.js:840 msgid "Download Report" msgstr "Preuzmi izvještaj" @@ -8334,8 +8370,8 @@ msgstr "ESC" #: 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:880 -#: frappe/public/js/frappe/views/reports/query_report.js:1783 +#: frappe/public/js/frappe/views/reports/query_report.js:888 +#: frappe/public/js/frappe/views/reports/query_report.js:1791 #: 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 @@ -8347,7 +8383,7 @@ msgstr "ESC" msgid "Edit" msgstr "Uredi" -#: frappe/public/js/frappe/list/list_view.js:2258 +#: frappe/public/js/frappe/list/list_view.js:2260 msgctxt "Button in list view actions menu" msgid "Edit" msgstr "Uredi" @@ -8357,7 +8393,7 @@ msgctxt "Button in web form" msgid "Edit" msgstr "Uredi" -#: frappe/public/js/frappe/form/grid_row.js:349 +#: frappe/public/js/frappe/form/grid_row.js:350 msgctxt "Edit grid row" msgid "Edit" msgstr "Uredi" @@ -8386,7 +8422,7 @@ msgstr "Uredi Prilagođeni HTML" msgid "Edit DocType" msgstr "Uredi DocType" -#: frappe/public/js/frappe/list/list_view.js:1974 +#: frappe/public/js/frappe/list/list_view.js:1976 msgctxt "Button in list view menu" msgid "Edit DocType" msgstr "Uredi DocType" @@ -8506,7 +8542,7 @@ msgstr "Uredi {0}" #. 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/core/doctype/doctype/doctype_list.js:58 #: frappe/custom/doctype/customize_form/customize_form.json msgid "Editable Grid" msgstr "Uređivanje Mreže" @@ -8551,6 +8587,8 @@ msgstr "Birač Elementa" #. 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' +#. Label of a field in the request-data Web Form +#. Label of a field in the request-to-delete-data Web Form #: frappe/automation/workspace/tools/tools.json #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/custom_docperm/custom_docperm.json @@ -8569,6 +8607,8 @@ msgstr "Birač Elementa" #: 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/website/web_form/request_data/request_data.json +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json #: frappe/www/login.html:8 frappe/www/login.py:104 msgid "Email" msgstr "E-pošta" @@ -8800,7 +8840,7 @@ msgstr "E-pošta je označena kao neželjena pošta" msgid "Email has been moved to trash" msgstr "E-pošta je premještena u smeće" -#: frappe/core/doctype/user/user.js:278 +#: frappe/core/doctype/user/user.js:266 msgid "Email is mandatory to create User Email" msgstr "E-pošta je obavezna za kreiranje korisničke e-pošte" @@ -8843,7 +8883,7 @@ 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 +#: frappe/database/query.py:1539 msgid "Empty alias is not allowed" msgstr "Prazan alias nije dopušten" @@ -8851,7 +8891,7 @@ msgstr "Prazan alias nije dopušten" msgid "Empty column" msgstr "Prazna kolona" -#: frappe/database/query.py:1455 +#: frappe/database/query.py:1457 msgid "Empty string arguments are not allowed" msgstr "Prazni argumenti niza nisu dopušteni" @@ -9308,9 +9348,9 @@ msgstr "Greška u Klijent Skripti." msgid "Error in Header/Footer Script" msgstr "Greška Skripte Zaglavlja/Podnožja" -#: frappe/email/doctype/notification/notification.py:640 -#: frappe/email/doctype/notification/notification.py:780 -#: frappe/email/doctype/notification/notification.py:786 +#: frappe/email/doctype/notification/notification.py:642 +#: frappe/email/doctype/notification/notification.py:782 +#: frappe/email/doctype/notification/notification.py:788 msgid "Error in Notification" msgstr "Greška u Obavještenju" @@ -9330,7 +9370,7 @@ msgstr "Pogreška pri parsiranju ugniježđenih filtera: {0}" msgid "Error while connecting to email account {0}" msgstr "Greška prilikom povezivanja na račun e-pošte {0}" -#: frappe/email/doctype/notification/notification.py:777 +#: frappe/email/doctype/notification/notification.py:779 msgid "Error while evaluating Notification {0}. Please fix your template." msgstr "Greška prilikom evaluacije Obavještenja {0}. Popravite vaš šablon." @@ -9491,7 +9531,7 @@ msgstr "Izvršava se Kod" msgid "Executing..." msgstr "Izvršavanje..." -#: frappe/public/js/frappe/views/reports/query_report.js:2132 +#: frappe/public/js/frappe/views/reports/query_report.js:2140 msgid "Execution Time: {0} sec" msgstr "Vrijeme izvršenja: {0} sek" @@ -9517,12 +9557,12 @@ msgctxt "Enlarge code field." msgid "Expand" msgstr "Proširi" -#: frappe/public/js/frappe/views/reports/query_report.js:2113 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 #: frappe/public/js/frappe/views/treeview.js:133 msgid "Expand All" msgstr "Rasklopi Sve" -#: frappe/database/query.py:352 +#: frappe/database/query.py:354 msgid "Expected 'and' or 'or' operator, found: {0}" msgstr "Očekivani operator 'and' ili 'or', pronađen: {0}" @@ -9580,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:1820 +#: frappe/public/js/frappe/views/reports/query_report.js:1828 #: frappe/public/js/frappe/views/reports/report_view.js:1629 #: frappe/public/js/frappe/widgets/chart_widget.js:315 msgid "Export" msgstr "Izvoz" -#: frappe/public/js/frappe/list/list_view.js:2280 +#: frappe/public/js/frappe/list/list_view.js:2282 msgctxt "Button in list view actions menu" msgid "Export" msgstr "Izvezi" @@ -9779,7 +9819,7 @@ msgstr "Nije uspjelo izračunavanje tijela zahtjeva: {}" msgid "Failed to connect to server" msgstr "Povezivanje sa serverom nije uspjelo" -#: frappe/auth.py:698 +#: frappe/auth.py:701 msgid "Failed to decode token, please provide a valid base64-encoded token." msgstr "Dekodiranje tokena nije uspjelo, navedite važeći token kodiran sa base64." @@ -9943,7 +9983,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:236 -#: frappe/public/js/frappe/views/reports/query_report.js:1879 +#: frappe/public/js/frappe/views/reports/query_report.js:1887 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_form_list_column/web_form_list_column.json msgid "Field" @@ -10026,7 +10066,7 @@ msgstr "Polje {0} se odnosi na nepostojeći tip dokumenta {1}." msgid "Field {0} not found." msgstr "Polje {0} nije pronađeno." -#: frappe/email/doctype/notification/notification.py:545 +#: frappe/email/doctype/notification/notification.py:547 msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link" msgstr "Polje {0} u dokumentu {1} nije ni polje za broj Mobilnog Telefona niti veza za Klijenta ili Korisnika" @@ -10044,7 +10084,7 @@ msgstr "Polje {0} u dokumentu {1} nije ni polje za broj Mobilnog Telefona niti v #: 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:454 +#: frappe/public/js/frappe/form/grid_row.js:455 #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Fieldname" msgstr "Ime Polja" @@ -10125,7 +10165,7 @@ 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 +#: frappe/database/query.py:613 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" @@ -10153,7 +10193,7 @@ msgstr "Tip Polja" msgid "Fieldtype cannot be changed from {0} to {1}" msgstr "Tip polja se ne može promijeniti iz {0} u {1}" -#: frappe/custom/doctype/customize_form/customize_form.py:589 +#: frappe/custom/doctype/customize_form/customize_form.py:593 msgid "Fieldtype cannot be changed from {0} to {1} in row {2}" msgstr "Tip polja se ne može promijeniti iz {0} u {1} u redu {2}" @@ -10219,7 +10259,7 @@ msgstr "URL Datoteke" msgid "File backup is ready" msgstr "Sigurnosna Kopija Datoteke je spremna" -#: frappe/core/doctype/file/file.py:646 +#: frappe/core/doctype/file/file.py:649 msgid "File name cannot have {0}" msgstr "Ime datoteke ne može imati {0}" @@ -10227,7 +10267,7 @@ msgstr "Ime datoteke ne može imati {0}" msgid "File not attached" msgstr "Datoteka nije priložena" -#: frappe/core/doctype/file/file.py:756 frappe/public/js/frappe/request.js:200 +#: frappe/core/doctype/file/file.py:759 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 "Veličina datoteke je premašila maksimalnu dozvoljenu veličinu od {0} MB" @@ -10240,7 +10280,7 @@ msgstr "Datoteka je prevelika" msgid "File type of {0} is not allowed" msgstr "Tip datoteke {0} nije dozvoljen" -#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:448 +#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:451 msgid "File {0} does not exist" msgstr "Datoteka {0} ne postoji" @@ -10294,11 +10334,11 @@ msgstr "Filter Naziv" msgid "Filter Values" msgstr "Filter Vrijednosti" -#: frappe/database/query.py:358 +#: frappe/database/query.py:360 msgid "Filter condition missing after operator: {0}" msgstr "Nedostaje uvjet filtra nakon operatora: {0}" -#: frappe/database/query.py:425 +#: frappe/database/query.py:427 msgid "Filter fields cannot contain backticks (`)." msgstr "Polja filtera ne mogu sadržavati povratne crte (`)." @@ -10375,7 +10415,7 @@ msgstr "Sekcija Filtera" msgid "Filters applied for {0}" msgstr "Primijenjeni filteri za {0}" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:188 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:202 msgid "Filters saved" msgstr "Filteri spremljeni" @@ -10423,9 +10463,12 @@ msgstr "Prvi Dan u Tjednu" #. Label of the first_name (Data) field in DocType 'Contact' #. Label of the first_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json #: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:44 -#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:15 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:15 msgid "First Name" msgstr "Ime" @@ -10506,7 +10549,7 @@ msgstr "Naziv Mape" msgid "Folder name should not include '/' (slash)" msgstr "Ime fascikle ne smije uključivati '/' (kosa crta)" -#: frappe/core/doctype/file/file.py:494 +#: frappe/core/doctype/file/file.py:497 msgid "Folder {0} is not empty" msgstr "Mapa {0} nije prazna" @@ -10709,7 +10752,7 @@ msgstr "Za Korisnika" msgid "For Value" msgstr "Za Vrijednost" -#: frappe/public/js/frappe/views/reports/query_report.js:2129 +#: frappe/public/js/frappe/views/reports/query_report.js:2137 #: frappe/public/js/frappe/views/reports/report_view.js:108 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)." @@ -10994,7 +11037,7 @@ msgstr "Od Datuma" msgid "From Date Field" msgstr "Od Datuma" -#: frappe/public/js/frappe/views/reports/query_report.js:1840 +#: frappe/public/js/frappe/views/reports/query_report.js:1848 msgid "From Document Type" msgstr "Od Dokumenta" @@ -11056,13 +11099,13 @@ msgstr "Funkcija zasnovana na" msgid "Function {0} is not whitelisted." msgstr "Funkcija {0} nije na bijeloj listi." -#: frappe/database/query.py:1417 +#: frappe/database/query.py:1419 msgid "Function {0} requires arguments but none were provided" msgstr "Funkcija {0} zahtijeva argumente, ali nijedan nije naveden" #: frappe/public/js/frappe/views/treeview.js:419 -msgid "Further nodes can be only created under 'Group' type nodes" -msgstr "Dalji članovi se mogu kreirati samo pod članovima tipa 'Grupa'" +msgid "Further sub-groups can only be created under records marked as 'Group'" +msgstr "Daljnje podgrupe mogu se stvoriti samo pod zapisima označenim kao 'Grupa'" #: frappe/core/doctype/communication/communication.js:291 msgid "Fw: {0}" @@ -11121,7 +11164,7 @@ msgstr "Općenito" msgid "Generate Keys" msgstr "Generiši Ključeve" -#: frappe/public/js/frappe/views/reports/query_report.js:874 +#: frappe/public/js/frappe/views/reports/query_report.js:882 msgid "Generate New Report" msgstr "Generiši Novi Izvještaj" @@ -11537,14 +11580,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 +#: frappe/database/query.py:752 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 "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" @@ -11874,7 +11913,7 @@ msgstr "Sakriveno" msgid "Hidden Fields" msgstr "Sakrivena Polja" -#: frappe/public/js/frappe/views/reports/query_report.js:1642 +#: frappe/public/js/frappe/views/reports/query_report.js:1650 msgid "Hidden columns include: {0}" msgstr "Skriveni stupci uključuju: {0}" @@ -11986,7 +12025,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:1849 +#: frappe/public/js/frappe/list/list_view.js:1851 msgid "Hide Tags" msgstr "Sakrij Oznake" @@ -12245,7 +12284,7 @@ msgstr "Ako je označeno, status radnog toka neće nadjačati status u prikazu l #: frappe/core/doctype/doctype/doctype.py:1777 #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45 -#: frappe/public/js/frappe/roles_editor.js:66 +#: frappe/public/js/frappe/roles_editor.js:68 msgid "If Owner" msgstr "Ako je Vlasnik" @@ -12473,8 +12512,8 @@ msgstr "Ignorisane Aplikacije" msgid "Illegal Document Status for {0}" msgstr "Ilegalan Status Dokumenta za {0}" -#: frappe/model/db_query.py:453 frappe/model/db_query.py:456 -#: frappe/model/db_query.py:1121 +#: frappe/model/db_query.py:454 frappe/model/db_query.py:457 +#: frappe/model/db_query.py:1122 msgid "Illegal SQL Query" msgstr "Ilegalan SQL Upit" @@ -12561,11 +12600,11 @@ 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:384 +#: frappe/core/doctype/user/user.js:372 msgid "Impersonate" msgstr "Oponašaj" -#: frappe/core/doctype/user/user.js:411 +#: frappe/core/doctype/user/user.js:399 msgid "Impersonate as {0}" msgstr "Oponašaj {0}" @@ -12595,7 +12634,7 @@ msgstr "Implicitno" msgid "Import" msgstr "Uvezi" -#: frappe/public/js/frappe/list/list_view.js:1911 +#: frappe/public/js/frappe/list/list_view.js:1913 msgctxt "Button in list view menu" msgid "Import" msgstr "Uvezi" @@ -12824,15 +12863,15 @@ msgid "Include Web View Link in Email" msgstr "Uključi Web Pregled vezu u e-poštu" #: frappe/public/js/frappe/form/print_utils.js:59 -#: frappe/public/js/frappe/views/reports/query_report.js:1620 +#: frappe/public/js/frappe/views/reports/query_report.js:1628 msgid "Include filters" msgstr "Uključi Filtere" -#: frappe/public/js/frappe/views/reports/query_report.js:1640 +#: frappe/public/js/frappe/views/reports/query_report.js:1648 msgid "Include hidden columns" msgstr "Uključi skrivene stupce" -#: frappe/public/js/frappe/views/reports/query_report.js:1612 +#: frappe/public/js/frappe/views/reports/query_report.js:1620 msgid "Include indentation" msgstr "Uključi Uvlačenje" @@ -12879,7 +12918,7 @@ msgstr "Račun dolazne e-pošte nije ispravan" msgid "Incomplete Virtual Doctype Implementation" msgstr "Nepotpuna implementacija virtualnog tipa dokumenta" -#: frappe/auth.py:255 +#: frappe/auth.py:258 msgid "Incomplete login details" msgstr "Nepotpuni podaci prijave" @@ -12990,7 +13029,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:1885 +#: frappe/public/js/frappe/views/reports/query_report.js:1893 msgid "Insert After" msgstr "Umetni Poslije" @@ -13063,7 +13102,7 @@ msgstr "Instrukcije Poslane e-poštom" msgid "Insufficient Permission Level for {0}" msgstr "Nedovoljan Nivo Dozvola za {0}" -#: frappe/database/query.py:806 frappe/database/query.py:1052 +#: frappe/database/query.py:808 frappe/database/query.py:1054 msgid "Insufficient Permission for {0}" msgstr "Nedovoljne Dozvole za {0}" @@ -13179,7 +13218,7 @@ msgid "Invalid" msgstr "Nevažeći" #: frappe/public/js/form_builder/utils.js:221 -#: frappe/public/js/frappe/form/grid_row.js:849 +#: frappe/public/js/frappe/form/grid_row.js:850 #: frappe/public/js/frappe/form/layout.js:810 #: frappe/public/js/frappe/views/reports/report_view.js:721 msgid "Invalid \"depends_on\" expression" @@ -13237,8 +13276,8 @@ 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 +#: frappe/database/query.py:429 frappe/database/query.py:456 +#: frappe/database/query.py:466 frappe/database/query.py:489 msgid "Invalid Filter" msgstr "Nevažeći Filter" @@ -13310,7 +13349,7 @@ msgstr "Nevažeća Lozinka" msgid "Invalid Phone Number" msgstr "Nevažeći Broj Telefona" -#: frappe/auth.py:94 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 +#: frappe/auth.py:97 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 #: frappe/www/login.py:128 msgid "Invalid Request" msgstr "Nevažeći Zahtjev" @@ -13350,7 +13389,7 @@ msgstr "Nevažeća Tajna Webhooka" msgid "Invalid aggregate function" msgstr "Nevažeća agregatna funkcija" -#: frappe/database/query.py:1542 +#: frappe/database/query.py:1544 msgid "Invalid alias format: {0}. Alias must be a simple identifier." msgstr "Nevažeći format aliasa: {0}. Alias mora biti jednostavan identifikator." @@ -13358,19 +13397,19 @@ msgstr "Nevažeći format aliasa: {0}. Alias mora biti jednostavan identifikator msgid "Invalid app" msgstr "Nevažeća aplikacija" -#: frappe/database/query.py:1468 +#: frappe/database/query.py:1470 msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed." msgstr "Nevažeći format argumenta: {0}. Dopušteni su samo navodni znakovni literali ili jednostavna imena polja." -#: frappe/database/query.py:1444 +#: frappe/database/query.py:1446 msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed." msgstr "Nevažeća vrsta argumenta: {0}. Dopušteni su samo nizovi, brojevi i None." -#: frappe/database/query.py:460 +#: frappe/database/query.py:462 msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed." msgstr "Nevažeći znakovi u nazivu polja: {0}. Dopušteni su samo slova, brojevi i podcrte." -#: frappe/database/query.py:575 +#: frappe/database/query.py:577 msgid "Invalid characters in table name: {0}" msgstr "Nevažeći znakovi u nazivu tablice: {0}" @@ -13378,11 +13417,11 @@ msgstr "Nevažeći znakovi u nazivu tablice: {0}" msgid "Invalid column" msgstr "Nevažeća kolona" -#: frappe/database/query.py:381 +#: frappe/database/query.py:383 msgid "Invalid condition type in nested filters: {0}" msgstr "Nevažeća vrsta uvjeta u ugniježđenim filtrima: {0}" -#: frappe/database/query.py:787 +#: frappe/database/query.py:789 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'." @@ -13398,23 +13437,23 @@ 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/database/query.py:1301 +#: frappe/database/query.py:1303 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, s obrnutim ukrštenim slovima, kvalificirani prema tablici, aliasi ili '*'." -#: frappe/database/query.py:734 +#: frappe/database/query.py:736 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 +#: frappe/database/query.py:1622 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:2215 +#: frappe/utils/data.py:2241 msgid "Invalid field name {0}" msgstr "Nevažeći naziv polja {0}" -#: frappe/database/query.py:668 +#: frappe/database/query.py:670 msgid "Invalid field type: {0}" msgstr "Nevažeći tip polja: {0}" @@ -13426,11 +13465,11 @@ 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:364 +#: frappe/database/query.py:366 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 +#: frappe/database/query.py:452 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'." @@ -13438,11 +13477,11 @@ msgstr "Nevažeći format polja filtera: {0}. Koristi 'fieldname' ili 'link_fiel msgid "Invalid filter: {0}" msgstr "Nevažeći filter: {0}" -#: frappe/database/query.py:1422 +#: frappe/database/query.py:1424 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 +#: frappe/database/query.py:1385 msgid "Invalid function dictionary format" msgstr "Nevažeći format rječnika funkcija" @@ -13479,23 +13518,27 @@ 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:337 +#: frappe/app.py:340 msgid "Invalid request arguments" msgstr "Nevažeći argumenti zahtjeva" +#: frappe/app.py:327 +msgid "Invalid request body" +msgstr "Nevažeće tijelo zahtjeva" + #: frappe/core/doctype/user_invitation/user_invitation.py:181 msgid "Invalid role" msgstr "Nevažeća uloga" -#: frappe/database/query.py:410 +#: frappe/database/query.py:412 msgid "Invalid simple filter format: {0}" msgstr "Nevažeći format jednostavnog filtra: {0}" -#: frappe/database/query.py:341 +#: frappe/database/query.py:343 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 +#: frappe/database/query.py:1491 msgid "Invalid string literal format: {0}" msgstr "Nevažeći format niza literala: {0}" @@ -13599,7 +13642,7 @@ 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' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:49 +#: frappe/core/doctype/doctype/doctype_list.js:50 #: frappe/core/doctype/doctype_link/doctype_link.json msgid "Is Child Table" msgstr "Je Podređena Tabela" @@ -13652,6 +13695,10 @@ msgstr "Je Mapa" msgid "Is Global" msgstr "Je Globalno" +#: frappe/public/js/frappe/views/treeview.js:418 +msgid "Is Group" +msgstr "Grupa" + #. Label of the is_hidden (Check) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "Is Hidden" @@ -13740,7 +13787,7 @@ 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' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:64 +#: frappe/core/doctype/doctype/doctype_list.js:65 #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Is Single" msgstr "Je Sam" @@ -13776,7 +13823,7 @@ 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 +#: frappe/core/doctype/doctype/doctype_list.js:40 msgid "Is Submittable" msgstr "Je Podnošljiv" @@ -13982,11 +14029,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:388 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:402 msgid "Kanban Board Name" msgstr "Naziv Oglasne Table" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:265 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:279 msgctxt "Button in kanban view menu" msgid "Kanban Settings" msgstr "Postavke Oglasne Table" @@ -14284,10 +14331,13 @@ msgstr "Pejzaž" #. 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' +#. Label of a field in the edit-profile Web Form #: 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:117 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/printing/page/print/print.js:117 #: frappe/public/js/frappe/form/templates/print_layout.html:11 msgid "Language" msgstr "Jezik" @@ -14375,9 +14425,12 @@ msgstr "Prošli Mjesec" #. Label of the last_name (Data) field in DocType 'Contact' #. Label of the last_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json #: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:45 -#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:19 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:19 msgid "Last Name" msgstr "Prezime" @@ -14618,7 +14671,7 @@ msgstr "Zaglavlje u HTML-u" #: 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/public/js/frappe/roles_editor.js:68 #: frappe/website/doctype/help_article/help_article.json msgid "Level" msgstr "Nivo" @@ -14911,7 +14964,7 @@ msgstr "Filter Liste" msgid "List Settings" msgstr "Postavke Liste" -#: frappe/public/js/frappe/list/list_view.js:1991 +#: frappe/public/js/frappe/list/list_view.js:1993 msgctxt "Button in list view menu" msgid "List Settings" msgstr "Postavke Liste" @@ -14962,7 +15015,7 @@ msgid "Load Balancing" msgstr "Balansiranje Opterećenja" #: frappe/public/js/frappe/list/base_list.js:399 -#: frappe/public/js/frappe/web_form/web_form_list.js:305 +#: frappe/public/js/frappe/web_form/web_form_list.js:306 #: frappe/website/doctype/help_article/templates/help_article_list.html:30 msgid "Load More" msgstr "Učitaj Još" @@ -14982,7 +15035,7 @@ msgstr "Učitaj više" #: frappe/public/js/frappe/list/base_list.js:526 #: frappe/public/js/frappe/list/list_view.js:363 #: frappe/public/js/frappe/ui/listing.html:16 -#: frappe/public/js/frappe/views/reports/query_report.js:1089 +#: frappe/public/js/frappe/views/reports/query_report.js:1097 msgid "Loading" msgstr "Učitava se" @@ -15125,7 +15178,7 @@ msgstr "Kod Potvrdu Prijave od {}" msgid "Login and view in Browser" msgstr "Prijavi se i pregledaj u Pretraživaču" -#: frappe/website/doctype/web_form/web_form.js:367 +#: frappe/website/doctype/web_form/web_form.js:368 msgid "Login is required to see web form list view. Enable {0} to see list settings" msgstr "Prijava je potrebna da biste vidjeli pregled liste web forme. Omogući {0} da vidite postavke liste" @@ -15133,7 +15186,7 @@ msgstr "Prijava je potrebna da biste vidjeli pregled liste web forme. Omogući { msgid "Login link sent to your email" msgstr "Veza za prijavu poslana je na vašu e-poštu" -#: frappe/auth.py:339 frappe/auth.py:342 +#: frappe/auth.py:342 frappe/auth.py:345 msgid "Login not allowed at this time" msgstr "Prijava trenutno nije dozvoljena" @@ -15186,7 +15239,7 @@ msgstr "Prijavi se putem veze e-pošte" msgid "Login with email link expiry (in minutes)" msgstr "Prijavite se sa istekom veze e-pošte (u minutama)" -#: frappe/auth.py:144 +#: frappe/auth.py:147 msgid "Login with username and password is not allowed." msgstr "Prijava sa korisničkim imenom i lozinkom nije dozvoljena." @@ -15205,7 +15258,7 @@ msgstr "URI Logotipa" msgid "Logout" msgstr "Odjava" -#: frappe/core/doctype/user/user.js:202 +#: frappe/core/doctype/user/user.js:190 msgid "Logout All Sessions" msgstr "Odjava sa Svih Sesija" @@ -15309,7 +15362,10 @@ msgid "Major" msgstr "Velika" #. Label of the show_name_in_global_search (Check) field in DocType 'DocType' +#. Label of the show_name_in_global_search (Check) field in DocType 'Customize +#. Form' #: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Make \"name\" searchable in Global Search" msgstr "Neka \"ime\" bude pretraživo u globalnoj pretrazi" @@ -15385,7 +15441,7 @@ msgstr "Obavezno Zavisi od" msgid "Mandatory Depends On (JS)" msgstr "Obavezno Zavisi od (JS)" -#: frappe/website/doctype/web_form/web_form.py:509 +#: frappe/website/doctype/web_form/web_form.py:536 msgid "Mandatory Information missing:" msgstr "Nedostaju obavezne informacije:" @@ -15842,6 +15898,11 @@ msgstr "Sredina Centar" msgid "Middle Name" msgstr "Srednje Ime" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Middle Name (Optional)" +msgstr "Srednje Ime (Neobavezno)" + #. Name of a DocType #. Label of a Link in the Tools Workspace #: frappe/automation/doctype/milestone/milestone.json @@ -15948,6 +16009,11 @@ msgstr "Mobilni Broj" msgid "Mobile No" msgstr "Mobilni Broj" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Mobile Number" +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" @@ -15973,7 +16039,7 @@ msgstr "Modalni Okidač" #. 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/doctype/doctype_list.js:31 #: 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 @@ -16149,10 +16215,12 @@ msgstr "Više Informacija" #. Label of the additional_info (Section Break) field in DocType #. 'Communication' #. Label of the short_bio (Tab Break) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: 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 +#: frappe/core/web_form/edit_profile/edit_profile.json msgid "More Information" msgstr "Više Informacija" @@ -16182,7 +16250,7 @@ msgstr "Najvjerovatnije je vaša lozinka predugačka." msgid "Move" msgstr "Premjesti" -#: frappe/public/js/frappe/form/grid_row.js:193 +#: frappe/public/js/frappe/form/grid_row.js:194 msgid "Move To" msgstr "Premjesti u" @@ -16218,7 +16286,7 @@ msgstr "Premjesti sekciju na novu karticu" msgid "Move the current field and the following fields to a new column" msgstr "Premjesti trenutno polje i sljedeća polja u novu kolonu" -#: frappe/public/js/frappe/form/grid_row.js:168 +#: frappe/public/js/frappe/form/grid_row.js:169 msgid "Move to Row Number" msgstr "Pomjeri na Red Broj" @@ -16286,7 +16354,7 @@ msgid "Mx" msgstr "Mx" #: frappe/templates/includes/web_sidebar.html:41 -#: frappe/website/doctype/web_form/web_form.py:498 +#: frappe/website/doctype/web_form/web_form.py:525 #: 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" @@ -16430,12 +16498,12 @@ msgstr "Šablon Navigacijske Trake" msgid "Navbar Template Values" msgstr "Vrijednosti Šablona Navigacijske Trake" -#: frappe/public/js/frappe/list/list_view.js:1378 +#: frappe/public/js/frappe/list/list_view.js:1380 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:1385 +#: frappe/public/js/frappe/list/list_view.js:1387 msgctxt "Description of a list view shortcut" msgid "Navigate list up" msgstr "Kreći se po listi prema gore" @@ -16450,6 +16518,10 @@ msgstr "Idi na glavni sadržaj" msgid "Navigation Settings" msgstr "Postavke Navigacije" +#: frappe/public/js/frappe/list/list_view.js:485 +msgid "Need Help?" +msgstr "Trebate pomoć?" + #: frappe/desk/doctype/workspace/workspace.py:322 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" @@ -16458,7 +16530,7 @@ msgstr "Potrebna je uloga Upravitelja Radnog Prostora za uređivanje privatnog r msgid "Negative Value" msgstr "Negativna Vrijednost" -#: frappe/database/query.py:333 +#: frappe/database/query.py:335 msgid "Nested filters must be provided as a list or tuple." msgstr "Ugniježđeni filtri moraju biti navedeni kao popis ili torka." @@ -16471,6 +16543,12 @@ msgstr "Greška ugniježđenog skupa. Kontaktiraj Administratora." msgid "Network Printer Settings" msgstr "Postavke Mrežnog Pisača" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Never" +msgstr "Nikad" + #. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/core/doctype/success_action/success_action.js:57 @@ -16479,7 +16557,7 @@ msgstr "Postavke Mrežnog Pisača" #: 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/treeview.js:473 #: frappe/public/js/frappe/views/workspace/workspace.js:64 #: frappe/website/doctype/web_form/templates/web_list.html:15 #: frappe/www/list.html:19 @@ -16540,7 +16618,7 @@ msgstr "Novi Događaj" msgid "New Folder" msgstr "Nova Mapa" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 msgid "New Kanban Board" msgstr "Nova Oglasna Tabla" @@ -16575,7 +16653,7 @@ msgstr "Nova Numerička Kartica" msgid "New Onboarding" msgstr "Nova Introdukcija" -#: frappe/core/doctype/user/user.js:190 frappe/www/update-password.html:43 +#: frappe/core/doctype/user/user.js:178 frappe/www/update-password.html:43 msgid "New Password" msgstr "Nova Lozinka" @@ -16673,7 +16751,7 @@ msgstr "Nova vrijednost koju treba postaviti" #: frappe/public/js/frappe/ui/toolbar/search_utils.js:227 #: 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:411 +#: frappe/website/doctype/web_form/web_form.py:438 msgid "New {0}" msgstr "Novi {0}" @@ -16825,7 +16903,7 @@ msgstr "Dalje na klik" #: frappe/public/js/form_builder/utils.js:341 #: frappe/public/js/frappe/form/controls/link.js:498 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1665 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 #: frappe/website/doctype/help_article/templates/help_article.html:26 msgid "No" msgstr "Ne" @@ -16974,7 +17052,7 @@ msgstr "Nema Rezultata" msgid "No Roles Specified" msgstr "Nisu Navedene Uloge" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 msgid "No Select Field Found" msgstr "Nije Pronađeno Odabirno Polje" @@ -17058,7 +17136,7 @@ msgstr "Nema adresa e-pošte za pozivnice" msgid "No failed logs" msgstr "Nema neuspjelih zapisa" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:371 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:385 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\"." @@ -17082,7 +17160,7 @@ msgstr "Nema daljnjih zapisa" msgid "No matching records. Search something new" msgstr "Nema podudarnih zapisa. Traži nešto novo" -#: frappe/public/js/frappe/web_form/web_form_list.js:161 +#: frappe/public/js/frappe/web_form/web_form_list.js:162 msgid "No more items to display" msgstr "Nema više artikala za prikaz" @@ -17126,7 +17204,7 @@ msgctxt "{0} = verb, {1} = object" msgid "No permission to '{0}' {1}" msgstr "Nema dozvole za '{0}' {1}" -#: frappe/model/db_query.py:948 +#: frappe/model/db_query.py:949 msgid "No permission to read {0}" msgstr "Nema dozvole za čitanje {0}" @@ -17174,11 +17252,11 @@ msgstr "Bez {0}" msgid "No {0} Found" msgstr "Nije pronađeno {0}" -#: frappe/public/js/frappe/web_form/web_form_list.js:233 +#: frappe/public/js/frappe/web_form/web_form_list.js:234 msgid "No {0} found" msgstr "Nije pronađeno {0}" -#: frappe/public/js/frappe/list/list_view.js:497 +#: frappe/public/js/frappe/list/list_view.js:499 msgid "No {0} found with matching filters. Clear filters to see all {0}." msgstr "Nije pronađeno {0} sa odgovarajućim filterima. Obrišite filtere da vidite sve {0}." @@ -17187,7 +17265,7 @@ msgid "No {0} mail" msgstr "Nema {0} pošte" #: frappe/public/js/form_builder/utils.js:117 -#: frappe/public/js/frappe/form/grid_row.js:256 +#: frappe/public/js/frappe/form/grid_row.js:257 msgctxt "Title of the 'row number' column" msgid "No." msgstr "Broj." @@ -17251,7 +17329,7 @@ msgstr "Nisu Podređeni Od" msgid "Not Equals" msgstr "Nije Jednako" -#: frappe/app.py:387 frappe/www/404.html:3 +#: frappe/app.py:390 frappe/www/404.html:3 msgid "Not Found" msgstr "Nije Pronađeno" @@ -17277,9 +17355,9 @@ msgstr "Nije povezano ni sa jednim zapisom" msgid "Not Nullable" msgstr "Nemože se Nulirati" -#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26 +#: frappe/__init__.py:550 frappe/app.py:383 frappe/desk/calendar.py:26 #: frappe/public/js/frappe/web_form/webform_script.js:15 -#: frappe/website/doctype/web_form/web_form.py:747 +#: frappe/website/doctype/web_form/web_form.py:774 #: 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 @@ -17298,7 +17376,7 @@ msgstr "Nije Objavljeno" #: 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/kanban/kanban_view.js:183 #: frappe/public/js/frappe/views/reports/report_view.js:209 #: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39 #: frappe/website/doctype/web_form/templates/web_form.html:85 @@ -17349,7 +17427,7 @@ msgstr "Nije aktivno" msgid "Not allowed for {0}: {1}" msgstr "Nije dozvoljeno za {0}: {1}" -#: frappe/email/doctype/notification/notification.py:637 +#: frappe/email/doctype/notification/notification.py:639 msgid "Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings" msgstr "Nije dozvoljeno priložiti {0} dokument, omogući Dozvoli Ispis za {0} u Postavkama Ispisa" @@ -17381,12 +17459,12 @@ msgstr "Nije u načinu rada za programere" msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType." 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:216 +#: frappe/core/doctype/system_settings/system_settings.py:217 #: 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:760 +#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:787 #: frappe/website/js/website.js:97 msgid "Not permitted" msgstr "Nije dozvoljeno" @@ -17432,7 +17510,7 @@ msgstr "Napomena: Za najbolje rezultate, slike moraju biti iste veličine, a ši msgid "Note: Multiple sessions will be allowed in case of mobile device" msgstr "Napomena: Višestruke sesije će biti dozvoljene u slučaju mobilnog uređaja" -#: frappe/core/doctype/user/user.js:399 +#: frappe/core/doctype/user/user.js:387 msgid "Note: This will be shared with user." msgstr "Napomena: Ovo će biti podijeljeno s korisnikom." @@ -17504,15 +17582,15 @@ msgstr "Obavijest Pretplaćeni Dokument" msgid "Notification sent to" msgstr "Obavještenje je poslano za" -#: frappe/email/doctype/notification/notification.py:542 +#: frappe/email/doctype/notification/notification.py:544 msgid "Notification: customer {0} has no Mobile number set" msgstr "Obavještenje: klijent {0} nema postavljen broj mobilnog telefona" -#: frappe/email/doctype/notification/notification.py:528 +#: frappe/email/doctype/notification/notification.py:530 msgid "Notification: document {0} has no {1} number set (field: {2})" msgstr "Obavještenje: dokument {0} nema postavljen broj {1} (polje: {2})" -#: frappe/email/doctype/notification/notification.py:537 +#: frappe/email/doctype/notification/notification.py:539 msgid "Notification: user {0} has no Mobile number set" msgstr "Obavještenje: korisnik {0} nema postavljen broj mobilnog telefona" @@ -17626,7 +17704,7 @@ msgstr "Broj Upita" msgid "Number of attachment fields are more than {}, limit updated to {}." msgstr "Broj polja priloga je veći od {}, ograničenje je ažurirano na {}." -#: frappe/core/doctype/system_settings/system_settings.py:171 +#: frappe/core/doctype/system_settings/system_settings.py:172 msgid "Number of backups must be greater than zero." msgstr "Broj Sigurnosnih Kopija mora biti veći od nule." @@ -17898,7 +17976,7 @@ 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 +#: frappe/core/doctype/doctype/doctype_list.js:43 msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended." msgstr "Jednom podneseni dokumenti koji se podnose se ne mogu mijenjati. Mogu se samo poništiti i izmjenuti." @@ -17987,11 +18065,11 @@ msgstr "Mogu se izbrisati samo izvještaji tipa Konstruktor Izvještaja" msgid "Only reports of type Report Builder can be edited" msgstr "Mogu se uređivati samo izvještaji tipa Konstruktor Izvještaja" -#: frappe/custom/doctype/customize_form/customize_form.py:129 +#: frappe/custom/doctype/customize_form/customize_form.py:131 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:241 +#: frappe/model/delete_doc.py:281 msgid "Only the Administrator can delete a standard DocType." msgstr "Samo Administrator može izbrisati standardni DocType." @@ -18087,7 +18165,7 @@ msgstr "Otvori konzolu" msgid "Open in a new tab" msgstr "Otvori u novoj kartici" -#: frappe/public/js/frappe/list/list_view.js:1431 +#: frappe/public/js/frappe/list/list_view.js:1433 msgctxt "Description of a list view shortcut" msgid "Open list item" msgstr "Otvorite stavku liste" @@ -18136,7 +18214,7 @@ msgstr "Otvoreno" msgid "Operation" msgstr "Operacija" -#: frappe/utils/data.py:2146 +#: frappe/utils/data.py:2172 msgid "Operator must be one of {0}" msgstr "Operator mora biti jedan od {0}" @@ -18182,6 +18260,7 @@ msgstr "Opcija: Upozorenje će biti poslano ako je ovaj izraz tačan" #. 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 (Text) field in DocType 'Web Form List Column' #. 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 @@ -18190,6 +18269,7 @@ msgstr "Opcija: Upozorenje će biti poslano ako je ovaj izraz tačan" #: 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_form_list_column/web_form_list_column.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Options" msgstr "Opcije" @@ -18235,7 +18315,7 @@ msgstr "Narandžasta" msgid "Order" msgstr "Red" -#: frappe/database/query.py:767 +#: frappe/database/query.py:769 msgid "Order By must be a string" msgstr "Sortiraj Po mora biti niz" @@ -18333,7 +18413,7 @@ msgstr "ZAKRPA" #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/printing/page/print/print.js:84 #: frappe/public/js/frappe/form/templates/print_layout.html:44 -#: frappe/public/js/frappe/views/reports/query_report.js:1804 +#: frappe/public/js/frappe/views/reports/query_report.js:1812 msgid "PDF" msgstr "PDF" @@ -18681,8 +18761,8 @@ msgstr "Pasivno" #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/system_settings/system_settings.json -#: frappe/core/doctype/user/user.js:177 frappe/core/doctype/user/user.js:224 -#: frappe/core/doctype/user/user.js:244 +#: frappe/core/doctype/user/user.js:165 frappe/core/doctype/user/user.js:212 +#: frappe/core/doctype/user/user.js:232 #: 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 @@ -18705,7 +18785,7 @@ msgstr "Poništavanje Lozinke" msgid "Password Reset Link Generation Limit" msgstr "Maksimalan Broj Veza za Poništavanje Lozinke po satu" -#: frappe/public/js/frappe/form/grid_row.js:896 +#: frappe/public/js/frappe/form/grid_row.js:897 msgid "Password cannot be filtered" msgstr "Lozinka se ne može filtrirati" @@ -18742,7 +18822,7 @@ msgstr "Uputstva za poništavanje lozinke su poslana na e-poštu korisnika {}" msgid "Password set" msgstr "Lozinka postavljena" -#: frappe/auth.py:258 +#: frappe/auth.py:261 msgid "Password size exceeded the maximum allowed size" msgstr "Veličina lozinke je premašila maksimalno dozvoljenu veličinu" @@ -18754,7 +18834,7 @@ msgstr "Veličina lozinke je premašila maksimalno dozvoljenu veličinu." msgid "Passwords do not match" msgstr "Lozinke se ne podudaraju" -#: frappe/core/doctype/user/user.js:210 +#: frappe/core/doctype/user/user.js:198 msgid "Passwords do not match!" msgstr "Lozinke se ne podudaraju!" @@ -18905,7 +18985,7 @@ msgstr "Trajno Podnesi {0}?" msgid "Permanently delete {0}?" msgstr "Trajno izbriši {0}?" -#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533 +#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:535 msgid "Permission Error" msgstr "Greška Dozvole" @@ -18965,8 +19045,8 @@ msgstr "Tip Dozvole" #: 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:143 frappe/core/doctype/user/user.js:152 -#: frappe/core/doctype/user/user.js:161 +#: frappe/core/doctype/user/user.js:131 frappe/core/doctype/user/user.js:140 +#: frappe/core/doctype/user/user.js:149 #: 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 @@ -19036,6 +19116,7 @@ msgstr "Zahtjev Preuzimanje Ličnih Podataka" #. Option for the 'Type' (Select) field in DocType 'Communication' #. Option for the 'Type' (Select) field in DocType 'DocField' #. Label of the phone (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #. 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' @@ -19046,6 +19127,7 @@ msgstr "Zahtjev Preuzimanje Ličnih Podataka" #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.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 @@ -19220,7 +19302,7 @@ msgstr "Ne mijenjaj Naslove Predložaka." msgid "Please duplicate this to make changes" msgstr "Kopiraj ovo da izvršite promjene" -#: frappe/core/doctype/system_settings/system_settings.py:164 +#: frappe/core/doctype/system_settings/system_settings.py:165 msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login." 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." @@ -19352,11 +19434,11 @@ msgstr "Odaberi DocType" msgid "Please select Entity Type first" msgstr "Odaberi Tip Entiteta" -#: frappe/core/doctype/system_settings/system_settings.py:115 +#: frappe/core/doctype/system_settings/system_settings.py:116 msgid "Please select Minimum Password Score" msgstr "Odaberi Minimalnu Vrijednost Lozinke" -#: frappe/public/js/frappe/views/reports/query_report.js:1185 +#: frappe/public/js/frappe/views/reports/query_report.js:1193 msgid "Please select X and Y fields" msgstr "Odaberi X i Y polja" @@ -19384,7 +19466,7 @@ msgstr "Odaberi važeći filter datuma" msgid "Please select applicable Doctypes" msgstr "Odaberi primjenjive Dokumente" -#: frappe/model/db_query.py:1157 +#: frappe/model/db_query.py:1163 msgid "Please select atleast 1 column from {0} to sort/group" msgstr "Odaberi najmanje 1 kolonu iz {0} za sortiranje/grupiranje" @@ -19414,7 +19496,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:1408 +#: frappe/public/js/frappe/views/reports/query_report.js:1416 msgid "Please set filters" msgstr "Postavi filtere" @@ -19434,7 +19516,7 @@ msgstr "Postavite sljedeće dokumente na ovoj Nadzornoj Tabli kao standardne." msgid "Please set the series to be used." msgstr "Postavi seriju imenovanja koja će se koristiti." -#: frappe/core/doctype/system_settings/system_settings.py:128 +#: frappe/core/doctype/system_settings/system_settings.py:129 msgid "Please setup SMS before setting it as an authentication method, via SMS Settings" msgstr "Podesite SMS prije nego što ga postavite kao metodu provjere autentičnosti, putem SMS Postavki" @@ -19586,7 +19668,7 @@ msgstr "Broj Pošte" msgid "Posting Timestamp" msgstr "Vremenska Oznaka" -#: frappe/database/query.py:1518 +#: frappe/database/query.py:1520 msgid "Potentially dangerous content in string literal: {0}" msgstr "Potencijalno opasan sadržaj u nizu literala: {0}" @@ -19788,13 +19870,13 @@ msgstr "Primarni ključ tipa dokumenta {0} ne može se promijeniti jer postoje p #: 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:1789 +#: frappe/public/js/frappe/views/reports/query_report.js:1797 #: frappe/public/js/frappe/views/reports/report_view.js:1539 -#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18 +#: frappe/public/js/frappe/views/treeview.js:492 frappe/www/printview.html:18 msgid "Print" msgstr "Ispiši" -#: frappe/public/js/frappe/list/list_view.js:2164 +#: frappe/public/js/frappe/list/list_view.js:2166 msgctxt "Button in list view actions menu" msgid "Print" msgstr "Ispiši" @@ -19864,7 +19946,7 @@ msgstr "Pomoć Ispis Formata" msgid "Print Format Type" msgstr "Tip Ispis Formata" -#: frappe/public/js/frappe/views/reports/query_report.js:1578 +#: frappe/public/js/frappe/views/reports/query_report.js:1586 msgid "Print Format not found" msgstr "Format Ispisa nije pronađen" @@ -20045,11 +20127,11 @@ msgstr "Savjet: Dodaj referencu: {{ reference_doctype }} {{ reference_name msgid "Proceed" msgstr "Nastavi" -#: frappe/public/js/frappe/views/reports/query_report.js:932 +#: frappe/public/js/frappe/views/reports/query_report.js:940 msgid "Proceed Anyway" msgstr "Svejedno Nastavi" -#: frappe/public/js/frappe/form/controls/table.js:123 +#: frappe/public/js/frappe/form/controls/table.js:104 msgid "Processing" msgstr "Obrađuje se" @@ -20066,11 +20148,21 @@ msgstr "Prof" msgid "Profile" msgstr "Profil" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile Picture" +msgstr "Slika Profila" + +#. Success message of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile updated successfully." +msgstr "Profil je uspješno ažuriran." + #: frappe/public/js/frappe/socketio_client.js:82 msgid "Progress" msgstr "Napredak" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:408 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:422 msgid "Project" msgstr "Projekat" @@ -20114,7 +20206,7 @@ msgstr "Tip Svojstva" msgid "Protect Attached Files" msgstr "Zaštiti Priložene Datoteke" -#: frappe/core/doctype/file/file.py:523 +#: frappe/core/doctype/file/file.py:526 msgid "Protected File" msgstr "Zaštićena Datoteka" @@ -20620,11 +20712,11 @@ msgstr "Realno Vrijeme (SocketIO)" msgid "Reason" msgstr "Razlog" -#: frappe/public/js/frappe/views/reports/query_report.js:886 +#: frappe/public/js/frappe/views/reports/query_report.js:894 msgid "Rebuild" msgstr "Obnovi" -#: frappe/public/js/frappe/views/treeview.js:509 +#: frappe/public/js/frappe/views/treeview.js:511 msgid "Rebuild Tree" msgstr "Obnovi Stablo" @@ -21005,8 +21097,8 @@ 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:1778 -#: frappe/public/js/frappe/views/treeview.js:496 +#: frappe/public/js/frappe/views/reports/query_report.js:1786 +#: frappe/public/js/frappe/views/treeview.js:498 #: frappe/public/js/frappe/widgets/chart_widget.js:291 #: frappe/public/js/frappe/widgets/number_card_widget.js:352 #: frappe/public/js/print_format_builder/Preview.vue:24 @@ -21037,13 +21129,13 @@ msgstr "Osvježi Pregled Ispisa" msgid "Refresh Token" msgstr "Osvježi Token" -#: frappe/public/js/frappe/list/list_view.js:534 +#: frappe/public/js/frappe/list/list_view.js:536 msgctxt "Document count in list view" msgid "Refreshing" msgstr "Osvježava se" #: frappe/core/doctype/system_settings/system_settings.js:57 -#: frappe/core/doctype/user/user.js:374 +#: frappe/core/doctype/user/user.js:362 #: frappe/desk/page/setup_wizard/setup_wizard.js:211 msgid "Refreshing..." msgstr "Osvježavanje u toku..." @@ -21428,7 +21520,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:1965 +#: frappe/public/js/frappe/views/reports/query_report.js:1973 msgid "Report Name" msgstr "Naziv Izvještaja" @@ -21480,7 +21572,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:1013 +#: frappe/public/js/frappe/views/reports/query_report.js:1021 msgid "Report initiated, click to view status" msgstr "Izvještaj je pokrenut, klikni da vidite status" @@ -21500,7 +21592,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:2003 +#: frappe/public/js/frappe/views/reports/query_report.js:2011 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." @@ -21536,7 +21628,7 @@ msgstr "Izvještaji" msgid "Reports & Masters" msgstr "Izvještaji & Masters" -#: frappe/public/js/frappe/views/reports/query_report.js:929 +#: frappe/public/js/frappe/views/reports/query_report.js:937 msgid "Reports already in Queue" msgstr "Izvještaji su već u redu čekanja" @@ -21555,7 +21647,10 @@ msgid "Request Body" msgstr "Zahtjev od" #. Label of the data (Code) field in DocType 'Integration Request' +#. Title of the request-data Web Form +#. Button label of the request-data Web Form #: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/website/web_form/request_data/request_data.json msgid "Request Data" msgstr "Zatraži Podatke" @@ -21607,6 +21702,11 @@ msgstr "Zahtjev Istekao" msgid "Request URL" msgstr "URL Zahtjeva" +#. Title of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "Request for Account Deletion" +msgstr "Zahtjev za Brisanje Računa" + #. Label of the requested_numbers (Code) field in DocType 'SMS Log' #: frappe/core/doctype/sms_log/sms_log.json msgid "Requested Numbers" @@ -21662,7 +21762,7 @@ msgstr "Poništi Prilagođavanja Nadzorne Table" msgid "Reset Fields" msgstr "Poništi Polja" -#: frappe/core/doctype/user/user.js:184 frappe/core/doctype/user/user.js:187 +#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:175 msgid "Reset LDAP Password" msgstr "Poništi LDAP Lozinku" @@ -21670,11 +21770,11 @@ msgstr "Poništi LDAP Lozinku" msgid "Reset Layout" msgstr "Poništi Izgled" -#: frappe/core/doctype/user/user.js:235 +#: frappe/core/doctype/user/user.js:223 msgid "Reset OTP Secret" msgstr "Poništi OTP Tajnu" -#: frappe/core/doctype/user/user.js:168 frappe/www/login.html:199 +#: frappe/core/doctype/user/user.js:156 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" @@ -21709,7 +21809,7 @@ msgstr "Vrati na Standard" msgid "Reset sorting" msgstr "Poništi Sortiranje" -#: frappe/public/js/frappe/form/grid_row.js:433 +#: frappe/public/js/frappe/form/grid_row.js:434 msgid "Reset to default" msgstr "Vrati na Standard" @@ -21961,7 +22061,7 @@ 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 +#: frappe/public/js/frappe/roles_editor.js:114 msgid "Role Permissions" msgstr "Dozvole Uloge" @@ -21971,7 +22071,7 @@ msgstr "Dozvole Uloge" msgid "Role Permissions Manager" msgstr "Upravitelj Dozvola Uloge" -#: frappe/public/js/frappe/list/list_view.js:1933 +#: frappe/public/js/frappe/list/list_view.js:1935 msgctxt "Button in list view menu" msgid "Role Permissions Manager" msgstr "Upravitelj Dozvola Uloge" @@ -22164,11 +22264,11 @@ msgstr "Vrijednosti Reda Promijenjene" msgid "Row {0}" msgstr "Red {0}" -#: frappe/custom/doctype/customize_form/customize_form.py:353 +#: frappe/custom/doctype/customize_form/customize_form.py:357 msgid "Row {0}: Not allowed to disable Mandatory for standard fields" msgstr "Red {0}: Nije dozvoljeno onemogućiti Obavezno za standardna polja" -#: frappe/custom/doctype/customize_form/customize_form.py:342 +#: frappe/custom/doctype/customize_form/customize_form.py:346 msgid "Row {0}: Not allowed to enable Allow on Submit for standard fields" msgstr "Red {0}: Nije dozvoljeno omogućiti Dozvoli pri podnošenju za standardna polja" @@ -22187,7 +22287,10 @@ msgid "Rows Removed" msgstr "Ukonjeni Redovi" #. Label of the rows_threshold_for_grid_search (Int) field in DocType 'DocType' +#. Label of the rows_threshold_for_grid_search (Int) field in DocType +#. 'Customize Form' #: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Rows Threshold for Grid Search" msgstr "Prag redaka za Mreže Pretraživanje" @@ -22395,8 +22498,8 @@ msgstr "Subota" #: 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:1957 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 +#: frappe/public/js/frappe/views/reports/query_report.js:1965 #: frappe/public/js/frappe/views/reports/report_view.js:1735 #: frappe/public/js/frappe/views/workspace/workspace.js:335 #: frappe/public/js/frappe/widgets/base_widget.js:142 @@ -22419,11 +22522,11 @@ msgstr "Spremi Kao" msgid "Save Customizations" msgstr "Spremi Prilagođavanja" -#: frappe/public/js/frappe/views/reports/query_report.js:1960 +#: frappe/public/js/frappe/views/reports/query_report.js:1968 msgid "Save Report" msgstr "Spremi Izvještaj" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:97 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:107 msgid "Save filters" msgstr "Spremi Filtere" @@ -22795,7 +22898,7 @@ msgstr "Sigurnosne Postavke" msgid "See all Activity" msgstr "Pogledaj Sve Aktivnosti" -#: frappe/public/js/frappe/views/reports/query_report.js:855 +#: frappe/public/js/frappe/views/reports/query_report.js:863 msgid "See all past reports." msgstr "Pogledaj sve prethodne izvještaje." @@ -22859,7 +22962,7 @@ 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:497 +#: frappe/public/js/frappe/form/grid_row.js:498 msgid "Select All" msgstr "Odaberi sve" @@ -22939,7 +23042,7 @@ msgstr "Odaberi Polje" msgid "Select Field..." msgstr "Odaberi Polje..." -#: frappe/public/js/frappe/form/grid_row.js:489 +#: frappe/public/js/frappe/form/grid_row.js:490 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:181 msgid "Select Fields" msgstr "Odaberi Polja" @@ -23059,8 +23162,8 @@ msgid "Select a field to edit its properties." msgstr "Odaberi polje da biste uredili njegova svojstva." #: frappe/public/js/frappe/views/treeview.js:358 -msgid "Select a group node first." -msgstr "Odaberi Grupu." +msgid "Select a group {0} first." +msgstr "Odaberi grupu {0}." #: frappe/core/doctype/doctype/doctype.py:1956 msgid "Select a valid Sender Field for creating documents from Email" @@ -23096,13 +23199,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:1445 +#: frappe/public/js/frappe/list/list_view.js:1447 msgctxt "Description of a list view shortcut" msgid "Select list item" msgstr "Odaberi Artikal Liste" -#: frappe/public/js/frappe/list/list_view.js:1397 -#: frappe/public/js/frappe/list/list_view.js:1413 +#: frappe/public/js/frappe/list/list_view.js:1399 +#: frappe/public/js/frappe/list/list_view.js:1415 msgctxt "Description of a list view shortcut" msgid "Select multiple list items" msgstr "Odaberi artikle više listi" @@ -23424,7 +23527,7 @@ msgstr "Serija Imenovanja {0} se već koristi u {1}" msgid "Server Action" msgstr "Radnja Servera" -#: frappe/app.py:396 frappe/public/js/frappe/request.js:611 +#: frappe/app.py:399 frappe/public/js/frappe/request.js:611 #: frappe/www/error.html:36 frappe/www/error.py:15 msgid "Server Error" msgstr "Greška Servera" @@ -23490,7 +23593,7 @@ msgstr "Standard Sesije" msgid "Session Defaults Saved" msgstr "Standard Postavke Sesije Spremljene" -#: frappe/app.py:373 +#: frappe/app.py:376 msgid "Session Expired" msgstr "Sesija Istekla" @@ -23499,7 +23602,7 @@ msgstr "Sesija Istekla" msgid "Session Expiry (idle timeout)" msgstr "Istek Sesije (vremensko ograničenje mirovanja)" -#: frappe/core/doctype/system_settings/system_settings.py:122 +#: frappe/core/doctype/system_settings/system_settings.py:123 msgid "Session Expiry must be in format {0}" msgstr "Istek Sesije mora biti u formatu {0}" @@ -23548,7 +23651,7 @@ msgstr "Postavi Filtere" msgid "Set Filters for {0}" msgstr "Postavi filtere za {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:2113 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 msgid "Set Level" msgstr "Postavi Nivo" @@ -23602,7 +23705,7 @@ msgstr "Postavi Količinu" msgid "Set Role For" msgstr "Postavi Ulogu za" -#: frappe/core/doctype/user/user.js:136 +#: frappe/core/doctype/user/user.js:124 #: frappe/core/page/permission_manager/permission_manager.js:72 msgid "Set User Permissions" msgstr "Postavi Korisničke Dozvole" @@ -23788,7 +23891,7 @@ msgstr "Postavljanje> Korisnik" msgid "Setup > User Permissions" msgstr "Postavljanje > Korisničke Dozvole" -#: frappe/public/js/frappe/views/reports/query_report.js:1826 +#: frappe/public/js/frappe/views/reports/query_report.js:1834 #: frappe/public/js/frappe/views/reports/report_view.js:1713 msgid "Setup Auto Email" msgstr "Postavljanje Automatske e-pošte" @@ -23929,6 +24032,12 @@ msgstr "Prikaži Dokument" msgid "Show Error" msgstr "Prikaži Grešku" +#. Label of the show_external_link_warning (Select) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Show External Link Warning" +msgstr "Prikaži upozorenje o vanjskoj poveznici" + #: frappe/public/js/frappe/form/layout.js:578 msgid "Show Fieldname (click to copy on clipboard)" msgstr "Prikaži Naziv Polja (klikni da kopirate u međuspremnik)" @@ -24057,7 +24166,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:1849 +#: frappe/public/js/frappe/list/list_view.js:1851 msgid "Show Tags" msgstr "Prikaži Oznake" @@ -24264,36 +24373,36 @@ msgstr "Prijava Onemogućena" msgid "Signups have been disabled for this website." 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 "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 "Jednostavan Python izraz, primjer: status u (\"Nevažeći\")" +msgid "Simple Python Expression, Example: status == \"Invalid\"" +msgstr "Jednostavan Python Izraz, Primjer: status == \"Invalid\"" #. 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 "Jednostavan Python izraz, primjer: status == 'Otvoren' i tip == 'Bug'" +msgid "Simple Python Expression, Example: status == 'Open' and issue_type == 'Bug'" +msgstr "Jednostavan Python Izraz, Primjer: status == 'Open' i issue_type == 'Bug'" + +#. 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 "Jednostavan Python Izraz, Primjer: status u (\"Closed\", \"Cancelled\")" #. Label of the simultaneous_sessions (Int) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Simultaneous Sessions" msgstr "Simultane Sesije" -#: frappe/custom/doctype/customize_form/customize_form.py:126 +#: frappe/custom/doctype/customize_form/customize_form.py:128 msgid "Single DocTypes cannot be customized." 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 +#: frappe/core/doctype/doctype/doctype_list.js:68 msgid "Single Types have only one record no tables associated. Values are stored in tabSingles" msgstr "Pojedinačni tipovi imaju samo jedan zapis bez pridruženih tablica. Vrijednosti se pohranjuju u tabSingles" @@ -24629,7 +24738,7 @@ msgid "Splash Image" msgstr "Uvodna Slika" #: frappe/desk/reportview.py:455 -#: frappe/public/js/frappe/web_form/web_form_list.js:175 +#: frappe/public/js/frappe/web_form/web_form_list.js:176 #: frappe/templates/print_formats/standard_macros.html:44 msgid "Sr" msgstr "Red" @@ -24661,7 +24770,7 @@ msgstr "Stack Trace" msgid "Standard" msgstr "Standard" -#: frappe/model/delete_doc.py:79 +#: frappe/model/delete_doc.py:119 msgid "Standard DocType can not be deleted." msgstr "Standardni DocType se ne može izbrisati." @@ -24931,7 +25040,7 @@ 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:454 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Sticky" msgstr "Sticky" @@ -24961,7 +25070,7 @@ msgstr "Korištenje Pohrane po Tabelama" msgid "Store Attached PDF Document" msgstr "Pohrani priloženi PDF dokument" -#: frappe/core/doctype/user/user.js:490 +#: frappe/core/doctype/user/user.js:497 msgid "Store the API secret securely. It won't be displayed again." msgstr "Sačuvajte API tajnu na sigurnom mjestu. Neće biti više prikazivana." @@ -25073,6 +25182,7 @@ msgstr "Red Podnošenja" #. 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' +#. Button label of the request-to-delete-data Web Form #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/docshare/docshare.json @@ -25081,10 +25191,11 @@ msgstr "Red Podnošenja" #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/quick_entry.js:225 #: frappe/public/js/frappe/ui/capture.js:307 +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json msgid "Submit" msgstr "Rezerviši" -#: frappe/public/js/frappe/list/list_view.js:2231 +#: frappe/public/js/frappe/list/list_view.js:2233 msgctxt "Button in list view actions menu" msgid "Submit" msgstr "Rezerviši" @@ -25094,7 +25205,7 @@ msgctxt "Button in web form" msgid "Submit" msgstr "Pošalji" -#: frappe/public/js/frappe/ui/dialog.js:63 +#: frappe/public/js/frappe/ui/dialog.js:64 msgctxt "Primary action in dialog" msgid "Submit" msgstr "Pošalji" @@ -25142,7 +25253,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:2236 +#: frappe/public/js/frappe/list/list_view.js:2238 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "Pošalji {0} dokumenata?" @@ -25192,7 +25303,7 @@ msgstr "Podnaziv" #: 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:1171 +#: frappe/public/js/frappe/form/grid.js:1172 #: frappe/public/js/frappe/views/translation_manager.js:21 #: frappe/templates/includes/login/login.js:230 #: frappe/templates/includes/login/login.js:236 @@ -25407,7 +25518,7 @@ msgstr "Sinhronizacija u toku" msgid "Syncing {0} of {1}" msgstr "Sinhronizira se {0} od {1}" -#: frappe/utils/data.py:2547 +#: frappe/utils/data.py:2573 msgid "Syntax Error" msgstr "Greška Sintakse" @@ -25718,7 +25829,7 @@ msgstr "Višestruki Odabir Tabele" msgid "Table Trimmed" msgstr "Tabela Optimizirana" -#: frappe/public/js/frappe/form/grid.js:1170 +#: frappe/public/js/frappe/form/grid.js:1171 msgid "Table updated" msgstr "Tabela Ažurirana" @@ -25935,7 +26046,7 @@ msgstr "Hvala" msgid "The Auto Repeat for this document has been disabled." msgstr "Automatsko Ponavljanje za ovaj dokument je onemogućeno." -#: frappe/public/js/frappe/form/grid.js:1193 +#: frappe/public/js/frappe/form/grid.js:1194 msgid "The CSV format is case sensitive" msgstr "CSV format razlikuje velika i mala slova" @@ -26007,7 +26118,7 @@ msgstr "Komentar ne može biti prazan" msgid "The contents of this email are strictly confidential. Please do not forward this email to anyone." 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:685 +#: frappe/public/js/frappe/list/list_view.js:687 msgid "The count shown is an estimated count. Click here to see the accurate count." msgstr "Prikazani broj je procijenjen. Klikni ovdje da vidite tačan broj." @@ -26121,7 +26232,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:388 frappe/public/js/frappe/request.js:149 +#: frappe/app.py:391 frappe/public/js/frappe/request.js:149 msgid "The resource you are looking for is not available" msgstr "Resurs koji tražite nije dostupan" @@ -26194,12 +26305,12 @@ 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:965 +#: frappe/public/js/frappe/views/reports/query_report.js:973 msgid "There are {0} with the same filters already in the queue:" 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 +#: frappe/website/doctype/web_form/web_form.js:318 msgid "There can be only 9 Page Break fields in a Web Form" msgstr "U Web Formi može postojati samo 9 polja Prijeloma Stranice" @@ -26223,11 +26334,11 @@ msgstr "Ne postoji zadatak pod nazivom \"{}\"" msgid "There is nothing new to show you right now." msgstr "Trenutno nema ništa novo za pokazati." -#: frappe/core/doctype/file/file.py:640 frappe/utils/file_manager.py:372 +#: frappe/core/doctype/file/file.py:643 frappe/utils/file_manager.py:372 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:962 +#: frappe/public/js/frappe/views/reports/query_report.js:970 msgid "There is {0} with the same filters already in the queue:" msgstr "Postoji {0} s istim filterima već u redu čekanja:" @@ -26239,7 +26350,7 @@ msgstr "Mora postojati barem jedno pravilo dozvole." msgid "There was an error building this page" msgstr "Došlo je do greške pri izradi ove stranice" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:182 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:196 msgid "There was an error saving filters" msgstr "Došlo je do greške prilikom spremanja filtera" @@ -26296,7 +26407,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:391 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:405 msgid "This Kanban Board will be private" msgstr "Ova Oglasna Tabla će biti privatna" @@ -26333,7 +26444,7 @@ msgstr "Ova radnja je dozvoljena samo za {}" msgid "This cannot be undone" msgstr "Ovo se ne može poništiti" -#: frappe/desk/doctype/number_card/number_card.js:480 +#: frappe/desk/doctype/number_card/number_card.js:484 msgctxt "Number Card" msgid "This card is visible only to Administrator and System Managers by default. Set a DocType to share with users who have read access." msgstr "Prema zadanim postavkama, ova kartica je vidljiva samo administratoru i upraviteljima sustava. Postavite DocType za dijeljenje s korisnicima koji imaju pristup za čitanje." @@ -26356,7 +26467,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:113 +#: frappe/model/delete_doc.py:153 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." @@ -26402,7 +26513,7 @@ msgstr "Ovo polje će se pojaviti samo ako ovdje definirani naziv polja ima vrij "eval:doc.myfield=='Moja vrijednost'\n" "eval:doc.age>18" -#: frappe/core/doctype/file/file.py:522 +#: frappe/core/doctype/file/file.py:525 msgid "This file is attached to a protected document and cannot be deleted." msgstr "Ova je datoteka priložena zaštićenom dokumentu i ne može se izbrisati." @@ -26437,7 +26548,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:2189 +#: frappe/public/js/frappe/views/reports/query_report.js:2197 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 +26598,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:1037 +#: frappe/public/js/frappe/views/reports/query_report.js:1045 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 +26606,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:853 +#: frappe/public/js/frappe/views/reports/query_report.js:861 msgid "This report was generated {0}." msgstr "Ovaj izvještaj je generisan {0}." @@ -26637,9 +26748,11 @@ 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' +#. Label of a field in the edit-profile Web Form #. 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/core/web_form/edit_profile/edit_profile.json #: frappe/desk/page/setup_wizard/setup_wizard.js:407 #: frappe/website/doctype/web_page_view/web_page_view.json msgid "Time Zone" @@ -26906,7 +27019,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:854 +#: frappe/public/js/frappe/views/reports/query_report.js:862 msgid "To get the updated report, click on {0}." msgstr "Da biste dobili ažurirani izvještaj, kliknite na {0}." @@ -26981,7 +27094,7 @@ msgstr "Uključi Prikaz Mreže" msgid "Toggle Sidebar" msgstr "Prebaci Bočnu Traku" -#: frappe/public/js/frappe/list/list_view.js:1964 +#: frappe/public/js/frappe/list/list_view.js:1966 msgctxt "Button in list view menu" msgid "Toggle Sidebar" msgstr "Prebaci Bočnu Traku" @@ -27107,7 +27220,7 @@ msgstr "Tema" #: frappe/desk/query_report.py:587 #: frappe/public/js/frappe/views/reports/print_grid.html:45 -#: frappe/public/js/frappe/views/reports/query_report.js:1324 +#: frappe/public/js/frappe/views/reports/query_report.js:1332 #: frappe/public/js/frappe/views/reports/report_view.js:1553 msgid "Total" msgstr "Ukupno" @@ -27266,7 +27379,7 @@ msgstr "Prelazi" msgid "Translatable" msgstr "Prevodivo" -#: frappe/public/js/frappe/views/reports/query_report.js:2244 +#: frappe/public/js/frappe/views/reports/query_report.js:2252 msgid "Translate Data" msgstr "Prevedi Podatke" @@ -27625,7 +27738,7 @@ msgstr "Nije moguće poslati poštu jer nedostaje račun e-pošte. Postavite zad msgid "Unable to update event" msgstr "Nije moguće ažurirati događaj" -#: frappe/core/doctype/file/file.py:486 +#: frappe/core/doctype/file/file.py:489 msgid "Unable to write file format for {0}" msgstr "Nije moguće napisati format datoteke za {0}" @@ -27634,7 +27747,7 @@ msgstr "Nije moguće napisati format datoteke za {0}" msgid "Unassign Condition" msgstr "Poništi dodjelu uslova" -#: frappe/app.py:396 +#: frappe/app.py:399 msgid "Uncaught Exception" msgstr "Neuhvaćena Iznimka" @@ -27650,7 +27763,7 @@ msgstr "Poništi" msgid "Undo last action" msgstr "Poništi posljednju radnju" -#: frappe/database/query.py:1495 +#: frappe/database/query.py:1497 msgid "Unescaped quotes in string literal: {0}" msgstr "Neizbjegnuti navodnici u nizu: {0}" @@ -27699,7 +27812,7 @@ msgstr "Nepoznata Kolona: {0}" msgid "Unknown Rounding Method: {}" msgstr "Nepoznata Metoda Zaokruživanja: {}" -#: frappe/auth.py:316 +#: frappe/auth.py:319 msgid "Unknown User" msgstr "Nepoznati Korisnik" @@ -27765,8 +27878,8 @@ msgstr "Parametri Otkazivanja" msgid "Unsubscribed" msgstr "Otkazano" -#: frappe/database/query.py:653 frappe/database/query.py:1387 -#: frappe/database/query.py:1397 +#: frappe/database/query.py:655 frappe/database/query.py:1389 +#: frappe/database/query.py:1399 msgid "Unsupported function or invalid field name: {0}" msgstr "Nepodržana funkcija ili nevažeći naziv polja: {0}" @@ -27800,7 +27913,7 @@ msgstr "Nadolazeći Događaji za Danas" #: 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:427 +#: frappe/public/js/frappe/form/grid_row.js:428 msgid "Update" msgstr "Ažuriraj" @@ -27834,6 +27947,11 @@ msgstr "Redoslijed ažuriranja" msgid "Update Password" msgstr "Ažuriraj Lozinku" +#. Title of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Update Profile" +msgstr "Ažuriraj Profil" + #. Label of the update_series (Section Break) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -28049,11 +28167,7 @@ msgstr "Koristi drugu e-poštu" msgid "Use if the default settings don't seem to detect your data correctly" msgstr "Koristi ako standard postavke ne očitavaju vaše podatke ispravno" -#: frappe/model/db_query.py:436 -msgid "Use of function {0} in field is restricted" -msgstr "Korištenje funkcije {0} u polju je ograničena" - -#: frappe/model/db_query.py:413 +#: frappe/model/db_query.py:411 msgid "Use of sub-query or function is restricted" msgstr "Korištenje podupita ili funkcije je ograničena" @@ -28275,12 +28389,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:1944 +#: frappe/public/js/frappe/views/reports/query_report.js:1952 #: frappe/public/js/frappe/views/reports/report_view.js:1761 msgid "User Permissions" msgstr "Korisničke Dozvole" -#: frappe/public/js/frappe/list/list_view.js:1922 +#: frappe/public/js/frappe/list/list_view.js:1924 msgctxt "Button in list view menu" msgid "User Permissions" msgstr "Korisničke Dozvole" @@ -28424,7 +28538,7 @@ msgstr "Korisnik {0} predstavljen kao {1}" msgid "User {0} is disabled" msgstr "Korisnik {0} je onemogućen" -#: frappe/sessions.py:242 +#: frappe/sessions.py:243 msgid "User {0} is disabled. Please contact your System Manager." msgstr "Korisnik {0} je onemogućen. Molimo kontaktirajte svog upravitelja sistema." @@ -28601,7 +28715,7 @@ msgstr "Vrijednost ne može biti negativna za {0}: {1}" msgid "Value for a check field can be either 0 or 1" msgstr "Vrijednost polja za provjeru može biti 0 ili 1" -#: frappe/custom/doctype/customize_form/customize_form.py:612 +#: frappe/custom/doctype/customize_form/customize_form.py:616 msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters" msgstr "Vrijednost za polje {0} je predugačka u {1}. Dužina bi trebala biti manja od {2} znakova" @@ -28722,7 +28836,7 @@ msgstr "Prikaži Sve" msgid "View Audit Trail" msgstr "Prikaži Trag" -#: frappe/core/doctype/user/user.js:156 +#: frappe/core/doctype/user/user.js:144 msgid "View Doctype Permissions" msgstr "Prikaz Doctype Dozvola" @@ -28734,7 +28848,7 @@ msgstr "Prikaži datoteku" msgid "View Full Log" msgstr "Prikaži Cijeli Zapisnik" -#: frappe/public/js/frappe/views/treeview.js:484 +#: frappe/public/js/frappe/views/treeview.js:486 #: frappe/public/js/frappe/widgets/quick_list_widget.js:258 msgid "View List" msgstr "Prikaži Listu" @@ -28744,7 +28858,7 @@ msgstr "Prikaži Listu" msgid "View Log" msgstr "Prikaži Zapisnik" -#: frappe/core/doctype/user/user.js:147 +#: frappe/core/doctype/user/user.js:135 #: frappe/core/doctype/user_permission/user_permission.js:24 msgid "View Permitted Documents" msgstr "Prikaži Dozvoljene Dokumente" @@ -28860,6 +28974,7 @@ msgid "Warehouse" msgstr "Skladište" #. Option for the 'Style' (Select) field in DocType 'Workflow State' +#: frappe/public/js/frappe/router.js:613 #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Warning" msgstr "Upozorenje" @@ -29505,7 +29620,7 @@ msgstr "Radni Tok je uspješno ažuriran" msgid "Workspace" msgstr "Radni Prostor" -#: frappe/public/js/frappe/router.js:175 +#: frappe/public/js/frappe/router.js:180 msgid "Workspace {0} does not exist" msgstr "Radni Prostor {0} ne postoji" @@ -29627,7 +29742,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:1225 +#: frappe/public/js/frappe/views/reports/query_report.js:1233 msgid "Y Field" msgstr "Y Polje" @@ -29689,7 +29804,7 @@ msgstr "Žuta" #: frappe/public/js/form_builder/utils.js:336 #: frappe/public/js/frappe/form/controls/link.js:498 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1665 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 #: frappe/website/doctype/help_article/templates/help_article.html:25 msgid "Yes" msgstr "Da" @@ -29725,6 +29840,10 @@ msgstr "Dodali ste 1 red u {0}" msgid "You added {0} rows to {1}" msgstr "Dodali ste {0} redaka u {1}" +#: frappe/public/js/frappe/router.js:642 +msgid "You are about to open an external link. To confirm, click the link again." +msgstr "Upravo ćete otvoriti vanjsku poveznicu. Za potvrdu ponovno kliknite poveznicu." + #: frappe/public/js/frappe/dom.js:438 msgid "You are connected to internet." msgstr "Povezani ste na internet." @@ -29768,7 +29887,7 @@ msgstr "Nije vam dozvoljeno uređivati izvještaj." msgid "You are not allowed to export {} doctype" msgstr "Nije vam dozvoljeno da izvezete {} doctype" -#: frappe/public/js/frappe/views/treeview.js:448 +#: frappe/public/js/frappe/views/treeview.js:450 msgid "You are not allowed to print this report" msgstr "Nije vam dozvoljeno da ispišete ovaj izveštaj" @@ -29776,7 +29895,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:605 +#: frappe/website/doctype/web_form/web_form.py:632 msgid "You are not allowed to update this Web Form Document" msgstr "Nije vam dozvoljeno ažurirati ovaj dokument web forme" @@ -29849,11 +29968,11 @@ 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:137 +#: frappe/model/delete_doc.py:177 msgid "You can disable this {0} instead of deleting it." msgstr "Možete onemogućiti ovo {0} umjesto da ga obrišete." -#: frappe/core/doctype/file/file.py:758 +#: frappe/core/doctype/file/file.py:761 msgid "You can increase the limit from System Settings." msgstr "Ograničenje možete povećati u Postavkama Sistema." @@ -29903,11 +30022,11 @@ msgstr "Možete koristiti Prilagodi Formu za postavljanje nivoa na poljima." msgid "You can use wildcard %" msgstr "Možete koristiti zamjenski znak %" -#: frappe/custom/doctype/customize_form/customize_form.py:390 +#: frappe/custom/doctype/customize_form/customize_form.py:394 msgid "You can't set 'Options' for field {0}" msgstr "Ne možete postaviti 'Opcije' za polje {0}" -#: frappe/custom/doctype/customize_form/customize_form.py:394 +#: frappe/custom/doctype/customize_form/customize_form.py:398 msgid "You can't set 'Translatable' for field {0}" msgstr "Ne možete postaviti 'Prevodivo' za polje {0}" @@ -29925,7 +30044,7 @@ msgstr "Otkazali ste ovaj dokument {1}" msgid "You cannot create a dashboard chart from single DocTypes" msgstr "Ne možete stvoriti grafikon nadzorne table iz jednog tipa dokumenata" -#: frappe/custom/doctype/customize_form/customize_form.py:386 +#: frappe/custom/doctype/customize_form/customize_form.py:390 msgid "You cannot unset 'Read Only' for field {0}" msgstr "Ne možete poništiti 'Samo za Čitanje' za polje {0}" @@ -29968,11 +30087,11 @@ 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:381 +#: frappe/app.py:384 msgid "You do not have enough permissions to complete the action" msgstr "Nemate dovoljno dozvola da dovršite radnju" -#: frappe/database/query.py:529 +#: frappe/database/query.py:531 msgid "You do not have permission to access field: {0}" msgstr "Nemate dopuštenje za pristup polju: {0}" @@ -29988,7 +30107,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:808 +#: frappe/website/doctype/web_form/web_form.py:835 msgid "You don't have permission to access the {0} DocType." msgstr "Nemate dozvolu za pristup {0} DocType." @@ -30012,7 +30131,7 @@ msgstr "Imate novu poruku od:" msgid "You have been successfully logged out" msgstr "Uspješno ste odjavljeni" -#: frappe/custom/doctype/customize_form/customize_form.py:245 +#: frappe/custom/doctype/customize_form/customize_form.py:247 msgid "You have hit the row size limit on database table: {0}" msgstr "Dostigli ste ograničenje veličine reda u tabeli baze podataka: {0}" @@ -30040,7 +30159,7 @@ msgstr "Niste vidjeli {0}" msgid "You haven't added any Dashboard Charts or Number Cards yet." msgstr "Još niste dodali Grafikon Nadrzorne Table ili Numeričke Kartice." -#: frappe/public/js/frappe/list/list_view.js:501 +#: frappe/public/js/frappe/list/list_view.js:503 msgid "You haven't created a {0} yet" msgstr "{0} nema u sistemu" @@ -30057,11 +30176,11 @@ 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:804 +#: frappe/website/doctype/web_form/web_form.py:831 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:645 +#: frappe/website/doctype/web_form/web_form.py:672 msgid "You must login to submit this form" msgstr "Morate se prijaviti da pošaljete ovu formu" @@ -30176,6 +30295,10 @@ msgstr "Prestali ste pratiti ovaj dokument" msgid "You viewed this" msgstr "Prikazali ste ovo" +#: frappe/public/js/frappe/router.js:653 +msgid "You will be redirected to:" +msgstr "Bit ćete preusmjereni na:" + #: frappe/core/doctype/user_invitation/user_invitation.py:113 msgid "You've been invited to join {0}" msgstr "Pozvani ste da se pridružite {0}" @@ -30221,7 +30344,7 @@ msgstr "Vaše Prečice" msgid "Your account has been deleted" msgstr "Vaš Račun je izbrisan" -#: frappe/auth.py:514 +#: frappe/auth.py:517 msgid "Your account has been locked and will resume after {0} seconds" msgstr "Vaš račun je zaključan i nastavit će se nakon {0} sekundi" @@ -30287,7 +30410,7 @@ msgstr "Vaš upit je primljen. Odgovorit ćemo vam uskoro. Ako imate dodatnih in msgid "Your report is being generated in the background. You will receive an email on {0} with a download link once it is ready." msgstr "Vaše se izvješće generira u pozadini. Primit ćete e-poruku na {0} s vezom za preuzimanje kada bude spremno." -#: frappe/app.py:374 +#: frappe/app.py:377 msgid "Your session has expired, please login again to continue." msgstr "Vaša sesija je istekla, prijavite se ponovo da nastavite." @@ -30624,7 +30747,7 @@ msgstr "lista" msgid "logged in" msgstr "prijavljen" -#: frappe/website/doctype/web_form/web_form.js:362 +#: frappe/website/doctype/web_form/web_form.js:363 msgid "login_required" msgstr "prijava_potrebna" @@ -30962,7 +31085,7 @@ msgstr "putem Uvoza Podataka" msgid "via Google Meet" msgstr "putem Google Meet" -#: frappe/email/doctype/notification/notification.py:403 +#: frappe/email/doctype/notification/notification.py:405 msgid "via Notification" msgstr "putem Obavijesti" @@ -31072,7 +31195,7 @@ msgstr "{0} Grafikon" msgid "{0} Dashboard" msgstr "{0} Nadzorna Tabla" -#: frappe/public/js/frappe/form/grid_row.js:486 +#: frappe/public/js/frappe/form/grid_row.js:487 #: frappe/public/js/frappe/list/list_settings.js:225 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:178 msgid "{0} Fields" @@ -31123,7 +31246,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:956 +#: frappe/public/js/frappe/views/reports/query_report.js:964 msgid "{0} Reports" msgstr "{0} Izvještaji" @@ -31196,7 +31319,7 @@ msgctxt "Form timeline" msgid "{0} attached {1}" msgstr "{0} priloženo {1}" -#: frappe/core/doctype/system_settings/system_settings.py:152 +#: frappe/core/doctype/system_settings/system_settings.py:153 msgid "{0} can not be more than {1}" msgstr "{0} ne može biti više od {1}" @@ -31273,7 +31396,7 @@ 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 +#: frappe/database/query.py:710 msgid "{0} fields cannot contain backticks (`): {1}" msgstr "{0} polja ne mogu sadržavati povratne crte (`): {1}" @@ -31318,7 +31441,7 @@ msgstr "{0} u redu {1} ne može imati i URL i podređene artikle" msgid "{0} is a mandatory field" msgstr "{0} je obavezno polje" -#: frappe/core/doctype/file/file.py:566 +#: frappe/core/doctype/file/file.py:569 msgid "{0} is a not a valid zip file" msgstr "{0} nije važeća zip datoteka" @@ -31367,7 +31490,7 @@ msgstr "{0} je kao {1}" msgid "{0} is mandatory" msgstr "{0} je obavezan" -#: frappe/database/query.py:485 +#: frappe/database/query.py:487 msgid "{0} is not a child table of {1}" msgstr "{0} nije podređena tablica od {1}" @@ -31387,7 +31510,7 @@ msgstr "{0} nije važeći Kalendar. Preusmjeravanje na Standard Kalendar." msgid "{0} is not a valid Cron expression." msgstr "{0} nije važeći Cron izraz." -#: frappe/public/js/frappe/form/controls/dynamic_link.js:27 +#: frappe/public/js/frappe/form/controls/dynamic_link.js:23 msgid "{0} is not a valid DocType for Dynamic Link" msgstr "{0} nije važeća DocType za dinamičku vezu" @@ -31424,7 +31547,7 @@ msgstr "{0} nije važeće nadređeno polje za {1}" 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}" -#: frappe/core/doctype/file/file.py:546 +#: frappe/core/doctype/file/file.py:549 msgid "{0} is not a zip file" msgstr "{0} nije zip datoteka" @@ -31472,7 +31595,7 @@ msgstr "{0} je postavljeno" msgid "{0} is within {1}" msgstr "{0} je unutar {1}" -#: frappe/public/js/frappe/list/list_view.js:1839 +#: frappe/public/js/frappe/list/list_view.js:1841 msgid "{0} items selected" msgstr "{0} artikala odabrano" @@ -31558,11 +31681,11 @@ msgid "{0} not found" msgstr "{0} nije pronađen" #: frappe/core/doctype/report/report.py:427 -#: frappe/public/js/frappe/list/list_view.js:1211 +#: frappe/public/js/frappe/list/list_view.js:1213 msgid "{0} of {1}" msgstr "{0} od {1}" -#: frappe/public/js/frappe/list/list_view.js:1213 +#: frappe/public/js/frappe/list/list_view.js:1215 msgid "{0} of {1} ({2} rows with children)" msgstr "{0} od {1} ({2} redovi sa potomcima)" @@ -31612,7 +31735,7 @@ msgstr "{0} je uklonio(la) svoju dodjelu." msgid "{0} removed {1} rows from {2}" msgstr "{0} uklonilo je {1} redaka iz {2}" -#: frappe/public/js/frappe/roles_editor.js:62 +#: frappe/public/js/frappe/roles_editor.js:64 msgid "{0} role does not have permission on any doctype" msgstr "{0} uloga nema dozvolu ni za jedan tip dokumenta" @@ -31686,7 +31809,7 @@ msgstr "{0} do {1}" msgid "{0} un-shared this document with {1}" msgstr "{0} je prekinuo(la) dijeljenje ovog dokumenta sa {1}" -#: frappe/custom/doctype/customize_form/customize_form.py:254 +#: frappe/custom/doctype/customize_form/customize_form.py:256 msgid "{0} updated" msgstr "{0} ažurirano" @@ -31746,7 +31869,7 @@ msgstr "{0} {1} je povezan sa sljedećim podesenim dokumentima: {2}" msgid "{0} {1} not found" msgstr "{0} {1} nije pronađeno" -#: frappe/model/delete_doc.py:248 +#: frappe/model/delete_doc.py:288 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}." @@ -31859,7 +31982,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:1283 +#: frappe/public/js/frappe/views/reports/query_report.js:1291 msgid "{0}: {1} vs {2}" msgstr "{0}: {1} naspram {2}" @@ -31895,11 +32018,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:2541 +#: frappe/utils/data.py:2567 msgid "{} Invalid python code on line {}" msgstr "{} Nevažeći python kod na liniji {}" -#: frappe/utils/data.py:2550 +#: frappe/utils/data.py:2576 msgid "{} Possibly invalid python code.
{}" msgstr "{} Možda nevažeći python kod.
{}" @@ -31925,7 +32048,7 @@ msgstr "{} je onemogućen. Može se omogućiti samo ako je označeno {}." msgid "{} is not a valid date string." msgstr "{} nije ispravan datumski niz." -#: frappe/commands/utils.py:562 +#: frappe/commands/utils.py:561 msgid "{} not found in PATH! This is required to access the console." msgstr "{} nije pronađeno u PATH! Ovo je potrebno za pristup konzoli." diff --git a/frappe/locale/hu.po b/frappe/locale/hu.po index cbdf4dabb4..c11086ec6c 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-09-21 09:33+0000\n" -"PO-Revision-Date: 2025-09-21 19:57\n" +"POT-Creation-Date: 2025-10-05 09:33+0000\n" +"PO-Revision-Date: 2025-10-06 22:59\n" "Last-Translator: developers@frappe.io\n" "Language-Team: Hungarian\n" "MIME-Version: 1.0\n" @@ -78,7 +78,7 @@ msgstr "" msgid "'In List View' is not allowed for field {0} of type {1}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:363 +#: frappe/custom/doctype/customize_form/customize_form.py:367 msgid "'In List View' not allowed for type {0} in row {1}" msgstr "" @@ -122,7 +122,7 @@ msgstr "0 - Vázlat; 1 - Elküldve; 2 - Törölve" msgid "0 is highest" msgstr "0 a legnagyobb" -#: frappe/public/js/frappe/form/grid_row.js:892 +#: frappe/public/js/frappe/form/grid_row.js:893 msgid "1 = True & 0 = False" msgstr "" @@ -141,11 +141,11 @@ msgstr "1 nap" msgid "1 Google Calendar Event synced." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:955 +#: frappe/public/js/frappe/views/reports/query_report.js:963 msgid "1 Report" msgstr "" -#: frappe/tests/test_utils.py:739 +#: frappe/tests/test_utils.py:845 msgid "1 day ago" msgstr "1 nappal ezelőtt" @@ -154,17 +154,17 @@ msgid "1 hour" msgstr "1 óra" #: frappe/public/js/frappe/utils/pretty_date.js:52 -#: frappe/tests/test_utils.py:737 +#: frappe/tests/test_utils.py:843 msgid "1 hour ago" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:48 -#: frappe/tests/test_utils.py:735 +#: frappe/tests/test_utils.py:841 msgid "1 minute ago" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:66 -#: frappe/tests/test_utils.py:743 +#: frappe/tests/test_utils.py:849 msgid "1 month ago" msgstr "" @@ -186,37 +186,37 @@ msgctxt "User added row to child table" msgid "1 row to {0}" msgstr "" -#: frappe/tests/test_utils.py:734 +#: frappe/tests/test_utils.py:840 msgid "1 second ago" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:62 -#: frappe/tests/test_utils.py:741 +#: frappe/tests/test_utils.py:847 msgid "1 week ago" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:70 -#: frappe/tests/test_utils.py:745 +#: frappe/tests/test_utils.py:851 msgid "1 year ago" msgstr "" -#: frappe/tests/test_utils.py:738 +#: frappe/tests/test_utils.py:844 msgid "2 hours ago" msgstr "" -#: frappe/tests/test_utils.py:744 +#: frappe/tests/test_utils.py:850 msgid "2 months ago" msgstr "" -#: frappe/tests/test_utils.py:742 +#: frappe/tests/test_utils.py:848 msgid "2 weeks ago" msgstr "" -#: frappe/tests/test_utils.py:746 +#: frappe/tests/test_utils.py:852 msgid "2 years ago" msgstr "" -#: frappe/tests/test_utils.py:736 +#: frappe/tests/test_utils.py:842 msgid "3 minutes ago" msgstr "3 perccel ezelőtt" @@ -232,7 +232,7 @@ msgstr "4 óra" msgid "5 Records" msgstr "" -#: frappe/tests/test_utils.py:740 +#: frappe/tests/test_utils.py:846 msgid "5 days ago" msgstr "5 napja" @@ -268,6 +268,16 @@ msgstr "{0} nem érvényes URL" 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 "
Kérjük, ne frissítse, mert ez összezavarhatja az űrlapot. A tulajdonságok beállításához használja az űrlapnézet és az egyéni mezők testreszabását!
" +#. Introduction text of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "

Request a file containing your personally identifiable information (PII) that is saved on our system. The file will be in JSON format and is sent to you by email. If you would like to have your PII deleted from our system, please make a request to delete data.

" +msgstr "" + +#. Introduction text of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "

Send a request to delete your account and personally identifiable information (PII) that is stored on our system. You will receive an email to verify your request. Once the request is verified we will take care of deleting your PII. If you just want to check what PII we have stored, you can request your data.

" +msgstr "" + #. Content of the 'Help HTML' (HTML) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -714,6 +724,11 @@ msgstr "A DocType nevének betűvel kell kezdődnie, és csak betűkből, számo msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three." msgstr "Egy Frappe Framework példány működhet OAuth-ügyfélként, erőforrásként vagy engedélyezési kiszolgálóként. Ez a DocType mindháromhoz kapcsolódó beállításokat tartalmaz." +#. Success message of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "A download link with your data will be sent to the email address associated with your account." +msgstr "" + #: frappe/custom/doctype/custom_field/custom_field.py:175 msgid "A field with the name {0} already exists in {1}" msgstr "A {0} nevű mező már létezik itt {1}" @@ -840,7 +855,7 @@ msgstr "" #. 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.js:452 frappe/core/doctype/user/user.json +#: frappe/core/doctype/user/user.js:459 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 @@ -859,7 +874,7 @@ msgstr "API Kulcs és Secret szükséges a továbbító kiszolgálóval való in msgid "API Key cannot be regenerated" msgstr "Az API kulcs nem regenerálható" -#: frappe/core/doctype/user/user.js:449 +#: frappe/core/doctype/user/user.js:456 msgid "API Keys" msgstr "" @@ -883,7 +898,7 @@ msgstr "" #. 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.js:459 frappe/core/doctype/user/user.json +#: frappe/core/doctype/user/user.js:466 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" @@ -969,7 +984,7 @@ msgstr "Hozzáférési Token" msgid "Access Token URL" msgstr "Hozzáférési Token URL" -#: frappe/auth.py:491 +#: frappe/auth.py:494 msgid "Access not allowed from this IP Address" msgstr "" @@ -1085,7 +1100,7 @@ msgstr "A {0} művelet nem sikerült a következőn: {1} {2}. Tekintse meg {3}" #: 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:842 +#: frappe/public/js/frappe/views/reports/query_report.js:850 msgid "Actions" msgstr "" @@ -1142,7 +1157,7 @@ msgstr "" #: 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:501 +#: frappe/public/js/frappe/form/grid_row.js:502 #: 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 @@ -1153,7 +1168,7 @@ msgstr "" msgid "Add" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:454 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Add / Remove Columns" msgstr "" @@ -1198,8 +1213,8 @@ msgid "Add Child" msgstr "" #: frappe/public/js/frappe/views/kanban/kanban_board.html:4 -#: frappe/public/js/frappe/views/reports/query_report.js:1832 -#: frappe/public/js/frappe/views/reports/query_report.js:1835 +#: frappe/public/js/frappe/views/reports/query_report.js:1840 +#: frappe/public/js/frappe/views/reports/query_report.js:1843 #: frappe/public/js/frappe/views/reports/report_view.js:360 #: frappe/public/js/frappe/views/reports/report_view.js:385 #: frappe/public/js/print_format_builder/Field.vue:112 @@ -1293,7 +1308,7 @@ msgstr "" msgid "Add Tags" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2149 +#: frappe/public/js/frappe/list/list_view.js:2151 msgctxt "Button in list view actions menu" msgid "Add Tags" msgstr "" @@ -1674,11 +1689,11 @@ msgstr "Riasztás" msgid "Alerts and Notifications" msgstr "" -#: frappe/database/query.py:1608 +#: frappe/database/query.py:1610 msgid "Alias cannot be a SQL keyword: {0}" msgstr "" -#: frappe/database/query.py:1533 +#: frappe/database/query.py:1535 msgid "Alias must be a string" msgstr "" @@ -1804,7 +1819,7 @@ msgstr "" #. Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Allow Consecutive Login Attempts" -msgstr "" +msgstr "Egymást Követő Bejelentkezési Kísérletek Engedélyezése" #: frappe/integrations/doctype/google_calendar/google_calendar.py:79 msgid "Allow Google Calendar Access" @@ -2123,6 +2138,12 @@ msgstr "" #. Label of the login_id (Data) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Alternative Email ID" +msgstr "Alternatív Email Azonosító" + +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Always" msgstr "" #. Label of the always_bcc (Data) field in DocType 'Email Account' @@ -2145,7 +2166,7 @@ msgstr "Mindig ezt az e-mail címet használja feladó címként" #. 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Always use this name as sender name" -msgstr "" +msgstr "Mindig ezt az nevet használja feladó neveként" #. Label of the amend (Check) field in DocType 'Custom DocPerm' #. Label of the amend (Check) field in DocType 'DocPerm' @@ -2154,7 +2175,7 @@ msgstr "" #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/user_document_type/user_document_type.json msgid "Amend" -msgstr "" +msgstr "Módosítás" #. Option for the 'Action' (Select) field in DocType 'Amended Document Naming #. Settings' @@ -2163,7 +2184,7 @@ 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 "Módosítás Számláló" #. Name of a DocType #: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json @@ -2174,7 +2195,7 @@ msgstr "" #. 'Document Naming Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Amended Documents" -msgstr "" +msgstr "Módosított Dokumentumok" #. Label of the amended_from (Link) field in DocType 'Personal Data Download #. Request' @@ -2191,7 +2212,7 @@ msgstr "" #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Amendment Naming Override" -msgstr "" +msgstr "Módosítás Elnevezés Felülírása" #: frappe/model/document.py:551 msgid "Amendment Not Allowed" @@ -2201,6 +2222,11 @@ msgstr "Módosítás nem engedélyezett" msgid "Amendment naming rules updated." msgstr "" +#. Success message of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "An email to verify your request has been sent to your email address. Please verify your request to complete the process." +msgstr "" + #: frappe/public/js/frappe/ui/toolbar/toolbar.js:354 msgid "An error occurred while setting Session Defaults" msgstr "" @@ -2208,7 +2234,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 "" +msgstr "Egy ikon fájlt .ico kiterjesztéssel. Legyen 16 x 16 px. favicon generátor felhasználásával előállított. [favicon-generator.org]" #: frappe/templates/includes/oauth_confirmation.html:38 msgid "An unexpected error occurred while authorizing {}." @@ -2218,7 +2244,7 @@ msgstr "" #. Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Analytics" -msgstr "" +msgstr "Analitika" #: frappe/public/js/frappe/ui/filters/filter.js:35 msgid "Ancestors Of" @@ -2228,13 +2254,13 @@ msgstr "" #. Settings' #: frappe/core/doctype/navbar_settings/navbar_settings.json msgid "Announcement Widget" -msgstr "" +msgstr "Közlemény Widget" #. Label of the announcements_section (Section Break) field in DocType 'Navbar #. Settings' #: frappe/core/doctype/navbar_settings/navbar_settings.json msgid "Announcements" -msgstr "" +msgstr "Közlemények" #. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' #: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json @@ -2245,12 +2271,12 @@ msgstr "" #. Deletion Request' #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json msgid "Anonymization Matrix" -msgstr "" +msgstr "Anonimizálási Mátrix" #. Label of the anonymous (Check) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "Anonymous responses" -msgstr "" +msgstr "Névtelen válaszok" #: frappe/public/js/frappe/request.js:189 msgid "Another transaction is blocking this one. Please try again in a few seconds." @@ -2263,7 +2289,7 @@ msgstr "" #. 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 "" +msgstr "Bármely karakterlánc-alapú nyomtatónyelv használható. A nyers parancsok írásához a nyomtató anyanyelvének ismerete szükséges, amelyet a nyomtató gyártója biztosít. A natív parancsok írásáról lásd a nyomtató gyártója által kiadott fejlesztői útmutatót. Ezeket a parancsokat a szerver oldalon a Jinja sablon nyelv használatával jelenítik meg." #: 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." @@ -2383,7 +2409,7 @@ msgstr "Alkalmazva" msgid "Apply" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2134 +#: frappe/public/js/frappe/list/list_view.js:2136 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" msgstr "" @@ -2468,7 +2494,7 @@ msgstr "" msgid "Are you sure you want to cancel the invitation?" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2113 +#: frappe/public/js/frappe/list/list_view.js:2115 msgid "Are you sure you want to clear the assignments?" msgstr "" @@ -2504,7 +2530,7 @@ msgstr "" msgid "Are you sure you want to discard the changes?" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:969 +#: frappe/public/js/frappe/views/reports/query_report.js:977 msgid "Are you sure you want to generate a new report?" msgstr "" @@ -2512,7 +2538,7 @@ msgstr "" msgid "Are you sure you want to merge {0} with {1}?" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:108 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:118 msgid "Are you sure you want to proceed?" msgstr "" @@ -2567,6 +2593,12 @@ msgstr "" msgid "As per your request, your account and data on {0} associated with email {1} has been permanently deleted" msgstr "" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Ask" +msgstr "" + #. Label of the assign_condition (Code) field in DocType 'Assignment Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Assign Condition" @@ -2576,7 +2608,7 @@ msgstr "Feltétel Hozzárendelése" msgid "Assign To" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2095 +#: frappe/public/js/frappe/list/list_view.js:2097 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "" @@ -2719,7 +2751,7 @@ msgstr "" msgid "Asynchronous" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:696 +#: frappe/public/js/frappe/form/grid_row.js:697 msgid "At least one column is required to show in the grid." msgstr "" @@ -2792,12 +2824,12 @@ msgstr "DocType-hoz Csatolás" #. Label of the attached_to_field (Data) field in DocType 'File' #: frappe/core/doctype/file/file.json msgid "Attached To Field" -msgstr "" +msgstr "Mezőhöz Csatolt" #. Label of the attached_to_name (Data) field in DocType 'File' #: frappe/core/doctype/file/file.json msgid "Attached To Name" -msgstr "" +msgstr "Névhez Csatolt" #: frappe/core/doctype/file/file.py:152 msgid "Attached To Name must be a string or an integer" @@ -2806,14 +2838,14 @@ msgstr "" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' #: frappe/core/doctype/comment/comment.json msgid "Attachment" -msgstr "" +msgstr "Csatolmány" #. 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 "" +msgstr "Csatolmány Korlát (MB)" #: frappe/core/doctype/file/file.py:338 #: frappe/public/js/frappe/form/sidebar/attachments.js:36 @@ -2828,7 +2860,7 @@ msgstr "" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' #: frappe/core/doctype/comment/comment.json msgid "Attachment Removed" -msgstr "" +msgstr "Csatolmány Eltávolítva" #. Label of the attachments (Code) field in DocType 'Email Queue' #: frappe/email/doctype/email_queue/email_queue.json @@ -3699,7 +3731,7 @@ msgstr "" msgid "Bulk Edit" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1189 +#: frappe/public/js/frappe/form/grid.js:1190 msgid "Bulk Edit {0}" msgstr "" @@ -3991,7 +4023,7 @@ msgstr "" #. 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/doctype/doctype_list.js:131 #: frappe/core/doctype/user_document_type/user_document_type.json #: frappe/core/doctype/user_invitation/user_invitation.js:17 #: frappe/email/doctype/notification/notification.json @@ -3999,7 +4031,7 @@ msgstr "" msgid "Cancel" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2204 +#: frappe/public/js/frappe/list/list_view.js:2206 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "" @@ -4017,7 +4049,7 @@ msgstr "" msgid "Cancel All Documents" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2209 +#: frappe/public/js/frappe/list/list_view.js:2211 msgctxt "Title of confirmation dialog" msgid "Cancel {0} documents?" msgstr "" @@ -4070,7 +4102,7 @@ msgstr "" msgid "Cannot Update After Submit" msgstr "" -#: frappe/core/doctype/file/file.py:643 +#: frappe/core/doctype/file/file.py:646 msgid "Cannot access file path {0}" msgstr "" @@ -4118,7 +4150,7 @@ msgstr "" msgid "Cannot delete Home and Attachments folders" msgstr "" -#: frappe/model/delete_doc.py:379 +#: frappe/model/delete_doc.py:419 msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}" msgstr "" @@ -4198,7 +4230,7 @@ msgstr "" msgid "Cannot find file {} on disk" msgstr "" -#: frappe/core/doctype/file/file.py:583 +#: frappe/core/doctype/file/file.py:586 msgid "Cannot get file contents of a Folder" msgstr "" @@ -4206,7 +4238,7 @@ msgstr "" msgid "Cannot have multiple printers mapped to a single print format." msgstr "" -#: frappe/public/js/frappe/form/grid.js:1133 +#: frappe/public/js/frappe/form/grid.js:1134 msgid "Cannot import table with more than 5000 rows." msgstr "" @@ -4222,7 +4254,7 @@ msgstr "" msgid "Cannot match column {0} with any field" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:175 +#: frappe/public/js/frappe/form/grid_row.js:176 msgid "Cannot move row" msgstr "" @@ -4251,11 +4283,11 @@ msgstr "" msgid "Cannot update {0}" msgstr "" -#: frappe/model/db_query.py:1130 +#: frappe/model/db_query.py:1136 msgid "Cannot use sub-query here." msgstr "" -#: frappe/model/db_query.py:1162 +#: frappe/model/db_query.py:1168 msgid "Cannot use {0} in order/group by" msgstr "" @@ -4528,11 +4560,11 @@ msgstr "" #. Description of the 'Is Child Table' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:52 +#: frappe/core/doctype/doctype/doctype_list.js:53 msgid "Child Tables are shown as a Grid in other DocTypes" msgstr "" -#: frappe/database/query.py:660 +#: frappe/database/query.py:662 msgid "Child query fields for '{0}' must be a list or tuple." msgstr "" @@ -4588,7 +4620,7 @@ msgstr "" msgid "Clear All" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2110 +#: frappe/public/js/frappe/list/list_view.js:2112 msgctxt "Button in list view actions menu" msgid "Clear Assignment" msgstr "" @@ -4682,7 +4714,7 @@ msgstr "" msgid "Click to Set Filters" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:739 +#: frappe/public/js/frappe/list/list_view.js:741 msgid "Click to sort by {0}" msgstr "" @@ -4860,7 +4892,7 @@ msgctxt "Shrink code field." msgid "Collapse" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2113 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 #: frappe/public/js/frappe/views/treeview.js:123 msgid "Collapse All" msgstr "" @@ -4915,7 +4947,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:1233 +#: frappe/public/js/frappe/views/reports/query_report.js:1241 #: frappe/public/js/frappe/widgets/widget_dialog.js:546 #: frappe/public/js/frappe/widgets/widget_dialog.js:694 #: frappe/website/doctype/color/color.json @@ -4971,11 +5003,11 @@ msgstr "" msgid "Column Name cannot be empty" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:454 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Column Width" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:661 +#: frappe/public/js/frappe/form/grid_row.js:662 msgid "Column width cannot be zero." msgstr "" @@ -5002,7 +5034,7 @@ msgstr "" msgid "Columns / Fields" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:397 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:411 msgid "Columns based on" msgstr "" @@ -5266,7 +5298,7 @@ msgstr "" msgid "Configure Chart" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:406 +#: frappe/public/js/frappe/form/grid_row.js:407 msgid "Configure Columns" msgstr "" @@ -5291,7 +5323,7 @@ msgstr "" msgid "Configure various aspects of how document naming works like naming series, current counter." msgstr "" -#: frappe/core/doctype/user/user.js:412 frappe/public/js/frappe/dom.js:345 +#: frappe/core/doctype/user/user.js:400 frappe/public/js/frappe/dom.js:345 #: frappe/www/update-password.html:66 msgid "Confirm" msgstr "" @@ -5310,7 +5342,7 @@ msgstr "Hozzáférés megerősítése" msgid "Confirm Deletion of Account" msgstr "" -#: frappe/core/doctype/user/user.js:196 +#: frappe/core/doctype/user/user.js:184 msgid "Confirm New Password" msgstr "" @@ -5563,7 +5595,7 @@ msgstr "" msgid "Copy to Clipboard" msgstr "" -#: frappe/core/doctype/user/user.js:480 +#: frappe/core/doctype/user/user.js:487 msgid "Copy token to clipboard" msgstr "" @@ -5572,7 +5604,7 @@ msgstr "" msgid "Copyright" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:123 +#: frappe/custom/doctype/customize_form/customize_form.py:125 msgid "Core DocTypes cannot be customized." msgstr "" @@ -5596,7 +5628,7 @@ msgstr "" msgid "Could not map column {0} to field {1}" msgstr "" -#: frappe/database/query.py:564 +#: frappe/database/query.py:566 msgid "Could not parse field: {0}" msgstr "" @@ -5688,13 +5720,13 @@ 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:1265 +#: frappe/public/js/frappe/views/reports/query_report.js:1273 #: frappe/public/js/frappe/views/workspace/workspace.js:469 #: frappe/workflow/page/workflow_builder/workflow_builder.js:46 msgid "Create" msgstr "" -#: frappe/core/doctype/doctype/doctype_list.js:102 +#: frappe/core/doctype/doctype/doctype_list.js:103 msgid "Create & Continue" msgstr "" @@ -5708,7 +5740,7 @@ msgid "Create Card" msgstr "" #: frappe/public/js/frappe/views/reports/query_report.js:285 -#: frappe/public/js/frappe/views/reports/query_report.js:1192 +#: frappe/public/js/frappe/views/reports/query_report.js:1200 msgid "Create Chart" msgstr "" @@ -5742,12 +5774,12 @@ msgstr "" msgid "Create New" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:512 +#: frappe/public/js/frappe/list/list_view.js:514 msgctxt "Create a new document from list view" msgid "Create New" msgstr "" -#: frappe/core/doctype/doctype/doctype_list.js:100 +#: frappe/core/doctype/doctype/doctype_list.js:101 msgid "Create New DocType" msgstr "" @@ -5755,7 +5787,7 @@ msgstr "" msgid "Create New Kanban Board" msgstr "" -#: frappe/core/doctype/user/user.js:276 +#: frappe/core/doctype/user/user.js:264 msgid "Create User Email" msgstr "" @@ -5778,8 +5810,8 @@ msgstr "" #: frappe/public/js/frappe/form/controls/link.js:315 #: frappe/public/js/frappe/form/controls/link.js:317 #: frappe/public/js/frappe/form/link_selector.js:139 -#: frappe/public/js/frappe/list/list_view.js:504 -#: frappe/public/js/frappe/web_form/web_form_list.js:225 +#: frappe/public/js/frappe/list/list_view.js:506 +#: frappe/public/js/frappe/web_form/web_form_list.js:226 msgid "Create a new {0}" msgstr "" @@ -5795,7 +5827,7 @@ msgstr "" msgid "Create or Edit Workflow" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:507 +#: frappe/public/js/frappe/list/list_view.js:509 msgid "Create your first {0}" msgstr "" @@ -6142,7 +6174,7 @@ 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/core/doctype/doctype/doctype_list.js:83 #: frappe/website/doctype/website_theme/website_theme.json msgid "Custom?" msgstr "" @@ -6177,7 +6209,7 @@ msgstr "" msgid "Customize" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1947 +#: frappe/public/js/frappe/list/list_view.js:1949 msgctxt "Button in list view menu" msgid "Customize" msgstr "" @@ -6196,7 +6228,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:343 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 msgid "Customize Form" msgstr "" @@ -6427,7 +6459,7 @@ msgstr "" msgid "Data Import Template" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:615 +#: frappe/custom/doctype/customize_form/customize_form.py:619 msgid "Data Too Long" msgstr "" @@ -6458,7 +6490,7 @@ msgstr "" msgid "Database Storage Usage By Tables" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:249 +#: frappe/custom/doctype/customize_form/customize_form.py:251 msgid "Database Table Row Size Limit" msgstr "" @@ -6828,13 +6860,13 @@ msgstr "" #: frappe/public/js/frappe/form/toolbar.js:464 #: frappe/public/js/frappe/views/reports/report_view.js:1749 #: frappe/public/js/frappe/views/treeview.js:329 -#: frappe/public/js/frappe/web_form/web_form_list.js:282 +#: frappe/public/js/frappe/web_form/web_form_list.js:283 #: frappe/templates/discussions/reply_card.html:35 #: frappe/templates/discussions/reply_section.html:29 msgid "Delete" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2172 +#: frappe/public/js/frappe/list/list_view.js:2174 msgctxt "Button in list view actions menu" msgid "Delete" msgstr "" @@ -6867,7 +6899,7 @@ msgstr "" msgid "Delete Data" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:106 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:116 msgid "Delete Kanban Board" msgstr "" @@ -6881,7 +6913,7 @@ msgctxt "Title of confirmation dialog" msgid "Delete Tab" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:936 +#: frappe/public/js/frappe/views/reports/query_report.js:944 msgid "Delete and Generate New" msgstr "" @@ -6923,12 +6955,12 @@ msgstr "" msgid "Delete this record to allow sending to this email address" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2177 +#: frappe/public/js/frappe/list/list_view.js:2179 msgctxt "Title of confirmation dialog" msgid "Delete {0} item permanently?" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2183 +#: frappe/public/js/frappe/list/list_view.js:2185 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "" @@ -7425,10 +7457,14 @@ msgstr "Ne hozzon létre új felhasználót" msgid "Do not create new user if user with email does not exist in the system" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1194 +#: frappe/public/js/frappe/form/grid.js:1195 msgid "Do not edit headers which are preset in the template" msgstr "" +#: frappe/public/js/frappe/router.js:624 +msgid "Do not warn me again about {0}" +msgstr "" + #: frappe/core/doctype/system_settings/system_settings.js:71 msgid "Do you still want to proceed?" msgstr "" @@ -7852,7 +7888,7 @@ msgstr "" #: 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/public/js/frappe/roles_editor.js:68 #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json #: frappe/workflow/doctype/workflow/workflow.json msgid "Document Type" @@ -7903,15 +7939,15 @@ msgstr "" msgid "Document follow is not enabled for this user." msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1300 +#: frappe/public/js/frappe/list/list_view.js:1302 msgid "Document has been cancelled" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1299 +#: frappe/public/js/frappe/list/list_view.js:1301 msgid "Document has been submitted" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1298 +#: frappe/public/js/frappe/list/list_view.js:1300 msgid "Document is in draft state" msgstr "" @@ -8053,7 +8089,7 @@ msgstr "" msgid "Double click to edit label" msgstr "" -#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:467 +#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:474 #: frappe/email/doctype/auto_email_report/auto_email_report.js:8 #: frappe/public/js/frappe/form/grid.js:66 msgid "Download" @@ -8086,7 +8122,7 @@ msgstr "" msgid "Download PDF" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:832 +#: frappe/public/js/frappe/views/reports/query_report.js:840 msgid "Download Report" msgstr "" @@ -8286,8 +8322,8 @@ msgstr "" #: 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:880 -#: frappe/public/js/frappe/views/reports/query_report.js:1783 +#: frappe/public/js/frappe/views/reports/query_report.js:888 +#: frappe/public/js/frappe/views/reports/query_report.js:1791 #: 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 @@ -8299,7 +8335,7 @@ msgstr "" msgid "Edit" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2258 +#: frappe/public/js/frappe/list/list_view.js:2260 msgctxt "Button in list view actions menu" msgid "Edit" msgstr "" @@ -8309,7 +8345,7 @@ msgctxt "Button in web form" msgid "Edit" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:349 +#: frappe/public/js/frappe/form/grid_row.js:350 msgctxt "Edit grid row" msgid "Edit" msgstr "" @@ -8338,7 +8374,7 @@ msgstr "" msgid "Edit DocType" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1974 +#: frappe/public/js/frappe/list/list_view.js:1976 msgctxt "Button in list view menu" msgid "Edit DocType" msgstr "" @@ -8458,7 +8494,7 @@ msgstr "" #. 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/core/doctype/doctype/doctype_list.js:58 #: frappe/custom/doctype/customize_form/customize_form.json msgid "Editable Grid" msgstr "" @@ -8503,6 +8539,8 @@ msgstr "" #. 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' +#. Label of a field in the request-data Web Form +#. Label of a field in the request-to-delete-data Web Form #: frappe/automation/workspace/tools/tools.json #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/custom_docperm/custom_docperm.json @@ -8521,6 +8559,8 @@ msgstr "" #: 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/website/web_form/request_data/request_data.json +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json #: frappe/www/login.html:8 frappe/www/login.py:104 msgid "Email" msgstr "" @@ -8752,7 +8792,7 @@ msgstr "" msgid "Email has been moved to trash" msgstr "" -#: frappe/core/doctype/user/user.js:278 +#: frappe/core/doctype/user/user.js:266 msgid "Email is mandatory to create User Email" msgstr "" @@ -8795,7 +8835,7 @@ msgstr "" msgid "Embed code copied" msgstr "" -#: frappe/database/query.py:1537 +#: frappe/database/query.py:1539 msgid "Empty alias is not allowed" msgstr "" @@ -8803,7 +8843,7 @@ msgstr "" msgid "Empty column" msgstr "" -#: frappe/database/query.py:1455 +#: frappe/database/query.py:1457 msgid "Empty string arguments are not allowed" msgstr "" @@ -9259,9 +9299,9 @@ msgstr "" msgid "Error in Header/Footer Script" msgstr "" -#: frappe/email/doctype/notification/notification.py:640 -#: frappe/email/doctype/notification/notification.py:780 -#: frappe/email/doctype/notification/notification.py:786 +#: frappe/email/doctype/notification/notification.py:642 +#: frappe/email/doctype/notification/notification.py:782 +#: frappe/email/doctype/notification/notification.py:788 msgid "Error in Notification" msgstr "" @@ -9281,7 +9321,7 @@ msgstr "" msgid "Error while connecting to email account {0}" msgstr "" -#: frappe/email/doctype/notification/notification.py:777 +#: frappe/email/doctype/notification/notification.py:779 msgid "Error while evaluating Notification {0}. Please fix your template." msgstr "" @@ -9442,7 +9482,7 @@ msgstr "" msgid "Executing..." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2132 +#: frappe/public/js/frappe/views/reports/query_report.js:2140 msgid "Execution Time: {0} sec" msgstr "" @@ -9468,12 +9508,12 @@ msgctxt "Enlarge code field." msgid "Expand" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2113 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 #: frappe/public/js/frappe/views/treeview.js:133 msgid "Expand All" msgstr "" -#: frappe/database/query.py:352 +#: frappe/database/query.py:354 msgid "Expected 'and' or 'or' operator, found: {0}" msgstr "" @@ -9531,13 +9571,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:1820 +#: frappe/public/js/frappe/views/reports/query_report.js:1828 #: frappe/public/js/frappe/views/reports/report_view.js:1629 #: frappe/public/js/frappe/widgets/chart_widget.js:315 msgid "Export" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2280 +#: frappe/public/js/frappe/list/list_view.js:2282 msgctxt "Button in list view actions menu" msgid "Export" msgstr "" @@ -9730,7 +9770,7 @@ msgstr "" msgid "Failed to connect to server" msgstr "" -#: frappe/auth.py:698 +#: frappe/auth.py:701 msgid "Failed to decode token, please provide a valid base64-encoded token." msgstr "" @@ -9894,7 +9934,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:236 -#: frappe/public/js/frappe/views/reports/query_report.js:1879 +#: frappe/public/js/frappe/views/reports/query_report.js:1887 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_form_list_column/web_form_list_column.json msgid "Field" @@ -9977,7 +10017,7 @@ msgstr "" msgid "Field {0} not found." msgstr "" -#: frappe/email/doctype/notification/notification.py:545 +#: frappe/email/doctype/notification/notification.py:547 msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link" msgstr "" @@ -9995,7 +10035,7 @@ msgstr "" #: 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:454 +#: frappe/public/js/frappe/form/grid_row.js:455 #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Fieldname" msgstr "" @@ -10076,7 +10116,7 @@ msgstr "" msgid "Fields must be a list or tuple when as_list is enabled" msgstr "" -#: frappe/database/query.py:611 +#: frappe/database/query.py:613 msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function" msgstr "" @@ -10104,7 +10144,7 @@ msgstr "" msgid "Fieldtype cannot be changed from {0} to {1}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:589 +#: frappe/custom/doctype/customize_form/customize_form.py:593 msgid "Fieldtype cannot be changed from {0} to {1} in row {2}" msgstr "" @@ -10170,7 +10210,7 @@ msgstr "" msgid "File backup is ready" msgstr "" -#: frappe/core/doctype/file/file.py:646 +#: frappe/core/doctype/file/file.py:649 msgid "File name cannot have {0}" msgstr "" @@ -10178,7 +10218,7 @@ msgstr "" msgid "File not attached" msgstr "" -#: frappe/core/doctype/file/file.py:756 frappe/public/js/frappe/request.js:200 +#: frappe/core/doctype/file/file.py:759 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 "" @@ -10191,7 +10231,7 @@ msgstr "" msgid "File type of {0} is not allowed" msgstr "" -#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:448 +#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:451 msgid "File {0} does not exist" msgstr "" @@ -10245,11 +10285,11 @@ msgstr "" msgid "Filter Values" msgstr "" -#: frappe/database/query.py:358 +#: frappe/database/query.py:360 msgid "Filter condition missing after operator: {0}" msgstr "" -#: frappe/database/query.py:425 +#: frappe/database/query.py:427 msgid "Filter fields cannot contain backticks (`)." msgstr "" @@ -10326,7 +10366,7 @@ msgstr "" msgid "Filters applied for {0}" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:188 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:202 msgid "Filters saved" msgstr "" @@ -10374,9 +10414,12 @@ msgstr "" #. Label of the first_name (Data) field in DocType 'Contact' #. Label of the first_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json #: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:44 -#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:15 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:15 msgid "First Name" msgstr "" @@ -10457,7 +10500,7 @@ msgstr "" msgid "Folder name should not include '/' (slash)" msgstr "" -#: frappe/core/doctype/file/file.py:494 +#: frappe/core/doctype/file/file.py:497 msgid "Folder {0} is not empty" msgstr "" @@ -10660,7 +10703,7 @@ msgstr "" msgid "For Value" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2129 +#: frappe/public/js/frappe/views/reports/query_report.js:2137 #: frappe/public/js/frappe/views/reports/report_view.js:108 msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)." msgstr "" @@ -10945,7 +10988,7 @@ msgstr "" msgid "From Date Field" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1840 +#: frappe/public/js/frappe/views/reports/query_report.js:1848 msgid "From Document Type" msgstr "" @@ -11007,12 +11050,12 @@ msgstr "" msgid "Function {0} is not whitelisted." msgstr "" -#: frappe/database/query.py:1417 +#: frappe/database/query.py:1419 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" +msgid "Further sub-groups can only be created under records marked as 'Group'" msgstr "" #: frappe/core/doctype/communication/communication.js:291 @@ -11072,7 +11115,7 @@ msgstr "" msgid "Generate Keys" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:874 +#: frappe/public/js/frappe/views/reports/query_report.js:882 msgid "Generate New Report" msgstr "" @@ -11488,14 +11531,10 @@ msgstr "" msgid "Group By field is required to create a dashboard chart" msgstr "" -#: frappe/database/query.py:750 +#: frappe/database/query.py:752 msgid "Group By must be a string" msgstr "" -#: frappe/public/js/frappe/views/treeview.js:418 -msgid "Group Node" -msgstr "" - #. Label of the ldap_group_objectclass (Data) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Group Object Class" @@ -11825,7 +11864,7 @@ msgstr "" msgid "Hidden Fields" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1642 +#: frappe/public/js/frappe/views/reports/query_report.js:1650 msgid "Hidden columns include: {0}" msgstr "" @@ -11937,7 +11976,7 @@ msgstr "" msgid "Hide Standard Menu" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1849 +#: frappe/public/js/frappe/list/list_view.js:1851 msgid "Hide Tags" msgstr "" @@ -12196,7 +12235,7 @@ msgstr "" #: frappe/core/doctype/doctype/doctype.py:1777 #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45 -#: frappe/public/js/frappe/roles_editor.js:66 +#: frappe/public/js/frappe/roles_editor.js:68 msgid "If Owner" msgstr "" @@ -12424,8 +12463,8 @@ msgstr "" msgid "Illegal Document Status for {0}" msgstr "" -#: frappe/model/db_query.py:453 frappe/model/db_query.py:456 -#: frappe/model/db_query.py:1121 +#: frappe/model/db_query.py:454 frappe/model/db_query.py:457 +#: frappe/model/db_query.py:1122 msgid "Illegal SQL Query" msgstr "" @@ -12512,11 +12551,11 @@ msgstr "" #. Option for the 'Operation' (Select) field in DocType 'Activity Log' #: frappe/core/doctype/activity_log/activity_log.json -#: frappe/core/doctype/user/user.js:384 +#: frappe/core/doctype/user/user.js:372 msgid "Impersonate" msgstr "" -#: frappe/core/doctype/user/user.js:411 +#: frappe/core/doctype/user/user.js:399 msgid "Impersonate as {0}" msgstr "" @@ -12546,7 +12585,7 @@ msgstr "" msgid "Import" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1911 +#: frappe/public/js/frappe/list/list_view.js:1913 msgctxt "Button in list view menu" msgid "Import" msgstr "" @@ -12775,15 +12814,15 @@ msgid "Include Web View Link in Email" msgstr "" #: frappe/public/js/frappe/form/print_utils.js:59 -#: frappe/public/js/frappe/views/reports/query_report.js:1620 +#: frappe/public/js/frappe/views/reports/query_report.js:1628 msgid "Include filters" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1640 +#: frappe/public/js/frappe/views/reports/query_report.js:1648 msgid "Include hidden columns" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1612 +#: frappe/public/js/frappe/views/reports/query_report.js:1620 msgid "Include indentation" msgstr "" @@ -12830,7 +12869,7 @@ msgstr "" msgid "Incomplete Virtual Doctype Implementation" msgstr "" -#: frappe/auth.py:255 +#: frappe/auth.py:258 msgid "Incomplete login details" msgstr "" @@ -12941,7 +12980,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:1885 +#: frappe/public/js/frappe/views/reports/query_report.js:1893 msgid "Insert After" msgstr "" @@ -13014,7 +13053,7 @@ msgstr "" msgid "Insufficient Permission Level for {0}" msgstr "" -#: frappe/database/query.py:806 frappe/database/query.py:1052 +#: frappe/database/query.py:808 frappe/database/query.py:1054 msgid "Insufficient Permission for {0}" msgstr "" @@ -13130,7 +13169,7 @@ msgid "Invalid" msgstr "" #: frappe/public/js/form_builder/utils.js:221 -#: frappe/public/js/frappe/form/grid_row.js:849 +#: frappe/public/js/frappe/form/grid_row.js:850 #: frappe/public/js/frappe/form/layout.js:810 #: frappe/public/js/frappe/views/reports/report_view.js:721 msgid "Invalid \"depends_on\" expression" @@ -13188,8 +13227,8 @@ 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 +#: frappe/database/query.py:429 frappe/database/query.py:456 +#: frappe/database/query.py:466 frappe/database/query.py:489 msgid "Invalid Filter" msgstr "" @@ -13261,7 +13300,7 @@ msgstr "" msgid "Invalid Phone Number" msgstr "" -#: frappe/auth.py:94 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 +#: frappe/auth.py:97 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 #: frappe/www/login.py:128 msgid "Invalid Request" msgstr "" @@ -13291,7 +13330,7 @@ msgstr "" #: frappe/public/js/frappe/ui/field_group.js:137 msgid "Invalid Values" -msgstr "" +msgstr "Érvénytelen Értékek" #: frappe/integrations/doctype/webhook/webhook.py:120 msgid "Invalid Webhook Secret" @@ -13301,7 +13340,7 @@ msgstr "" msgid "Invalid aggregate function" msgstr "" -#: frappe/database/query.py:1542 +#: frappe/database/query.py:1544 msgid "Invalid alias format: {0}. Alias must be a simple identifier." msgstr "" @@ -13309,19 +13348,19 @@ msgstr "" msgid "Invalid app" msgstr "" -#: frappe/database/query.py:1468 +#: frappe/database/query.py:1470 msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed." msgstr "" -#: frappe/database/query.py:1444 +#: frappe/database/query.py:1446 msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed." msgstr "" -#: frappe/database/query.py:460 +#: frappe/database/query.py:462 msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed." msgstr "" -#: frappe/database/query.py:575 +#: frappe/database/query.py:577 msgid "Invalid characters in table name: {0}" msgstr "" @@ -13329,11 +13368,11 @@ msgstr "" msgid "Invalid column" msgstr "" -#: frappe/database/query.py:381 +#: frappe/database/query.py:383 msgid "Invalid condition type in nested filters: {0}" msgstr "" -#: frappe/database/query.py:787 +#: frappe/database/query.py:789 msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'." msgstr "" @@ -13349,23 +13388,23 @@ msgstr "" msgid "Invalid expression set in filter {0} ({1})" msgstr "" -#: frappe/database/query.py:1301 +#: frappe/database/query.py:1303 msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'." msgstr "" -#: frappe/database/query.py:734 +#: frappe/database/query.py:736 msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'." msgstr "" -#: frappe/database/query.py:1620 +#: frappe/database/query.py:1622 msgid "Invalid field name in function: {0}. Only simple field names are allowed." msgstr "" -#: frappe/utils/data.py:2215 +#: frappe/utils/data.py:2241 msgid "Invalid field name {0}" msgstr "" -#: frappe/database/query.py:668 +#: frappe/database/query.py:670 msgid "Invalid field type: {0}" msgstr "" @@ -13377,11 +13416,11 @@ msgstr "" msgid "Invalid file path: {0}" msgstr "" -#: frappe/database/query.py:364 +#: frappe/database/query.py:366 msgid "Invalid filter condition: {0}. Expected a list or tuple." msgstr "" -#: frappe/database/query.py:450 +#: frappe/database/query.py:452 msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'." msgstr "" @@ -13389,11 +13428,11 @@ msgstr "" msgid "Invalid filter: {0}" msgstr "" -#: frappe/database/query.py:1422 +#: frappe/database/query.py:1424 msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed." msgstr "" -#: frappe/database/query.py:1383 +#: frappe/database/query.py:1385 msgid "Invalid function dictionary format" msgstr "" @@ -13430,23 +13469,27 @@ msgstr "" msgid "Invalid redirect regex in row #{}: {}" msgstr "" -#: frappe/app.py:337 +#: frappe/app.py:340 msgid "Invalid request arguments" msgstr "" +#: frappe/app.py:327 +msgid "Invalid request body" +msgstr "" + #: frappe/core/doctype/user_invitation/user_invitation.py:181 msgid "Invalid role" msgstr "" -#: frappe/database/query.py:410 +#: frappe/database/query.py:412 msgid "Invalid simple filter format: {0}" msgstr "" -#: frappe/database/query.py:341 +#: frappe/database/query.py:343 msgid "Invalid start for filter condition: {0}. Expected a list or tuple." msgstr "" -#: frappe/database/query.py:1489 +#: frappe/database/query.py:1491 msgid "Invalid string literal format: {0}" msgstr "" @@ -13550,7 +13593,7 @@ msgstr "Naptár és 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/doctype_list.js:50 #: frappe/core/doctype/doctype_link/doctype_link.json msgid "Is Child Table" msgstr "" @@ -13603,6 +13646,10 @@ msgstr "" msgid "Is Global" msgstr "" +#: frappe/public/js/frappe/views/treeview.js:418 +msgid "Is Group" +msgstr "" + #. Label of the is_hidden (Check) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "Is Hidden" @@ -13691,7 +13738,7 @@ 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/core/doctype/doctype/doctype_list.js:65 #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Is Single" msgstr "" @@ -13727,7 +13774,7 @@ msgstr "" #. Label of the is_submittable (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:39 +#: frappe/core/doctype/doctype/doctype_list.js:40 msgid "Is Submittable" msgstr "" @@ -13933,11 +13980,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:388 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:402 msgid "Kanban Board Name" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:265 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:279 msgctxt "Button in kanban view menu" msgid "Kanban Settings" msgstr "" @@ -14235,10 +14282,13 @@ msgstr "" #. 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' +#. Label of a field in the edit-profile Web Form #: 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:117 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/printing/page/print/print.js:117 #: frappe/public/js/frappe/form/templates/print_layout.html:11 msgid "Language" msgstr "" @@ -14326,9 +14376,12 @@ msgstr "" #. Label of the last_name (Data) field in DocType 'Contact' #. Label of the last_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json #: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:45 -#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:19 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:19 msgid "Last Name" msgstr "" @@ -14569,7 +14622,7 @@ msgstr "" #: 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/public/js/frappe/roles_editor.js:68 #: frappe/website/doctype/help_article/help_article.json msgid "Level" msgstr "" @@ -14862,7 +14915,7 @@ msgstr "" msgid "List Settings" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1991 +#: frappe/public/js/frappe/list/list_view.js:1993 msgctxt "Button in list view menu" msgid "List Settings" msgstr "" @@ -14901,7 +14954,7 @@ 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 "" +msgstr "Lista beállítási üzenet" #: frappe/public/js/frappe/ui/toolbar/search_utils.js:551 msgid "Lists" @@ -14913,7 +14966,7 @@ msgid "Load Balancing" msgstr "" #: frappe/public/js/frappe/list/base_list.js:399 -#: frappe/public/js/frappe/web_form/web_form_list.js:305 +#: frappe/public/js/frappe/web_form/web_form_list.js:306 #: frappe/website/doctype/help_article/templates/help_article_list.html:30 msgid "Load More" msgstr "" @@ -14933,7 +14986,7 @@ msgstr "" #: frappe/public/js/frappe/list/base_list.js:526 #: frappe/public/js/frappe/list/list_view.js:363 #: frappe/public/js/frappe/ui/listing.html:16 -#: frappe/public/js/frappe/views/reports/query_report.js:1089 +#: frappe/public/js/frappe/views/reports/query_report.js:1097 msgid "Loading" msgstr "" @@ -15076,7 +15129,7 @@ msgstr "" msgid "Login and view in Browser" msgstr "" -#: frappe/website/doctype/web_form/web_form.js:367 +#: frappe/website/doctype/web_form/web_form.js:368 msgid "Login is required to see web form list view. Enable {0} to see list settings" msgstr "" @@ -15084,7 +15137,7 @@ msgstr "" msgid "Login link sent to your email" msgstr "" -#: frappe/auth.py:339 frappe/auth.py:342 +#: frappe/auth.py:342 frappe/auth.py:345 msgid "Login not allowed at this time" msgstr "" @@ -15119,7 +15172,7 @@ msgstr "" #: frappe/www/login.html:116 msgid "Login with Frappe Cloud" -msgstr "" +msgstr "Bejelentkezés Frappe Cloud Segítségével" #: frappe/www/login.html:49 msgid "Login with LDAP" @@ -15137,7 +15190,7 @@ msgstr "Bejelentkezés e-mail linkkel" msgid "Login with email link expiry (in minutes)" msgstr "Bejelentkezés e-mail linkkel lejárati idő (percben)" -#: frappe/auth.py:144 +#: frappe/auth.py:147 msgid "Login with username and password is not allowed." msgstr "" @@ -15156,7 +15209,7 @@ msgstr "" msgid "Logout" msgstr "" -#: frappe/core/doctype/user/user.js:202 +#: frappe/core/doctype/user/user.js:190 msgid "Logout All Sessions" msgstr "" @@ -15260,7 +15313,10 @@ msgid "Major" msgstr "Major" #. Label of the show_name_in_global_search (Check) field in DocType 'DocType' +#. Label of the show_name_in_global_search (Check) field in DocType 'Customize +#. Form' #: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Make \"name\" searchable in Global Search" msgstr "" @@ -15334,9 +15390,9 @@ msgstr "" #. Label of the mandatory_depends_on (Code) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json msgid "Mandatory Depends On (JS)" -msgstr "" +msgstr "Kötelezően függ (JS)" -#: frappe/website/doctype/web_form/web_form.py:509 +#: frappe/website/doctype/web_form/web_form.py:536 msgid "Mandatory Information missing:" msgstr "" @@ -15511,7 +15567,7 @@ msgstr "" #. 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 "Max csatolmány méret" #. Label of the max_auto_email_report_per_user (Int) field in DocType 'System #. Settings' @@ -15589,7 +15645,7 @@ msgstr "" #: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:63 msgid "Memory Usage in MB" -msgstr "" +msgstr "Memóriahasználat MB-ban" #. Option for the 'Type' (Select) field in DocType 'Notification Log' #: frappe/desk/doctype/notification_log/notification_log.json @@ -15732,17 +15788,17 @@ msgstr "" #. 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 leírás" #. 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 kép" #. 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 cím" #: frappe/website/doctype/web_page/web_page.js:110 msgid "Meta title for SEO" @@ -15793,6 +15849,11 @@ msgstr "Középső középpont" msgid "Middle Name" msgstr "" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Middle Name (Optional)" +msgstr "" + #. Name of a DocType #. Label of a Link in the Tools Workspace #: frappe/automation/doctype/milestone/milestone.json @@ -15899,6 +15960,11 @@ msgstr "" msgid "Mobile No" msgstr "" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Mobile Number" +msgstr "" + #. 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" @@ -15924,7 +15990,7 @@ msgstr "Modális Kiváltó" #. 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/doctype/doctype_list.js:31 #: 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 @@ -16100,10 +16166,12 @@ msgstr "" #. Label of the additional_info (Section Break) field in DocType #. 'Communication' #. Label of the short_bio (Tab Break) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: 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 +#: frappe/core/web_form/edit_profile/edit_profile.json msgid "More Information" msgstr "" @@ -16133,7 +16201,7 @@ msgstr "" msgid "Move" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:193 +#: frappe/public/js/frappe/form/grid_row.js:194 msgid "Move To" msgstr "" @@ -16169,7 +16237,7 @@ msgstr "" msgid "Move the current field and the following fields to a new column" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:168 +#: frappe/public/js/frappe/form/grid_row.js:169 msgid "Move to Row Number" msgstr "" @@ -16237,7 +16305,7 @@ msgid "Mx" msgstr "" #: frappe/templates/includes/web_sidebar.html:41 -#: frappe/website/doctype/web_form/web_form.py:498 +#: frappe/website/doctype/web_form/web_form.py:525 #: 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" @@ -16381,12 +16449,12 @@ msgstr "" msgid "Navbar Template Values" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1378 +#: frappe/public/js/frappe/list/list_view.js:1380 msgctxt "Description of a list view shortcut" msgid "Navigate list down" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1385 +#: frappe/public/js/frappe/list/list_view.js:1387 msgctxt "Description of a list view shortcut" msgid "Navigate list up" msgstr "" @@ -16401,6 +16469,10 @@ msgstr "" msgid "Navigation Settings" msgstr "Navigációs Beállítások" +#: frappe/public/js/frappe/list/list_view.js:485 +msgid "Need Help?" +msgstr "" + #: frappe/desk/doctype/workspace/workspace.py:322 msgid "Need Workspace Manager role to edit private workspace of other users" msgstr "" @@ -16409,7 +16481,7 @@ msgstr "" msgid "Negative Value" msgstr "" -#: frappe/database/query.py:333 +#: frappe/database/query.py:335 msgid "Nested filters must be provided as a list or tuple." msgstr "" @@ -16422,6 +16494,12 @@ msgstr "" msgid "Network Printer Settings" msgstr "" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Never" +msgstr "" + #. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/core/doctype/success_action/success_action.js:57 @@ -16430,7 +16508,7 @@ msgstr "" #: 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/treeview.js:473 #: frappe/public/js/frappe/views/workspace/workspace.js:64 #: frappe/website/doctype/web_form/templates/web_list.html:15 #: frappe/www/list.html:19 @@ -16491,7 +16569,7 @@ msgstr "" msgid "New Folder" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 msgid "New Kanban Board" msgstr "" @@ -16526,7 +16604,7 @@ msgstr "" msgid "New Onboarding" msgstr "" -#: frappe/core/doctype/user/user.js:190 frappe/www/update-password.html:43 +#: frappe/core/doctype/user/user.js:178 frappe/www/update-password.html:43 msgid "New Password" msgstr "" @@ -16622,7 +16700,7 @@ msgstr "" #: frappe/public/js/frappe/ui/toolbar/search_utils.js:227 #: 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:411 +#: frappe/website/doctype/web_form/web_form.py:438 msgid "New {0}" msgstr "" @@ -16774,7 +16852,7 @@ msgstr "Következő Kattintáskor" #: frappe/public/js/form_builder/utils.js:341 #: frappe/public/js/frappe/form/controls/link.js:498 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1665 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 #: frappe/website/doctype/help_article/templates/help_article.html:26 msgid "No" msgstr "" @@ -16923,7 +17001,7 @@ msgstr "" msgid "No Roles Specified" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 msgid "No Select Field Found" msgstr "" @@ -17007,7 +17085,7 @@ msgstr "" msgid "No failed logs" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:371 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:385 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 "" @@ -17031,7 +17109,7 @@ msgstr "" msgid "No matching records. Search something new" msgstr "" -#: frappe/public/js/frappe/web_form/web_form_list.js:161 +#: frappe/public/js/frappe/web_form/web_form_list.js:162 msgid "No more items to display" msgstr "" @@ -17075,7 +17153,7 @@ msgctxt "{0} = verb, {1} = object" msgid "No permission to '{0}' {1}" msgstr "" -#: frappe/model/db_query.py:948 +#: frappe/model/db_query.py:949 msgid "No permission to read {0}" msgstr "" @@ -17123,11 +17201,11 @@ msgstr "" msgid "No {0} Found" msgstr "" -#: frappe/public/js/frappe/web_form/web_form_list.js:233 +#: frappe/public/js/frappe/web_form/web_form_list.js:234 msgid "No {0} found" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:497 +#: frappe/public/js/frappe/list/list_view.js:499 msgid "No {0} found with matching filters. Clear filters to see all {0}." msgstr "" @@ -17136,7 +17214,7 @@ msgid "No {0} mail" msgstr "" #: frappe/public/js/form_builder/utils.js:117 -#: frappe/public/js/frappe/form/grid_row.js:256 +#: frappe/public/js/frappe/form/grid_row.js:257 msgctxt "Title of the 'row number' column" msgid "No." msgstr "" @@ -17200,7 +17278,7 @@ msgstr "" msgid "Not Equals" msgstr "" -#: frappe/app.py:387 frappe/www/404.html:3 +#: frappe/app.py:390 frappe/www/404.html:3 msgid "Not Found" msgstr "" @@ -17226,9 +17304,9 @@ msgstr "" msgid "Not Nullable" msgstr "" -#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26 +#: frappe/__init__.py:550 frappe/app.py:383 frappe/desk/calendar.py:26 #: frappe/public/js/frappe/web_form/webform_script.js:15 -#: frappe/website/doctype/web_form/web_form.py:747 +#: frappe/website/doctype/web_form/web_form.py:774 #: 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 @@ -17247,7 +17325,7 @@ msgstr "" #: 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/kanban/kanban_view.js:183 #: frappe/public/js/frappe/views/reports/report_view.js:209 #: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39 #: frappe/website/doctype/web_form/templates/web_form.html:85 @@ -17298,7 +17376,7 @@ msgstr "" msgid "Not allowed for {0}: {1}" msgstr "" -#: frappe/email/doctype/notification/notification.py:637 +#: frappe/email/doctype/notification/notification.py:639 msgid "Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings" msgstr "" @@ -17330,12 +17408,12 @@ msgstr "" msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType." msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:216 +#: frappe/core/doctype/system_settings/system_settings.py:217 #: 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:760 +#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:787 #: frappe/website/js/website.js:97 msgid "Not permitted" msgstr "" @@ -17381,7 +17459,7 @@ msgstr "" msgid "Note: Multiple sessions will be allowed in case of mobile device" msgstr "" -#: frappe/core/doctype/user/user.js:399 +#: frappe/core/doctype/user/user.js:387 msgid "Note: This will be shared with user." msgstr "" @@ -17453,15 +17531,15 @@ msgstr "" msgid "Notification sent to" msgstr "" -#: frappe/email/doctype/notification/notification.py:542 +#: frappe/email/doctype/notification/notification.py:544 msgid "Notification: customer {0} has no Mobile number set" msgstr "" -#: frappe/email/doctype/notification/notification.py:528 +#: frappe/email/doctype/notification/notification.py:530 msgid "Notification: document {0} has no {1} number set (field: {2})" msgstr "" -#: frappe/email/doctype/notification/notification.py:537 +#: frappe/email/doctype/notification/notification.py:539 msgid "Notification: user {0} has no Mobile number set" msgstr "" @@ -17575,7 +17653,7 @@ msgstr "Lekérdezések Száma" msgid "Number of attachment fields are more than {}, limit updated to {}." msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:171 +#: frappe/core/doctype/system_settings/system_settings.py:172 msgid "Number of backups must be greater than zero." msgstr "" @@ -17847,7 +17925,7 @@ msgstr "" #. Description of the 'Is Submittable' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:42 +#: frappe/core/doctype/doctype/doctype_list.js:43 msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended." msgstr "" @@ -17936,11 +18014,11 @@ msgstr "" msgid "Only reports of type Report Builder can be edited" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:129 +#: frappe/custom/doctype/customize_form/customize_form.py:131 msgid "Only standard DocTypes are allowed to be customized from Customize Form." msgstr "" -#: frappe/model/delete_doc.py:241 +#: frappe/model/delete_doc.py:281 msgid "Only the Administrator can delete a standard DocType." msgstr "" @@ -18036,7 +18114,7 @@ msgstr "" msgid "Open in a new tab" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1431 +#: frappe/public/js/frappe/list/list_view.js:1433 msgctxt "Description of a list view shortcut" msgid "Open list item" msgstr "" @@ -18085,7 +18163,7 @@ msgstr "" msgid "Operation" msgstr "" -#: frappe/utils/data.py:2146 +#: frappe/utils/data.py:2172 msgid "Operator must be one of {0}" msgstr "" @@ -18131,6 +18209,7 @@ msgstr "" #. 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 (Text) field in DocType 'Web Form List Column' #. 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 @@ -18139,6 +18218,7 @@ msgstr "" #: 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_form_list_column/web_form_list_column.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Options" msgstr "" @@ -18184,7 +18264,7 @@ msgstr "Narancssárga" msgid "Order" msgstr "" -#: frappe/database/query.py:767 +#: frappe/database/query.py:769 msgid "Order By must be a string" msgstr "" @@ -18282,7 +18362,7 @@ msgstr "PATCH" #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/printing/page/print/print.js:84 #: frappe/public/js/frappe/form/templates/print_layout.html:44 -#: frappe/public/js/frappe/views/reports/query_report.js:1804 +#: frappe/public/js/frappe/views/reports/query_report.js:1812 msgid "PDF" msgstr "" @@ -18630,8 +18710,8 @@ msgstr "" #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/system_settings/system_settings.json -#: frappe/core/doctype/user/user.js:177 frappe/core/doctype/user/user.js:224 -#: frappe/core/doctype/user/user.js:244 +#: frappe/core/doctype/user/user.js:165 frappe/core/doctype/user/user.js:212 +#: frappe/core/doctype/user/user.js:232 #: 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 @@ -18654,7 +18734,7 @@ msgstr "" msgid "Password Reset Link Generation Limit" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:896 +#: frappe/public/js/frappe/form/grid_row.js:897 msgid "Password cannot be filtered" msgstr "" @@ -18691,7 +18771,7 @@ msgstr "" msgid "Password set" msgstr "" -#: frappe/auth.py:258 +#: frappe/auth.py:261 msgid "Password size exceeded the maximum allowed size" msgstr "" @@ -18703,7 +18783,7 @@ msgstr "" msgid "Passwords do not match" msgstr "" -#: frappe/core/doctype/user/user.js:210 +#: frappe/core/doctype/user/user.js:198 msgid "Passwords do not match!" msgstr "" @@ -18769,7 +18849,7 @@ msgstr "Payload Count" #. 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 "Csúcs Memória Használat" #. Option for the 'Status' (Select) field in DocType 'Data Import' #. Option for the 'Contribution Status' (Select) field in DocType 'Translation' @@ -18854,7 +18934,7 @@ msgstr "" msgid "Permanently delete {0}?" msgstr "" -#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533 +#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:535 msgid "Permission Error" msgstr "" @@ -18914,8 +18994,8 @@ msgstr "Jogosultság Típusa" #: 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:143 frappe/core/doctype/user/user.js:152 -#: frappe/core/doctype/user/user.js:161 +#: frappe/core/doctype/user/user.js:131 frappe/core/doctype/user/user.js:140 +#: frappe/core/doctype/user/user.js:149 #: 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 @@ -18985,6 +19065,7 @@ msgstr "" #. Option for the 'Type' (Select) field in DocType 'Communication' #. Option for the 'Type' (Select) field in DocType 'DocField' #. Label of the phone (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #. 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' @@ -18995,6 +19076,7 @@ msgstr "" #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.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 @@ -19169,7 +19251,7 @@ msgstr "" msgid "Please duplicate this to make changes" msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:164 +#: frappe/core/doctype/system_settings/system_settings.py:165 msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login." msgstr "" @@ -19301,11 +19383,11 @@ msgstr "" msgid "Please select Entity Type first" msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:115 +#: frappe/core/doctype/system_settings/system_settings.py:116 msgid "Please select Minimum Password Score" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1185 +#: frappe/public/js/frappe/views/reports/query_report.js:1193 msgid "Please select X and Y fields" msgstr "" @@ -19333,7 +19415,7 @@ msgstr "" msgid "Please select applicable Doctypes" msgstr "" -#: frappe/model/db_query.py:1157 +#: frappe/model/db_query.py:1163 msgid "Please select atleast 1 column from {0} to sort/group" msgstr "" @@ -19363,7 +19445,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:1408 +#: frappe/public/js/frappe/views/reports/query_report.js:1416 msgid "Please set filters" msgstr "" @@ -19383,7 +19465,7 @@ msgstr "" msgid "Please set the series to be used." msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:128 +#: frappe/core/doctype/system_settings/system_settings.py:129 msgid "Please setup SMS before setting it as an authentication method, via SMS Settings" msgstr "" @@ -19397,7 +19479,7 @@ msgstr "" #: frappe/email/doctype/email_account/email_account.py:432 msgid "Please setup default outgoing Email Account from Tools > Email Account" -msgstr "" +msgstr "Kérjük, állítsa be az alapértelmezett kimenő e-mail fiókot az Eszközök > E-mail fiók menüpontban" #: frappe/public/js/frappe/model/model.js:774 msgid "Please specify" @@ -19535,7 +19617,7 @@ msgstr "" msgid "Posting Timestamp" msgstr "Közzététel Időbélyeg" -#: frappe/database/query.py:1518 +#: frappe/database/query.py:1520 msgid "Potentially dangerous content in string literal: {0}" msgstr "" @@ -19595,7 +19677,7 @@ msgstr "" #. Name of a report #: frappe/core/report/prepared_report_analytics/prepared_report_analytics.json msgid "Prepared Report Analytics" -msgstr "" +msgstr "Elkészített Jelentés Analitika" #. Name of a role #: frappe/core/doctype/prepared_report/prepared_report.json @@ -19737,13 +19819,13 @@ msgstr "" #: 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:1789 +#: frappe/public/js/frappe/views/reports/query_report.js:1797 #: frappe/public/js/frappe/views/reports/report_view.js:1539 -#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18 +#: frappe/public/js/frappe/views/treeview.js:492 frappe/www/printview.html:18 msgid "Print" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2164 +#: frappe/public/js/frappe/list/list_view.js:2166 msgctxt "Button in list view actions menu" msgid "Print" msgstr "" @@ -19813,7 +19895,7 @@ msgstr "" msgid "Print Format Type" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1578 +#: frappe/public/js/frappe/views/reports/query_report.js:1586 msgid "Print Format not found" msgstr "" @@ -19994,11 +20076,11 @@ msgstr "Protipp: Hivatkozás hozzáadása: {{ reference_doctype }} {{ refe msgid "Proceed" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:932 +#: frappe/public/js/frappe/views/reports/query_report.js:940 msgid "Proceed Anyway" msgstr "" -#: frappe/public/js/frappe/form/controls/table.js:123 +#: frappe/public/js/frappe/form/controls/table.js:104 msgid "Processing" msgstr "" @@ -20015,11 +20097,21 @@ msgstr "Prof." msgid "Profile" msgstr "Profil" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile Picture" +msgstr "" + +#. Success message of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile updated successfully." +msgstr "" + #: frappe/public/js/frappe/socketio_client.js:82 msgid "Progress" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:408 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:422 msgid "Project" msgstr "" @@ -20063,7 +20155,7 @@ msgstr "" msgid "Protect Attached Files" msgstr "" -#: frappe/core/doctype/file/file.py:523 +#: frappe/core/doctype/file/file.py:526 msgid "Protected File" msgstr "" @@ -20569,11 +20661,11 @@ msgstr "" msgid "Reason" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:886 +#: frappe/public/js/frappe/views/reports/query_report.js:894 msgid "Rebuild" msgstr "" -#: frappe/public/js/frappe/views/treeview.js:509 +#: frappe/public/js/frappe/views/treeview.js:511 msgid "Rebuild Tree" msgstr "" @@ -20954,8 +21046,8 @@ 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:1778 -#: frappe/public/js/frappe/views/treeview.js:496 +#: frappe/public/js/frappe/views/reports/query_report.js:1786 +#: frappe/public/js/frappe/views/treeview.js:498 #: frappe/public/js/frappe/widgets/chart_widget.js:291 #: frappe/public/js/frappe/widgets/number_card_widget.js:352 #: frappe/public/js/print_format_builder/Preview.vue:24 @@ -20986,13 +21078,13 @@ msgstr "" msgid "Refresh Token" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:534 +#: frappe/public/js/frappe/list/list_view.js:536 msgctxt "Document count in list view" msgid "Refreshing" msgstr "" #: frappe/core/doctype/system_settings/system_settings.js:57 -#: frappe/core/doctype/user/user.js:374 +#: frappe/core/doctype/user/user.js:362 #: frappe/desk/page/setup_wizard/setup_wizard.js:211 msgid "Refreshing..." msgstr "" @@ -21377,7 +21469,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:1965 +#: frappe/public/js/frappe/views/reports/query_report.js:1973 msgid "Report Name" msgstr "" @@ -21429,7 +21521,7 @@ msgstr "" msgid "Report has no numeric fields, please change the Report Name" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1013 +#: frappe/public/js/frappe/views/reports/query_report.js:1021 msgid "Report initiated, click to view status" msgstr "" @@ -21449,7 +21541,7 @@ msgstr "" msgid "Report was not saved (there were errors)" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2003 +#: frappe/public/js/frappe/views/reports/query_report.js:2011 msgid "Report with more than 10 columns looks better in Landscape mode." msgstr "" @@ -21485,7 +21577,7 @@ msgstr "" msgid "Reports & Masters" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:929 +#: frappe/public/js/frappe/views/reports/query_report.js:937 msgid "Reports already in Queue" msgstr "" @@ -21504,7 +21596,10 @@ msgid "Request Body" msgstr "Kérés Törzse" #. Label of the data (Code) field in DocType 'Integration Request' +#. Title of the request-data Web Form +#. Button label of the request-data Web Form #: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/website/web_form/request_data/request_data.json msgid "Request Data" msgstr "" @@ -21556,6 +21651,11 @@ msgstr "" msgid "Request URL" msgstr "" +#. Title of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "Request for Account Deletion" +msgstr "" + #. Label of the requested_numbers (Code) field in DocType 'SMS Log' #: frappe/core/doctype/sms_log/sms_log.json msgid "Requested Numbers" @@ -21611,7 +21711,7 @@ msgstr "" msgid "Reset Fields" msgstr "" -#: frappe/core/doctype/user/user.js:184 frappe/core/doctype/user/user.js:187 +#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:175 msgid "Reset LDAP Password" msgstr "" @@ -21619,11 +21719,11 @@ msgstr "" msgid "Reset Layout" msgstr "" -#: frappe/core/doctype/user/user.js:235 +#: frappe/core/doctype/user/user.js:223 msgid "Reset OTP Secret" msgstr "" -#: frappe/core/doctype/user/user.js:168 frappe/www/login.html:199 +#: frappe/core/doctype/user/user.js:156 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" @@ -21658,7 +21758,7 @@ msgstr "" msgid "Reset sorting" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:433 +#: frappe/public/js/frappe/form/grid_row.js:434 msgid "Reset to default" msgstr "" @@ -21910,7 +22010,7 @@ 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 +#: frappe/public/js/frappe/roles_editor.js:114 msgid "Role Permissions" msgstr "" @@ -21920,7 +22020,7 @@ msgstr "" msgid "Role Permissions Manager" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1933 +#: frappe/public/js/frappe/list/list_view.js:1935 msgctxt "Button in list view menu" msgid "Role Permissions Manager" msgstr "" @@ -22113,11 +22213,11 @@ msgstr "" msgid "Row {0}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:353 +#: frappe/custom/doctype/customize_form/customize_form.py:357 msgid "Row {0}: Not allowed to disable Mandatory for standard fields" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:342 +#: frappe/custom/doctype/customize_form/customize_form.py:346 msgid "Row {0}: Not allowed to enable Allow on Submit for standard fields" msgstr "" @@ -22136,7 +22236,10 @@ msgid "Rows Removed" msgstr "" #. Label of the rows_threshold_for_grid_search (Int) field in DocType 'DocType' +#. Label of the rows_threshold_for_grid_search (Int) field in DocType +#. 'Customize Form' #: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Rows Threshold for Grid Search" msgstr "" @@ -22189,11 +22292,11 @@ msgstr "Csak akkor futtassa az ütemezett feladatokat, ha be van jelölve" #: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:57 msgid "Runtime in Minutes" -msgstr "" +msgstr "Futási Idő Percben" #: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:57 msgid "Runtime in Seconds" -msgstr "" +msgstr "Futási Idő Másodpercben" #. Option for the 'Type' (Select) field in DocType 'Communication' #. Option for the 'Two Factor Authentication method' (Select) field in DocType @@ -22229,7 +22332,7 @@ msgstr "" #: frappe/core/doctype/sms_settings/sms_settings.py:114 msgid "SMS sent successfully" -msgstr "" +msgstr "SMS sikeresen elküldve" #: frappe/templates/includes/login/login.js:369 msgid "SMS was not sent. Please contact Administrator." @@ -22344,8 +22447,8 @@ msgstr "" #: 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:1957 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 +#: frappe/public/js/frappe/views/reports/query_report.js:1965 #: frappe/public/js/frappe/views/reports/report_view.js:1735 #: frappe/public/js/frappe/views/workspace/workspace.js:335 #: frappe/public/js/frappe/widgets/base_widget.js:142 @@ -22368,11 +22471,11 @@ msgstr "" msgid "Save Customizations" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1960 +#: frappe/public/js/frappe/views/reports/query_report.js:1968 msgid "Save Report" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:97 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:107 msgid "Save filters" msgstr "" @@ -22449,7 +22552,7 @@ msgstr "" #. Label of the scheduled_against (Link) field in DocType 'Scheduler Event' #: frappe/core/doctype/scheduler_event/scheduler_event.json msgid "Scheduled Against" -msgstr "" +msgstr "Ütemezett Időpont" #. Label of the scheduled_job_type (Link) field in DocType 'Scheduled Job Log' #: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json @@ -22744,7 +22847,7 @@ msgstr "" msgid "See all Activity" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:855 +#: frappe/public/js/frappe/views/reports/query_report.js:863 msgid "See all past reports." msgstr "" @@ -22808,7 +22911,7 @@ msgstr "" #: 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:497 +#: frappe/public/js/frappe/form/grid_row.js:498 msgid "Select All" msgstr "" @@ -22888,7 +22991,7 @@ msgstr "" msgid "Select Field..." msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:489 +#: frappe/public/js/frappe/form/grid_row.js:490 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:181 msgid "Select Fields" msgstr "" @@ -23008,7 +23111,7 @@ msgid "Select a field to edit its properties." msgstr "" #: frappe/public/js/frappe/views/treeview.js:358 -msgid "Select a group node first." +msgid "Select a group {0} first." msgstr "" #: frappe/core/doctype/doctype/doctype.py:1956 @@ -23045,13 +23148,13 @@ msgstr "" msgid "Select atleast 2 actions" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1445 +#: frappe/public/js/frappe/list/list_view.js:1447 msgctxt "Description of a list view shortcut" msgid "Select list item" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1397 -#: frappe/public/js/frappe/list/list_view.js:1413 +#: frappe/public/js/frappe/list/list_view.js:1399 +#: frappe/public/js/frappe/list/list_view.js:1415 msgctxt "Description of a list view shortcut" msgid "Select multiple list items" msgstr "" @@ -23312,7 +23415,7 @@ msgstr "" #: frappe/email/doctype/email_account/email_account.json #: frappe/email/doctype/email_domain/email_domain.json msgid "Sent Folder Name" -msgstr "" +msgstr "Elküldött Mappa Neve" #. Label of the sent_on (Date) field in DocType 'SMS Log' #: frappe/core/doctype/sms_log/sms_log.json @@ -23373,7 +23476,7 @@ msgstr "" msgid "Server Action" msgstr "" -#: frappe/app.py:396 frappe/public/js/frappe/request.js:611 +#: frappe/app.py:399 frappe/public/js/frappe/request.js:611 #: frappe/www/error.html:36 frappe/www/error.py:15 msgid "Server Error" msgstr "" @@ -23439,7 +23542,7 @@ msgstr "" msgid "Session Defaults Saved" msgstr "" -#: frappe/app.py:373 +#: frappe/app.py:376 msgid "Session Expired" msgstr "" @@ -23448,7 +23551,7 @@ msgstr "" msgid "Session Expiry (idle timeout)" msgstr "Munkamenet Lejárata (tétlenségi időkorlát)" -#: frappe/core/doctype/system_settings/system_settings.py:122 +#: frappe/core/doctype/system_settings/system_settings.py:123 msgid "Session Expiry must be in format {0}" msgstr "" @@ -23497,7 +23600,7 @@ msgstr "" msgid "Set Filters for {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2113 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 msgid "Set Level" msgstr "" @@ -23551,7 +23654,7 @@ msgstr "" msgid "Set Role For" msgstr "" -#: frappe/core/doctype/user/user.js:136 +#: frappe/core/doctype/user/user.js:124 #: frappe/core/page/permission_manager/permission_manager.js:72 msgid "Set User Permissions" msgstr "" @@ -23612,7 +23715,7 @@ msgstr "Csak egyszer állítsa be" #. 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 "Beállított méret MB-ban" #. Description of the 'Filters Configuration' (Code) field in DocType 'Number #. Card' @@ -23737,7 +23840,7 @@ msgstr "" msgid "Setup > User Permissions" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1826 +#: frappe/public/js/frappe/views/reports/query_report.js:1834 #: frappe/public/js/frappe/views/reports/report_view.js:1713 msgid "Setup Auto Email" msgstr "" @@ -23756,7 +23859,7 @@ msgstr "Sorozatok Beállítása Tranzakciókhoz" #: frappe/desk/page/setup_wizard/setup_wizard.js:236 msgid "Setup failed" -msgstr "" +msgstr "Beállítás Sikertelen" #. Label of the share (Check) field in DocType 'Custom DocPerm' #. Label of the share (Check) field in DocType 'DocPerm' @@ -23878,6 +23981,12 @@ msgstr "" msgid "Show Error" msgstr "" +#. Label of the show_external_link_warning (Select) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Show External Link Warning" +msgstr "" + #: frappe/public/js/frappe/form/layout.js:578 msgid "Show Fieldname (click to copy on clipboard)" msgstr "" @@ -24006,7 +24115,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:1849 +#: frappe/public/js/frappe/list/list_view.js:1851 msgid "Show Tags" msgstr "" @@ -24213,22 +24322,22 @@ msgstr "" msgid "Signups have been disabled for this website." msgstr "" -#. 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 "" - #. 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\")" +msgid "Simple Python Expression, Example: status == \"Invalid\"" msgstr "" #. 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'" +msgid "Simple Python Expression, Example: status == 'Open' and issue_type == 'Bug'" +msgstr "" + +#. 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 "" #. Label of the simultaneous_sessions (Int) field in DocType 'User' @@ -24236,13 +24345,13 @@ msgstr "" msgid "Simultaneous Sessions" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:126 +#: frappe/custom/doctype/customize_form/customize_form.py:128 msgid "Single DocTypes cannot be customized." 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 +#: frappe/core/doctype/doctype/doctype_list.js:68 msgid "Single Types have only one record no tables associated. Values are stored in tabSingles" msgstr "" @@ -24451,7 +24560,7 @@ 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 "" +msgstr "Néhány postafiókhoz eltérő Elküldött mappanév szükséges, pl. \"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." @@ -24570,7 +24679,7 @@ msgstr "" #. '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 "Adja meg azokat a tartományokat vagy eredeteket, amelyek beágyazhatják ezt az űrlapot. Adjon meg soronként egy tartományt (pl. https://example.com). Ha nem ad meg tartományt, az űrlap csak ugyanazon az eredeten ágyazható be." #. Label of the splash_image (Attach Image) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json @@ -24578,7 +24687,7 @@ msgid "Splash Image" msgstr "Nyitókép" #: frappe/desk/reportview.py:455 -#: frappe/public/js/frappe/web_form/web_form_list.js:175 +#: frappe/public/js/frappe/web_form/web_form_list.js:176 #: frappe/templates/print_formats/standard_macros.html:44 msgid "Sr" msgstr "" @@ -24610,7 +24719,7 @@ msgstr "" msgid "Standard" msgstr "" -#: frappe/model/delete_doc.py:79 +#: frappe/model/delete_doc.py:119 msgid "Standard DocType can not be deleted." msgstr "" @@ -24880,7 +24989,7 @@ msgstr "" #. Label of the sticky (Check) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json -#: frappe/public/js/frappe/form/grid_row.js:454 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Sticky" msgstr "" @@ -24910,7 +25019,7 @@ msgstr "" msgid "Store Attached PDF Document" msgstr "Csatolt PDF Dokumentum Tárolása" -#: frappe/core/doctype/user/user.js:490 +#: frappe/core/doctype/user/user.js:497 msgid "Store the API secret securely. It won't be displayed again." msgstr "" @@ -25022,6 +25131,7 @@ msgstr "" #. 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' +#. Button label of the request-to-delete-data Web Form #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/docshare/docshare.json @@ -25030,10 +25140,11 @@ msgstr "" #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/quick_entry.js:225 #: frappe/public/js/frappe/ui/capture.js:307 +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json msgid "Submit" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2231 +#: frappe/public/js/frappe/list/list_view.js:2233 msgctxt "Button in list view actions menu" msgid "Submit" msgstr "" @@ -25043,7 +25154,7 @@ msgctxt "Button in web form" msgid "Submit" msgstr "" -#: frappe/public/js/frappe/ui/dialog.js:63 +#: frappe/public/js/frappe/ui/dialog.js:64 msgctxt "Primary action in dialog" msgid "Submit" msgstr "" @@ -25075,7 +25186,7 @@ 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 "Beküldés gomb címkéje" #. Label of the submit_on_creation (Check) field in DocType 'Auto Repeat' #: frappe/automation/doctype/auto_repeat/auto_repeat.json @@ -25091,7 +25202,7 @@ msgstr "" msgid "Submit this document to confirm" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2236 +#: frappe/public/js/frappe/list/list_view.js:2238 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "" @@ -25141,7 +25252,7 @@ msgstr "" #: 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:1171 +#: frappe/public/js/frappe/form/grid.js:1172 #: frappe/public/js/frappe/views/translation_manager.js:21 #: frappe/templates/includes/login/login.js:230 #: frappe/templates/includes/login/login.js:236 @@ -25176,12 +25287,12 @@ msgstr "" #. Label of the success_message (Text) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "Success message" -msgstr "" +msgstr "Sikeres művelet üzenetet" #. Label of the success_title (Data) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "Success title" -msgstr "" +msgstr "Siker címe" #. Label of the successful_job_count (Int) field in DocType 'RQ Worker' #: frappe/core/doctype/rq_worker/rq_worker.json @@ -25319,7 +25430,7 @@ 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 "Események szinkronizálása a Google-ból nyilvánosként" #: frappe/custom/doctype/customize_form/customize_form.js:256 msgid "Sync on Migrate" @@ -25356,7 +25467,7 @@ msgstr "" msgid "Syncing {0} of {1}" msgstr "" -#: frappe/utils/data.py:2547 +#: frappe/utils/data.py:2573 msgid "Syntax Error" msgstr "" @@ -25667,7 +25778,7 @@ msgstr "" msgid "Table Trimmed" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1170 +#: frappe/public/js/frappe/form/grid.js:1171 msgid "Table updated" msgstr "" @@ -25882,7 +25993,7 @@ msgstr "" msgid "The Auto Repeat for this document has been disabled." msgstr "" -#: frappe/public/js/frappe/form/grid.js:1193 +#: frappe/public/js/frappe/form/grid.js:1194 msgid "The CSV format is case sensitive" msgstr "" @@ -25904,7 +26015,7 @@ msgstr "" #: frappe/automation/doctype/auto_repeat/auto_repeat.py:112 msgid "The Next Scheduled Date cannot be later than the End Date." -msgstr "" +msgstr "A következő ütemezett dátum nem lehet későbbi, mint a befejezési dátum." #: 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" @@ -25952,7 +26063,7 @@ msgstr "" 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:685 +#: frappe/public/js/frappe/list/list_view.js:687 msgid "The count shown is an estimated count. Click here to see the accurate count." msgstr "" @@ -26066,7 +26177,7 @@ msgstr "" msgid "The reset password link has either been used before or is invalid" msgstr "" -#: frappe/app.py:388 frappe/public/js/frappe/request.js:149 +#: frappe/app.py:391 frappe/public/js/frappe/request.js:149 msgid "The resource you are looking for is not available" msgstr "" @@ -26139,12 +26250,12 @@ 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:965 +#: frappe/public/js/frappe/views/reports/query_report.js:973 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 +#: frappe/website/doctype/web_form/web_form.js:318 msgid "There can be only 9 Page Break fields in a Web Form" msgstr "" @@ -26168,11 +26279,11 @@ msgstr "" msgid "There is nothing new to show you right now." msgstr "" -#: frappe/core/doctype/file/file.py:640 frappe/utils/file_manager.py:372 +#: frappe/core/doctype/file/file.py:643 frappe/utils/file_manager.py:372 msgid "There is some problem with the file url: {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:962 +#: frappe/public/js/frappe/views/reports/query_report.js:970 msgid "There is {0} with the same filters already in the queue:" msgstr "" @@ -26184,7 +26295,7 @@ msgstr "" msgid "There was an error building this page" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:182 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:196 msgid "There was an error saving filters" msgstr "" @@ -26241,7 +26352,7 @@ msgstr "" msgid "This Currency is disabled. Enable to use in transactions" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:391 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:405 msgid "This Kanban Board will be private" msgstr "" @@ -26278,7 +26389,7 @@ msgstr "" msgid "This cannot be undone" msgstr "" -#: frappe/desk/doctype/number_card/number_card.js:480 +#: frappe/desk/doctype/number_card/number_card.js:484 msgctxt "Number Card" msgid "This card is visible only to Administrator and System Managers by default. Set a DocType to share with users who have read access." msgstr "" @@ -26301,7 +26412,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:113 +#: frappe/model/delete_doc.py:153 msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time." msgstr "" @@ -26347,7 +26458,7 @@ msgstr "Ez a mező csak akkor jelenik meg, ha az itt definiált mezőnév tartal "eval:doc.myfield=='Saját Érték'\n" "eval:doc.age>18" -#: frappe/core/doctype/file/file.py:522 +#: frappe/core/doctype/file/file.py:525 msgid "This file is attached to a protected document and cannot be deleted." msgstr "" @@ -26382,7 +26493,7 @@ msgstr "" msgid "This goes above the slideshow." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2189 +#: frappe/public/js/frappe/views/reports/query_report.js:2197 msgid "This is a background report. Please set the appropriate filters and then generate a new one." msgstr "" @@ -26432,7 +26543,7 @@ msgstr "" msgid "This month" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1037 +#: frappe/public/js/frappe/views/reports/query_report.js:1045 msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead." msgstr "" @@ -26440,7 +26551,7 @@ msgstr "" msgid "This report was generated on {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:853 +#: frappe/public/js/frappe/views/reports/query_report.js:861 msgid "This report was generated {0}." msgstr "" @@ -26504,7 +26615,7 @@ msgstr "" #: 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 "Ez azonnal megszakítja a feladatot, és veszélyes lehet, biztos benne?" #: frappe/core/doctype/user/user.py:1255 msgid "Throttled" @@ -26582,9 +26693,11 @@ msgstr "Időablak (másodperc)" #. Label of the time_zone (Select) field in DocType 'System Settings' #. Label of the time_zone (Autocomplete) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #. 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/core/web_form/edit_profile/edit_profile.json #: frappe/desk/page/setup_wizard/setup_wizard.js:407 #: frappe/website/doctype/web_page_view/web_page_view.json msgid "Time Zone" @@ -26851,7 +26964,7 @@ msgstr "" msgid "To generate password click {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:854 +#: frappe/public/js/frappe/views/reports/query_report.js:862 msgid "To get the updated report, click on {0}." msgstr "" @@ -26926,7 +27039,7 @@ msgstr "" msgid "Toggle Sidebar" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1964 +#: frappe/public/js/frappe/list/list_view.js:1966 msgctxt "Button in list view menu" msgid "Toggle Sidebar" msgstr "" @@ -27006,7 +27119,7 @@ msgstr "" #: frappe/core/report/prepared_report_analytics/prepared_report_analytics.js:13 msgid "Top 10" -msgstr "" +msgstr "Első 10" #. Name of a DocType #: frappe/website/doctype/top_bar_item/top_bar_item.json @@ -27052,7 +27165,7 @@ msgstr "" #: frappe/desk/query_report.py:587 #: frappe/public/js/frappe/views/reports/print_grid.html:45 -#: frappe/public/js/frappe/views/reports/query_report.js:1324 +#: frappe/public/js/frappe/views/reports/query_report.js:1332 #: frappe/public/js/frappe/views/reports/report_view.js:1553 msgid "Total" msgstr "" @@ -27211,9 +27324,9 @@ msgstr "" msgid "Translatable" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2244 +#: frappe/public/js/frappe/views/reports/query_report.js:2252 msgid "Translate Data" -msgstr "" +msgstr "Adatok Fordítása" #. Label of the translated_doctype (Check) field in DocType 'DocType' #. Label of the translated_doctype (Check) field in DocType 'Customize Form' @@ -27570,7 +27683,7 @@ msgstr "" msgid "Unable to update event" msgstr "" -#: frappe/core/doctype/file/file.py:486 +#: frappe/core/doctype/file/file.py:489 msgid "Unable to write file format for {0}" msgstr "" @@ -27579,7 +27692,7 @@ msgstr "" msgid "Unassign Condition" msgstr "" -#: frappe/app.py:396 +#: frappe/app.py:399 msgid "Uncaught Exception" msgstr "" @@ -27595,7 +27708,7 @@ msgstr "" msgid "Undo last action" msgstr "" -#: frappe/database/query.py:1495 +#: frappe/database/query.py:1497 msgid "Unescaped quotes in string literal: {0}" msgstr "" @@ -27642,7 +27755,7 @@ msgstr "" msgid "Unknown Rounding Method: {}" msgstr "" -#: frappe/auth.py:316 +#: frappe/auth.py:319 msgid "Unknown User" msgstr "" @@ -27708,8 +27821,8 @@ msgstr "" msgid "Unsubscribed" msgstr "" -#: frappe/database/query.py:653 frappe/database/query.py:1387 -#: frappe/database/query.py:1397 +#: frappe/database/query.py:655 frappe/database/query.py:1389 +#: frappe/database/query.py:1399 msgid "Unsupported function or invalid field name: {0}" msgstr "" @@ -27743,7 +27856,7 @@ msgstr "" #: 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:427 +#: frappe/public/js/frappe/form/grid_row.js:428 msgid "Update" msgstr "" @@ -27777,6 +27890,11 @@ msgstr "" msgid "Update Password" msgstr "" +#. Title of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Update Profile" +msgstr "" + #. Label of the update_series (Section Break) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -27874,7 +27992,7 @@ msgstr "" #: frappe/public/js/billing.bundle.js:131 msgid "Upgrade plan" -msgstr "" +msgstr "Díjcsomag Bővítése" #: frappe/public/js/frappe/list/list_sidebar.js:331 msgid "Upgrade your support experience with Frappe Helpdesk" @@ -27992,11 +28110,7 @@ msgstr "Használjon más E-mail azonosítót" msgid "Use if the default settings don't seem to detect your data correctly" msgstr "" -#: frappe/model/db_query.py:436 -msgid "Use of function {0} in field is restricted" -msgstr "" - -#: frappe/model/db_query.py:413 +#: frappe/model/db_query.py:411 msgid "Use of sub-query or function is restricted" msgstr "" @@ -28218,12 +28332,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:1944 +#: frappe/public/js/frappe/views/reports/query_report.js:1952 #: frappe/public/js/frappe/views/reports/report_view.js:1761 msgid "User Permissions" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1922 +#: frappe/public/js/frappe/list/list_view.js:1924 msgctxt "Button in list view menu" msgid "User Permissions" msgstr "" @@ -28367,7 +28481,7 @@ msgstr "" msgid "User {0} is disabled" msgstr "" -#: frappe/sessions.py:242 +#: frappe/sessions.py:243 msgid "User {0} is disabled. Please contact your System Manager." msgstr "" @@ -28544,7 +28658,7 @@ msgstr "" msgid "Value for a check field can be either 0 or 1" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:612 +#: frappe/custom/doctype/customize_form/customize_form.py:616 msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters" msgstr "" @@ -28665,19 +28779,19 @@ msgstr "" msgid "View Audit Trail" msgstr "" -#: frappe/core/doctype/user/user.js:156 +#: frappe/core/doctype/user/user.js:144 msgid "View Doctype Permissions" msgstr "" #: frappe/core/doctype/file/file.js:4 msgid "View File" -msgstr "" +msgstr "Fájl Megtekintése" #: 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/views/treeview.js:486 #: frappe/public/js/frappe/widgets/quick_list_widget.js:258 msgid "View List" msgstr "" @@ -28687,7 +28801,7 @@ msgstr "" msgid "View Log" msgstr "" -#: frappe/core/doctype/user/user.js:147 +#: frappe/core/doctype/user/user.js:135 #: frappe/core/doctype/user_permission/user_permission.js:24 msgid "View Permitted Documents" msgstr "" @@ -28803,6 +28917,7 @@ msgid "Warehouse" msgstr "" #. Option for the 'Style' (Select) field in DocType 'Workflow State' +#: frappe/public/js/frappe/router.js:613 #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Warning" msgstr "" @@ -29285,7 +29400,7 @@ msgstr "" #. 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 "Az inaktív webhelyek esetében az ütemezett feladatok csak naponta egyszer fognak futni. Állítsa 0-ra, hogy elkerülje az ütemező automatikus kikapcsolását." #: frappe/public/js/frappe/form/print_utils.js:45 msgid "With Letter head" @@ -29448,7 +29563,7 @@ msgstr "" msgid "Workspace" msgstr "" -#: frappe/public/js/frappe/router.js:175 +#: frappe/public/js/frappe/router.js:180 msgid "Workspace {0} does not exist" msgstr "" @@ -29570,7 +29685,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:1225 +#: frappe/public/js/frappe/views/reports/query_report.js:1233 msgid "Y Field" msgstr "" @@ -29632,7 +29747,7 @@ msgstr "Sárga" #: frappe/public/js/form_builder/utils.js:336 #: frappe/public/js/frappe/form/controls/link.js:498 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1665 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 #: frappe/website/doctype/help_article/templates/help_article.html:25 msgid "Yes" msgstr "" @@ -29668,6 +29783,10 @@ msgstr "" msgid "You added {0} rows to {1}" msgstr "" +#: frappe/public/js/frappe/router.js:642 +msgid "You are about to open an external link. To confirm, click the link again." +msgstr "" + #: frappe/public/js/frappe/dom.js:438 msgid "You are connected to internet." msgstr "" @@ -29678,7 +29797,7 @@ msgstr "" #: frappe/integrations/frappe_providers/frappecloud_billing.py:28 msgid "You are not allowed to access this resource" -msgstr "" +msgstr "Nincs hozzáférésed ehhez az erőforráshoz" #: frappe/permissions.py:431 msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}" @@ -29711,7 +29830,7 @@ msgstr "" msgid "You are not allowed to export {} doctype" msgstr "" -#: frappe/public/js/frappe/views/treeview.js:448 +#: frappe/public/js/frappe/views/treeview.js:450 msgid "You are not allowed to print this report" msgstr "" @@ -29719,7 +29838,7 @@ msgstr "" msgid "You are not allowed to send emails related to this document" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:605 +#: frappe/website/doctype/web_form/web_form.py:632 msgid "You are not allowed to update this Web Form Document" msgstr "" @@ -29792,11 +29911,11 @@ msgstr "" msgid "You can continue with the onboarding after exploring this page" msgstr "" -#: frappe/model/delete_doc.py:137 +#: frappe/model/delete_doc.py:177 msgid "You can disable this {0} instead of deleting it." msgstr "" -#: frappe/core/doctype/file/file.py:758 +#: frappe/core/doctype/file/file.py:761 msgid "You can increase the limit from System Settings." msgstr "" @@ -29818,7 +29937,7 @@ msgstr "" #: frappe/handler.py:183 msgid "You can only upload JPG, PNG, PDF, TXT, CSV or Microsoft documents." -msgstr "" +msgstr "Csak JPG, PNG, PDF, TXT, CSV vagy Microsoft dokumentumokat tölthet fel." #: 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)" @@ -29832,7 +29951,7 @@ msgstr "" #. '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 "Itt magas értéket állíthat be, ha több felhasználó fog bejelentkezni ugyanarról a hálózatról." #: frappe/desk/query_report.py:382 msgid "You can try changing the filters of your report." @@ -29846,11 +29965,11 @@ msgstr "" msgid "You can use wildcard %" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:390 +#: frappe/custom/doctype/customize_form/customize_form.py:394 msgid "You can't set 'Options' for field {0}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:394 +#: frappe/custom/doctype/customize_form/customize_form.py:398 msgid "You can't set 'Translatable' for field {0}" msgstr "" @@ -29868,7 +29987,7 @@ msgstr "" msgid "You cannot create a dashboard chart from single DocTypes" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:386 +#: frappe/custom/doctype/customize_form/customize_form.py:390 msgid "You cannot unset 'Read Only' for field {0}" msgstr "" @@ -29911,11 +30030,11 @@ msgstr "" msgid "You do not have enough permissions to access this resource. Please contact your manager to get access." msgstr "" -#: frappe/app.py:381 +#: frappe/app.py:384 msgid "You do not have enough permissions to complete the action" msgstr "" -#: frappe/database/query.py:529 +#: frappe/database/query.py:531 msgid "You do not have permission to access field: {0}" msgstr "" @@ -29931,7 +30050,7 @@ msgstr "" msgid "You don't have access to Report: {0}" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:808 +#: frappe/website/doctype/web_form/web_form.py:835 msgid "You don't have permission to access the {0} DocType." msgstr "" @@ -29955,7 +30074,7 @@ msgstr "" msgid "You have been successfully logged out" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:245 +#: frappe/custom/doctype/customize_form/customize_form.py:247 msgid "You have hit the row size limit on database table: {0}" msgstr "" @@ -29983,7 +30102,7 @@ msgstr "" msgid "You haven't added any Dashboard Charts or Number Cards yet." msgstr "" -#: frappe/public/js/frappe/list/list_view.js:501 +#: frappe/public/js/frappe/list/list_view.js:503 msgid "You haven't created a {0} yet" msgstr "" @@ -30000,21 +30119,21 @@ msgstr "" msgid "You must add atleast one link." msgstr "" -#: frappe/website/doctype/web_form/web_form.py:804 +#: frappe/website/doctype/web_form/web_form.py:831 msgid "You must be logged in to use this form." msgstr "" -#: frappe/website/doctype/web_form/web_form.py:645 +#: frappe/website/doctype/web_form/web_form.py:672 msgid "You must login to submit this form" msgstr "" #: frappe/model/document.py:358 msgid "You need the '{0}' permission on {1} {2} to perform this action." -msgstr "" +msgstr "A művelet végrehajtásához szükséged van a '{0}' engedélyre a {1} {2} fiókon." #: frappe/desk/doctype/workspace/workspace.py:127 msgid "You need to be Workspace Manager to delete a public workspace." -msgstr "" +msgstr "Nyilvános munkaterület törléséhez munkaterület-kezelőnek kell lenned." #: frappe/desk/doctype/workspace/workspace.py:76 msgid "You need to be Workspace Manager to edit this document" @@ -30066,11 +30185,11 @@ msgstr "" #: frappe/model/rename_doc.py:391 msgid "You need write permission on {0} {1} to merge" -msgstr "" +msgstr "Írási jogosultság szükséges a {0} {1} oldalon az egyesítéshez" #: frappe/model/rename_doc.py:386 msgid "You need write permission on {0} {1} to rename" -msgstr "" +msgstr "Írási jogosultság szükséges a {0} {1} oldalon az átnevezéshez" #: frappe/client.py:449 msgid "You need {0} permission to fetch values from {1} {2}" @@ -30119,6 +30238,10 @@ msgstr "" msgid "You viewed this" msgstr "" +#: frappe/public/js/frappe/router.js:653 +msgid "You will be redirected to:" +msgstr "" + #: frappe/core/doctype/user_invitation/user_invitation.py:113 msgid "You've been invited to join {0}" msgstr "" @@ -30164,7 +30287,7 @@ msgstr "" msgid "Your account has been deleted" msgstr "" -#: frappe/auth.py:514 +#: frappe/auth.py:517 msgid "Your account has been locked and will resume after {0} seconds" msgstr "" @@ -30230,7 +30353,7 @@ msgstr "" msgid "Your report is being generated in the background. You will receive an email on {0} with a download link once it is ready." msgstr "" -#: frappe/app.py:374 +#: frappe/app.py:377 msgid "Your session has expired, please login again to continue." msgstr "" @@ -30254,7 +30377,7 @@ msgstr "" #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:358 msgid "[Action taken by {0}]" -msgstr "" +msgstr "[ {0} által végrehajtott művelet]" #. Label of the _doctype (Link) field in DocType 'Desktop Icon' #: frappe/desk/doctype/desktop_icon/desktop_icon.json @@ -30567,7 +30690,7 @@ msgstr "" msgid "logged in" msgstr "" -#: frappe/website/doctype/web_form/web_form.js:362 +#: frappe/website/doctype/web_form/web_form.js:363 msgid "login_required" msgstr "" @@ -30905,7 +31028,7 @@ msgstr "" msgid "via Google Meet" msgstr "Google Meet-en keresztül" -#: frappe/email/doctype/notification/notification.py:403 +#: frappe/email/doctype/notification/notification.py:405 msgid "via Notification" msgstr "" @@ -31015,7 +31138,7 @@ msgstr "" msgid "{0} Dashboard" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:486 +#: frappe/public/js/frappe/form/grid_row.js:487 #: frappe/public/js/frappe/list/list_settings.js:225 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:178 msgid "{0} Fields" @@ -31066,7 +31189,7 @@ msgstr "" msgid "{0} Report" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:956 +#: frappe/public/js/frappe/views/reports/query_report.js:964 msgid "{0} Reports" msgstr "" @@ -31139,7 +31262,7 @@ msgctxt "Form timeline" msgid "{0} attached {1}" msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:152 +#: frappe/core/doctype/system_settings/system_settings.py:153 msgid "{0} can not be more than {1}" msgstr "" @@ -31154,7 +31277,7 @@ msgstr "" #: frappe/model/document.py:548 msgid "{0} cannot be amended because it is not cancelled. Please cancel the document before creating an amendment." -msgstr "" +msgstr "{0} nem módosítható, mert nincs visszavonva. Kérjük, törölje a dokumentumot a módosítás létrehozása előtt." #: frappe/public/js/form_builder/store.js:190 msgid "{0} cannot be hidden and mandatory without any default value" @@ -31216,7 +31339,7 @@ msgstr "" msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values" msgstr "" -#: frappe/database/query.py:708 +#: frappe/database/query.py:710 msgid "{0} fields cannot contain backticks (`): {1}" msgstr "" @@ -31261,7 +31384,7 @@ msgstr "" msgid "{0} is a mandatory field" msgstr "" -#: frappe/core/doctype/file/file.py:566 +#: frappe/core/doctype/file/file.py:569 msgid "{0} is a not a valid zip file" msgstr "" @@ -31310,7 +31433,7 @@ msgstr "" msgid "{0} is mandatory" msgstr "" -#: frappe/database/query.py:485 +#: frappe/database/query.py:487 msgid "{0} is not a child table of {1}" msgstr "" @@ -31330,7 +31453,7 @@ msgstr "" msgid "{0} is not a valid Cron expression." msgstr "" -#: frappe/public/js/frappe/form/controls/dynamic_link.js:27 +#: frappe/public/js/frappe/form/controls/dynamic_link.js:23 msgid "{0} is not a valid DocType for Dynamic Link" msgstr "" @@ -31367,7 +31490,7 @@ msgstr "" msgid "{0} is not a valid report format. Report format should one of the following {1}" msgstr "" -#: frappe/core/doctype/file/file.py:546 +#: frappe/core/doctype/file/file.py:549 msgid "{0} is not a zip file" msgstr "" @@ -31415,7 +31538,7 @@ msgstr "" msgid "{0} is within {1}" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1839 +#: frappe/public/js/frappe/list/list_view.js:1841 msgid "{0} items selected" msgstr "" @@ -31458,15 +31581,15 @@ msgstr "" #: frappe/model/document.py:1564 msgid "{0} must be beginning with '{1}'" -msgstr "" +msgstr "{0} a '{1}' kezdetűnek kell lennie." #: frappe/model/document.py:1566 msgid "{0} must be equal to '{1}'" -msgstr "" +msgstr "{0} egyenlőnek kell lennie '{1}'" #: frappe/model/document.py:1562 msgid "{0} must be none of {1}" -msgstr "" +msgstr "{0} nem lehet a(z) {1} egyike sem" #: frappe/model/document.py:1560 frappe/utils/csvutils.py:161 msgid "{0} must be one of {1}" @@ -31482,7 +31605,7 @@ msgstr "" #: frappe/model/document.py:1568 msgid "{0} must be {1} {2}" -msgstr "" +msgstr "{0} kell lennie {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." @@ -31501,11 +31624,11 @@ msgid "{0} not found" msgstr "" #: frappe/core/doctype/report/report.py:427 -#: frappe/public/js/frappe/list/list_view.js:1211 +#: frappe/public/js/frappe/list/list_view.js:1213 msgid "{0} of {1}" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1213 +#: frappe/public/js/frappe/list/list_view.js:1215 msgid "{0} of {1} ({2} rows with children)" msgstr "" @@ -31555,13 +31678,13 @@ msgstr "" msgid "{0} removed {1} rows from {2}" msgstr "" -#: frappe/public/js/frappe/roles_editor.js:62 +#: frappe/public/js/frappe/roles_editor.js:64 msgid "{0} role does not have permission on any doctype" msgstr "" #: frappe/model/document.py:1799 msgid "{0} row #{1}:" -msgstr "" +msgstr "{0}, sor #{1}:" #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:299 msgctxt "User removed rows from child table" @@ -31629,7 +31752,7 @@ msgstr "" msgid "{0} un-shared this document with {1}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:254 +#: frappe/custom/doctype/customize_form/customize_form.py:256 msgid "{0} updated" msgstr "" @@ -31689,7 +31812,7 @@ msgstr "" msgid "{0} {1} not found" msgstr "" -#: frappe/model/delete_doc.py:248 +#: frappe/model/delete_doc.py:288 msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first." msgstr "" @@ -31699,7 +31822,7 @@ msgstr "" #: 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} kész | Kérjük, hagyja ezt a fület nyitva a befejezésig." #: frappe/model/base_document.py:1181 msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}" @@ -31802,7 +31925,7 @@ msgstr "" msgid "{0}: {1} is set to state {2}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1283 +#: frappe/public/js/frappe/views/reports/query_report.js:1291 msgid "{0}: {1} vs {2}" msgstr "" @@ -31838,11 +31961,11 @@ msgstr "" msgid "{} Complete" msgstr "" -#: frappe/utils/data.py:2541 +#: frappe/utils/data.py:2567 msgid "{} Invalid python code on line {}" msgstr "" -#: frappe/utils/data.py:2550 +#: frappe/utils/data.py:2576 msgid "{} Possibly invalid python code.
{}" msgstr "" @@ -31868,7 +31991,7 @@ msgstr "" msgid "{} is not a valid date string." msgstr "" -#: frappe/commands/utils.py:562 +#: frappe/commands/utils.py:561 msgid "{} not found in PATH! This is required to access the console." msgstr "" diff --git a/frappe/locale/id.po b/frappe/locale/id.po index 5df43c1e69..ce8c313ad5 100644 --- a/frappe/locale/id.po +++ b/frappe/locale/id.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: developers@frappe.io\n" -"POT-Creation-Date: 2025-09-21 09:33+0000\n" -"PO-Revision-Date: 2025-09-21 19:57\n" +"POT-Creation-Date: 2025-10-05 09:33+0000\n" +"PO-Revision-Date: 2025-10-06 22:59\n" "Last-Translator: developers@frappe.io\n" "Language-Team: Indonesian\n" "MIME-Version: 1.0\n" @@ -78,7 +78,7 @@ msgstr "'Di Pencarian Global' tidak dibolehkan jenis {0} pada baris {1}" msgid "'In List View' is not allowed for field {0} of type {1}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:363 +#: frappe/custom/doctype/customize_form/customize_form.py:367 msgid "'In List View' not allowed for type {0} in row {1}" msgstr "'Tampilan Daftar' tidak diperbolehkan jenis {0} di baris {1}" @@ -122,7 +122,7 @@ msgstr "" msgid "0 is highest" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:892 +#: frappe/public/js/frappe/form/grid_row.js:893 msgid "1 = True & 0 = False" msgstr "" @@ -140,11 +140,11 @@ msgstr "" msgid "1 Google Calendar Event synced." msgstr "1 Acara Kalender Google disinkronkan." -#: frappe/public/js/frappe/views/reports/query_report.js:955 +#: frappe/public/js/frappe/views/reports/query_report.js:963 msgid "1 Report" msgstr "" -#: frappe/tests/test_utils.py:739 +#: frappe/tests/test_utils.py:845 msgid "1 day ago" msgstr "" @@ -153,17 +153,17 @@ msgid "1 hour" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:52 -#: frappe/tests/test_utils.py:737 +#: frappe/tests/test_utils.py:843 msgid "1 hour ago" msgstr "1 jam yang lalu" #: frappe/public/js/frappe/utils/pretty_date.js:48 -#: frappe/tests/test_utils.py:735 +#: frappe/tests/test_utils.py:841 msgid "1 minute ago" msgstr "1 menit yang lalu" #: frappe/public/js/frappe/utils/pretty_date.js:66 -#: frappe/tests/test_utils.py:743 +#: frappe/tests/test_utils.py:849 msgid "1 month ago" msgstr "1 bulan lalu" @@ -185,37 +185,37 @@ msgctxt "User added row to child table" msgid "1 row to {0}" msgstr "" -#: frappe/tests/test_utils.py:734 +#: frappe/tests/test_utils.py:840 msgid "1 second ago" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:62 -#: frappe/tests/test_utils.py:741 +#: frappe/tests/test_utils.py:847 msgid "1 week ago" msgstr "1 minggu yang lalu" #: frappe/public/js/frappe/utils/pretty_date.js:70 -#: frappe/tests/test_utils.py:745 +#: frappe/tests/test_utils.py:851 msgid "1 year ago" msgstr "1 tahun yang lalu" -#: frappe/tests/test_utils.py:738 +#: frappe/tests/test_utils.py:844 msgid "2 hours ago" msgstr "" -#: frappe/tests/test_utils.py:744 +#: frappe/tests/test_utils.py:850 msgid "2 months ago" msgstr "" -#: frappe/tests/test_utils.py:742 +#: frappe/tests/test_utils.py:848 msgid "2 weeks ago" msgstr "" -#: frappe/tests/test_utils.py:746 +#: frappe/tests/test_utils.py:852 msgid "2 years ago" msgstr "" -#: frappe/tests/test_utils.py:736 +#: frappe/tests/test_utils.py:842 msgid "3 minutes ago" msgstr "" @@ -231,7 +231,7 @@ msgstr "" msgid "5 Records" msgstr "5 catatan" -#: frappe/tests/test_utils.py:740 +#: frappe/tests/test_utils.py:846 msgid "5 days ago" msgstr "" @@ -267,6 +267,16 @@ msgstr "" 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 "" +#. Introduction text of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "

Request a file containing your personally identifiable information (PII) that is saved on our system. The file will be in JSON format and is sent to you by email. If you would like to have your PII deleted from our system, please make a request to delete data.

" +msgstr "" + +#. Introduction text of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "

Send a request to delete your account and personally identifiable information (PII) that is stored on our system. You will receive an email to verify your request. Once the request is verified we will take care of deleting your PII. If you just want to check what PII we have stored, you can request your data.

" +msgstr "" + #. Content of the 'Help HTML' (HTML) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -568,6 +578,11 @@ msgstr "" msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three." msgstr "" +#. Success message of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "A download link with your data will be sent to the email address associated with your account." +msgstr "" + #: frappe/custom/doctype/custom_field/custom_field.py:175 msgid "A field with the name {0} already exists in {1}" msgstr "" @@ -694,7 +709,7 @@ msgstr "" #. 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.js:452 frappe/core/doctype/user/user.json +#: frappe/core/doctype/user/user.js:459 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 @@ -713,7 +728,7 @@ msgstr "" msgid "API Key cannot be regenerated" msgstr "" -#: frappe/core/doctype/user/user.js:449 +#: frappe/core/doctype/user/user.js:456 msgid "API Keys" msgstr "" @@ -737,7 +752,7 @@ msgstr "" #. 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.js:459 frappe/core/doctype/user/user.json +#: frappe/core/doctype/user/user.js:466 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" @@ -823,7 +838,7 @@ msgstr "" msgid "Access Token URL" msgstr "" -#: frappe/auth.py:491 +#: frappe/auth.py:494 msgid "Access not allowed from this IP Address" msgstr "Akses tidak diizinkan dari Alamat IP ini" @@ -939,7 +954,7 @@ msgstr "" #: 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:842 +#: frappe/public/js/frappe/views/reports/query_report.js:850 msgid "Actions" msgstr "Tindakan" @@ -996,7 +1011,7 @@ msgstr "Log Aktivitas" #: 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:501 +#: frappe/public/js/frappe/form/grid_row.js:502 #: 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 @@ -1007,7 +1022,7 @@ msgstr "Log Aktivitas" msgid "Add" msgstr "Tambahkan" -#: frappe/public/js/frappe/form/grid_row.js:454 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Add / Remove Columns" msgstr "" @@ -1052,8 +1067,8 @@ msgid "Add Child" msgstr "Tambah Anak" #: frappe/public/js/frappe/views/kanban/kanban_board.html:4 -#: frappe/public/js/frappe/views/reports/query_report.js:1832 -#: frappe/public/js/frappe/views/reports/query_report.js:1835 +#: frappe/public/js/frappe/views/reports/query_report.js:1840 +#: frappe/public/js/frappe/views/reports/query_report.js:1843 #: frappe/public/js/frappe/views/reports/report_view.js:360 #: frappe/public/js/frappe/views/reports/report_view.js:385 #: frappe/public/js/print_format_builder/Field.vue:112 @@ -1147,7 +1162,7 @@ msgstr "Tambahkan Pelanggan" msgid "Add Tags" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2149 +#: frappe/public/js/frappe/list/list_view.js:2151 msgctxt "Button in list view actions menu" msgid "Add Tags" msgstr "" @@ -1528,11 +1543,11 @@ msgstr "" msgid "Alerts and Notifications" msgstr "" -#: frappe/database/query.py:1608 +#: frappe/database/query.py:1610 msgid "Alias cannot be a SQL keyword: {0}" msgstr "" -#: frappe/database/query.py:1533 +#: frappe/database/query.py:1535 msgid "Alias must be a string" msgstr "" @@ -1979,6 +1994,12 @@ msgstr "Juga menambahkan bidang dependensi status {0}" msgid "Alternative Email ID" msgstr "" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Always" +msgstr "" + #. Label of the always_bcc (Data) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Always BCC Address" @@ -2055,6 +2076,11 @@ msgstr "" msgid "Amendment naming rules updated." msgstr "" +#. Success message of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "An email to verify your request has been sent to your email address. Please verify your request to complete the process." +msgstr "" + #: frappe/public/js/frappe/ui/toolbar/toolbar.js:354 msgid "An error occurred while setting Session Defaults" msgstr "Terjadi kesalahan saat mengatur Sesi Default" @@ -2237,7 +2263,7 @@ msgstr "" msgid "Apply" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2134 +#: frappe/public/js/frappe/list/list_view.js:2136 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" msgstr "Terapkan Aturan Penugasan" @@ -2322,7 +2348,7 @@ msgstr "Kolom diarsipkan" msgid "Are you sure you want to cancel the invitation?" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2113 +#: frappe/public/js/frappe/list/list_view.js:2115 msgid "Are you sure you want to clear the assignments?" msgstr "" @@ -2358,7 +2384,7 @@ msgstr "" msgid "Are you sure you want to discard the changes?" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:969 +#: frappe/public/js/frappe/views/reports/query_report.js:977 msgid "Are you sure you want to generate a new report?" msgstr "" @@ -2366,7 +2392,7 @@ msgstr "" msgid "Are you sure you want to merge {0} with {1}?" msgstr "Anda yakin ingin menggabungkan {0} dengan {1}?" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:108 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:118 msgid "Are you sure you want to proceed?" msgstr "" @@ -2421,6 +2447,12 @@ msgstr "" msgid "As per your request, your account and data on {0} associated with email {1} has been permanently deleted" msgstr "" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Ask" +msgstr "" + #. Label of the assign_condition (Code) field in DocType 'Assignment Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Assign Condition" @@ -2430,7 +2462,7 @@ msgstr "" msgid "Assign To" msgstr "Tugaskan Kepada" -#: frappe/public/js/frappe/list/list_view.js:2095 +#: frappe/public/js/frappe/list/list_view.js:2097 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "Tugaskan Kepada" @@ -2573,7 +2605,7 @@ msgstr "Tugas" msgid "Asynchronous" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:696 +#: frappe/public/js/frappe/form/grid_row.js:697 msgid "At least one column is required to show in the grid." msgstr "" @@ -3553,7 +3585,7 @@ msgstr "Hapus Massal" msgid "Bulk Edit" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1189 +#: frappe/public/js/frappe/form/grid.js:1190 msgid "Bulk Edit {0}" msgstr "Sunting Massal {0}" @@ -3845,7 +3877,7 @@ msgstr "" #. 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/doctype/doctype_list.js:131 #: frappe/core/doctype/user_document_type/user_document_type.json #: frappe/core/doctype/user_invitation/user_invitation.js:17 #: frappe/email/doctype/notification/notification.json @@ -3853,7 +3885,7 @@ msgstr "" msgid "Cancel" msgstr "Batalkan" -#: frappe/public/js/frappe/list/list_view.js:2204 +#: frappe/public/js/frappe/list/list_view.js:2206 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "Batalkan" @@ -3871,7 +3903,7 @@ msgstr "" msgid "Cancel All Documents" msgstr "Batalkan Semua Dokumen" -#: frappe/public/js/frappe/list/list_view.js:2209 +#: frappe/public/js/frappe/list/list_view.js:2211 msgctxt "Title of confirmation dialog" msgid "Cancel {0} documents?" msgstr "Batalkan {0} dokumen?" @@ -3924,7 +3956,7 @@ msgstr "Tidak bisa Hapus" msgid "Cannot Update After Submit" msgstr "" -#: frappe/core/doctype/file/file.py:643 +#: frappe/core/doctype/file/file.py:646 msgid "Cannot access file path {0}" msgstr "" @@ -3972,7 +4004,7 @@ msgstr "" msgid "Cannot delete Home and Attachments folders" msgstr "Tidak dapat menghapus Rumah dan Lampiran folder" -#: frappe/model/delete_doc.py:379 +#: frappe/model/delete_doc.py:419 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}" @@ -4052,7 +4084,7 @@ msgstr "" msgid "Cannot find file {} on disk" msgstr "" -#: frappe/core/doctype/file/file.py:583 +#: frappe/core/doctype/file/file.py:586 msgid "Cannot get file contents of a Folder" msgstr "" @@ -4060,7 +4092,7 @@ msgstr "" msgid "Cannot have multiple printers mapped to a single print format." msgstr "Tidak dapat memetakan banyak printer ke format cetak tunggal." -#: frappe/public/js/frappe/form/grid.js:1133 +#: frappe/public/js/frappe/form/grid.js:1134 msgid "Cannot import table with more than 5000 rows." msgstr "" @@ -4076,7 +4108,7 @@ msgstr "" msgid "Cannot match column {0} with any field" msgstr "Tidak dapat mencocokkan kolom {0} dengan bidang apa pun" -#: frappe/public/js/frappe/form/grid_row.js:175 +#: frappe/public/js/frappe/form/grid_row.js:176 msgid "Cannot move row" msgstr "Tidak dapat memindahkan baris" @@ -4105,11 +4137,11 @@ msgstr "" msgid "Cannot update {0}" msgstr "Tidak dapat memperbarui {0}" -#: frappe/model/db_query.py:1130 +#: frappe/model/db_query.py:1136 msgid "Cannot use sub-query here." msgstr "" -#: frappe/model/db_query.py:1162 +#: frappe/model/db_query.py:1168 msgid "Cannot use {0} in order/group by" msgstr "" @@ -4381,11 +4413,11 @@ msgstr "" #. Description of the 'Is Child Table' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:52 +#: frappe/core/doctype/doctype/doctype_list.js:53 msgid "Child Tables are shown as a Grid in other DocTypes" msgstr "Tabel Anak ditampilkan sebagai Kotak di DocTypes lain" -#: frappe/database/query.py:660 +#: frappe/database/query.py:662 msgid "Child query fields for '{0}' must be a list or tuple." msgstr "" @@ -4441,7 +4473,7 @@ msgstr "" msgid "Clear All" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2110 +#: frappe/public/js/frappe/list/list_view.js:2112 msgctxt "Button in list view actions menu" msgid "Clear Assignment" msgstr "" @@ -4535,7 +4567,7 @@ msgstr "" msgid "Click to Set Filters" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:739 +#: frappe/public/js/frappe/list/list_view.js:741 msgid "Click to sort by {0}" msgstr "" @@ -4713,7 +4745,7 @@ msgctxt "Shrink code field." msgid "Collapse" msgstr "Jatuh" -#: frappe/public/js/frappe/views/reports/query_report.js:2113 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 #: frappe/public/js/frappe/views/treeview.js:123 msgid "Collapse All" msgstr "Perkecil Semua" @@ -4768,7 +4800,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:1233 +#: frappe/public/js/frappe/views/reports/query_report.js:1241 #: frappe/public/js/frappe/widgets/widget_dialog.js:546 #: frappe/public/js/frappe/widgets/widget_dialog.js:694 #: frappe/website/doctype/color/color.json @@ -4824,11 +4856,11 @@ msgstr "Kolom Nama" msgid "Column Name cannot be empty" msgstr "Nama kolom tidak boleh kosong" -#: frappe/public/js/frappe/form/grid_row.js:454 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Column Width" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:661 +#: frappe/public/js/frappe/form/grid_row.js:662 msgid "Column width cannot be zero." msgstr "" @@ -4855,7 +4887,7 @@ msgstr "" msgid "Columns / Fields" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:397 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:411 msgid "Columns based on" msgstr "Kolom berdasarkan" @@ -5119,7 +5151,7 @@ msgstr "" msgid "Configure Chart" msgstr "Konfigurasikan Bagan" -#: frappe/public/js/frappe/form/grid_row.js:406 +#: frappe/public/js/frappe/form/grid_row.js:407 msgid "Configure Columns" msgstr "" @@ -5144,7 +5176,7 @@ msgstr "" msgid "Configure various aspects of how document naming works like naming series, current counter." msgstr "" -#: frappe/core/doctype/user/user.js:412 frappe/public/js/frappe/dom.js:345 +#: frappe/core/doctype/user/user.js:400 frappe/public/js/frappe/dom.js:345 #: frappe/www/update-password.html:66 msgid "Confirm" msgstr "Menegaskan" @@ -5163,7 +5195,7 @@ msgstr "" msgid "Confirm Deletion of Account" msgstr "" -#: frappe/core/doctype/user/user.js:196 +#: frappe/core/doctype/user/user.js:184 msgid "Confirm New Password" msgstr "Konfirmasi password baru" @@ -5416,7 +5448,7 @@ msgstr "" msgid "Copy to Clipboard" msgstr "" -#: frappe/core/doctype/user/user.js:480 +#: frappe/core/doctype/user/user.js:487 msgid "Copy token to clipboard" msgstr "" @@ -5425,7 +5457,7 @@ msgstr "" msgid "Copyright" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:123 +#: frappe/custom/doctype/customize_form/customize_form.py:125 msgid "Core DocTypes cannot be customized." msgstr "Core DocTypes tidak dapat dikustomisasi." @@ -5449,7 +5481,7 @@ msgstr "Tidak dapat menemukan {0}" msgid "Could not map column {0} to field {1}" msgstr "Tidak dapat memetakan kolom {0} ke bidang {1}" -#: frappe/database/query.py:564 +#: frappe/database/query.py:566 msgid "Could not parse field: {0}" msgstr "" @@ -5541,13 +5573,13 @@ 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:1265 +#: frappe/public/js/frappe/views/reports/query_report.js:1273 #: frappe/public/js/frappe/views/workspace/workspace.js:469 #: frappe/workflow/page/workflow_builder/workflow_builder.js:46 msgid "Create" msgstr "Buat" -#: frappe/core/doctype/doctype/doctype_list.js:102 +#: frappe/core/doctype/doctype/doctype_list.js:103 msgid "Create & Continue" msgstr "" @@ -5561,7 +5593,7 @@ msgid "Create Card" msgstr "Buat Kartu" #: frappe/public/js/frappe/views/reports/query_report.js:285 -#: frappe/public/js/frappe/views/reports/query_report.js:1192 +#: frappe/public/js/frappe/views/reports/query_report.js:1200 msgid "Create Chart" msgstr "Buat Bagan" @@ -5595,12 +5627,12 @@ msgstr "" msgid "Create New" msgstr "Buat New" -#: frappe/public/js/frappe/list/list_view.js:512 +#: frappe/public/js/frappe/list/list_view.js:514 msgctxt "Create a new document from list view" msgid "Create New" msgstr "Buat New" -#: frappe/core/doctype/doctype/doctype_list.js:100 +#: frappe/core/doctype/doctype/doctype_list.js:101 msgid "Create New DocType" msgstr "" @@ -5608,7 +5640,7 @@ msgstr "" msgid "Create New Kanban Board" msgstr "" -#: frappe/core/doctype/user/user.js:276 +#: frappe/core/doctype/user/user.js:264 msgid "Create User Email" msgstr "Buat Email Pengguna" @@ -5631,8 +5663,8 @@ msgstr "Buat catatan baru" #: frappe/public/js/frappe/form/controls/link.js:315 #: frappe/public/js/frappe/form/controls/link.js:317 #: frappe/public/js/frappe/form/link_selector.js:139 -#: frappe/public/js/frappe/list/list_view.js:504 -#: frappe/public/js/frappe/web_form/web_form_list.js:225 +#: frappe/public/js/frappe/list/list_view.js:506 +#: frappe/public/js/frappe/web_form/web_form_list.js:226 msgid "Create a new {0}" msgstr "Buat baru {0}" @@ -5648,7 +5680,7 @@ msgstr "" msgid "Create or Edit Workflow" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:507 +#: frappe/public/js/frappe/list/list_view.js:509 msgid "Create your first {0}" msgstr "Buat {0} pertama Anda" @@ -5995,7 +6027,7 @@ 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/core/doctype/doctype/doctype_list.js:83 #: frappe/website/doctype/website_theme/website_theme.json msgid "Custom?" msgstr "Kustom?" @@ -6030,7 +6062,7 @@ msgstr "Penyesuaian untuk {0} diekspor ke:
{1}" msgid "Customize" msgstr "Sesuaikan" -#: frappe/public/js/frappe/list/list_view.js:1947 +#: frappe/public/js/frappe/list/list_view.js:1949 msgctxt "Button in list view menu" msgid "Customize" msgstr "Sesuaikan" @@ -6049,7 +6081,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:343 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 msgid "Customize Form" msgstr "Sesuaikan Form" @@ -6280,7 +6312,7 @@ msgstr "" msgid "Data Import Template" msgstr "Impor Template Data" -#: frappe/custom/doctype/customize_form/customize_form.py:615 +#: frappe/custom/doctype/customize_form/customize_form.py:619 msgid "Data Too Long" msgstr "Data Terlalu Panjang" @@ -6311,7 +6343,7 @@ msgstr "" msgid "Database Storage Usage By Tables" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:249 +#: frappe/custom/doctype/customize_form/customize_form.py:251 msgid "Database Table Row Size Limit" msgstr "" @@ -6681,13 +6713,13 @@ msgstr "" #: frappe/public/js/frappe/form/toolbar.js:464 #: frappe/public/js/frappe/views/reports/report_view.js:1749 #: frappe/public/js/frappe/views/treeview.js:329 -#: frappe/public/js/frappe/web_form/web_form_list.js:282 +#: frappe/public/js/frappe/web_form/web_form_list.js:283 #: frappe/templates/discussions/reply_card.html:35 #: frappe/templates/discussions/reply_section.html:29 msgid "Delete" msgstr "Hapus" -#: frappe/public/js/frappe/list/list_view.js:2172 +#: frappe/public/js/frappe/list/list_view.js:2174 msgctxt "Button in list view actions menu" msgid "Delete" msgstr "Hapus" @@ -6720,7 +6752,7 @@ msgstr "" msgid "Delete Data" msgstr "Hapus Data" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:106 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:116 msgid "Delete Kanban Board" msgstr "" @@ -6734,7 +6766,7 @@ msgctxt "Title of confirmation dialog" msgid "Delete Tab" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:936 +#: frappe/public/js/frappe/views/reports/query_report.js:944 msgid "Delete and Generate New" msgstr "" @@ -6776,12 +6808,12 @@ msgstr "" msgid "Delete this record to allow sending to this email address" msgstr "Hapus data ini untuk bisa mengirim ke alamat surel ini" -#: frappe/public/js/frappe/list/list_view.js:2177 +#: frappe/public/js/frappe/list/list_view.js:2179 msgctxt "Title of confirmation dialog" msgid "Delete {0} item permanently?" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2183 +#: frappe/public/js/frappe/list/list_view.js:2185 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "Hapus {0} item secara permanen?" @@ -7278,10 +7310,14 @@ msgstr "Jangan Buat Pengguna Baru" msgid "Do not create new user if user with email does not exist in the system" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1194 +#: frappe/public/js/frappe/form/grid.js:1195 msgid "Do not edit headers which are preset in the template" msgstr "Jangan edit header yang sudah ada di template" +#: frappe/public/js/frappe/router.js:624 +msgid "Do not warn me again about {0}" +msgstr "" + #: frappe/core/doctype/system_settings/system_settings.js:71 msgid "Do you still want to proceed?" msgstr "" @@ -7705,7 +7741,7 @@ msgstr "" #: 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/public/js/frappe/roles_editor.js:68 #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json #: frappe/workflow/doctype/workflow/workflow.json msgid "Document Type" @@ -7756,15 +7792,15 @@ msgstr "" msgid "Document follow is not enabled for this user." msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1300 +#: frappe/public/js/frappe/list/list_view.js:1302 msgid "Document has been cancelled" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1299 +#: frappe/public/js/frappe/list/list_view.js:1301 msgid "Document has been submitted" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1298 +#: frappe/public/js/frappe/list/list_view.js:1300 msgid "Document is in draft state" msgstr "" @@ -7906,7 +7942,7 @@ msgstr "" msgid "Double click to edit label" msgstr "" -#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:467 +#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:474 #: frappe/email/doctype/auto_email_report/auto_email_report.js:8 #: frappe/public/js/frappe/form/grid.js:66 msgid "Download" @@ -7939,7 +7975,7 @@ msgstr "Unduh Tautan" msgid "Download PDF" msgstr "Unduh PDF" -#: frappe/public/js/frappe/views/reports/query_report.js:832 +#: frappe/public/js/frappe/views/reports/query_report.js:840 msgid "Download Report" msgstr "Unduh Laporan" @@ -8139,8 +8175,8 @@ msgstr "" #: 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:880 -#: frappe/public/js/frappe/views/reports/query_report.js:1783 +#: frappe/public/js/frappe/views/reports/query_report.js:888 +#: frappe/public/js/frappe/views/reports/query_report.js:1791 #: 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 @@ -8152,7 +8188,7 @@ msgstr "" msgid "Edit" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2258 +#: frappe/public/js/frappe/list/list_view.js:2260 msgctxt "Button in list view actions menu" msgid "Edit" msgstr "" @@ -8162,7 +8198,7 @@ msgctxt "Button in web form" msgid "Edit" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:349 +#: frappe/public/js/frappe/form/grid_row.js:350 msgctxt "Edit grid row" msgid "Edit" msgstr "" @@ -8191,7 +8227,7 @@ msgstr "Mengedit Custom HTML" msgid "Edit DocType" msgstr "mengedit DocType" -#: frappe/public/js/frappe/list/list_view.js:1974 +#: frappe/public/js/frappe/list/list_view.js:1976 msgctxt "Button in list view menu" msgid "Edit DocType" msgstr "mengedit DocType" @@ -8311,7 +8347,7 @@ msgstr "" #. 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/core/doctype/doctype/doctype_list.js:58 #: frappe/custom/doctype/customize_form/customize_form.json msgid "Editable Grid" msgstr "diedit Grid" @@ -8356,6 +8392,8 @@ msgstr "" #. 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' +#. Label of a field in the request-data Web Form +#. Label of a field in the request-to-delete-data Web Form #: frappe/automation/workspace/tools/tools.json #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/custom_docperm/custom_docperm.json @@ -8374,6 +8412,8 @@ msgstr "" #: 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/website/web_form/request_data/request_data.json +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json #: frappe/www/login.html:8 frappe/www/login.py:104 msgid "Email" msgstr "Surel" @@ -8605,7 +8645,7 @@ msgstr "Email telah ditandai sebagai spam" msgid "Email has been moved to trash" msgstr "Email telah dipindahkan ke sampah" -#: frappe/core/doctype/user/user.js:278 +#: frappe/core/doctype/user/user.js:266 msgid "Email is mandatory to create User Email" msgstr "" @@ -8648,7 +8688,7 @@ msgstr "" msgid "Embed code copied" msgstr "" -#: frappe/database/query.py:1537 +#: frappe/database/query.py:1539 msgid "Empty alias is not allowed" msgstr "" @@ -8656,7 +8696,7 @@ msgstr "" msgid "Empty column" msgstr "" -#: frappe/database/query.py:1455 +#: frappe/database/query.py:1457 msgid "Empty string arguments are not allowed" msgstr "" @@ -9112,9 +9152,9 @@ msgstr "" msgid "Error in Header/Footer Script" msgstr "" -#: frappe/email/doctype/notification/notification.py:640 -#: frappe/email/doctype/notification/notification.py:780 -#: frappe/email/doctype/notification/notification.py:786 +#: frappe/email/doctype/notification/notification.py:642 +#: frappe/email/doctype/notification/notification.py:782 +#: frappe/email/doctype/notification/notification.py:788 msgid "Error in Notification" msgstr "Kesalahan dalam Notifikasi" @@ -9134,7 +9174,7 @@ msgstr "" msgid "Error while connecting to email account {0}" msgstr "Kesalahan saat menyambung ke akun email {0}" -#: frappe/email/doctype/notification/notification.py:777 +#: frappe/email/doctype/notification/notification.py:779 msgid "Error while evaluating Notification {0}. Please fix your template." msgstr "Kesalahan saat mengevaluasi Pemberitahuan {0}. Silakan perbaiki template Anda." @@ -9295,7 +9335,7 @@ msgstr "" msgid "Executing..." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2132 +#: frappe/public/js/frappe/views/reports/query_report.js:2140 msgid "Execution Time: {0} sec" msgstr "Waktu Eksekusi: {0} dtk" @@ -9321,12 +9361,12 @@ msgctxt "Enlarge code field." msgid "Expand" msgstr "Memperluas" -#: frappe/public/js/frappe/views/reports/query_report.js:2113 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 #: frappe/public/js/frappe/views/treeview.js:133 msgid "Expand All" msgstr "Melebarkan semua" -#: frappe/database/query.py:352 +#: frappe/database/query.py:354 msgid "Expected 'and' or 'or' operator, found: {0}" msgstr "" @@ -9384,13 +9424,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:1820 +#: frappe/public/js/frappe/views/reports/query_report.js:1828 #: frappe/public/js/frappe/views/reports/report_view.js:1629 #: frappe/public/js/frappe/widgets/chart_widget.js:315 msgid "Export" msgstr "Ekspor" -#: frappe/public/js/frappe/list/list_view.js:2280 +#: frappe/public/js/frappe/list/list_view.js:2282 msgctxt "Button in list view actions menu" msgid "Export" msgstr "Ekspor" @@ -9583,7 +9623,7 @@ msgstr "" msgid "Failed to connect to server" msgstr "Gagal terhubung ke server" -#: frappe/auth.py:698 +#: frappe/auth.py:701 msgid "Failed to decode token, please provide a valid base64-encoded token." msgstr "Gagal mendekode token, berikan token berenkode base64 yang valid." @@ -9747,7 +9787,7 @@ msgstr "Mengambil dokumen Penelusuran Global default." #: 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:1879 +#: frappe/public/js/frappe/views/reports/query_report.js:1887 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_form_list_column/web_form_list_column.json msgid "Field" @@ -9830,7 +9870,7 @@ msgstr "" msgid "Field {0} not found." msgstr "Bidang {0} tidak ditemukan" -#: frappe/email/doctype/notification/notification.py:545 +#: frappe/email/doctype/notification/notification.py:547 msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link" msgstr "" @@ -9848,7 +9888,7 @@ msgstr "" #: 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:454 +#: frappe/public/js/frappe/form/grid_row.js:455 #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Fieldname" msgstr "" @@ -9929,7 +9969,7 @@ msgstr "" msgid "Fields must be a list or tuple when as_list is enabled" msgstr "" -#: frappe/database/query.py:611 +#: frappe/database/query.py:613 msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function" msgstr "" @@ -9957,7 +9997,7 @@ msgstr "" msgid "Fieldtype cannot be changed from {0} to {1}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:589 +#: frappe/custom/doctype/customize_form/customize_form.py:593 msgid "Fieldtype cannot be changed from {0} to {1} in row {2}" msgstr "Fieldtype tidak dapat diubah dari {0} ke {1} di baris {2}" @@ -10023,7 +10063,7 @@ msgstr "" msgid "File backup is ready" msgstr "File cadangan sudah siap" -#: frappe/core/doctype/file/file.py:646 +#: frappe/core/doctype/file/file.py:649 msgid "File name cannot have {0}" msgstr "Nama file tidak boleh memuat {0}" @@ -10031,7 +10071,7 @@ msgstr "Nama file tidak boleh memuat {0}" msgid "File not attached" msgstr "Berkas tidak terpasang" -#: frappe/core/doctype/file/file.py:756 frappe/public/js/frappe/request.js:200 +#: frappe/core/doctype/file/file.py:759 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" @@ -10044,7 +10084,7 @@ msgstr "File terlalu besar" msgid "File type of {0} is not allowed" msgstr "" -#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:448 +#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:451 msgid "File {0} does not exist" msgstr "Berkas {0} tidak ada" @@ -10098,11 +10138,11 @@ msgstr "Nama filter" msgid "Filter Values" msgstr "" -#: frappe/database/query.py:358 +#: frappe/database/query.py:360 msgid "Filter condition missing after operator: {0}" msgstr "" -#: frappe/database/query.py:425 +#: frappe/database/query.py:427 msgid "Filter fields cannot contain backticks (`)." msgstr "" @@ -10179,7 +10219,7 @@ msgstr "" msgid "Filters applied for {0}" msgstr "Filter diterapkan untuk {0}" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:188 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:202 msgid "Filters saved" msgstr "filter tersimpan" @@ -10227,9 +10267,12 @@ msgstr "" #. Label of the first_name (Data) field in DocType 'Contact' #. Label of the first_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json #: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:44 -#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:15 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:15 msgid "First Name" msgstr "Nama Depan" @@ -10310,7 +10353,7 @@ msgstr "" msgid "Folder name should not include '/' (slash)" msgstr "Nama folder tidak boleh menyertakan '/' (garis miring)" -#: frappe/core/doctype/file/file.py:494 +#: frappe/core/doctype/file/file.py:497 msgid "Folder {0} is not empty" msgstr "Folder {0} tidak kosong" @@ -10512,7 +10555,7 @@ msgstr "untuk Pengguna" msgid "For Value" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2129 +#: frappe/public/js/frappe/views/reports/query_report.js:2137 #: frappe/public/js/frappe/views/reports/report_view.js:108 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)." @@ -10797,7 +10840,7 @@ msgstr "Dari Tanggal" msgid "From Date Field" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1840 +#: frappe/public/js/frappe/views/reports/query_report.js:1848 msgid "From Document Type" msgstr "Dari Jenis Dokumen" @@ -10859,13 +10902,13 @@ msgstr "Fungsi Berdasarkan" msgid "Function {0} is not whitelisted." msgstr "" -#: frappe/database/query.py:1417 +#: frappe/database/query.py:1419 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'" +msgid "Further sub-groups can only be created under records marked as 'Group'" +msgstr "" #: frappe/core/doctype/communication/communication.js:291 msgid "Fw: {0}" @@ -10924,7 +10967,7 @@ msgstr "" msgid "Generate Keys" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:874 +#: frappe/public/js/frappe/views/reports/query_report.js:882 msgid "Generate New Report" msgstr "Hasilkan Laporan Baru" @@ -11340,14 +11383,10 @@ msgstr "" msgid "Group By field is required to create a dashboard chart" msgstr "Kolom Group By diperlukan untuk membuat bagan dasbor" -#: frappe/database/query.py:750 +#: frappe/database/query.py:752 msgid "Group By must be a string" msgstr "" -#: frappe/public/js/frappe/views/treeview.js:418 -msgid "Group Node" -msgstr "Node Grup" - #. Label of the ldap_group_objectclass (Data) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Group Object Class" @@ -11677,7 +11716,7 @@ msgstr "" msgid "Hidden Fields" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1642 +#: frappe/public/js/frappe/views/reports/query_report.js:1650 msgid "Hidden columns include: {0}" msgstr "" @@ -11789,7 +11828,7 @@ msgstr "" msgid "Hide Standard Menu" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1849 +#: frappe/public/js/frappe/list/list_view.js:1851 msgid "Hide Tags" msgstr "" @@ -12048,7 +12087,7 @@ msgstr "" #: frappe/core/doctype/doctype/doctype.py:1777 #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45 -#: frappe/public/js/frappe/roles_editor.js:66 +#: frappe/public/js/frappe/roles_editor.js:68 msgid "If Owner" msgstr "Jika Owner" @@ -12276,8 +12315,8 @@ msgstr "" msgid "Illegal Document Status for {0}" msgstr "Status Dokumen Ilegal untuk {0}" -#: frappe/model/db_query.py:453 frappe/model/db_query.py:456 -#: frappe/model/db_query.py:1121 +#: frappe/model/db_query.py:454 frappe/model/db_query.py:457 +#: frappe/model/db_query.py:1122 msgid "Illegal SQL Query" msgstr "Query SQL Ilegal" @@ -12364,11 +12403,11 @@ msgstr "Gambar" #. Option for the 'Operation' (Select) field in DocType 'Activity Log' #: frappe/core/doctype/activity_log/activity_log.json -#: frappe/core/doctype/user/user.js:384 +#: frappe/core/doctype/user/user.js:372 msgid "Impersonate" msgstr "" -#: frappe/core/doctype/user/user.js:411 +#: frappe/core/doctype/user/user.js:399 msgid "Impersonate as {0}" msgstr "" @@ -12398,7 +12437,7 @@ msgstr "" msgid "Import" msgstr "Impor" -#: frappe/public/js/frappe/list/list_view.js:1911 +#: frappe/public/js/frappe/list/list_view.js:1913 msgctxt "Button in list view menu" msgid "Import" msgstr "Impor" @@ -12627,15 +12666,15 @@ msgid "Include Web View Link in Email" msgstr "" #: frappe/public/js/frappe/form/print_utils.js:59 -#: frappe/public/js/frappe/views/reports/query_report.js:1620 +#: frappe/public/js/frappe/views/reports/query_report.js:1628 msgid "Include filters" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1640 +#: frappe/public/js/frappe/views/reports/query_report.js:1648 msgid "Include hidden columns" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1612 +#: frappe/public/js/frappe/views/reports/query_report.js:1620 msgid "Include indentation" msgstr "Termasuk lekukan" @@ -12682,7 +12721,7 @@ msgstr "Akun email masuk tidak benar" msgid "Incomplete Virtual Doctype Implementation" msgstr "" -#: frappe/auth.py:255 +#: frappe/auth.py:258 msgid "Incomplete login details" msgstr "Rincian login tidak lengkap" @@ -12793,7 +12832,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:1885 +#: frappe/public/js/frappe/views/reports/query_report.js:1893 msgid "Insert After" msgstr "Masukkan Setelah" @@ -12866,7 +12905,7 @@ msgstr "" msgid "Insufficient Permission Level for {0}" msgstr "" -#: frappe/database/query.py:806 frappe/database/query.py:1052 +#: frappe/database/query.py:808 frappe/database/query.py:1054 msgid "Insufficient Permission for {0}" msgstr "Izin tidak cukup untuk {0}" @@ -12982,7 +13021,7 @@ msgid "Invalid" msgstr "" #: frappe/public/js/form_builder/utils.js:221 -#: frappe/public/js/frappe/form/grid_row.js:849 +#: frappe/public/js/frappe/form/grid_row.js:850 #: frappe/public/js/frappe/form/layout.js:810 #: frappe/public/js/frappe/views/reports/report_view.js:721 msgid "Invalid \"depends_on\" expression" @@ -13040,8 +13079,8 @@ 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 +#: frappe/database/query.py:429 frappe/database/query.py:456 +#: frappe/database/query.py:466 frappe/database/query.py:489 msgid "Invalid Filter" msgstr "" @@ -13113,7 +13152,7 @@ msgstr "kata sandi salah" msgid "Invalid Phone Number" msgstr "" -#: frappe/auth.py:94 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 +#: frappe/auth.py:97 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 #: frappe/www/login.py:128 msgid "Invalid Request" msgstr "Permintaan tidak valid" @@ -13153,7 +13192,7 @@ msgstr "" msgid "Invalid aggregate function" msgstr "" -#: frappe/database/query.py:1542 +#: frappe/database/query.py:1544 msgid "Invalid alias format: {0}. Alias must be a simple identifier." msgstr "" @@ -13161,19 +13200,19 @@ msgstr "" msgid "Invalid app" msgstr "" -#: frappe/database/query.py:1468 +#: frappe/database/query.py:1470 msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed." msgstr "" -#: frappe/database/query.py:1444 +#: frappe/database/query.py:1446 msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed." msgstr "" -#: frappe/database/query.py:460 +#: frappe/database/query.py:462 msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed." msgstr "" -#: frappe/database/query.py:575 +#: frappe/database/query.py:577 msgid "Invalid characters in table name: {0}" msgstr "" @@ -13181,11 +13220,11 @@ msgstr "" msgid "Invalid column" msgstr "Kolom tidak valid" -#: frappe/database/query.py:381 +#: frappe/database/query.py:383 msgid "Invalid condition type in nested filters: {0}" msgstr "" -#: frappe/database/query.py:787 +#: frappe/database/query.py:789 msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'." msgstr "" @@ -13201,23 +13240,23 @@ msgstr "Persamaan tidak valid disetel dalam filter {0}" msgid "Invalid expression set in filter {0} ({1})" msgstr "Persamaan tidak valid ditetapkan dalam filter {0} ({1})" -#: frappe/database/query.py:1301 +#: frappe/database/query.py:1303 msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'." msgstr "" -#: frappe/database/query.py:734 +#: frappe/database/query.py:736 msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'." msgstr "" -#: frappe/database/query.py:1620 +#: frappe/database/query.py:1622 msgid "Invalid field name in function: {0}. Only simple field names are allowed." msgstr "" -#: frappe/utils/data.py:2215 +#: frappe/utils/data.py:2241 msgid "Invalid field name {0}" msgstr "Nama bidang tidak valid {0}" -#: frappe/database/query.py:668 +#: frappe/database/query.py:670 msgid "Invalid field type: {0}" msgstr "" @@ -13229,11 +13268,11 @@ msgstr "fieldname tidak valid '{0}' di autoname" msgid "Invalid file path: {0}" msgstr "Path file tidak valid: {0}" -#: frappe/database/query.py:364 +#: frappe/database/query.py:366 msgid "Invalid filter condition: {0}. Expected a list or tuple." msgstr "" -#: frappe/database/query.py:450 +#: frappe/database/query.py:452 msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'." msgstr "" @@ -13241,11 +13280,11 @@ msgstr "" msgid "Invalid filter: {0}" msgstr "Filter tidak valid: {0}" -#: frappe/database/query.py:1422 +#: frappe/database/query.py:1424 msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed." msgstr "" -#: frappe/database/query.py:1383 +#: frappe/database/query.py:1385 msgid "Invalid function dictionary format" msgstr "" @@ -13282,23 +13321,27 @@ msgstr "Konten tidak valid atau rusak untuk diimpor" msgid "Invalid redirect regex in row #{}: {}" msgstr "" -#: frappe/app.py:337 +#: frappe/app.py:340 msgid "Invalid request arguments" msgstr "" +#: frappe/app.py:327 +msgid "Invalid request body" +msgstr "" + #: frappe/core/doctype/user_invitation/user_invitation.py:181 msgid "Invalid role" msgstr "" -#: frappe/database/query.py:410 +#: frappe/database/query.py:412 msgid "Invalid simple filter format: {0}" msgstr "" -#: frappe/database/query.py:341 +#: frappe/database/query.py:343 msgid "Invalid start for filter condition: {0}. Expected a list or tuple." msgstr "" -#: frappe/database/query.py:1489 +#: frappe/database/query.py:1491 msgid "Invalid string literal format: {0}" msgstr "" @@ -13402,7 +13445,7 @@ msgstr "" #. 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/doctype_list.js:50 #: frappe/core/doctype/doctype_link/doctype_link.json msgid "Is Child Table" msgstr "Apakah Anak Table" @@ -13455,6 +13498,10 @@ msgstr "" msgid "Is Global" msgstr "Apakah global" +#: frappe/public/js/frappe/views/treeview.js:418 +msgid "Is Group" +msgstr "Apakah Group?" + #. Label of the is_hidden (Check) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "Is Hidden" @@ -13543,7 +13590,7 @@ 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/core/doctype/doctype/doctype_list.js:65 #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Is Single" msgstr "Tunggal" @@ -13579,7 +13626,7 @@ msgstr "" #. Label of the is_submittable (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:39 +#: frappe/core/doctype/doctype/doctype_list.js:40 msgid "Is Submittable" msgstr "Apakah Submittable" @@ -13785,11 +13832,11 @@ msgstr "Kolom papan 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:388 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:402 msgid "Kanban Board Name" msgstr "Nama papan kanban" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:265 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:279 msgctxt "Button in kanban view menu" msgid "Kanban Settings" msgstr "" @@ -14087,10 +14134,13 @@ msgstr "Pemandangan" #. 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' +#. Label of a field in the edit-profile Web Form #: 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:117 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/printing/page/print/print.js:117 #: frappe/public/js/frappe/form/templates/print_layout.html:11 msgid "Language" msgstr "Bahasa" @@ -14178,9 +14228,12 @@ msgstr "" #. Label of the last_name (Data) field in DocType 'Contact' #. Label of the last_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json #: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:45 -#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:19 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:19 msgid "Last Name" msgstr "Nama Belakang" @@ -14421,7 +14474,7 @@ msgstr "" #: 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/public/js/frappe/roles_editor.js:68 #: frappe/website/doctype/help_article/help_article.json msgid "Level" msgstr "" @@ -14714,7 +14767,7 @@ msgstr "Daftar filter" msgid "List Settings" msgstr "Pengaturan Daftar" -#: frappe/public/js/frappe/list/list_view.js:1991 +#: frappe/public/js/frappe/list/list_view.js:1993 msgctxt "Button in list view menu" msgid "List Settings" msgstr "Pengaturan Daftar" @@ -14765,7 +14818,7 @@ msgid "Load Balancing" msgstr "" #: frappe/public/js/frappe/list/base_list.js:399 -#: frappe/public/js/frappe/web_form/web_form_list.js:305 +#: frappe/public/js/frappe/web_form/web_form_list.js:306 #: frappe/website/doctype/help_article/templates/help_article_list.html:30 msgid "Load More" msgstr "Muat lebih banyak" @@ -14785,7 +14838,7 @@ msgstr "" #: frappe/public/js/frappe/list/base_list.js:526 #: frappe/public/js/frappe/list/list_view.js:363 #: frappe/public/js/frappe/ui/listing.html:16 -#: frappe/public/js/frappe/views/reports/query_report.js:1089 +#: frappe/public/js/frappe/views/reports/query_report.js:1097 msgid "Loading" msgstr "Memuat" @@ -14928,7 +14981,7 @@ msgstr "Kode Verifikasi Masuk dari {}" msgid "Login and view in Browser" msgstr "Login dan lihat di Browser" -#: frappe/website/doctype/web_form/web_form.js:367 +#: frappe/website/doctype/web_form/web_form.js:368 msgid "Login is required to see web form list view. Enable {0} to see list settings" msgstr "" @@ -14936,7 +14989,7 @@ msgstr "" msgid "Login link sent to your email" msgstr "" -#: frappe/auth.py:339 frappe/auth.py:342 +#: frappe/auth.py:342 frappe/auth.py:345 msgid "Login not allowed at this time" msgstr "Login tidak diizinkan untuk saat ini" @@ -14989,7 +15042,7 @@ msgstr "" msgid "Login with email link expiry (in minutes)" msgstr "" -#: frappe/auth.py:144 +#: frappe/auth.py:147 msgid "Login with username and password is not allowed." msgstr "" @@ -15008,7 +15061,7 @@ msgstr "" msgid "Logout" msgstr "" -#: frappe/core/doctype/user/user.js:202 +#: frappe/core/doctype/user/user.js:190 msgid "Logout All Sessions" msgstr "Keluar dari Semua Sesi" @@ -15112,7 +15165,10 @@ msgid "Major" msgstr "" #. Label of the show_name_in_global_search (Check) field in DocType 'DocType' +#. Label of the show_name_in_global_search (Check) field in DocType 'Customize +#. Form' #: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Make \"name\" searchable in Global Search" msgstr "" @@ -15188,7 +15244,7 @@ msgstr "" msgid "Mandatory Depends On (JS)" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:509 +#: frappe/website/doctype/web_form/web_form.py:536 msgid "Mandatory Information missing:" msgstr "Informasi wajib hilang:" @@ -15645,6 +15701,11 @@ msgstr "" msgid "Middle Name" msgstr "" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Middle Name (Optional)" +msgstr "" + #. Name of a DocType #. Label of a Link in the Tools Workspace #: frappe/automation/doctype/milestone/milestone.json @@ -15751,6 +15812,11 @@ msgstr "" msgid "Mobile No" msgstr "" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Mobile Number" +msgstr "Nomor handphone" + #. 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" @@ -15776,7 +15842,7 @@ msgstr "" #. 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/doctype/doctype_list.js:31 #: 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 @@ -15952,10 +16018,12 @@ msgstr "" #. Label of the additional_info (Section Break) field in DocType #. 'Communication' #. Label of the short_bio (Tab Break) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: 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 +#: frappe/core/web_form/edit_profile/edit_profile.json msgid "More Information" msgstr "" @@ -15985,7 +16053,7 @@ msgstr "" msgid "Move" msgstr "Bergerak" -#: frappe/public/js/frappe/form/grid_row.js:193 +#: frappe/public/js/frappe/form/grid_row.js:194 msgid "Move To" msgstr "Pindah ke" @@ -16021,7 +16089,7 @@ msgstr "" msgid "Move the current field and the following fields to a new column" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:168 +#: frappe/public/js/frappe/form/grid_row.js:169 msgid "Move to Row Number" msgstr "Pindah ke Nomor Baris" @@ -16089,7 +16157,7 @@ msgid "Mx" msgstr "" #: frappe/templates/includes/web_sidebar.html:41 -#: frappe/website/doctype/web_form/web_form.py:498 +#: frappe/website/doctype/web_form/web_form.py:525 #: 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" @@ -16231,12 +16299,12 @@ msgstr "" msgid "Navbar Template Values" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1378 +#: frappe/public/js/frappe/list/list_view.js:1380 msgctxt "Description of a list view shortcut" msgid "Navigate list down" msgstr "Navigasikan daftar ke bawah" -#: frappe/public/js/frappe/list/list_view.js:1385 +#: frappe/public/js/frappe/list/list_view.js:1387 msgctxt "Description of a list view shortcut" msgid "Navigate list up" msgstr "Navigasikan daftar ke atas" @@ -16251,6 +16319,10 @@ msgstr "" msgid "Navigation Settings" msgstr "" +#: frappe/public/js/frappe/list/list_view.js:485 +msgid "Need Help?" +msgstr "" + #: frappe/desk/doctype/workspace/workspace.py:322 msgid "Need Workspace Manager role to edit private workspace of other users" msgstr "" @@ -16259,7 +16331,7 @@ msgstr "" msgid "Negative Value" msgstr "Nilai Negatif" -#: frappe/database/query.py:333 +#: frappe/database/query.py:335 msgid "Nested filters must be provided as a list or tuple." msgstr "" @@ -16272,6 +16344,12 @@ msgstr "Bersarang kesalahan set. Silahkan hubungi Administrator." msgid "Network Printer Settings" msgstr "" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Never" +msgstr "" + #. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/core/doctype/success_action/success_action.js:57 @@ -16280,7 +16358,7 @@ msgstr "" #: 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/treeview.js:473 #: frappe/public/js/frappe/views/workspace/workspace.js:64 #: frappe/website/doctype/web_form/templates/web_list.html:15 #: frappe/www/list.html:19 @@ -16341,7 +16419,7 @@ msgstr "Acara baru" msgid "New Folder" msgstr "Folder baru" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 msgid "New Kanban Board" msgstr "Papan Kanban baru" @@ -16376,7 +16454,7 @@ msgstr "" msgid "New Onboarding" msgstr "" -#: frappe/core/doctype/user/user.js:190 frappe/www/update-password.html:43 +#: frappe/core/doctype/user/user.js:178 frappe/www/update-password.html:43 msgid "New Password" msgstr "Kata sandi Baru" @@ -16472,7 +16550,7 @@ msgstr "" #: frappe/public/js/frappe/ui/toolbar/search_utils.js:227 #: 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:411 +#: frappe/website/doctype/web_form/web_form.py:438 msgid "New {0}" msgstr "" @@ -16624,7 +16702,7 @@ msgstr "" #: frappe/public/js/form_builder/utils.js:341 #: frappe/public/js/frappe/form/controls/link.js:498 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1665 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 #: frappe/website/doctype/help_article/templates/help_article.html:26 msgid "No" msgstr "" @@ -16773,7 +16851,7 @@ msgstr "" msgid "No Roles Specified" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 msgid "No Select Field Found" msgstr "" @@ -16857,7 +16935,7 @@ msgstr "" msgid "No failed logs" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:371 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:385 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 "" @@ -16881,7 +16959,7 @@ msgstr "Tidak ada catatan lebih lanjut" msgid "No matching records. Search something new" msgstr "Tidak ada catatan yang cocok. Cari sesuatu yang baru" -#: frappe/public/js/frappe/web_form/web_form_list.js:161 +#: frappe/public/js/frappe/web_form/web_form_list.js:162 msgid "No more items to display" msgstr "Tidak ada lagi item untuk ditampilkan" @@ -16925,7 +17003,7 @@ msgctxt "{0} = verb, {1} = object" msgid "No permission to '{0}' {1}" msgstr "Tidak ada izin untuk '{0}' {1}" -#: frappe/model/db_query.py:948 +#: frappe/model/db_query.py:949 msgid "No permission to read {0}" msgstr "Tidak ada izin untuk membaca {0}" @@ -16973,11 +17051,11 @@ msgstr "" msgid "No {0} Found" msgstr "" -#: frappe/public/js/frappe/web_form/web_form_list.js:233 +#: frappe/public/js/frappe/web_form/web_form_list.js:234 msgid "No {0} found" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:497 +#: frappe/public/js/frappe/list/list_view.js:499 msgid "No {0} found with matching filters. Clear filters to see all {0}." msgstr "" @@ -16986,7 +17064,7 @@ msgid "No {0} mail" msgstr "Tidak ada {0} email" #: frappe/public/js/form_builder/utils.js:117 -#: frappe/public/js/frappe/form/grid_row.js:256 +#: frappe/public/js/frappe/form/grid_row.js:257 msgctxt "Title of the 'row number' column" msgid "No." msgstr "" @@ -17050,7 +17128,7 @@ msgstr "Bukan Descendants Of" msgid "Not Equals" msgstr "Tidak sama dengan" -#: frappe/app.py:387 frappe/www/404.html:3 +#: frappe/app.py:390 frappe/www/404.html:3 msgid "Not Found" msgstr "Tidak ditemukan" @@ -17076,9 +17154,9 @@ msgstr "Tidak terkait dengan catatan apapun" msgid "Not Nullable" msgstr "" -#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26 +#: frappe/__init__.py:550 frappe/app.py:383 frappe/desk/calendar.py:26 #: frappe/public/js/frappe/web_form/webform_script.js:15 -#: frappe/website/doctype/web_form/web_form.py:747 +#: frappe/website/doctype/web_form/web_form.py:774 #: 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 @@ -17097,7 +17175,7 @@ msgstr "Tidak Diterbitkan" #: 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/kanban/kanban_view.js:183 #: frappe/public/js/frappe/views/reports/report_view.js:209 #: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39 #: frappe/website/doctype/web_form/templates/web_form.html:85 @@ -17148,7 +17226,7 @@ msgstr "Tidak aktif" msgid "Not allowed for {0}: {1}" msgstr "Tidak diizinkan untuk {0}: {1}" -#: frappe/email/doctype/notification/notification.py:637 +#: frappe/email/doctype/notification/notification.py:639 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" @@ -17180,12 +17258,12 @@ msgstr "Tidak dalam Mode Developer" 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'." -#: frappe/core/doctype/system_settings/system_settings.py:216 +#: frappe/core/doctype/system_settings/system_settings.py:217 #: 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:760 +#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:787 #: frappe/website/js/website.js:97 msgid "Not permitted" msgstr "Tidak diperbolehkan" @@ -17231,7 +17309,7 @@ msgstr "" msgid "Note: Multiple sessions will be allowed in case of mobile device" msgstr "" -#: frappe/core/doctype/user/user.js:399 +#: frappe/core/doctype/user/user.js:387 msgid "Note: This will be shared with user." msgstr "" @@ -17303,15 +17381,15 @@ msgstr "Pemberitahuan Dokumen Berlangganan" msgid "Notification sent to" msgstr "" -#: frappe/email/doctype/notification/notification.py:542 +#: frappe/email/doctype/notification/notification.py:544 msgid "Notification: customer {0} has no Mobile number set" msgstr "" -#: frappe/email/doctype/notification/notification.py:528 +#: frappe/email/doctype/notification/notification.py:530 msgid "Notification: document {0} has no {1} number set (field: {2})" msgstr "" -#: frappe/email/doctype/notification/notification.py:537 +#: frappe/email/doctype/notification/notification.py:539 msgid "Notification: user {0} has no Mobile number set" msgstr "" @@ -17425,7 +17503,7 @@ msgstr "" msgid "Number of attachment fields are more than {}, limit updated to {}." msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:171 +#: frappe/core/doctype/system_settings/system_settings.py:172 msgid "Number of backups must be greater than zero." msgstr "" @@ -17697,7 +17775,7 @@ msgstr "" #. Description of the 'Is Submittable' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:42 +#: frappe/core/doctype/doctype/doctype_list.js:43 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." @@ -17786,11 +17864,11 @@ msgstr "" msgid "Only reports of type Report Builder can be edited" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:129 +#: frappe/custom/doctype/customize_form/customize_form.py:131 msgid "Only standard DocTypes are allowed to be customized from Customize Form." msgstr "Hanya DocTypes standar yang boleh disesuaikan dari Formulir Kustomisasi." -#: frappe/model/delete_doc.py:241 +#: frappe/model/delete_doc.py:281 msgid "Only the Administrator can delete a standard DocType." msgstr "" @@ -17886,7 +17964,7 @@ msgstr "" msgid "Open in a new tab" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1431 +#: frappe/public/js/frappe/list/list_view.js:1433 msgctxt "Description of a list view shortcut" msgid "Open list item" msgstr "Buka item daftar" @@ -17935,7 +18013,7 @@ msgstr "" msgid "Operation" msgstr "Operasi" -#: frappe/utils/data.py:2146 +#: frappe/utils/data.py:2172 msgid "Operator must be one of {0}" msgstr "Operator harus menjadi salah satu dari {0}" @@ -17981,6 +18059,7 @@ msgstr "" #. 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 (Text) field in DocType 'Web Form List Column' #. 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 @@ -17989,6 +18068,7 @@ msgstr "" #: 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_form_list_column/web_form_list_column.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Options" msgstr "" @@ -18034,7 +18114,7 @@ msgstr "" msgid "Order" msgstr "" -#: frappe/database/query.py:767 +#: frappe/database/query.py:769 msgid "Order By must be a string" msgstr "" @@ -18132,7 +18212,7 @@ msgstr "" #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/printing/page/print/print.js:84 #: frappe/public/js/frappe/form/templates/print_layout.html:44 -#: frappe/public/js/frappe/views/reports/query_report.js:1804 +#: frappe/public/js/frappe/views/reports/query_report.js:1812 msgid "PDF" msgstr "" @@ -18480,8 +18560,8 @@ msgstr "" #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/system_settings/system_settings.json -#: frappe/core/doctype/user/user.js:177 frappe/core/doctype/user/user.js:224 -#: frappe/core/doctype/user/user.js:244 +#: frappe/core/doctype/user/user.js:165 frappe/core/doctype/user/user.js:212 +#: frappe/core/doctype/user/user.js:232 #: 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 @@ -18504,7 +18584,7 @@ msgstr "" msgid "Password Reset Link Generation Limit" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:896 +#: frappe/public/js/frappe/form/grid_row.js:897 msgid "Password cannot be filtered" msgstr "" @@ -18541,7 +18621,7 @@ msgstr "" msgid "Password set" msgstr "" -#: frappe/auth.py:258 +#: frappe/auth.py:261 msgid "Password size exceeded the maximum allowed size" msgstr "" @@ -18553,7 +18633,7 @@ msgstr "" msgid "Passwords do not match" msgstr "" -#: frappe/core/doctype/user/user.js:210 +#: frappe/core/doctype/user/user.js:198 msgid "Passwords do not match!" msgstr "Sandi tidak cocok!" @@ -18704,7 +18784,7 @@ msgstr "Kirim permanen {0}?" msgid "Permanently delete {0}?" msgstr "Secara permanen menghapus {0}?" -#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533 +#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:535 msgid "Permission Error" msgstr "Kesalahan izin" @@ -18764,8 +18844,8 @@ msgstr "" #: 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:143 frappe/core/doctype/user/user.js:152 -#: frappe/core/doctype/user/user.js:161 +#: frappe/core/doctype/user/user.js:131 frappe/core/doctype/user/user.js:140 +#: frappe/core/doctype/user/user.js:149 #: 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 @@ -18835,6 +18915,7 @@ msgstr "Permintaan Unduhan Data Pribadi" #. Option for the 'Type' (Select) field in DocType 'Communication' #. Option for the 'Type' (Select) field in DocType 'DocField' #. Label of the phone (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #. 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' @@ -18845,6 +18926,7 @@ msgstr "Permintaan Unduhan Data Pribadi" #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.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 @@ -19019,7 +19101,7 @@ msgstr "Harap jangan mengubah judul Template." msgid "Please duplicate this to make changes" msgstr "Silakan duplikat ini untuk membuat perubahan" -#: frappe/core/doctype/system_settings/system_settings.py:164 +#: frappe/core/doctype/system_settings/system_settings.py:165 msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login." msgstr "" @@ -19151,11 +19233,11 @@ msgstr "Silakan pilih DOCTYPE pertama" msgid "Please select Entity Type first" msgstr "Silakan pilih Tipe Entitas terlebih dahulu" -#: frappe/core/doctype/system_settings/system_settings.py:115 +#: frappe/core/doctype/system_settings/system_settings.py:116 msgid "Please select Minimum Password Score" msgstr "Harap pilih Skor Minimum Kata Sandi" -#: frappe/public/js/frappe/views/reports/query_report.js:1185 +#: frappe/public/js/frappe/views/reports/query_report.js:1193 msgid "Please select X and Y fields" msgstr "" @@ -19183,7 +19265,7 @@ msgstr "Pilih filter tanggal yang valid" msgid "Please select applicable Doctypes" msgstr "Silakan pilih DOCTYPE yang berlaku" -#: frappe/model/db_query.py:1157 +#: frappe/model/db_query.py:1163 msgid "Please select atleast 1 column from {0} to sort/group" msgstr "Silakan pilih minimal 1 kolom dari {0} untuk menyortir / group" @@ -19213,7 +19295,7 @@ msgstr "Silahkan tetapkan Alamat Email" 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" -#: frappe/public/js/frappe/views/reports/query_report.js:1408 +#: frappe/public/js/frappe/views/reports/query_report.js:1416 msgid "Please set filters" msgstr "Silakan set filter" @@ -19233,7 +19315,7 @@ msgstr "Harap tetapkan dokumen berikut di Dasbor ini sebagai standar terlebih da msgid "Please set the series to be used." msgstr "Silakan mengatur seri yang akan digunakan." -#: frappe/core/doctype/system_settings/system_settings.py:128 +#: frappe/core/doctype/system_settings/system_settings.py:129 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" @@ -19385,7 +19467,7 @@ msgstr "kode Pos" msgid "Posting Timestamp" msgstr "" -#: frappe/database/query.py:1518 +#: frappe/database/query.py:1520 msgid "Potentially dangerous content in string literal: {0}" msgstr "" @@ -19587,13 +19669,13 @@ msgstr "" #: 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:1789 +#: frappe/public/js/frappe/views/reports/query_report.js:1797 #: frappe/public/js/frappe/views/reports/report_view.js:1539 -#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18 +#: frappe/public/js/frappe/views/treeview.js:492 frappe/www/printview.html:18 msgid "Print" msgstr "Mencetak" -#: frappe/public/js/frappe/list/list_view.js:2164 +#: frappe/public/js/frappe/list/list_view.js:2166 msgctxt "Button in list view actions menu" msgid "Print" msgstr "Mencetak" @@ -19663,7 +19745,7 @@ msgstr "" msgid "Print Format Type" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1578 +#: frappe/public/js/frappe/views/reports/query_report.js:1586 msgid "Print Format not found" msgstr "" @@ -19844,11 +19926,11 @@ msgstr "" msgid "Proceed" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:932 +#: frappe/public/js/frappe/views/reports/query_report.js:940 msgid "Proceed Anyway" msgstr "Tetap melanjutkan" -#: frappe/public/js/frappe/form/controls/table.js:123 +#: frappe/public/js/frappe/form/controls/table.js:104 msgid "Processing" msgstr "Pengolahan" @@ -19865,11 +19947,21 @@ msgstr "" msgid "Profile" msgstr "" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile Picture" +msgstr "" + +#. Success message of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile updated successfully." +msgstr "Profil berhasil diperbarui." + #: frappe/public/js/frappe/socketio_client.js:82 msgid "Progress" msgstr "Kemajuan" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:408 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:422 msgid "Project" msgstr "Proyek" @@ -19913,7 +20005,7 @@ msgstr "" msgid "Protect Attached Files" msgstr "" -#: frappe/core/doctype/file/file.py:523 +#: frappe/core/doctype/file/file.py:526 msgid "Protected File" msgstr "" @@ -20419,11 +20511,11 @@ msgstr "" msgid "Reason" msgstr "Alasan" -#: frappe/public/js/frappe/views/reports/query_report.js:886 +#: frappe/public/js/frappe/views/reports/query_report.js:894 msgid "Rebuild" msgstr "Membangun kembali" -#: frappe/public/js/frappe/views/treeview.js:509 +#: frappe/public/js/frappe/views/treeview.js:511 msgid "Rebuild Tree" msgstr "" @@ -20804,8 +20896,8 @@ msgstr "Perujuk" #: 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:1778 -#: frappe/public/js/frappe/views/treeview.js:496 +#: frappe/public/js/frappe/views/reports/query_report.js:1786 +#: frappe/public/js/frappe/views/treeview.js:498 #: frappe/public/js/frappe/widgets/chart_widget.js:291 #: frappe/public/js/frappe/widgets/number_card_widget.js:352 #: frappe/public/js/print_format_builder/Preview.vue:24 @@ -20836,13 +20928,13 @@ msgstr "" msgid "Refresh Token" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:534 +#: frappe/public/js/frappe/list/list_view.js:536 msgctxt "Document count in list view" msgid "Refreshing" msgstr "" #: frappe/core/doctype/system_settings/system_settings.js:57 -#: frappe/core/doctype/user/user.js:374 +#: frappe/core/doctype/user/user.js:362 #: frappe/desk/page/setup_wizard/setup_wizard.js:211 msgid "Refreshing..." msgstr "Refreshing ..." @@ -21227,7 +21319,7 @@ msgstr "Manajer Laporan" #: 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:1965 +#: frappe/public/js/frappe/views/reports/query_report.js:1973 msgid "Report Name" msgstr "Nama Laporan" @@ -21279,7 +21371,7 @@ msgstr "Laporan tidak memiliki data, harap modifikasi filter atau ubah Nama Lapo msgid "Report has no numeric fields, please change the Report Name" msgstr "Laporan tidak memiliki bidang numerik, harap ubah Nama Laporan" -#: frappe/public/js/frappe/views/reports/query_report.js:1013 +#: frappe/public/js/frappe/views/reports/query_report.js:1021 msgid "Report initiated, click to view status" msgstr "" @@ -21299,7 +21391,7 @@ msgstr "Laporan berhasil diperbarui" msgid "Report was not saved (there were errors)" msgstr "Laporan tidak disimpan (ada kesalahan)" -#: frappe/public/js/frappe/views/reports/query_report.js:2003 +#: frappe/public/js/frappe/views/reports/query_report.js:2011 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." @@ -21335,7 +21427,7 @@ msgstr "Laporan" msgid "Reports & Masters" msgstr "Laporan & Master" -#: frappe/public/js/frappe/views/reports/query_report.js:929 +#: frappe/public/js/frappe/views/reports/query_report.js:937 msgid "Reports already in Queue" msgstr "Laporan sudah dalam Antrian" @@ -21354,7 +21446,10 @@ msgid "Request Body" msgstr "" #. Label of the data (Code) field in DocType 'Integration Request' +#. Title of the request-data Web Form +#. Button label of the request-data Web Form #: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/website/web_form/request_data/request_data.json msgid "Request Data" msgstr "" @@ -21406,6 +21501,11 @@ msgstr "" msgid "Request URL" msgstr "" +#. Title of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "Request for Account Deletion" +msgstr "" + #. Label of the requested_numbers (Code) field in DocType 'SMS Log' #: frappe/core/doctype/sms_log/sms_log.json msgid "Requested Numbers" @@ -21461,7 +21561,7 @@ msgstr "" msgid "Reset Fields" msgstr "Setel Ulang Bidang" -#: frappe/core/doctype/user/user.js:184 frappe/core/doctype/user/user.js:187 +#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:175 msgid "Reset LDAP Password" msgstr "Setel ulang Kata Sandi LDAP" @@ -21469,11 +21569,11 @@ msgstr "Setel ulang Kata Sandi LDAP" msgid "Reset Layout" msgstr "" -#: frappe/core/doctype/user/user.js:235 +#: frappe/core/doctype/user/user.js:223 msgid "Reset OTP Secret" msgstr "Setel ulang OTP Secret" -#: frappe/core/doctype/user/user.js:168 frappe/www/login.html:199 +#: frappe/core/doctype/user/user.js:156 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" @@ -21508,7 +21608,7 @@ msgstr "" msgid "Reset sorting" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:433 +#: frappe/public/js/frappe/form/grid_row.js:434 msgid "Reset to default" msgstr "" @@ -21760,7 +21860,7 @@ msgstr "Peran Izin Page dan Laporan" #. 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 +#: frappe/public/js/frappe/roles_editor.js:114 msgid "Role Permissions" msgstr "Izin peran" @@ -21770,7 +21870,7 @@ msgstr "Izin peran" msgid "Role Permissions Manager" msgstr "Pengelola Perizinan Peran" -#: frappe/public/js/frappe/list/list_view.js:1933 +#: frappe/public/js/frappe/list/list_view.js:1935 msgctxt "Button in list view menu" msgid "Role Permissions Manager" msgstr "Pengelola Perizinan Peran" @@ -21963,11 +22063,11 @@ msgstr "" msgid "Row {0}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:353 +#: frappe/custom/doctype/customize_form/customize_form.py:357 msgid "Row {0}: Not allowed to disable Mandatory for standard fields" msgstr "Baris {0}: Tidak diizinkan untuk menonaktifkan Wajib untuk bidang standar" -#: frappe/custom/doctype/customize_form/customize_form.py:342 +#: frappe/custom/doctype/customize_form/customize_form.py:346 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" @@ -21986,7 +22086,10 @@ msgid "Rows Removed" msgstr "" #. Label of the rows_threshold_for_grid_search (Int) field in DocType 'DocType' +#. Label of the rows_threshold_for_grid_search (Int) field in DocType +#. 'Customize Form' #: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Rows Threshold for Grid Search" msgstr "" @@ -22194,8 +22297,8 @@ msgstr "" #: 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:1957 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 +#: frappe/public/js/frappe/views/reports/query_report.js:1965 #: frappe/public/js/frappe/views/reports/report_view.js:1735 #: frappe/public/js/frappe/views/workspace/workspace.js:335 #: frappe/public/js/frappe/widgets/base_widget.js:142 @@ -22218,11 +22321,11 @@ msgstr "Disimpan Sebagai" msgid "Save Customizations" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1960 +#: frappe/public/js/frappe/views/reports/query_report.js:1968 msgid "Save Report" msgstr "Menyimpan laporan" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:97 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:107 msgid "Save filters" msgstr "Simpan filter" @@ -22594,7 +22697,7 @@ msgstr "" msgid "See all Activity" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:855 +#: frappe/public/js/frappe/views/reports/query_report.js:863 msgid "See all past reports." msgstr "Lihat semua laporan sebelumnya." @@ -22658,7 +22761,7 @@ msgstr "Pilih" #: 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:497 +#: frappe/public/js/frappe/form/grid_row.js:498 msgid "Select All" msgstr "" @@ -22738,7 +22841,7 @@ msgstr "Pilih Bidang" msgid "Select Field..." msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:489 +#: frappe/public/js/frappe/form/grid_row.js:490 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:181 msgid "Select Fields" msgstr "Pilih Fields" @@ -22858,8 +22961,8 @@ msgid "Select a field to edit its properties." msgstr "" #: frappe/public/js/frappe/views/treeview.js:358 -msgid "Select a group node first." -msgstr "Pilih simpul kelompok terlebih dahulu." +msgid "Select a group {0} first." +msgstr "" #: frappe/core/doctype/doctype/doctype.py:1956 msgid "Select a valid Sender Field for creating documents from Email" @@ -22895,13 +22998,13 @@ msgstr "Pilih minimal 1 record untuk pencetakan" msgid "Select atleast 2 actions" msgstr "Pilih minimal 2 tindakan" -#: frappe/public/js/frappe/list/list_view.js:1445 +#: frappe/public/js/frappe/list/list_view.js:1447 msgctxt "Description of a list view shortcut" msgid "Select list item" msgstr "Pilih item daftar" -#: frappe/public/js/frappe/list/list_view.js:1397 -#: frappe/public/js/frappe/list/list_view.js:1413 +#: frappe/public/js/frappe/list/list_view.js:1399 +#: frappe/public/js/frappe/list/list_view.js:1415 msgctxt "Description of a list view shortcut" msgid "Select multiple list items" msgstr "Pilih beberapa item daftar" @@ -23223,7 +23326,7 @@ msgstr "Seri {0} sudah digunakan dalam {1}" msgid "Server Action" msgstr "" -#: frappe/app.py:396 frappe/public/js/frappe/request.js:611 +#: frappe/app.py:399 frappe/public/js/frappe/request.js:611 #: frappe/www/error.html:36 frappe/www/error.py:15 msgid "Server Error" msgstr "server error" @@ -23289,7 +23392,7 @@ msgstr "Default Sesi" msgid "Session Defaults Saved" msgstr "Default Sesi Disimpan" -#: frappe/app.py:373 +#: frappe/app.py:376 msgid "Session Expired" msgstr "Sesi berakhir" @@ -23298,7 +23401,7 @@ msgstr "Sesi berakhir" msgid "Session Expiry (idle timeout)" msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:122 +#: frappe/core/doctype/system_settings/system_settings.py:123 msgid "Session Expiry must be in format {0}" msgstr "Sesi kadaluarsa harus dalam format {0}" @@ -23347,7 +23450,7 @@ msgstr "Tetapkan Filter" msgid "Set Filters for {0}" msgstr "Setel Filter untuk {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:2113 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 msgid "Set Level" msgstr "" @@ -23401,7 +23504,7 @@ msgstr "Set Kuantitas" msgid "Set Role For" msgstr "" -#: frappe/core/doctype/user/user.js:136 +#: frappe/core/doctype/user/user.js:124 #: frappe/core/page/permission_manager/permission_manager.js:72 msgid "Set User Permissions" msgstr "" @@ -23563,7 +23666,7 @@ msgstr "" msgid "Setup > User Permissions" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1826 +#: frappe/public/js/frappe/views/reports/query_report.js:1834 #: frappe/public/js/frappe/views/reports/report_view.js:1713 msgid "Setup Auto Email" msgstr "Atur Email Otomatis" @@ -23704,6 +23807,12 @@ msgstr "" msgid "Show Error" msgstr "" +#. Label of the show_external_link_warning (Select) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Show External Link Warning" +msgstr "" + #: frappe/public/js/frappe/form/layout.js:578 msgid "Show Fieldname (click to copy on clipboard)" msgstr "" @@ -23832,7 +23941,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:1849 +#: frappe/public/js/frappe/list/list_view.js:1851 msgid "Show Tags" msgstr "Tampilkan Tag" @@ -24039,22 +24148,22 @@ msgstr "Pendaftaran Dinonaktifkan" 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' -#: frappe/automation/doctype/assignment_rule/assignment_rule.json -msgid "Simple Python Expression, Example: Status in (\"Closed\", \"Cancelled\")" -msgstr "" - #. 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\")" +msgid "Simple Python Expression, Example: status == \"Invalid\"" msgstr "" #. 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'" +msgid "Simple Python Expression, Example: status == 'Open' and issue_type == 'Bug'" +msgstr "" + +#. 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 "" #. Label of the simultaneous_sessions (Int) field in DocType 'User' @@ -24062,13 +24171,13 @@ msgstr "" msgid "Simultaneous Sessions" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:126 +#: frappe/custom/doctype/customize_form/customize_form.py:128 msgid "Single DocTypes cannot be customized." msgstr "Single DocTypes tidak dapat dikustomisasi." #. Description of the 'Is Single' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:67 +#: frappe/core/doctype/doctype/doctype_list.js:68 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" @@ -24404,7 +24513,7 @@ msgid "Splash Image" msgstr "" #: frappe/desk/reportview.py:455 -#: frappe/public/js/frappe/web_form/web_form_list.js:175 +#: frappe/public/js/frappe/web_form/web_form_list.js:176 #: frappe/templates/print_formats/standard_macros.html:44 msgid "Sr" msgstr "sr" @@ -24436,7 +24545,7 @@ msgstr "" msgid "Standard" msgstr "Standar" -#: frappe/model/delete_doc.py:79 +#: frappe/model/delete_doc.py:119 msgid "Standard DocType can not be deleted." msgstr "" @@ -24706,7 +24815,7 @@ msgstr "Langkah untuk memverifikasi login anda" #. Label of the sticky (Check) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json -#: frappe/public/js/frappe/form/grid_row.js:454 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Sticky" msgstr "" @@ -24736,7 +24845,7 @@ msgstr "" msgid "Store Attached PDF Document" msgstr "" -#: frappe/core/doctype/user/user.js:490 +#: frappe/core/doctype/user/user.js:497 msgid "Store the API secret securely. It won't be displayed again." msgstr "" @@ -24848,6 +24957,7 @@ msgstr "" #. 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' +#. Button label of the request-to-delete-data Web Form #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/docshare/docshare.json @@ -24856,10 +24966,11 @@ msgstr "" #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/quick_entry.js:225 #: frappe/public/js/frappe/ui/capture.js:307 +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json msgid "Submit" msgstr "Kirim" -#: frappe/public/js/frappe/list/list_view.js:2231 +#: frappe/public/js/frappe/list/list_view.js:2233 msgctxt "Button in list view actions menu" msgid "Submit" msgstr "Kirim" @@ -24869,7 +24980,7 @@ msgctxt "Button in web form" msgid "Submit" msgstr "Kirim" -#: frappe/public/js/frappe/ui/dialog.js:63 +#: frappe/public/js/frappe/ui/dialog.js:64 msgctxt "Primary action in dialog" msgid "Submit" msgstr "Kirim" @@ -24917,7 +25028,7 @@ msgstr "Kirimkan dokumen ini untuk menyelesaikan langkah ini." msgid "Submit this document to confirm" msgstr "Menyerahkan dokumen ini untuk mengkonfirmasi" -#: frappe/public/js/frappe/list/list_view.js:2236 +#: frappe/public/js/frappe/list/list_view.js:2238 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "Kirim {0} dokumen?" @@ -24967,7 +25078,7 @@ msgstr "" #: 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:1171 +#: frappe/public/js/frappe/form/grid.js:1172 #: frappe/public/js/frappe/views/translation_manager.js:21 #: frappe/templates/includes/login/login.js:230 #: frappe/templates/includes/login/login.js:236 @@ -25182,7 +25293,7 @@ msgstr "Sinkronisasi" msgid "Syncing {0} of {1}" msgstr "Menyinkronkan {0} dari {1}" -#: frappe/utils/data.py:2547 +#: frappe/utils/data.py:2573 msgid "Syntax Error" msgstr "" @@ -25493,7 +25604,7 @@ msgstr "" msgid "Table Trimmed" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1170 +#: frappe/public/js/frappe/form/grid.js:1171 msgid "Table updated" msgstr "Tabel diperbarui" @@ -25708,7 +25819,7 @@ msgstr "" msgid "The Auto Repeat for this document has been disabled." msgstr "Ulangi Otomatis untuk dokumen ini telah dinonaktifkan." -#: frappe/public/js/frappe/form/grid.js:1193 +#: frappe/public/js/frappe/form/grid.js:1194 msgid "The CSV format is case sensitive" msgstr "Format CSV bersifat case sensitive" @@ -25776,7 +25887,7 @@ msgstr "Komentar tidak boleh kosong" 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:685 +#: frappe/public/js/frappe/list/list_view.js:687 msgid "The count shown is an estimated count. Click here to see the accurate count." msgstr "" @@ -25888,7 +25999,7 @@ msgstr "" msgid "The reset password link has either been used before or is invalid" msgstr "" -#: frappe/app.py:388 frappe/public/js/frappe/request.js:149 +#: frappe/app.py:391 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" @@ -25961,12 +26072,12 @@ 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:965 +#: frappe/public/js/frappe/views/reports/query_report.js:973 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 +#: frappe/website/doctype/web_form/web_form.js:318 msgid "There can be only 9 Page Break fields in a Web Form" msgstr "" @@ -25990,11 +26101,11 @@ msgstr "" msgid "There is nothing new to show you right now." msgstr "" -#: frappe/core/doctype/file/file.py:640 frappe/utils/file_manager.py:372 +#: frappe/core/doctype/file/file.py:643 frappe/utils/file_manager.py:372 msgid "There is some problem with the file url: {0}" msgstr "Ada beberapa masalah dengan url berkas: {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:962 +#: frappe/public/js/frappe/views/reports/query_report.js:970 msgid "There is {0} with the same filters already in the queue:" msgstr "" @@ -26006,7 +26117,7 @@ msgstr "Harus ada minimal aturan satu izin." msgid "There was an error building this page" msgstr "Terjadi kesalahan saat membangun halaman ini" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:182 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:196 msgid "There was an error saving filters" msgstr "Terjadi kesalahan saat menyimpan filter" @@ -26063,7 +26174,7 @@ msgstr "" msgid "This Currency is disabled. Enable to use in transactions" msgstr "Mata uang ini dinonaktifkan. Aktifkan untuk digunakan dalam transaksi" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:391 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:405 msgid "This Kanban Board will be private" msgstr "Papan Kanban ini akan menjadi pribadi" @@ -26100,7 +26211,7 @@ msgstr "Tindakan ini hanya diperbolehkan untuk {}" msgid "This cannot be undone" msgstr "Ini tidak dapat dibatalkan" -#: frappe/desk/doctype/number_card/number_card.js:480 +#: frappe/desk/doctype/number_card/number_card.js:484 msgctxt "Number Card" msgid "This card is visible only to Administrator and System Managers by default. Set a DocType to share with users who have read access." msgstr "" @@ -26123,7 +26234,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:113 +#: frappe/model/delete_doc.py:153 msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time." msgstr "" @@ -26165,7 +26276,7 @@ msgid "This field will appear only if the fieldname defined here has value OR th "eval:doc.age>18" msgstr "" -#: frappe/core/doctype/file/file.py:522 +#: frappe/core/doctype/file/file.py:525 msgid "This file is attached to a protected document and cannot be deleted." msgstr "" @@ -26200,7 +26311,7 @@ msgstr "" msgid "This goes above the slideshow." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2189 +#: frappe/public/js/frappe/views/reports/query_report.js:2197 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." @@ -26250,7 +26361,7 @@ msgstr "Ini dapat dicetak pada beberapa halaman" msgid "This month" msgstr "Bulan ini" -#: frappe/public/js/frappe/views/reports/query_report.js:1037 +#: frappe/public/js/frappe/views/reports/query_report.js:1045 msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead." msgstr "" @@ -26258,7 +26369,7 @@ msgstr "" msgid "This report was generated on {0}" msgstr "Laporan ini dibuat pada {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:853 +#: frappe/public/js/frappe/views/reports/query_report.js:861 msgid "This report was generated {0}." msgstr "Laporan ini dihasilkan {0}." @@ -26400,9 +26511,11 @@ msgstr "" #. Label of the time_zone (Select) field in DocType 'System Settings' #. Label of the time_zone (Autocomplete) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #. 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/core/web_form/edit_profile/edit_profile.json #: frappe/desk/page/setup_wizard/setup_wizard.js:407 #: frappe/website/doctype/web_page_view/web_page_view.json msgid "Time Zone" @@ -26663,7 +26776,7 @@ msgstr "" msgid "To generate password click {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:854 +#: frappe/public/js/frappe/views/reports/query_report.js:862 msgid "To get the updated report, click on {0}." msgstr "Untuk mendapatkan laporan yang diperbarui, klik pada {0}." @@ -26738,7 +26851,7 @@ msgstr "" msgid "Toggle Sidebar" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1964 +#: frappe/public/js/frappe/list/list_view.js:1966 msgctxt "Button in list view menu" msgid "Toggle Sidebar" msgstr "" @@ -26864,7 +26977,7 @@ msgstr "" #: frappe/desk/query_report.py:587 #: frappe/public/js/frappe/views/reports/print_grid.html:45 -#: frappe/public/js/frappe/views/reports/query_report.js:1324 +#: frappe/public/js/frappe/views/reports/query_report.js:1332 #: frappe/public/js/frappe/views/reports/report_view.js:1553 msgid "Total" msgstr "" @@ -27021,7 +27134,7 @@ msgstr "" msgid "Translatable" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2244 +#: frappe/public/js/frappe/views/reports/query_report.js:2252 msgid "Translate Data" msgstr "" @@ -27379,7 +27492,7 @@ msgstr "" msgid "Unable to update event" msgstr "Tidak dapat memperbarui acara" -#: frappe/core/doctype/file/file.py:486 +#: frappe/core/doctype/file/file.py:489 msgid "Unable to write file format for {0}" msgstr "Tidak dapat menulis format file untuk {0}" @@ -27388,7 +27501,7 @@ msgstr "Tidak dapat menulis format file untuk {0}" msgid "Unassign Condition" msgstr "" -#: frappe/app.py:396 +#: frappe/app.py:399 msgid "Uncaught Exception" msgstr "" @@ -27404,7 +27517,7 @@ msgstr "" msgid "Undo last action" msgstr "" -#: frappe/database/query.py:1495 +#: frappe/database/query.py:1497 msgid "Unescaped quotes in string literal: {0}" msgstr "" @@ -27451,7 +27564,7 @@ msgstr "Kolom diketahui: {0}" msgid "Unknown Rounding Method: {}" msgstr "" -#: frappe/auth.py:316 +#: frappe/auth.py:319 msgid "Unknown User" msgstr "Pengguna tidak dikenal" @@ -27517,8 +27630,8 @@ msgstr "" msgid "Unsubscribed" msgstr "Berhenti berlangganan" -#: frappe/database/query.py:653 frappe/database/query.py:1387 -#: frappe/database/query.py:1397 +#: frappe/database/query.py:655 frappe/database/query.py:1389 +#: frappe/database/query.py:1399 msgid "Unsupported function or invalid field name: {0}" msgstr "" @@ -27552,7 +27665,7 @@ msgstr "Acara Mendatang untuk Hari Ini" #: 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:427 +#: frappe/public/js/frappe/form/grid_row.js:428 msgid "Update" msgstr "Perbaruan" @@ -27586,6 +27699,11 @@ msgstr "" msgid "Update Password" msgstr "" +#. Title of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Update Profile" +msgstr "" + #. Label of the update_series (Section Break) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -27801,11 +27919,7 @@ msgstr "" msgid "Use if the default settings don't seem to detect your data correctly" msgstr "" -#: frappe/model/db_query.py:436 -msgid "Use of function {0} in field is restricted" -msgstr "" - -#: frappe/model/db_query.py:413 +#: frappe/model/db_query.py:411 msgid "Use of sub-query or function is restricted" msgstr "Penggunaan sub-query atau fungsi dibatasi" @@ -28027,12 +28141,12 @@ msgstr "Pengguna Izin" #. 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:1944 +#: frappe/public/js/frappe/views/reports/query_report.js:1952 #: frappe/public/js/frappe/views/reports/report_view.js:1761 msgid "User Permissions" msgstr "Permissions Pengguna" -#: frappe/public/js/frappe/list/list_view.js:1922 +#: frappe/public/js/frappe/list/list_view.js:1924 msgctxt "Button in list view menu" msgid "User Permissions" msgstr "Permissions Pengguna" @@ -28176,7 +28290,7 @@ msgstr "" msgid "User {0} is disabled" msgstr "Pengguna {0} dinonaktifkan" -#: frappe/sessions.py:242 +#: frappe/sessions.py:243 msgid "User {0} is disabled. Please contact your System Manager." msgstr "" @@ -28353,7 +28467,7 @@ msgstr "Nilai tidak boleh negatif untuk {0}: {1}" msgid "Value for a check field can be either 0 or 1" msgstr "Nilai untuk bidang pemeriksaan dapat berupa 0 atau 1" -#: frappe/custom/doctype/customize_form/customize_form.py:612 +#: frappe/custom/doctype/customize_form/customize_form.py:616 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" @@ -28474,7 +28588,7 @@ msgstr "Lihat semua" msgid "View Audit Trail" msgstr "" -#: frappe/core/doctype/user/user.js:156 +#: frappe/core/doctype/user/user.js:144 msgid "View Doctype Permissions" msgstr "" @@ -28486,7 +28600,7 @@ msgstr "" msgid "View Full Log" msgstr "" -#: frappe/public/js/frappe/views/treeview.js:484 +#: frappe/public/js/frappe/views/treeview.js:486 #: frappe/public/js/frappe/widgets/quick_list_widget.js:258 msgid "View List" msgstr "Lihat Daftar" @@ -28496,7 +28610,7 @@ msgstr "Lihat Daftar" msgid "View Log" msgstr "Melihat log" -#: frappe/core/doctype/user/user.js:147 +#: frappe/core/doctype/user/user.js:135 #: frappe/core/doctype/user_permission/user_permission.js:24 msgid "View Permitted Documents" msgstr "Lihat Dokumen yang Diizinkan" @@ -28612,6 +28726,7 @@ msgid "Warehouse" msgstr "Gudang" #. Option for the 'Style' (Select) field in DocType 'Workflow State' +#: frappe/public/js/frappe/router.js:613 #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Warning" msgstr "Peringatan" @@ -29257,7 +29372,7 @@ msgstr "" msgid "Workspace" msgstr "" -#: frappe/public/js/frappe/router.js:175 +#: frappe/public/js/frappe/router.js:180 msgid "Workspace {0} does not exist" msgstr "" @@ -29379,7 +29494,7 @@ msgstr "Bidang Sumbu 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:1225 +#: frappe/public/js/frappe/views/reports/query_report.js:1233 msgid "Y Field" msgstr "" @@ -29441,7 +29556,7 @@ msgstr "" #: frappe/public/js/form_builder/utils.js:336 #: frappe/public/js/frappe/form/controls/link.js:498 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1665 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 #: frappe/website/doctype/help_article/templates/help_article.html:25 msgid "Yes" msgstr "Ya" @@ -29477,6 +29592,10 @@ msgstr "" msgid "You added {0} rows to {1}" msgstr "" +#: frappe/public/js/frappe/router.js:642 +msgid "You are about to open an external link. To confirm, click the link again." +msgstr "" + #: frappe/public/js/frappe/dom.js:438 msgid "You are connected to internet." msgstr "Anda terhubung ke internet." @@ -29520,7 +29639,7 @@ msgstr "" msgid "You are not allowed to export {} doctype" msgstr "Anda tidak diizinkan mengekspor {} doctype" -#: frappe/public/js/frappe/views/treeview.js:448 +#: frappe/public/js/frappe/views/treeview.js:450 msgid "You are not allowed to print this report" msgstr "Anda tidak diizinkan untuk mencetak laporan ini" @@ -29528,7 +29647,7 @@ msgstr "Anda tidak diizinkan untuk mencetak laporan ini" msgid "You are not allowed to send emails related to this document" msgstr "Anda tidak diizinkan mengirim email yang terkait dokumen ini" -#: frappe/website/doctype/web_form/web_form.py:605 +#: frappe/website/doctype/web_form/web_form.py:632 msgid "You are not allowed to update this Web Form Document" msgstr "Anda tidak diizinkan memperbarui Dokumen Web Form ini" @@ -29601,11 +29720,11 @@ msgstr "" msgid "You can continue with the onboarding after exploring this page" msgstr "" -#: frappe/model/delete_doc.py:137 +#: frappe/model/delete_doc.py:177 msgid "You can disable this {0} instead of deleting it." msgstr "" -#: frappe/core/doctype/file/file.py:758 +#: frappe/core/doctype/file/file.py:761 msgid "You can increase the limit from System Settings." msgstr "" @@ -29655,11 +29774,11 @@ msgstr "" msgid "You can use wildcard %" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:390 +#: frappe/custom/doctype/customize_form/customize_form.py:394 msgid "You can't set 'Options' for field {0}" msgstr "Anda tidak dapat menyetel 'Pilihan' untuk bidang {0}" -#: frappe/custom/doctype/customize_form/customize_form.py:394 +#: frappe/custom/doctype/customize_form/customize_form.py:398 msgid "You can't set 'Translatable' for field {0}" msgstr "Anda tidak dapat mengatur 'Translatable' untuk field {0}" @@ -29677,7 +29796,7 @@ msgstr "" msgid "You cannot create a dashboard chart from single DocTypes" msgstr "Anda tidak dapat membuat bagan dasbor dari satu DocTypes" -#: frappe/custom/doctype/customize_form/customize_form.py:386 +#: frappe/custom/doctype/customize_form/customize_form.py:390 msgid "You cannot unset 'Read Only' for field {0}" msgstr "Anda tidak bisa unset 'Read Only' untuk bidang {0}" @@ -29720,11 +29839,11 @@ msgstr "" 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." -#: frappe/app.py:381 +#: frappe/app.py:384 msgid "You do not have enough permissions to complete the action" msgstr "Anda tidak memiliki izin yang cukup untuk menyelesaikan tindakan" -#: frappe/database/query.py:529 +#: frappe/database/query.py:531 msgid "You do not have permission to access field: {0}" msgstr "" @@ -29740,7 +29859,7 @@ msgstr "Anda tidak memiliki izin untuk membatalkan semua dokumen yang ditautkan. msgid "You don't have access to Report: {0}" msgstr "Anda tidak memiliki akses ke Laporan: {0}" -#: frappe/website/doctype/web_form/web_form.py:808 +#: frappe/website/doctype/web_form/web_form.py:835 msgid "You don't have permission to access the {0} DocType." msgstr "" @@ -29764,7 +29883,7 @@ msgstr "" msgid "You have been successfully logged out" msgstr "Anda telah berhasil keluar" -#: frappe/custom/doctype/customize_form/customize_form.py:245 +#: frappe/custom/doctype/customize_form/customize_form.py:247 msgid "You have hit the row size limit on database table: {0}" msgstr "" @@ -29792,7 +29911,7 @@ msgstr "Anda memiliki {0} yang tak terlihat" msgid "You haven't added any Dashboard Charts or Number Cards yet." msgstr "" -#: frappe/public/js/frappe/list/list_view.js:501 +#: frappe/public/js/frappe/list/list_view.js:503 msgid "You haven't created a {0} yet" msgstr "" @@ -29809,11 +29928,11 @@ msgstr "" msgid "You must add atleast one link." msgstr "" -#: frappe/website/doctype/web_form/web_form.py:804 +#: frappe/website/doctype/web_form/web_form.py:831 msgid "You must be logged in to use this form." msgstr "" -#: frappe/website/doctype/web_form/web_form.py:645 +#: frappe/website/doctype/web_form/web_form.py:672 msgid "You must login to submit this form" msgstr "Anda harus login untuk mengirimkan formulir ini" @@ -29928,6 +30047,10 @@ msgstr "Anda berhenti mengikuti dokumen ini" msgid "You viewed this" msgstr "" +#: frappe/public/js/frappe/router.js:653 +msgid "You will be redirected to:" +msgstr "" + #: frappe/core/doctype/user_invitation/user_invitation.py:113 msgid "You've been invited to join {0}" msgstr "" @@ -29973,7 +30096,7 @@ msgstr "Pintasan Anda" msgid "Your account has been deleted" msgstr "" -#: frappe/auth.py:514 +#: frappe/auth.py:517 msgid "Your account has been locked and will resume after {0} seconds" msgstr "Akun Anda telah dikunci dan akan dilanjutkan setelah {0} detik" @@ -30039,7 +30162,7 @@ msgstr "Permintaan Anda telah diterima. Kami akan segera menanggapi. Jika Anda m msgid "Your report is being generated in the background. You will receive an email on {0} with a download link once it is ready." msgstr "" -#: frappe/app.py:374 +#: frappe/app.py:377 msgid "Your session has expired, please login again to continue." msgstr "Sesi Anda telah kedaluwarsa, silahkan login kembali untuk melanjutkan" @@ -30376,7 +30499,7 @@ msgstr "" msgid "logged in" msgstr "Login" -#: frappe/website/doctype/web_form/web_form.js:362 +#: frappe/website/doctype/web_form/web_form.js:363 msgid "login_required" msgstr "" @@ -30714,7 +30837,7 @@ msgstr "melalui Impor Data" msgid "via Google Meet" msgstr "" -#: frappe/email/doctype/notification/notification.py:403 +#: frappe/email/doctype/notification/notification.py:405 msgid "via Notification" msgstr "melalui Notifikasi" @@ -30824,7 +30947,7 @@ msgstr "{0} Bagan" msgid "{0} Dashboard" msgstr "{0} Dasbor" -#: frappe/public/js/frappe/form/grid_row.js:486 +#: frappe/public/js/frappe/form/grid_row.js:487 #: frappe/public/js/frappe/list/list_settings.js:225 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:178 msgid "{0} Fields" @@ -30875,7 +30998,7 @@ msgstr "" msgid "{0} Report" msgstr "{0} Laporan" -#: frappe/public/js/frappe/views/reports/query_report.js:956 +#: frappe/public/js/frappe/views/reports/query_report.js:964 msgid "{0} Reports" msgstr "" @@ -30948,7 +31071,7 @@ msgctxt "Form timeline" msgid "{0} attached {1}" msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:152 +#: frappe/core/doctype/system_settings/system_settings.py:153 msgid "{0} can not be more than {1}" msgstr "" @@ -31025,7 +31148,7 @@ msgstr "{0} tidak ada di baris {1}" 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" -#: frappe/database/query.py:708 +#: frappe/database/query.py:710 msgid "{0} fields cannot contain backticks (`): {1}" msgstr "" @@ -31070,7 +31193,7 @@ msgstr "{0} di baris {1} tidak dapat memiliki URL dan item turunan" msgid "{0} is a mandatory field" msgstr "{0} adalah kolom wajib" -#: frappe/core/doctype/file/file.py:566 +#: frappe/core/doctype/file/file.py:569 msgid "{0} is a not a valid zip file" msgstr "" @@ -31119,7 +31242,7 @@ msgstr "" msgid "{0} is mandatory" msgstr "{0} wajib diisi" -#: frappe/database/query.py:485 +#: frappe/database/query.py:487 msgid "{0} is not a child table of {1}" msgstr "" @@ -31139,7 +31262,7 @@ msgstr "" msgid "{0} is not a valid Cron expression." msgstr "" -#: frappe/public/js/frappe/form/controls/dynamic_link.js:27 +#: frappe/public/js/frappe/form/controls/dynamic_link.js:23 msgid "{0} is not a valid DocType for Dynamic Link" msgstr "{0} bukan DocType untuk Dynamic Link yang valid" @@ -31176,7 +31299,7 @@ msgstr "" 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}" -#: frappe/core/doctype/file/file.py:546 +#: frappe/core/doctype/file/file.py:549 msgid "{0} is not a zip file" msgstr "" @@ -31224,7 +31347,7 @@ msgstr "" msgid "{0} is within {1}" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1839 +#: frappe/public/js/frappe/list/list_view.js:1841 msgid "{0} items selected" msgstr "{0} item dipilih" @@ -31310,11 +31433,11 @@ msgid "{0} not found" msgstr "{0} tidak ditemukan" #: frappe/core/doctype/report/report.py:427 -#: frappe/public/js/frappe/list/list_view.js:1211 +#: frappe/public/js/frappe/list/list_view.js:1213 msgid "{0} of {1}" msgstr "{0} dari {1}" -#: frappe/public/js/frappe/list/list_view.js:1213 +#: frappe/public/js/frappe/list/list_view.js:1215 msgid "{0} of {1} ({2} rows with children)" msgstr "{0} dari {1} ({2} baris dengan anak-anak)" @@ -31364,7 +31487,7 @@ msgstr "" msgid "{0} removed {1} rows from {2}" msgstr "" -#: frappe/public/js/frappe/roles_editor.js:62 +#: frappe/public/js/frappe/roles_editor.js:64 msgid "{0} role does not have permission on any doctype" msgstr "" @@ -31438,7 +31561,7 @@ msgstr "{0} sampai {1}" msgid "{0} un-shared this document with {1}" msgstr "{0} berhenti berbagi dokumen ini dengan {1}" -#: frappe/custom/doctype/customize_form/customize_form.py:254 +#: frappe/custom/doctype/customize_form/customize_form.py:256 msgid "{0} updated" msgstr "{0} diperbarui" @@ -31498,7 +31621,7 @@ msgstr "{0} {1} ditautkan dengan dokumen yang dikirimkan berikut: {2}" msgid "{0} {1} not found" msgstr "{0} {1} tidak ditemukan" -#: frappe/model/delete_doc.py:248 +#: frappe/model/delete_doc.py:288 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." @@ -31611,7 +31734,7 @@ msgstr "" msgid "{0}: {1} is set to state {2}" msgstr "{0}: {1} diatur untuk menyatakan {2}" -#: frappe/public/js/frappe/views/reports/query_report.js:1283 +#: frappe/public/js/frappe/views/reports/query_report.js:1291 msgid "{0}: {1} vs {2}" msgstr "" @@ -31647,11 +31770,11 @@ msgstr "{{{0}}} bukan pola nama-kolom yang sah. Seharusnya {{field_name}}." msgid "{} Complete" msgstr "{} Selesai" -#: frappe/utils/data.py:2541 +#: frappe/utils/data.py:2567 msgid "{} Invalid python code on line {}" msgstr "" -#: frappe/utils/data.py:2550 +#: frappe/utils/data.py:2576 msgid "{} Possibly invalid python code.
{}" msgstr "" @@ -31677,7 +31800,7 @@ msgstr "" msgid "{} is not a valid date string." msgstr "{} bukan string tanggal yang valid." -#: frappe/commands/utils.py:562 +#: frappe/commands/utils.py:561 msgid "{} not found in PATH! This is required to access the console." msgstr "" diff --git a/frappe/locale/it.po b/frappe/locale/it.po index 42c2853494..88f8679897 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-09-21 09:33+0000\n" -"PO-Revision-Date: 2025-09-21 19:57\n" +"POT-Creation-Date: 2025-10-05 09:33+0000\n" +"PO-Revision-Date: 2025-10-06 22:59\n" "Last-Translator: developers@frappe.io\n" "Language-Team: Italian\n" "MIME-Version: 1.0\n" @@ -78,7 +78,7 @@ msgstr "'Nella Ricerca Globale' non consentito per il tipo {0} nella riga {1}" msgid "'In List View' is not allowed for field {0} of type {1}" msgstr "'Nella Vista Elenco' non è consentito per il campo {0} di tipo {1}" -#: frappe/custom/doctype/customize_form/customize_form.py:363 +#: frappe/custom/doctype/customize_form/customize_form.py:367 msgid "'In List View' not allowed for type {0} in row {1}" msgstr "'Nella Vista Elenco' non consentito per il tipo {0} nella riga {1}" @@ -122,7 +122,7 @@ msgstr "0 - Bozza; 1 - Inviata; 2 - Annullata" msgid "0 is highest" msgstr "0 è il più alto" -#: frappe/public/js/frappe/form/grid_row.js:892 +#: frappe/public/js/frappe/form/grid_row.js:893 msgid "1 = True & 0 = False" msgstr "1 = Vero e 0 = Falso" @@ -141,11 +141,11 @@ msgstr "1 Giorno" msgid "1 Google Calendar Event synced." msgstr "1 Evento di Google Calendar sincronizzato." -#: frappe/public/js/frappe/views/reports/query_report.js:955 +#: frappe/public/js/frappe/views/reports/query_report.js:963 msgid "1 Report" msgstr "" -#: frappe/tests/test_utils.py:739 +#: frappe/tests/test_utils.py:845 msgid "1 day ago" msgstr "1 giorno fa" @@ -154,17 +154,17 @@ msgid "1 hour" msgstr "1 ora" #: frappe/public/js/frappe/utils/pretty_date.js:52 -#: frappe/tests/test_utils.py:737 +#: frappe/tests/test_utils.py:843 msgid "1 hour ago" msgstr "1 ora fa" #: frappe/public/js/frappe/utils/pretty_date.js:48 -#: frappe/tests/test_utils.py:735 +#: frappe/tests/test_utils.py:841 msgid "1 minute ago" msgstr "1 minuto fa" #: frappe/public/js/frappe/utils/pretty_date.js:66 -#: frappe/tests/test_utils.py:743 +#: frappe/tests/test_utils.py:849 msgid "1 month ago" msgstr "1 mese fa" @@ -186,37 +186,37 @@ msgctxt "User added row to child table" msgid "1 row to {0}" msgstr "" -#: frappe/tests/test_utils.py:734 +#: frappe/tests/test_utils.py:840 msgid "1 second ago" msgstr "1 secondo fa" #: frappe/public/js/frappe/utils/pretty_date.js:62 -#: frappe/tests/test_utils.py:741 +#: frappe/tests/test_utils.py:847 msgid "1 week ago" msgstr "1 settimana fa" #: frappe/public/js/frappe/utils/pretty_date.js:70 -#: frappe/tests/test_utils.py:745 +#: frappe/tests/test_utils.py:851 msgid "1 year ago" msgstr "1 anno fa" -#: frappe/tests/test_utils.py:738 +#: frappe/tests/test_utils.py:844 msgid "2 hours ago" msgstr "2 ore fa" -#: frappe/tests/test_utils.py:744 +#: frappe/tests/test_utils.py:850 msgid "2 months ago" msgstr "2 mesi fa" -#: frappe/tests/test_utils.py:742 +#: frappe/tests/test_utils.py:848 msgid "2 weeks ago" msgstr "2 settimane fa" -#: frappe/tests/test_utils.py:746 +#: frappe/tests/test_utils.py:852 msgid "2 years ago" msgstr "2 anni fa" -#: frappe/tests/test_utils.py:736 +#: frappe/tests/test_utils.py:842 msgid "3 minutes ago" msgstr "3 minuti fa" @@ -232,7 +232,7 @@ msgstr "4 ore" msgid "5 Records" msgstr "5 record" -#: frappe/tests/test_utils.py:740 +#: frappe/tests/test_utils.py:846 msgid "5 days ago" msgstr "5 giorni fa" @@ -268,6 +268,16 @@ msgstr "{0} non è un URL valido" 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 "" +#. Introduction text of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "

Request a file containing your personally identifiable information (PII) that is saved on our system. The file will be in JSON format and is sent to you by email. If you would like to have your PII deleted from our system, please make a request to delete data.

" +msgstr "" + +#. Introduction text of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "

Send a request to delete your account and personally identifiable information (PII) that is stored on our system. You will receive an email to verify your request. Once the request is verified we will take care of deleting your PII. If you just want to check what PII we have stored, you can request your data.

" +msgstr "" + #. Content of the 'Help HTML' (HTML) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -657,6 +667,11 @@ msgstr "" msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three." msgstr "" +#. Success message of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "A download link with your data will be sent to the email address associated with your account." +msgstr "" + #: frappe/custom/doctype/custom_field/custom_field.py:175 msgid "A field with the name {0} already exists in {1}" msgstr "" @@ -783,7 +798,7 @@ msgstr "" #. 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.js:452 frappe/core/doctype/user/user.json +#: frappe/core/doctype/user/user.js:459 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 @@ -802,7 +817,7 @@ msgstr "" msgid "API Key cannot be regenerated" msgstr "" -#: frappe/core/doctype/user/user.js:449 +#: frappe/core/doctype/user/user.js:456 msgid "API Keys" msgstr "" @@ -826,7 +841,7 @@ msgstr "" #. 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.js:459 frappe/core/doctype/user/user.json +#: frappe/core/doctype/user/user.js:466 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" @@ -912,7 +927,7 @@ msgstr "" msgid "Access Token URL" msgstr "" -#: frappe/auth.py:491 +#: frappe/auth.py:494 msgid "Access not allowed from this IP Address" msgstr "" @@ -1028,7 +1043,7 @@ msgstr "" #: 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:842 +#: frappe/public/js/frappe/views/reports/query_report.js:850 msgid "Actions" msgstr "" @@ -1085,7 +1100,7 @@ msgstr "Log Attività" #: 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:501 +#: frappe/public/js/frappe/form/grid_row.js:502 #: 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 @@ -1096,7 +1111,7 @@ msgstr "Log Attività" msgid "Add" msgstr "Aggiungi" -#: frappe/public/js/frappe/form/grid_row.js:454 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Add / Remove Columns" msgstr "Aggiungi / Rimuovi colonne" @@ -1141,8 +1156,8 @@ msgid "Add Child" msgstr "" #: frappe/public/js/frappe/views/kanban/kanban_board.html:4 -#: frappe/public/js/frappe/views/reports/query_report.js:1832 -#: frappe/public/js/frappe/views/reports/query_report.js:1835 +#: frappe/public/js/frappe/views/reports/query_report.js:1840 +#: frappe/public/js/frappe/views/reports/query_report.js:1843 #: frappe/public/js/frappe/views/reports/report_view.js:360 #: frappe/public/js/frappe/views/reports/report_view.js:385 #: frappe/public/js/print_format_builder/Field.vue:112 @@ -1236,7 +1251,7 @@ msgstr "" msgid "Add Tags" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2149 +#: frappe/public/js/frappe/list/list_view.js:2151 msgctxt "Button in list view actions menu" msgid "Add Tags" msgstr "" @@ -1617,11 +1632,11 @@ msgstr "" msgid "Alerts and Notifications" msgstr "" -#: frappe/database/query.py:1608 +#: frappe/database/query.py:1610 msgid "Alias cannot be a SQL keyword: {0}" msgstr "" -#: frappe/database/query.py:1533 +#: frappe/database/query.py:1535 msgid "Alias must be a string" msgstr "" @@ -2068,6 +2083,12 @@ msgstr "" msgid "Alternative Email ID" msgstr "" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Always" +msgstr "" + #. Label of the always_bcc (Data) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Always BCC Address" @@ -2144,6 +2165,11 @@ msgstr "" msgid "Amendment naming rules updated." msgstr "" +#. Success message of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "An email to verify your request has been sent to your email address. Please verify your request to complete the process." +msgstr "" + #: frappe/public/js/frappe/ui/toolbar/toolbar.js:354 msgid "An error occurred while setting Session Defaults" msgstr "" @@ -2326,7 +2352,7 @@ msgstr "" msgid "Apply" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2134 +#: frappe/public/js/frappe/list/list_view.js:2136 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" msgstr "" @@ -2411,7 +2437,7 @@ msgstr "" msgid "Are you sure you want to cancel the invitation?" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2113 +#: frappe/public/js/frappe/list/list_view.js:2115 msgid "Are you sure you want to clear the assignments?" msgstr "" @@ -2447,7 +2473,7 @@ msgstr "" msgid "Are you sure you want to discard the changes?" msgstr "Vuoi davvero annullare le modifiche?" -#: frappe/public/js/frappe/views/reports/query_report.js:969 +#: frappe/public/js/frappe/views/reports/query_report.js:977 msgid "Are you sure you want to generate a new report?" msgstr "" @@ -2455,7 +2481,7 @@ msgstr "" msgid "Are you sure you want to merge {0} with {1}?" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:108 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:118 msgid "Are you sure you want to proceed?" msgstr "" @@ -2510,6 +2536,12 @@ msgstr "" msgid "As per your request, your account and data on {0} associated with email {1} has been permanently deleted" msgstr "" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Ask" +msgstr "" + #. Label of the assign_condition (Code) field in DocType 'Assignment Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Assign Condition" @@ -2519,7 +2551,7 @@ msgstr "" msgid "Assign To" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2095 +#: frappe/public/js/frappe/list/list_view.js:2097 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "" @@ -2662,7 +2694,7 @@ msgstr "" msgid "Asynchronous" msgstr "Asincrono" -#: frappe/public/js/frappe/form/grid_row.js:696 +#: frappe/public/js/frappe/form/grid_row.js:697 msgid "At least one column is required to show in the grid." msgstr "" @@ -3643,7 +3675,7 @@ msgstr "Eliminazione in Blocco" msgid "Bulk Edit" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1189 +#: frappe/public/js/frappe/form/grid.js:1190 msgid "Bulk Edit {0}" msgstr "" @@ -3935,7 +3967,7 @@ msgstr "" #. 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/doctype/doctype_list.js:131 #: frappe/core/doctype/user_document_type/user_document_type.json #: frappe/core/doctype/user_invitation/user_invitation.js:17 #: frappe/email/doctype/notification/notification.json @@ -3943,7 +3975,7 @@ msgstr "" msgid "Cancel" msgstr "Annulla" -#: frappe/public/js/frappe/list/list_view.js:2204 +#: frappe/public/js/frappe/list/list_view.js:2206 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "Annulla" @@ -3961,7 +3993,7 @@ msgstr "" msgid "Cancel All Documents" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2209 +#: frappe/public/js/frappe/list/list_view.js:2211 msgctxt "Title of confirmation dialog" msgid "Cancel {0} documents?" msgstr "" @@ -4014,7 +4046,7 @@ msgstr "" msgid "Cannot Update After Submit" msgstr "" -#: frappe/core/doctype/file/file.py:643 +#: frappe/core/doctype/file/file.py:646 msgid "Cannot access file path {0}" msgstr "" @@ -4062,7 +4094,7 @@ msgstr "" msgid "Cannot delete Home and Attachments folders" msgstr "" -#: frappe/model/delete_doc.py:379 +#: frappe/model/delete_doc.py:419 msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}" msgstr "" @@ -4142,7 +4174,7 @@ msgstr "" msgid "Cannot find file {} on disk" msgstr "" -#: frappe/core/doctype/file/file.py:583 +#: frappe/core/doctype/file/file.py:586 msgid "Cannot get file contents of a Folder" msgstr "" @@ -4150,7 +4182,7 @@ msgstr "" msgid "Cannot have multiple printers mapped to a single print format." msgstr "" -#: frappe/public/js/frappe/form/grid.js:1133 +#: frappe/public/js/frappe/form/grid.js:1134 msgid "Cannot import table with more than 5000 rows." msgstr "" @@ -4166,7 +4198,7 @@ msgstr "" msgid "Cannot match column {0} with any field" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:175 +#: frappe/public/js/frappe/form/grid_row.js:176 msgid "Cannot move row" msgstr "" @@ -4195,11 +4227,11 @@ msgstr "" msgid "Cannot update {0}" msgstr "" -#: frappe/model/db_query.py:1130 +#: frappe/model/db_query.py:1136 msgid "Cannot use sub-query here." msgstr "" -#: frappe/model/db_query.py:1162 +#: frappe/model/db_query.py:1168 msgid "Cannot use {0} in order/group by" msgstr "" @@ -4472,11 +4504,11 @@ msgstr "" #. Description of the 'Is Child Table' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:52 +#: frappe/core/doctype/doctype/doctype_list.js:53 msgid "Child Tables are shown as a Grid in other DocTypes" msgstr "" -#: frappe/database/query.py:660 +#: frappe/database/query.py:662 msgid "Child query fields for '{0}' must be a list or tuple." msgstr "" @@ -4532,7 +4564,7 @@ msgstr "" msgid "Clear All" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2110 +#: frappe/public/js/frappe/list/list_view.js:2112 msgctxt "Button in list view actions menu" msgid "Clear Assignment" msgstr "" @@ -4626,7 +4658,7 @@ msgstr "" msgid "Click to Set Filters" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:739 +#: frappe/public/js/frappe/list/list_view.js:741 msgid "Click to sort by {0}" msgstr "Fai clic per ordinare per {0}" @@ -4804,7 +4836,7 @@ msgctxt "Shrink code field." msgid "Collapse" msgstr "Riduci" -#: frappe/public/js/frappe/views/reports/query_report.js:2113 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 #: frappe/public/js/frappe/views/treeview.js:123 msgid "Collapse All" msgstr "" @@ -4859,7 +4891,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:1233 +#: frappe/public/js/frappe/views/reports/query_report.js:1241 #: frappe/public/js/frappe/widgets/widget_dialog.js:546 #: frappe/public/js/frappe/widgets/widget_dialog.js:694 #: frappe/website/doctype/color/color.json @@ -4915,11 +4947,11 @@ msgstr "" msgid "Column Name cannot be empty" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:454 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Column Width" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:661 +#: frappe/public/js/frappe/form/grid_row.js:662 msgid "Column width cannot be zero." msgstr "" @@ -4946,7 +4978,7 @@ msgstr "" msgid "Columns / Fields" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:397 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:411 msgid "Columns based on" msgstr "" @@ -5210,7 +5242,7 @@ msgstr "" msgid "Configure Chart" msgstr "Configura Grafico" -#: frappe/public/js/frappe/form/grid_row.js:406 +#: frappe/public/js/frappe/form/grid_row.js:407 msgid "Configure Columns" msgstr "" @@ -5235,7 +5267,7 @@ msgstr "" msgid "Configure various aspects of how document naming works like naming series, current counter." msgstr "" -#: frappe/core/doctype/user/user.js:412 frappe/public/js/frappe/dom.js:345 +#: frappe/core/doctype/user/user.js:400 frappe/public/js/frappe/dom.js:345 #: frappe/www/update-password.html:66 msgid "Confirm" msgstr "Conferma" @@ -5254,7 +5286,7 @@ msgstr "" msgid "Confirm Deletion of Account" msgstr "" -#: frappe/core/doctype/user/user.js:196 +#: frappe/core/doctype/user/user.js:184 msgid "Confirm New Password" msgstr "" @@ -5507,7 +5539,7 @@ msgstr "" msgid "Copy to Clipboard" msgstr "Copia negli Appunti" -#: frappe/core/doctype/user/user.js:480 +#: frappe/core/doctype/user/user.js:487 msgid "Copy token to clipboard" msgstr "" @@ -5516,7 +5548,7 @@ msgstr "" msgid "Copyright" msgstr "Copyright" -#: frappe/custom/doctype/customize_form/customize_form.py:123 +#: frappe/custom/doctype/customize_form/customize_form.py:125 msgid "Core DocTypes cannot be customized." msgstr "" @@ -5540,7 +5572,7 @@ msgstr "" msgid "Could not map column {0} to field {1}" msgstr "" -#: frappe/database/query.py:564 +#: frappe/database/query.py:566 msgid "Could not parse field: {0}" msgstr "" @@ -5632,13 +5664,13 @@ 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:1265 +#: frappe/public/js/frappe/views/reports/query_report.js:1273 #: frappe/public/js/frappe/views/workspace/workspace.js:469 #: frappe/workflow/page/workflow_builder/workflow_builder.js:46 msgid "Create" msgstr "Creare" -#: frappe/core/doctype/doctype/doctype_list.js:102 +#: frappe/core/doctype/doctype/doctype_list.js:103 msgid "Create & Continue" msgstr "Crea e Continua" @@ -5652,7 +5684,7 @@ msgid "Create Card" msgstr "Crea Scheda" #: frappe/public/js/frappe/views/reports/query_report.js:285 -#: frappe/public/js/frappe/views/reports/query_report.js:1192 +#: frappe/public/js/frappe/views/reports/query_report.js:1200 msgid "Create Chart" msgstr "Crea Grafico" @@ -5686,12 +5718,12 @@ msgstr "Crea Log" msgid "Create New" msgstr "Crea Nuovo" -#: frappe/public/js/frappe/list/list_view.js:512 +#: frappe/public/js/frappe/list/list_view.js:514 msgctxt "Create a new document from list view" msgid "Create New" msgstr "Crea Nuovo" -#: frappe/core/doctype/doctype/doctype_list.js:100 +#: frappe/core/doctype/doctype/doctype_list.js:101 msgid "Create New DocType" msgstr "" @@ -5699,7 +5731,7 @@ msgstr "" msgid "Create New Kanban Board" msgstr "Crea Nuova Bacheca Kanban" -#: frappe/core/doctype/user/user.js:276 +#: frappe/core/doctype/user/user.js:264 msgid "Create User Email" msgstr "Crea E-mail Utente" @@ -5722,8 +5754,8 @@ msgstr "Crea un nuovo record" #: frappe/public/js/frappe/form/controls/link.js:315 #: frappe/public/js/frappe/form/controls/link.js:317 #: frappe/public/js/frappe/form/link_selector.js:139 -#: frappe/public/js/frappe/list/list_view.js:504 -#: frappe/public/js/frappe/web_form/web_form_list.js:225 +#: frappe/public/js/frappe/list/list_view.js:506 +#: frappe/public/js/frappe/web_form/web_form_list.js:226 msgid "Create a new {0}" msgstr "Crea un nuovo {0}" @@ -5739,7 +5771,7 @@ msgstr "" msgid "Create or Edit Workflow" msgstr "Crea o Modifica Flusso di Lavoro" -#: frappe/public/js/frappe/list/list_view.js:507 +#: frappe/public/js/frappe/list/list_view.js:509 msgid "Create your first {0}" msgstr "Crea il tuo primo {0}" @@ -6086,7 +6118,7 @@ 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/core/doctype/doctype/doctype_list.js:83 #: frappe/website/doctype/website_theme/website_theme.json msgid "Custom?" msgstr "" @@ -6121,7 +6153,7 @@ msgstr "" msgid "Customize" msgstr "Personalizza" -#: frappe/public/js/frappe/list/list_view.js:1947 +#: frappe/public/js/frappe/list/list_view.js:1949 msgctxt "Button in list view menu" msgid "Customize" msgstr "Personalizza" @@ -6140,7 +6172,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:343 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 msgid "Customize Form" msgstr "Personalizza Modulo" @@ -6371,7 +6403,7 @@ msgstr "" msgid "Data Import Template" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:615 +#: frappe/custom/doctype/customize_form/customize_form.py:619 msgid "Data Too Long" msgstr "" @@ -6402,7 +6434,7 @@ msgstr "" msgid "Database Storage Usage By Tables" msgstr "Spazio Database Usato Per Tabella" -#: frappe/custom/doctype/customize_form/customize_form.py:249 +#: frappe/custom/doctype/customize_form/customize_form.py:251 msgid "Database Table Row Size Limit" msgstr "" @@ -6772,13 +6804,13 @@ msgstr "" #: frappe/public/js/frappe/form/toolbar.js:464 #: frappe/public/js/frappe/views/reports/report_view.js:1749 #: frappe/public/js/frappe/views/treeview.js:329 -#: frappe/public/js/frappe/web_form/web_form_list.js:282 +#: frappe/public/js/frappe/web_form/web_form_list.js:283 #: frappe/templates/discussions/reply_card.html:35 #: frappe/templates/discussions/reply_section.html:29 msgid "Delete" msgstr "Eliminare" -#: frappe/public/js/frappe/list/list_view.js:2172 +#: frappe/public/js/frappe/list/list_view.js:2174 msgctxt "Button in list view actions menu" msgid "Delete" msgstr "Eliminare" @@ -6811,7 +6843,7 @@ msgstr "" msgid "Delete Data" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:106 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:116 msgid "Delete Kanban Board" msgstr "" @@ -6825,7 +6857,7 @@ msgctxt "Title of confirmation dialog" msgid "Delete Tab" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:936 +#: frappe/public/js/frappe/views/reports/query_report.js:944 msgid "Delete and Generate New" msgstr "" @@ -6867,12 +6899,12 @@ msgstr "" msgid "Delete this record to allow sending to this email address" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2177 +#: frappe/public/js/frappe/list/list_view.js:2179 msgctxt "Title of confirmation dialog" msgid "Delete {0} item permanently?" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2183 +#: frappe/public/js/frappe/list/list_view.js:2185 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "" @@ -7369,10 +7401,14 @@ msgstr "Non creare un nuovo utente" msgid "Do not create new user if user with email does not exist in the system" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1194 +#: frappe/public/js/frappe/form/grid.js:1195 msgid "Do not edit headers which are preset in the template" msgstr "" +#: frappe/public/js/frappe/router.js:624 +msgid "Do not warn me again about {0}" +msgstr "" + #: frappe/core/doctype/system_settings/system_settings.js:71 msgid "Do you still want to proceed?" msgstr "" @@ -7796,7 +7832,7 @@ msgstr "" #: 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/public/js/frappe/roles_editor.js:68 #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json #: frappe/workflow/doctype/workflow/workflow.json msgid "Document Type" @@ -7847,15 +7883,15 @@ msgstr "" msgid "Document follow is not enabled for this user." msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1300 +#: frappe/public/js/frappe/list/list_view.js:1302 msgid "Document has been cancelled" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1299 +#: frappe/public/js/frappe/list/list_view.js:1301 msgid "Document has been submitted" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1298 +#: frappe/public/js/frappe/list/list_view.js:1300 msgid "Document is in draft state" msgstr "Il documento è in bozza" @@ -7997,7 +8033,7 @@ msgstr "" msgid "Double click to edit label" msgstr "" -#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:467 +#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:474 #: frappe/email/doctype/auto_email_report/auto_email_report.js:8 #: frappe/public/js/frappe/form/grid.js:66 msgid "Download" @@ -8030,7 +8066,7 @@ msgstr "Scarica Link" msgid "Download PDF" msgstr "Scarica il pdf" -#: frappe/public/js/frappe/views/reports/query_report.js:832 +#: frappe/public/js/frappe/views/reports/query_report.js:840 msgid "Download Report" msgstr "Scarica Report" @@ -8230,8 +8266,8 @@ msgstr "" #: 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:880 -#: frappe/public/js/frappe/views/reports/query_report.js:1783 +#: frappe/public/js/frappe/views/reports/query_report.js:888 +#: frappe/public/js/frappe/views/reports/query_report.js:1791 #: 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 @@ -8243,7 +8279,7 @@ msgstr "" msgid "Edit" msgstr "Modifica" -#: frappe/public/js/frappe/list/list_view.js:2258 +#: frappe/public/js/frappe/list/list_view.js:2260 msgctxt "Button in list view actions menu" msgid "Edit" msgstr "Modifica" @@ -8253,7 +8289,7 @@ msgctxt "Button in web form" msgid "Edit" msgstr "Modifica" -#: frappe/public/js/frappe/form/grid_row.js:349 +#: frappe/public/js/frappe/form/grid_row.js:350 msgctxt "Edit grid row" msgid "Edit" msgstr "Modifica" @@ -8282,7 +8318,7 @@ msgstr "Modifica HTML personalizzato" msgid "Edit DocType" msgstr "Modifica DocType" -#: frappe/public/js/frappe/list/list_view.js:1974 +#: frappe/public/js/frappe/list/list_view.js:1976 msgctxt "Button in list view menu" msgid "Edit DocType" msgstr "Modifica DocType" @@ -8402,7 +8438,7 @@ msgstr "" #. 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/core/doctype/doctype/doctype_list.js:58 #: frappe/custom/doctype/customize_form/customize_form.json msgid "Editable Grid" msgstr "" @@ -8447,6 +8483,8 @@ msgstr "" #. 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' +#. Label of a field in the request-data Web Form +#. Label of a field in the request-to-delete-data Web Form #: frappe/automation/workspace/tools/tools.json #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/custom_docperm/custom_docperm.json @@ -8465,6 +8503,8 @@ msgstr "" #: 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/website/web_form/request_data/request_data.json +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json #: frappe/www/login.html:8 frappe/www/login.py:104 msgid "Email" msgstr "E-mail" @@ -8696,7 +8736,7 @@ msgstr "" msgid "Email has been moved to trash" msgstr "" -#: frappe/core/doctype/user/user.js:278 +#: frappe/core/doctype/user/user.js:266 msgid "Email is mandatory to create User Email" msgstr "" @@ -8739,7 +8779,7 @@ msgstr "" msgid "Embed code copied" msgstr "" -#: frappe/database/query.py:1537 +#: frappe/database/query.py:1539 msgid "Empty alias is not allowed" msgstr "" @@ -8747,7 +8787,7 @@ msgstr "" msgid "Empty column" msgstr "" -#: frappe/database/query.py:1455 +#: frappe/database/query.py:1457 msgid "Empty string arguments are not allowed" msgstr "" @@ -9203,9 +9243,9 @@ msgstr "" msgid "Error in Header/Footer Script" msgstr "" -#: frappe/email/doctype/notification/notification.py:640 -#: frappe/email/doctype/notification/notification.py:780 -#: frappe/email/doctype/notification/notification.py:786 +#: frappe/email/doctype/notification/notification.py:642 +#: frappe/email/doctype/notification/notification.py:782 +#: frappe/email/doctype/notification/notification.py:788 msgid "Error in Notification" msgstr "" @@ -9225,7 +9265,7 @@ msgstr "" msgid "Error while connecting to email account {0}" msgstr "" -#: frappe/email/doctype/notification/notification.py:777 +#: frappe/email/doctype/notification/notification.py:779 msgid "Error while evaluating Notification {0}. Please fix your template." msgstr "" @@ -9386,7 +9426,7 @@ msgstr "" msgid "Executing..." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2132 +#: frappe/public/js/frappe/views/reports/query_report.js:2140 msgid "Execution Time: {0} sec" msgstr "" @@ -9412,12 +9452,12 @@ msgctxt "Enlarge code field." msgid "Expand" msgstr "Espandi" -#: frappe/public/js/frappe/views/reports/query_report.js:2113 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 #: frappe/public/js/frappe/views/treeview.js:133 msgid "Expand All" msgstr "" -#: frappe/database/query.py:352 +#: frappe/database/query.py:354 msgid "Expected 'and' or 'or' operator, found: {0}" msgstr "" @@ -9475,13 +9515,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:1820 +#: frappe/public/js/frappe/views/reports/query_report.js:1828 #: frappe/public/js/frappe/views/reports/report_view.js:1629 #: frappe/public/js/frappe/widgets/chart_widget.js:315 msgid "Export" msgstr "Esportare" -#: frappe/public/js/frappe/list/list_view.js:2280 +#: frappe/public/js/frappe/list/list_view.js:2282 msgctxt "Button in list view actions menu" msgid "Export" msgstr "Esportare" @@ -9674,7 +9714,7 @@ msgstr "" msgid "Failed to connect to server" msgstr "" -#: frappe/auth.py:698 +#: frappe/auth.py:701 msgid "Failed to decode token, please provide a valid base64-encoded token." msgstr "" @@ -9838,7 +9878,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:236 -#: frappe/public/js/frappe/views/reports/query_report.js:1879 +#: frappe/public/js/frappe/views/reports/query_report.js:1887 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_form_list_column/web_form_list_column.json msgid "Field" @@ -9921,7 +9961,7 @@ msgstr "" msgid "Field {0} not found." msgstr "" -#: frappe/email/doctype/notification/notification.py:545 +#: frappe/email/doctype/notification/notification.py:547 msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link" msgstr "" @@ -9939,7 +9979,7 @@ msgstr "" #: 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:454 +#: frappe/public/js/frappe/form/grid_row.js:455 #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Fieldname" msgstr "" @@ -10020,7 +10060,7 @@ msgstr "" msgid "Fields must be a list or tuple when as_list is enabled" msgstr "" -#: frappe/database/query.py:611 +#: frappe/database/query.py:613 msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function" msgstr "" @@ -10048,7 +10088,7 @@ msgstr "" msgid "Fieldtype cannot be changed from {0} to {1}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:589 +#: frappe/custom/doctype/customize_form/customize_form.py:593 msgid "Fieldtype cannot be changed from {0} to {1} in row {2}" msgstr "" @@ -10114,7 +10154,7 @@ msgstr "" msgid "File backup is ready" msgstr "" -#: frappe/core/doctype/file/file.py:646 +#: frappe/core/doctype/file/file.py:649 msgid "File name cannot have {0}" msgstr "" @@ -10122,7 +10162,7 @@ msgstr "" msgid "File not attached" msgstr "" -#: frappe/core/doctype/file/file.py:756 frappe/public/js/frappe/request.js:200 +#: frappe/core/doctype/file/file.py:759 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 "" @@ -10135,7 +10175,7 @@ msgstr "" msgid "File type of {0} is not allowed" msgstr "" -#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:448 +#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:451 msgid "File {0} does not exist" msgstr "" @@ -10189,11 +10229,11 @@ msgstr "Nome Filtro" msgid "Filter Values" msgstr "" -#: frappe/database/query.py:358 +#: frappe/database/query.py:360 msgid "Filter condition missing after operator: {0}" msgstr "" -#: frappe/database/query.py:425 +#: frappe/database/query.py:427 msgid "Filter fields cannot contain backticks (`)." msgstr "" @@ -10270,7 +10310,7 @@ msgstr "" msgid "Filters applied for {0}" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:188 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:202 msgid "Filters saved" msgstr "" @@ -10318,9 +10358,12 @@ msgstr "" #. Label of the first_name (Data) field in DocType 'Contact' #. Label of the first_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json #: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:44 -#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:15 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:15 msgid "First Name" msgstr "Nome di battesimo" @@ -10401,7 +10444,7 @@ msgstr "" msgid "Folder name should not include '/' (slash)" msgstr "" -#: frappe/core/doctype/file/file.py:494 +#: frappe/core/doctype/file/file.py:497 msgid "Folder {0} is not empty" msgstr "" @@ -10603,7 +10646,7 @@ msgstr "Per l'Utente" msgid "For Value" msgstr "Valore" -#: frappe/public/js/frappe/views/reports/query_report.js:2129 +#: frappe/public/js/frappe/views/reports/query_report.js:2137 #: frappe/public/js/frappe/views/reports/report_view.js:108 msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)." msgstr "" @@ -10888,7 +10931,7 @@ msgstr "" msgid "From Date Field" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1840 +#: frappe/public/js/frappe/views/reports/query_report.js:1848 msgid "From Document Type" msgstr "" @@ -10950,12 +10993,12 @@ msgstr "" msgid "Function {0} is not whitelisted." msgstr "" -#: frappe/database/query.py:1417 +#: frappe/database/query.py:1419 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" +msgid "Further sub-groups can only be created under records marked as 'Group'" msgstr "" #: frappe/core/doctype/communication/communication.js:291 @@ -11015,7 +11058,7 @@ msgstr "" msgid "Generate Keys" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:874 +#: frappe/public/js/frappe/views/reports/query_report.js:882 msgid "Generate New Report" msgstr "" @@ -11431,14 +11474,10 @@ msgstr "" msgid "Group By field is required to create a dashboard chart" msgstr "" -#: frappe/database/query.py:750 +#: frappe/database/query.py:752 msgid "Group By must be a string" msgstr "" -#: frappe/public/js/frappe/views/treeview.js:418 -msgid "Group Node" -msgstr "" - #. Label of the ldap_group_objectclass (Data) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Group Object Class" @@ -11768,7 +11807,7 @@ msgstr "" msgid "Hidden Fields" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1642 +#: frappe/public/js/frappe/views/reports/query_report.js:1650 msgid "Hidden columns include: {0}" msgstr "" @@ -11880,7 +11919,7 @@ msgstr "" msgid "Hide Standard Menu" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1849 +#: frappe/public/js/frappe/list/list_view.js:1851 msgid "Hide Tags" msgstr "" @@ -12139,7 +12178,7 @@ msgstr "" #: frappe/core/doctype/doctype/doctype.py:1777 #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45 -#: frappe/public/js/frappe/roles_editor.js:66 +#: frappe/public/js/frappe/roles_editor.js:68 msgid "If Owner" msgstr "" @@ -12367,8 +12406,8 @@ msgstr "" msgid "Illegal Document Status for {0}" msgstr "" -#: frappe/model/db_query.py:453 frappe/model/db_query.py:456 -#: frappe/model/db_query.py:1121 +#: frappe/model/db_query.py:454 frappe/model/db_query.py:457 +#: frappe/model/db_query.py:1122 msgid "Illegal SQL Query" msgstr "" @@ -12455,11 +12494,11 @@ msgstr "" #. Option for the 'Operation' (Select) field in DocType 'Activity Log' #: frappe/core/doctype/activity_log/activity_log.json -#: frappe/core/doctype/user/user.js:384 +#: frappe/core/doctype/user/user.js:372 msgid "Impersonate" msgstr "" -#: frappe/core/doctype/user/user.js:411 +#: frappe/core/doctype/user/user.js:399 msgid "Impersonate as {0}" msgstr "" @@ -12489,7 +12528,7 @@ msgstr "" msgid "Import" msgstr "Importa" -#: frappe/public/js/frappe/list/list_view.js:1911 +#: frappe/public/js/frappe/list/list_view.js:1913 msgctxt "Button in list view menu" msgid "Import" msgstr "Importa" @@ -12718,15 +12757,15 @@ msgid "Include Web View Link in Email" msgstr "" #: frappe/public/js/frappe/form/print_utils.js:59 -#: frappe/public/js/frappe/views/reports/query_report.js:1620 +#: frappe/public/js/frappe/views/reports/query_report.js:1628 msgid "Include filters" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1640 +#: frappe/public/js/frappe/views/reports/query_report.js:1648 msgid "Include hidden columns" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1612 +#: frappe/public/js/frappe/views/reports/query_report.js:1620 msgid "Include indentation" msgstr "" @@ -12773,7 +12812,7 @@ msgstr "Account email in arrivo non corretto" msgid "Incomplete Virtual Doctype Implementation" msgstr "" -#: frappe/auth.py:255 +#: frappe/auth.py:258 msgid "Incomplete login details" msgstr "" @@ -12884,7 +12923,7 @@ msgstr "Inserisci Sopra" #. 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:1885 +#: frappe/public/js/frappe/views/reports/query_report.js:1893 msgid "Insert After" msgstr "" @@ -12957,7 +12996,7 @@ msgstr "" msgid "Insufficient Permission Level for {0}" msgstr "" -#: frappe/database/query.py:806 frappe/database/query.py:1052 +#: frappe/database/query.py:808 frappe/database/query.py:1054 msgid "Insufficient Permission for {0}" msgstr "" @@ -13073,7 +13112,7 @@ msgid "Invalid" msgstr "Non valido" #: frappe/public/js/form_builder/utils.js:221 -#: frappe/public/js/frappe/form/grid_row.js:849 +#: frappe/public/js/frappe/form/grid_row.js:850 #: frappe/public/js/frappe/form/layout.js:810 #: frappe/public/js/frappe/views/reports/report_view.js:721 msgid "Invalid \"depends_on\" expression" @@ -13131,8 +13170,8 @@ 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 +#: frappe/database/query.py:429 frappe/database/query.py:456 +#: frappe/database/query.py:466 frappe/database/query.py:489 msgid "Invalid Filter" msgstr "" @@ -13204,7 +13243,7 @@ msgstr "Password non Valida" msgid "Invalid Phone Number" msgstr "" -#: frappe/auth.py:94 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 +#: frappe/auth.py:97 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 #: frappe/www/login.py:128 msgid "Invalid Request" msgstr "" @@ -13244,7 +13283,7 @@ msgstr "" msgid "Invalid aggregate function" msgstr "" -#: frappe/database/query.py:1542 +#: frappe/database/query.py:1544 msgid "Invalid alias format: {0}. Alias must be a simple identifier." msgstr "" @@ -13252,19 +13291,19 @@ msgstr "" msgid "Invalid app" msgstr "" -#: frappe/database/query.py:1468 +#: frappe/database/query.py:1470 msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed." msgstr "" -#: frappe/database/query.py:1444 +#: frappe/database/query.py:1446 msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed." msgstr "" -#: frappe/database/query.py:460 +#: frappe/database/query.py:462 msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed." msgstr "" -#: frappe/database/query.py:575 +#: frappe/database/query.py:577 msgid "Invalid characters in table name: {0}" msgstr "" @@ -13272,11 +13311,11 @@ msgstr "" msgid "Invalid column" msgstr "" -#: frappe/database/query.py:381 +#: frappe/database/query.py:383 msgid "Invalid condition type in nested filters: {0}" msgstr "" -#: frappe/database/query.py:787 +#: frappe/database/query.py:789 msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'." msgstr "" @@ -13292,23 +13331,23 @@ msgstr "" msgid "Invalid expression set in filter {0} ({1})" msgstr "" -#: frappe/database/query.py:1301 +#: frappe/database/query.py:1303 msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'." msgstr "" -#: frappe/database/query.py:734 +#: frappe/database/query.py:736 msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'." msgstr "" -#: frappe/database/query.py:1620 +#: frappe/database/query.py:1622 msgid "Invalid field name in function: {0}. Only simple field names are allowed." msgstr "" -#: frappe/utils/data.py:2215 +#: frappe/utils/data.py:2241 msgid "Invalid field name {0}" msgstr "" -#: frappe/database/query.py:668 +#: frappe/database/query.py:670 msgid "Invalid field type: {0}" msgstr "" @@ -13320,11 +13359,11 @@ msgstr "" msgid "Invalid file path: {0}" msgstr "" -#: frappe/database/query.py:364 +#: frappe/database/query.py:366 msgid "Invalid filter condition: {0}. Expected a list or tuple." msgstr "" -#: frappe/database/query.py:450 +#: frappe/database/query.py:452 msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'." msgstr "" @@ -13332,11 +13371,11 @@ msgstr "" msgid "Invalid filter: {0}" msgstr "" -#: frappe/database/query.py:1422 +#: frappe/database/query.py:1424 msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed." msgstr "" -#: frappe/database/query.py:1383 +#: frappe/database/query.py:1385 msgid "Invalid function dictionary format" msgstr "" @@ -13373,23 +13412,27 @@ msgstr "" msgid "Invalid redirect regex in row #{}: {}" msgstr "" -#: frappe/app.py:337 +#: frappe/app.py:340 msgid "Invalid request arguments" msgstr "" +#: frappe/app.py:327 +msgid "Invalid request body" +msgstr "" + #: frappe/core/doctype/user_invitation/user_invitation.py:181 msgid "Invalid role" msgstr "" -#: frappe/database/query.py:410 +#: frappe/database/query.py:412 msgid "Invalid simple filter format: {0}" msgstr "" -#: frappe/database/query.py:341 +#: frappe/database/query.py:343 msgid "Invalid start for filter condition: {0}. Expected a list or tuple." msgstr "" -#: frappe/database/query.py:1489 +#: frappe/database/query.py:1491 msgid "Invalid string literal format: {0}" msgstr "" @@ -13493,7 +13536,7 @@ msgstr "" #. 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/doctype_list.js:50 #: frappe/core/doctype/doctype_link/doctype_link.json msgid "Is Child Table" msgstr "" @@ -13546,6 +13589,10 @@ msgstr "" msgid "Is Global" msgstr "" +#: frappe/public/js/frappe/views/treeview.js:418 +msgid "Is Group" +msgstr "" + #. Label of the is_hidden (Check) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "Is Hidden" @@ -13634,7 +13681,7 @@ 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/core/doctype/doctype/doctype_list.js:65 #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Is Single" msgstr "" @@ -13670,7 +13717,7 @@ msgstr "" #. Label of the is_submittable (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:39 +#: frappe/core/doctype/doctype/doctype_list.js:40 msgid "Is Submittable" msgstr "" @@ -13876,11 +13923,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:388 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:402 msgid "Kanban Board Name" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:265 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:279 msgctxt "Button in kanban view menu" msgid "Kanban Settings" msgstr "Impostazioni Kanban" @@ -14178,10 +14225,13 @@ msgstr "" #. 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' +#. Label of a field in the edit-profile Web Form #: 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:117 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/printing/page/print/print.js:117 #: frappe/public/js/frappe/form/templates/print_layout.html:11 msgid "Language" msgstr "Lingua" @@ -14269,9 +14319,12 @@ msgstr "" #. Label of the last_name (Data) field in DocType 'Contact' #. Label of the last_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json #: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:45 -#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:19 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:19 msgid "Last Name" msgstr "Cognome" @@ -14512,7 +14565,7 @@ msgstr "" #: 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/public/js/frappe/roles_editor.js:68 #: frappe/website/doctype/help_article/help_article.json msgid "Level" msgstr "" @@ -14805,7 +14858,7 @@ msgstr "" msgid "List Settings" msgstr "Impostazioni Lista" -#: frappe/public/js/frappe/list/list_view.js:1991 +#: frappe/public/js/frappe/list/list_view.js:1993 msgctxt "Button in list view menu" msgid "List Settings" msgstr "Impostazioni Lista" @@ -14856,7 +14909,7 @@ msgid "Load Balancing" msgstr "" #: frappe/public/js/frappe/list/base_list.js:399 -#: frappe/public/js/frappe/web_form/web_form_list.js:305 +#: frappe/public/js/frappe/web_form/web_form_list.js:306 #: frappe/website/doctype/help_article/templates/help_article_list.html:30 msgid "Load More" msgstr "Carica altro" @@ -14876,7 +14929,7 @@ msgstr "" #: frappe/public/js/frappe/list/base_list.js:526 #: frappe/public/js/frappe/list/list_view.js:363 #: frappe/public/js/frappe/ui/listing.html:16 -#: frappe/public/js/frappe/views/reports/query_report.js:1089 +#: frappe/public/js/frappe/views/reports/query_report.js:1097 msgid "Loading" msgstr "Caricamento" @@ -15019,7 +15072,7 @@ msgstr "" msgid "Login and view in Browser" msgstr "" -#: frappe/website/doctype/web_form/web_form.js:367 +#: frappe/website/doctype/web_form/web_form.js:368 msgid "Login is required to see web form list view. Enable {0} to see list settings" msgstr "" @@ -15027,7 +15080,7 @@ msgstr "" msgid "Login link sent to your email" msgstr "" -#: frappe/auth.py:339 frappe/auth.py:342 +#: frappe/auth.py:342 frappe/auth.py:345 msgid "Login not allowed at this time" msgstr "" @@ -15080,7 +15133,7 @@ msgstr "" msgid "Login with email link expiry (in minutes)" msgstr "" -#: frappe/auth.py:144 +#: frappe/auth.py:147 msgid "Login with username and password is not allowed." msgstr "" @@ -15099,7 +15152,7 @@ msgstr "" msgid "Logout" msgstr "Esci" -#: frappe/core/doctype/user/user.js:202 +#: frappe/core/doctype/user/user.js:190 msgid "Logout All Sessions" msgstr "" @@ -15203,7 +15256,10 @@ msgid "Major" msgstr "" #. Label of the show_name_in_global_search (Check) field in DocType 'DocType' +#. Label of the show_name_in_global_search (Check) field in DocType 'Customize +#. Form' #: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Make \"name\" searchable in Global Search" msgstr "" @@ -15279,7 +15335,7 @@ msgstr "" msgid "Mandatory Depends On (JS)" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:509 +#: frappe/website/doctype/web_form/web_form.py:536 msgid "Mandatory Information missing:" msgstr "" @@ -15736,6 +15792,11 @@ msgstr "" msgid "Middle Name" msgstr "Secondo Nome" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Middle Name (Optional)" +msgstr "" + #. Name of a DocType #. Label of a Link in the Tools Workspace #: frappe/automation/doctype/milestone/milestone.json @@ -15842,6 +15903,11 @@ msgstr "Cellulare" msgid "Mobile No" msgstr "" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Mobile Number" +msgstr "Numero di Cellulare" + #. 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" @@ -15867,7 +15933,7 @@ msgstr "" #. 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/doctype/doctype_list.js:31 #: 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 @@ -16043,10 +16109,12 @@ msgstr "" #. Label of the additional_info (Section Break) field in DocType #. 'Communication' #. Label of the short_bio (Tab Break) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: 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 +#: frappe/core/web_form/edit_profile/edit_profile.json msgid "More Information" msgstr "Ulteriori Informazioni" @@ -16076,7 +16144,7 @@ msgstr "" msgid "Move" msgstr "Muovi" -#: frappe/public/js/frappe/form/grid_row.js:193 +#: frappe/public/js/frappe/form/grid_row.js:194 msgid "Move To" msgstr "" @@ -16112,7 +16180,7 @@ msgstr "" msgid "Move the current field and the following fields to a new column" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:168 +#: frappe/public/js/frappe/form/grid_row.js:169 msgid "Move to Row Number" msgstr "" @@ -16180,7 +16248,7 @@ msgid "Mx" msgstr "Mx" #: frappe/templates/includes/web_sidebar.html:41 -#: frappe/website/doctype/web_form/web_form.py:498 +#: frappe/website/doctype/web_form/web_form.py:525 #: 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" @@ -16322,12 +16390,12 @@ msgstr "Modello di Barra di Navigazione" msgid "Navbar Template Values" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1378 +#: frappe/public/js/frappe/list/list_view.js:1380 msgctxt "Description of a list view shortcut" msgid "Navigate list down" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1385 +#: frappe/public/js/frappe/list/list_view.js:1387 msgctxt "Description of a list view shortcut" msgid "Navigate list up" msgstr "" @@ -16342,6 +16410,10 @@ msgstr "" msgid "Navigation Settings" msgstr "" +#: frappe/public/js/frappe/list/list_view.js:485 +msgid "Need Help?" +msgstr "" + #: frappe/desk/doctype/workspace/workspace.py:322 msgid "Need Workspace Manager role to edit private workspace of other users" msgstr "" @@ -16350,7 +16422,7 @@ msgstr "" msgid "Negative Value" msgstr "" -#: frappe/database/query.py:333 +#: frappe/database/query.py:335 msgid "Nested filters must be provided as a list or tuple." msgstr "" @@ -16363,6 +16435,12 @@ msgstr "" msgid "Network Printer Settings" msgstr "" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Never" +msgstr "" + #. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/core/doctype/success_action/success_action.js:57 @@ -16371,7 +16449,7 @@ msgstr "" #: 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/treeview.js:473 #: frappe/public/js/frappe/views/workspace/workspace.js:64 #: frappe/website/doctype/web_form/templates/web_list.html:15 #: frappe/www/list.html:19 @@ -16432,7 +16510,7 @@ msgstr "" msgid "New Folder" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 msgid "New Kanban Board" msgstr "" @@ -16467,7 +16545,7 @@ msgstr "" msgid "New Onboarding" msgstr "" -#: frappe/core/doctype/user/user.js:190 frappe/www/update-password.html:43 +#: frappe/core/doctype/user/user.js:178 frappe/www/update-password.html:43 msgid "New Password" msgstr "Nuova Password" @@ -16563,7 +16641,7 @@ msgstr "" #: frappe/public/js/frappe/ui/toolbar/search_utils.js:227 #: 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:411 +#: frappe/website/doctype/web_form/web_form.py:438 msgid "New {0}" msgstr "Nuovo {0}" @@ -16715,7 +16793,7 @@ msgstr "" #: frappe/public/js/form_builder/utils.js:341 #: frappe/public/js/frappe/form/controls/link.js:498 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1665 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 #: frappe/website/doctype/help_article/templates/help_article.html:26 msgid "No" msgstr "No" @@ -16864,7 +16942,7 @@ msgstr "" msgid "No Roles Specified" msgstr "Nessun Ruolo Specificato" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 msgid "No Select Field Found" msgstr "Campo Selezione Non Trovato" @@ -16948,7 +17026,7 @@ msgstr "" msgid "No failed logs" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:371 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:385 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 "Nessun campo trovato che possa essere utilizzato come colonna Kanban. Utilizza Personalizza Modulo per aggiungere un campo personalizzato di tipo \"Seleziona\"." @@ -16972,7 +17050,7 @@ msgstr "" msgid "No matching records. Search something new" msgstr "" -#: frappe/public/js/frappe/web_form/web_form_list.js:161 +#: frappe/public/js/frappe/web_form/web_form_list.js:162 msgid "No more items to display" msgstr "Non ci sono più elementi da visualizzare" @@ -17016,7 +17094,7 @@ msgctxt "{0} = verb, {1} = object" msgid "No permission to '{0}' {1}" msgstr "" -#: frappe/model/db_query.py:948 +#: frappe/model/db_query.py:949 msgid "No permission to read {0}" msgstr "" @@ -17064,11 +17142,11 @@ msgstr "" msgid "No {0} Found" msgstr "" -#: frappe/public/js/frappe/web_form/web_form_list.js:233 +#: frappe/public/js/frappe/web_form/web_form_list.js:234 msgid "No {0} found" msgstr "Nessun {0} trovato" -#: frappe/public/js/frappe/list/list_view.js:497 +#: frappe/public/js/frappe/list/list_view.js:499 msgid "No {0} found with matching filters. Clear filters to see all {0}." msgstr "Nessun {0} trovato con i filtri corrispondenti. Cancella i filtri per vedere tutti i {0}." @@ -17077,7 +17155,7 @@ msgid "No {0} mail" msgstr "" #: frappe/public/js/form_builder/utils.js:117 -#: frappe/public/js/frappe/form/grid_row.js:256 +#: frappe/public/js/frappe/form/grid_row.js:257 msgctxt "Title of the 'row number' column" msgid "No." msgstr "Num." @@ -17141,7 +17219,7 @@ msgstr "" msgid "Not Equals" msgstr "" -#: frappe/app.py:387 frappe/www/404.html:3 +#: frappe/app.py:390 frappe/www/404.html:3 msgid "Not Found" msgstr "" @@ -17167,9 +17245,9 @@ msgstr "" msgid "Not Nullable" msgstr "" -#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26 +#: frappe/__init__.py:550 frappe/app.py:383 frappe/desk/calendar.py:26 #: frappe/public/js/frappe/web_form/webform_script.js:15 -#: frappe/website/doctype/web_form/web_form.py:747 +#: frappe/website/doctype/web_form/web_form.py:774 #: 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 @@ -17188,7 +17266,7 @@ msgstr "" #: 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/kanban/kanban_view.js:183 #: frappe/public/js/frappe/views/reports/report_view.js:209 #: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39 #: frappe/website/doctype/web_form/templates/web_form.html:85 @@ -17239,7 +17317,7 @@ msgstr "" msgid "Not allowed for {0}: {1}" msgstr "" -#: frappe/email/doctype/notification/notification.py:637 +#: frappe/email/doctype/notification/notification.py:639 msgid "Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings" msgstr "" @@ -17271,12 +17349,12 @@ msgstr "" msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType." msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:216 +#: frappe/core/doctype/system_settings/system_settings.py:217 #: 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:760 +#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:787 #: frappe/website/js/website.js:97 msgid "Not permitted" msgstr "" @@ -17322,7 +17400,7 @@ msgstr "" msgid "Note: Multiple sessions will be allowed in case of mobile device" msgstr "" -#: frappe/core/doctype/user/user.js:399 +#: frappe/core/doctype/user/user.js:387 msgid "Note: This will be shared with user." msgstr "" @@ -17394,15 +17472,15 @@ msgstr "" msgid "Notification sent to" msgstr "" -#: frappe/email/doctype/notification/notification.py:542 +#: frappe/email/doctype/notification/notification.py:544 msgid "Notification: customer {0} has no Mobile number set" msgstr "" -#: frappe/email/doctype/notification/notification.py:528 +#: frappe/email/doctype/notification/notification.py:530 msgid "Notification: document {0} has no {1} number set (field: {2})" msgstr "" -#: frappe/email/doctype/notification/notification.py:537 +#: frappe/email/doctype/notification/notification.py:539 msgid "Notification: user {0} has no Mobile number set" msgstr "" @@ -17516,7 +17594,7 @@ msgstr "" msgid "Number of attachment fields are more than {}, limit updated to {}." msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:171 +#: frappe/core/doctype/system_settings/system_settings.py:172 msgid "Number of backups must be greater than zero." msgstr "" @@ -17788,7 +17866,7 @@ msgstr "" #. Description of the 'Is Submittable' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:42 +#: frappe/core/doctype/doctype/doctype_list.js:43 msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended." msgstr "" @@ -17877,11 +17955,11 @@ msgstr "" msgid "Only reports of type Report Builder can be edited" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:129 +#: frappe/custom/doctype/customize_form/customize_form.py:131 msgid "Only standard DocTypes are allowed to be customized from Customize Form." msgstr "" -#: frappe/model/delete_doc.py:241 +#: frappe/model/delete_doc.py:281 msgid "Only the Administrator can delete a standard DocType." msgstr "" @@ -17977,7 +18055,7 @@ msgstr "" msgid "Open in a new tab" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1431 +#: frappe/public/js/frappe/list/list_view.js:1433 msgctxt "Description of a list view shortcut" msgid "Open list item" msgstr "" @@ -18026,7 +18104,7 @@ msgstr "" msgid "Operation" msgstr "Operazione" -#: frappe/utils/data.py:2146 +#: frappe/utils/data.py:2172 msgid "Operator must be one of {0}" msgstr "" @@ -18072,6 +18150,7 @@ msgstr "" #. 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 (Text) field in DocType 'Web Form List Column' #. 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 @@ -18080,6 +18159,7 @@ msgstr "" #: 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_form_list_column/web_form_list_column.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Options" msgstr "" @@ -18125,7 +18205,7 @@ msgstr "" msgid "Order" msgstr "" -#: frappe/database/query.py:767 +#: frappe/database/query.py:769 msgid "Order By must be a string" msgstr "" @@ -18223,7 +18303,7 @@ msgstr "" #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/printing/page/print/print.js:84 #: frappe/public/js/frappe/form/templates/print_layout.html:44 -#: frappe/public/js/frappe/views/reports/query_report.js:1804 +#: frappe/public/js/frappe/views/reports/query_report.js:1812 msgid "PDF" msgstr "PDF" @@ -18571,8 +18651,8 @@ msgstr "" #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/system_settings/system_settings.json -#: frappe/core/doctype/user/user.js:177 frappe/core/doctype/user/user.js:224 -#: frappe/core/doctype/user/user.js:244 +#: frappe/core/doctype/user/user.js:165 frappe/core/doctype/user/user.js:212 +#: frappe/core/doctype/user/user.js:232 #: 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 @@ -18595,7 +18675,7 @@ msgstr "" msgid "Password Reset Link Generation Limit" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:896 +#: frappe/public/js/frappe/form/grid_row.js:897 msgid "Password cannot be filtered" msgstr "" @@ -18632,7 +18712,7 @@ msgstr "" msgid "Password set" msgstr "Password impostata" -#: frappe/auth.py:258 +#: frappe/auth.py:261 msgid "Password size exceeded the maximum allowed size" msgstr "" @@ -18644,7 +18724,7 @@ msgstr "" msgid "Passwords do not match" msgstr "Le password non corrispondono" -#: frappe/core/doctype/user/user.js:210 +#: frappe/core/doctype/user/user.js:198 msgid "Passwords do not match!" msgstr "" @@ -18795,7 +18875,7 @@ msgstr "" msgid "Permanently delete {0}?" msgstr "" -#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533 +#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:535 msgid "Permission Error" msgstr "" @@ -18855,8 +18935,8 @@ msgstr "" #: 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:143 frappe/core/doctype/user/user.js:152 -#: frappe/core/doctype/user/user.js:161 +#: frappe/core/doctype/user/user.js:131 frappe/core/doctype/user/user.js:140 +#: frappe/core/doctype/user/user.js:149 #: 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 @@ -18926,6 +19006,7 @@ msgstr "Richiesta di Download dei Dati Personali" #. Option for the 'Type' (Select) field in DocType 'Communication' #. Option for the 'Type' (Select) field in DocType 'DocField' #. Label of the phone (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #. 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' @@ -18936,6 +19017,7 @@ msgstr "Richiesta di Download dei Dati Personali" #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.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 @@ -19110,7 +19192,7 @@ msgstr "" msgid "Please duplicate this to make changes" msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:164 +#: frappe/core/doctype/system_settings/system_settings.py:165 msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login." msgstr "" @@ -19242,11 +19324,11 @@ msgstr "" msgid "Please select Entity Type first" msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:115 +#: frappe/core/doctype/system_settings/system_settings.py:116 msgid "Please select Minimum Password Score" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1185 +#: frappe/public/js/frappe/views/reports/query_report.js:1193 msgid "Please select X and Y fields" msgstr "" @@ -19274,7 +19356,7 @@ msgstr "" msgid "Please select applicable Doctypes" msgstr "" -#: frappe/model/db_query.py:1157 +#: frappe/model/db_query.py:1163 msgid "Please select atleast 1 column from {0} to sort/group" msgstr "" @@ -19304,7 +19386,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:1408 +#: frappe/public/js/frappe/views/reports/query_report.js:1416 msgid "Please set filters" msgstr "Si prega di impostare i filtri" @@ -19324,7 +19406,7 @@ msgstr "" msgid "Please set the series to be used." msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:128 +#: frappe/core/doctype/system_settings/system_settings.py:129 msgid "Please setup SMS before setting it as an authentication method, via SMS Settings" msgstr "" @@ -19476,7 +19558,7 @@ msgstr "" msgid "Posting Timestamp" msgstr "" -#: frappe/database/query.py:1518 +#: frappe/database/query.py:1520 msgid "Potentially dangerous content in string literal: {0}" msgstr "" @@ -19678,13 +19760,13 @@ msgstr "" #: 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:1789 +#: frappe/public/js/frappe/views/reports/query_report.js:1797 #: frappe/public/js/frappe/views/reports/report_view.js:1539 -#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18 +#: frappe/public/js/frappe/views/treeview.js:492 frappe/www/printview.html:18 msgid "Print" msgstr "Stampa" -#: frappe/public/js/frappe/list/list_view.js:2164 +#: frappe/public/js/frappe/list/list_view.js:2166 msgctxt "Button in list view actions menu" msgid "Print" msgstr "Stampa" @@ -19754,7 +19836,7 @@ msgstr "" msgid "Print Format Type" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1578 +#: frappe/public/js/frappe/views/reports/query_report.js:1586 msgid "Print Format not found" msgstr "" @@ -19935,11 +20017,11 @@ msgstr "" msgid "Proceed" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:932 +#: frappe/public/js/frappe/views/reports/query_report.js:940 msgid "Proceed Anyway" msgstr "" -#: frappe/public/js/frappe/form/controls/table.js:123 +#: frappe/public/js/frappe/form/controls/table.js:104 msgid "Processing" msgstr "" @@ -19956,11 +20038,21 @@ msgstr "Prof" msgid "Profile" msgstr "" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile Picture" +msgstr "" + +#. Success message of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile updated successfully." +msgstr "Profilo aggiornato con successo." + #: frappe/public/js/frappe/socketio_client.js:82 msgid "Progress" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:408 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:422 msgid "Project" msgstr "Progetto" @@ -20004,7 +20096,7 @@ msgstr "" msgid "Protect Attached Files" msgstr "" -#: frappe/core/doctype/file/file.py:523 +#: frappe/core/doctype/file/file.py:526 msgid "Protected File" msgstr "" @@ -20510,11 +20602,11 @@ msgstr "" msgid "Reason" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:886 +#: frappe/public/js/frappe/views/reports/query_report.js:894 msgid "Rebuild" msgstr "" -#: frappe/public/js/frappe/views/treeview.js:509 +#: frappe/public/js/frappe/views/treeview.js:511 msgid "Rebuild Tree" msgstr "" @@ -20895,8 +20987,8 @@ 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:1778 -#: frappe/public/js/frappe/views/treeview.js:496 +#: frappe/public/js/frappe/views/reports/query_report.js:1786 +#: frappe/public/js/frappe/views/treeview.js:498 #: frappe/public/js/frappe/widgets/chart_widget.js:291 #: frappe/public/js/frappe/widgets/number_card_widget.js:352 #: frappe/public/js/print_format_builder/Preview.vue:24 @@ -20927,13 +21019,13 @@ msgstr "" msgid "Refresh Token" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:534 +#: frappe/public/js/frappe/list/list_view.js:536 msgctxt "Document count in list view" msgid "Refreshing" msgstr "" #: frappe/core/doctype/system_settings/system_settings.js:57 -#: frappe/core/doctype/user/user.js:374 +#: frappe/core/doctype/user/user.js:362 #: frappe/desk/page/setup_wizard/setup_wizard.js:211 msgid "Refreshing..." msgstr "" @@ -21318,7 +21410,7 @@ msgstr "Responsabile Report" #: 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:1965 +#: frappe/public/js/frappe/views/reports/query_report.js:1973 msgid "Report Name" msgstr "Nome del Rapporto" @@ -21370,7 +21462,7 @@ msgstr "" msgid "Report has no numeric fields, please change the Report Name" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1013 +#: frappe/public/js/frappe/views/reports/query_report.js:1021 msgid "Report initiated, click to view status" msgstr "" @@ -21390,7 +21482,7 @@ msgstr "" msgid "Report was not saved (there were errors)" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2003 +#: frappe/public/js/frappe/views/reports/query_report.js:2011 msgid "Report with more than 10 columns looks better in Landscape mode." msgstr "" @@ -21426,7 +21518,7 @@ msgstr "" msgid "Reports & Masters" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:929 +#: frappe/public/js/frappe/views/reports/query_report.js:937 msgid "Reports already in Queue" msgstr "" @@ -21445,7 +21537,10 @@ msgid "Request Body" msgstr "" #. Label of the data (Code) field in DocType 'Integration Request' +#. Title of the request-data Web Form +#. Button label of the request-data Web Form #: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/website/web_form/request_data/request_data.json msgid "Request Data" msgstr "" @@ -21497,6 +21592,11 @@ msgstr "" msgid "Request URL" msgstr "" +#. Title of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "Request for Account Deletion" +msgstr "" + #. Label of the requested_numbers (Code) field in DocType 'SMS Log' #: frappe/core/doctype/sms_log/sms_log.json msgid "Requested Numbers" @@ -21552,7 +21652,7 @@ msgstr "Reimposta Personalizzazioni Dashboard" msgid "Reset Fields" msgstr "" -#: frappe/core/doctype/user/user.js:184 frappe/core/doctype/user/user.js:187 +#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:175 msgid "Reset LDAP Password" msgstr "" @@ -21560,11 +21660,11 @@ msgstr "" msgid "Reset Layout" msgstr "" -#: frappe/core/doctype/user/user.js:235 +#: frappe/core/doctype/user/user.js:223 msgid "Reset OTP Secret" msgstr "" -#: frappe/core/doctype/user/user.js:168 frappe/www/login.html:199 +#: frappe/core/doctype/user/user.js:156 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" @@ -21599,7 +21699,7 @@ msgstr "" msgid "Reset sorting" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:433 +#: frappe/public/js/frappe/form/grid_row.js:434 msgid "Reset to default" msgstr "" @@ -21851,7 +21951,7 @@ msgstr "Permessi per Pagina e Report" #. 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 +#: frappe/public/js/frappe/roles_editor.js:114 msgid "Role Permissions" msgstr "" @@ -21861,7 +21961,7 @@ msgstr "" msgid "Role Permissions Manager" msgstr "Gestore Permessi Ruolo" -#: frappe/public/js/frappe/list/list_view.js:1933 +#: frappe/public/js/frappe/list/list_view.js:1935 msgctxt "Button in list view menu" msgid "Role Permissions Manager" msgstr "Gestione Permessi Ruolo" @@ -22054,11 +22154,11 @@ msgstr "" msgid "Row {0}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:353 +#: frappe/custom/doctype/customize_form/customize_form.py:357 msgid "Row {0}: Not allowed to disable Mandatory for standard fields" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:342 +#: frappe/custom/doctype/customize_form/customize_form.py:346 msgid "Row {0}: Not allowed to enable Allow on Submit for standard fields" msgstr "" @@ -22077,7 +22177,10 @@ msgid "Rows Removed" msgstr "" #. Label of the rows_threshold_for_grid_search (Int) field in DocType 'DocType' +#. Label of the rows_threshold_for_grid_search (Int) field in DocType +#. 'Customize Form' #: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Rows Threshold for Grid Search" msgstr "" @@ -22285,8 +22388,8 @@ msgstr "" #: 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:1957 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 +#: frappe/public/js/frappe/views/reports/query_report.js:1965 #: frappe/public/js/frappe/views/reports/report_view.js:1735 #: frappe/public/js/frappe/views/workspace/workspace.js:335 #: frappe/public/js/frappe/widgets/base_widget.js:142 @@ -22309,11 +22412,11 @@ msgstr "Salva Con Nome" msgid "Save Customizations" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1960 +#: frappe/public/js/frappe/views/reports/query_report.js:1968 msgid "Save Report" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:97 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:107 msgid "Save filters" msgstr "" @@ -22685,7 +22788,7 @@ msgstr "" msgid "See all Activity" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:855 +#: frappe/public/js/frappe/views/reports/query_report.js:863 msgid "See all past reports." msgstr "" @@ -22749,7 +22852,7 @@ msgstr "Seleziona" #: 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:497 +#: frappe/public/js/frappe/form/grid_row.js:498 msgid "Select All" msgstr "Seleziona Tutto" @@ -22829,7 +22932,7 @@ msgstr "" msgid "Select Field..." msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:489 +#: frappe/public/js/frappe/form/grid_row.js:490 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:181 msgid "Select Fields" msgstr "" @@ -22949,7 +23052,7 @@ msgid "Select a field to edit its properties." msgstr "" #: frappe/public/js/frappe/views/treeview.js:358 -msgid "Select a group node first." +msgid "Select a group {0} first." msgstr "" #: frappe/core/doctype/doctype/doctype.py:1956 @@ -22986,13 +23089,13 @@ msgstr "" msgid "Select atleast 2 actions" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1445 +#: frappe/public/js/frappe/list/list_view.js:1447 msgctxt "Description of a list view shortcut" msgid "Select list item" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1397 -#: frappe/public/js/frappe/list/list_view.js:1413 +#: frappe/public/js/frappe/list/list_view.js:1399 +#: frappe/public/js/frappe/list/list_view.js:1415 msgctxt "Description of a list view shortcut" msgid "Select multiple list items" msgstr "" @@ -23314,7 +23417,7 @@ msgstr "" msgid "Server Action" msgstr "" -#: frappe/app.py:396 frappe/public/js/frappe/request.js:611 +#: frappe/app.py:399 frappe/public/js/frappe/request.js:611 #: frappe/www/error.html:36 frappe/www/error.py:15 msgid "Server Error" msgstr "" @@ -23380,7 +23483,7 @@ msgstr "Predefiniti Sessione" msgid "Session Defaults Saved" msgstr "Predefiniti Sessione Salvati" -#: frappe/app.py:373 +#: frappe/app.py:376 msgid "Session Expired" msgstr "" @@ -23389,7 +23492,7 @@ msgstr "" msgid "Session Expiry (idle timeout)" msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:122 +#: frappe/core/doctype/system_settings/system_settings.py:123 msgid "Session Expiry must be in format {0}" msgstr "" @@ -23438,7 +23541,7 @@ msgstr "" msgid "Set Filters for {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2113 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 msgid "Set Level" msgstr "" @@ -23492,7 +23595,7 @@ msgstr "" msgid "Set Role For" msgstr "Imposta Ruolo Per" -#: frappe/core/doctype/user/user.js:136 +#: frappe/core/doctype/user/user.js:124 #: frappe/core/page/permission_manager/permission_manager.js:72 msgid "Set User Permissions" msgstr "Imposta Autorizzazioni Utente" @@ -23654,7 +23757,7 @@ msgstr "" msgid "Setup > User Permissions" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1826 +#: frappe/public/js/frappe/views/reports/query_report.js:1834 #: frappe/public/js/frappe/views/reports/report_view.js:1713 msgid "Setup Auto Email" msgstr "Imposta E-mail Automatica" @@ -23795,6 +23898,12 @@ msgstr "" msgid "Show Error" msgstr "" +#. Label of the show_external_link_warning (Select) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Show External Link Warning" +msgstr "" + #: frappe/public/js/frappe/form/layout.js:578 msgid "Show Fieldname (click to copy on clipboard)" msgstr "" @@ -23923,7 +24032,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:1849 +#: frappe/public/js/frappe/list/list_view.js:1851 msgid "Show Tags" msgstr "" @@ -24130,22 +24239,22 @@ msgstr "" msgid "Signups have been disabled for this website." msgstr "" -#. 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 "" - #. 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\")" +msgid "Simple Python Expression, Example: status == \"Invalid\"" msgstr "" #. 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'" +msgid "Simple Python Expression, Example: status == 'Open' and issue_type == 'Bug'" +msgstr "" + +#. 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 "" #. Label of the simultaneous_sessions (Int) field in DocType 'User' @@ -24153,13 +24262,13 @@ msgstr "" msgid "Simultaneous Sessions" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:126 +#: frappe/custom/doctype/customize_form/customize_form.py:128 msgid "Single DocTypes cannot be customized." 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 +#: frappe/core/doctype/doctype/doctype_list.js:68 msgid "Single Types have only one record no tables associated. Values are stored in tabSingles" msgstr "" @@ -24495,7 +24604,7 @@ msgid "Splash Image" msgstr "Immagine Iniziale" #: frappe/desk/reportview.py:455 -#: frappe/public/js/frappe/web_form/web_form_list.js:175 +#: frappe/public/js/frappe/web_form/web_form_list.js:176 #: frappe/templates/print_formats/standard_macros.html:44 msgid "Sr" msgstr "Sig" @@ -24527,7 +24636,7 @@ msgstr "" msgid "Standard" msgstr "Standard" -#: frappe/model/delete_doc.py:79 +#: frappe/model/delete_doc.py:119 msgid "Standard DocType can not be deleted." msgstr "" @@ -24797,7 +24906,7 @@ msgstr "" #. Label of the sticky (Check) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json -#: frappe/public/js/frappe/form/grid_row.js:454 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Sticky" msgstr "" @@ -24827,7 +24936,7 @@ msgstr "Spazio Usato Per Tabella" msgid "Store Attached PDF Document" msgstr "" -#: frappe/core/doctype/user/user.js:490 +#: frappe/core/doctype/user/user.js:497 msgid "Store the API secret securely. It won't be displayed again." msgstr "" @@ -24939,6 +25048,7 @@ msgstr "" #. 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' +#. Button label of the request-to-delete-data Web Form #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/docshare/docshare.json @@ -24947,10 +25057,11 @@ msgstr "" #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/quick_entry.js:225 #: frappe/public/js/frappe/ui/capture.js:307 +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json msgid "Submit" msgstr "Conferma" -#: frappe/public/js/frappe/list/list_view.js:2231 +#: frappe/public/js/frappe/list/list_view.js:2233 msgctxt "Button in list view actions menu" msgid "Submit" msgstr "Conferma" @@ -24960,7 +25071,7 @@ msgctxt "Button in web form" msgid "Submit" msgstr "Conferma" -#: frappe/public/js/frappe/ui/dialog.js:63 +#: frappe/public/js/frappe/ui/dialog.js:64 msgctxt "Primary action in dialog" msgid "Submit" msgstr "Conferma" @@ -25008,7 +25119,7 @@ msgstr "" msgid "Submit this document to confirm" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2236 +#: frappe/public/js/frappe/list/list_view.js:2238 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "" @@ -25058,7 +25169,7 @@ msgstr "" #: 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:1171 +#: frappe/public/js/frappe/form/grid.js:1172 #: frappe/public/js/frappe/views/translation_manager.js:21 #: frappe/templates/includes/login/login.js:230 #: frappe/templates/includes/login/login.js:236 @@ -25273,7 +25384,7 @@ msgstr "" msgid "Syncing {0} of {1}" msgstr "" -#: frappe/utils/data.py:2547 +#: frappe/utils/data.py:2573 msgid "Syntax Error" msgstr "" @@ -25584,7 +25695,7 @@ msgstr "" msgid "Table Trimmed" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1170 +#: frappe/public/js/frappe/form/grid.js:1171 msgid "Table updated" msgstr "" @@ -25799,7 +25910,7 @@ msgstr "" msgid "The Auto Repeat for this document has been disabled." msgstr "" -#: frappe/public/js/frappe/form/grid.js:1193 +#: frappe/public/js/frappe/form/grid.js:1194 msgid "The CSV format is case sensitive" msgstr "" @@ -25867,7 +25978,7 @@ msgstr "" 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:685 +#: frappe/public/js/frappe/list/list_view.js:687 msgid "The count shown is an estimated count. Click here to see the accurate count." msgstr "" @@ -25979,7 +26090,7 @@ msgstr "" msgid "The reset password link has either been used before or is invalid" msgstr "" -#: frappe/app.py:388 frappe/public/js/frappe/request.js:149 +#: frappe/app.py:391 frappe/public/js/frappe/request.js:149 msgid "The resource you are looking for is not available" msgstr "" @@ -26052,12 +26163,12 @@ msgstr "Non ci sono eventi in programma per te." msgid "There are no {0} for this {1}, why don't you start one!" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:965 +#: frappe/public/js/frappe/views/reports/query_report.js:973 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 +#: frappe/website/doctype/web_form/web_form.js:318 msgid "There can be only 9 Page Break fields in a Web Form" msgstr "" @@ -26081,11 +26192,11 @@ msgstr "" msgid "There is nothing new to show you right now." msgstr "Al momento non c'è nulla di nuovo da mostrare." -#: frappe/core/doctype/file/file.py:640 frappe/utils/file_manager.py:372 +#: frappe/core/doctype/file/file.py:643 frappe/utils/file_manager.py:372 msgid "There is some problem with the file url: {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:962 +#: frappe/public/js/frappe/views/reports/query_report.js:970 msgid "There is {0} with the same filters already in the queue:" msgstr "" @@ -26097,7 +26208,7 @@ msgstr "" msgid "There was an error building this page" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:182 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:196 msgid "There was an error saving filters" msgstr "Si è verificato un errore durante il salvataggio dei filtri" @@ -26154,7 +26265,7 @@ msgstr "" msgid "This Currency is disabled. Enable to use in transactions" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:391 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:405 msgid "This Kanban Board will be private" msgstr "" @@ -26191,7 +26302,7 @@ msgstr "" msgid "This cannot be undone" msgstr "" -#: frappe/desk/doctype/number_card/number_card.js:480 +#: frappe/desk/doctype/number_card/number_card.js:484 msgctxt "Number Card" msgid "This card is visible only to Administrator and System Managers by default. Set a DocType to share with users who have read access." msgstr "" @@ -26214,7 +26325,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:113 +#: frappe/model/delete_doc.py:153 msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time." msgstr "" @@ -26256,7 +26367,7 @@ msgid "This field will appear only if the fieldname defined here has value OR th "eval:doc.age>18" msgstr "" -#: frappe/core/doctype/file/file.py:522 +#: frappe/core/doctype/file/file.py:525 msgid "This file is attached to a protected document and cannot be deleted." msgstr "" @@ -26291,7 +26402,7 @@ msgstr "" msgid "This goes above the slideshow." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2189 +#: frappe/public/js/frappe/views/reports/query_report.js:2197 msgid "This is a background report. Please set the appropriate filters and then generate a new one." msgstr "" @@ -26341,7 +26452,7 @@ msgstr "" msgid "This month" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1037 +#: frappe/public/js/frappe/views/reports/query_report.js:1045 msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead." msgstr "" @@ -26349,7 +26460,7 @@ msgstr "" msgid "This report was generated on {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:853 +#: frappe/public/js/frappe/views/reports/query_report.js:861 msgid "This report was generated {0}." msgstr "" @@ -26491,9 +26602,11 @@ msgstr "" #. Label of the time_zone (Select) field in DocType 'System Settings' #. Label of the time_zone (Autocomplete) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #. 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/core/web_form/edit_profile/edit_profile.json #: frappe/desk/page/setup_wizard/setup_wizard.js:407 #: frappe/website/doctype/web_page_view/web_page_view.json msgid "Time Zone" @@ -26754,7 +26867,7 @@ msgstr "" msgid "To generate password click {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:854 +#: frappe/public/js/frappe/views/reports/query_report.js:862 msgid "To get the updated report, click on {0}." msgstr "" @@ -26829,7 +26942,7 @@ msgstr "" msgid "Toggle Sidebar" msgstr "Cambia Barra Laterale" -#: frappe/public/js/frappe/list/list_view.js:1964 +#: frappe/public/js/frappe/list/list_view.js:1966 msgctxt "Button in list view menu" msgid "Toggle Sidebar" msgstr "Cambia Barra Laterale" @@ -26955,7 +27068,7 @@ msgstr "" #: frappe/desk/query_report.py:587 #: frappe/public/js/frappe/views/reports/print_grid.html:45 -#: frappe/public/js/frappe/views/reports/query_report.js:1324 +#: frappe/public/js/frappe/views/reports/query_report.js:1332 #: frappe/public/js/frappe/views/reports/report_view.js:1553 msgid "Total" msgstr "" @@ -27112,7 +27225,7 @@ msgstr "" msgid "Translatable" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2244 +#: frappe/public/js/frappe/views/reports/query_report.js:2252 msgid "Translate Data" msgstr "" @@ -27470,7 +27583,7 @@ msgstr "" msgid "Unable to update event" msgstr "" -#: frappe/core/doctype/file/file.py:486 +#: frappe/core/doctype/file/file.py:489 msgid "Unable to write file format for {0}" msgstr "" @@ -27479,7 +27592,7 @@ msgstr "" msgid "Unassign Condition" msgstr "" -#: frappe/app.py:396 +#: frappe/app.py:399 msgid "Uncaught Exception" msgstr "" @@ -27495,7 +27608,7 @@ msgstr "Annulla" msgid "Undo last action" msgstr "" -#: frappe/database/query.py:1495 +#: frappe/database/query.py:1497 msgid "Unescaped quotes in string literal: {0}" msgstr "" @@ -27542,7 +27655,7 @@ msgstr "" msgid "Unknown Rounding Method: {}" msgstr "" -#: frappe/auth.py:316 +#: frappe/auth.py:319 msgid "Unknown User" msgstr "" @@ -27608,8 +27721,8 @@ msgstr "" msgid "Unsubscribed" msgstr "" -#: frappe/database/query.py:653 frappe/database/query.py:1387 -#: frappe/database/query.py:1397 +#: frappe/database/query.py:655 frappe/database/query.py:1389 +#: frappe/database/query.py:1399 msgid "Unsupported function or invalid field name: {0}" msgstr "" @@ -27643,7 +27756,7 @@ msgstr "" #: 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:427 +#: frappe/public/js/frappe/form/grid_row.js:428 msgid "Update" msgstr "" @@ -27677,6 +27790,11 @@ msgstr "" msgid "Update Password" msgstr "" +#. Title of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Update Profile" +msgstr "" + #. Label of the update_series (Section Break) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -27892,11 +28010,7 @@ msgstr "" msgid "Use if the default settings don't seem to detect your data correctly" msgstr "" -#: frappe/model/db_query.py:436 -msgid "Use of function {0} in field is restricted" -msgstr "" - -#: frappe/model/db_query.py:413 +#: frappe/model/db_query.py:411 msgid "Use of sub-query or function is restricted" msgstr "" @@ -28118,12 +28232,12 @@ msgstr "Autorizzazione Utente" #. 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:1944 +#: frappe/public/js/frappe/views/reports/query_report.js:1952 #: frappe/public/js/frappe/views/reports/report_view.js:1761 msgid "User Permissions" msgstr "Autorizzazioni Utente" -#: frappe/public/js/frappe/list/list_view.js:1922 +#: frappe/public/js/frappe/list/list_view.js:1924 msgctxt "Button in list view menu" msgid "User Permissions" msgstr "Autorizzazioni Utente" @@ -28267,7 +28381,7 @@ msgstr "" msgid "User {0} is disabled" msgstr "" -#: frappe/sessions.py:242 +#: frappe/sessions.py:243 msgid "User {0} is disabled. Please contact your System Manager." msgstr "" @@ -28444,7 +28558,7 @@ msgstr "" msgid "Value for a check field can be either 0 or 1" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:612 +#: frappe/custom/doctype/customize_form/customize_form.py:616 msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters" msgstr "" @@ -28565,7 +28679,7 @@ msgstr "" msgid "View Audit Trail" msgstr "" -#: frappe/core/doctype/user/user.js:156 +#: frappe/core/doctype/user/user.js:144 msgid "View Doctype Permissions" msgstr "Visualizza Permessi Documento" @@ -28577,7 +28691,7 @@ msgstr "" msgid "View Full Log" msgstr "" -#: frappe/public/js/frappe/views/treeview.js:484 +#: frappe/public/js/frappe/views/treeview.js:486 #: frappe/public/js/frappe/widgets/quick_list_widget.js:258 msgid "View List" msgstr "" @@ -28587,7 +28701,7 @@ msgstr "" msgid "View Log" msgstr "" -#: frappe/core/doctype/user/user.js:147 +#: frappe/core/doctype/user/user.js:135 #: frappe/core/doctype/user_permission/user_permission.js:24 msgid "View Permitted Documents" msgstr "Visualizza Documenti Consentiti" @@ -28703,6 +28817,7 @@ msgid "Warehouse" msgstr "" #. Option for the 'Style' (Select) field in DocType 'Workflow State' +#: frappe/public/js/frappe/router.js:613 #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Warning" msgstr "" @@ -29348,7 +29463,7 @@ msgstr "" msgid "Workspace" msgstr "Area di Lavoro" -#: frappe/public/js/frappe/router.js:175 +#: frappe/public/js/frappe/router.js:180 msgid "Workspace {0} does not exist" msgstr "" @@ -29470,7 +29585,7 @@ msgstr "Campi Asse 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:1225 +#: frappe/public/js/frappe/views/reports/query_report.js:1233 msgid "Y Field" msgstr "" @@ -29532,7 +29647,7 @@ msgstr "" #: frappe/public/js/form_builder/utils.js:336 #: frappe/public/js/frappe/form/controls/link.js:498 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1665 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 #: frappe/website/doctype/help_article/templates/help_article.html:25 msgid "Yes" msgstr "Sì" @@ -29568,6 +29683,10 @@ msgstr "" msgid "You added {0} rows to {1}" msgstr "" +#: frappe/public/js/frappe/router.js:642 +msgid "You are about to open an external link. To confirm, click the link again." +msgstr "" + #: frappe/public/js/frappe/dom.js:438 msgid "You are connected to internet." msgstr "" @@ -29611,7 +29730,7 @@ msgstr "" msgid "You are not allowed to export {} doctype" msgstr "" -#: frappe/public/js/frappe/views/treeview.js:448 +#: frappe/public/js/frappe/views/treeview.js:450 msgid "You are not allowed to print this report" msgstr "" @@ -29619,7 +29738,7 @@ msgstr "" msgid "You are not allowed to send emails related to this document" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:605 +#: frappe/website/doctype/web_form/web_form.py:632 msgid "You are not allowed to update this Web Form Document" msgstr "" @@ -29692,11 +29811,11 @@ msgstr "" msgid "You can continue with the onboarding after exploring this page" msgstr "" -#: frappe/model/delete_doc.py:137 +#: frappe/model/delete_doc.py:177 msgid "You can disable this {0} instead of deleting it." msgstr "" -#: frappe/core/doctype/file/file.py:758 +#: frappe/core/doctype/file/file.py:761 msgid "You can increase the limit from System Settings." msgstr "" @@ -29746,11 +29865,11 @@ msgstr "" msgid "You can use wildcard %" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:390 +#: frappe/custom/doctype/customize_form/customize_form.py:394 msgid "You can't set 'Options' for field {0}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:394 +#: frappe/custom/doctype/customize_form/customize_form.py:398 msgid "You can't set 'Translatable' for field {0}" msgstr "" @@ -29768,7 +29887,7 @@ msgstr "" msgid "You cannot create a dashboard chart from single DocTypes" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:386 +#: frappe/custom/doctype/customize_form/customize_form.py:390 msgid "You cannot unset 'Read Only' for field {0}" msgstr "" @@ -29811,11 +29930,11 @@ msgstr "" msgid "You do not have enough permissions to access this resource. Please contact your manager to get access." msgstr "" -#: frappe/app.py:381 +#: frappe/app.py:384 msgid "You do not have enough permissions to complete the action" msgstr "" -#: frappe/database/query.py:529 +#: frappe/database/query.py:531 msgid "You do not have permission to access field: {0}" msgstr "" @@ -29831,7 +29950,7 @@ msgstr "" msgid "You don't have access to Report: {0}" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:808 +#: frappe/website/doctype/web_form/web_form.py:835 msgid "You don't have permission to access the {0} DocType." msgstr "" @@ -29855,7 +29974,7 @@ msgstr "Hai ricevuto un nuovo messaggio da:" msgid "You have been successfully logged out" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:245 +#: frappe/custom/doctype/customize_form/customize_form.py:247 msgid "You have hit the row size limit on database table: {0}" msgstr "" @@ -29883,7 +30002,7 @@ msgstr "" msgid "You haven't added any Dashboard Charts or Number Cards yet." msgstr "" -#: frappe/public/js/frappe/list/list_view.js:501 +#: frappe/public/js/frappe/list/list_view.js:503 msgid "You haven't created a {0} yet" msgstr "Non hai ancora creato un {0}" @@ -29900,11 +30019,11 @@ msgstr "" msgid "You must add atleast one link." msgstr "" -#: frappe/website/doctype/web_form/web_form.py:804 +#: frappe/website/doctype/web_form/web_form.py:831 msgid "You must be logged in to use this form." msgstr "" -#: frappe/website/doctype/web_form/web_form.py:645 +#: frappe/website/doctype/web_form/web_form.py:672 msgid "You must login to submit this form" msgstr "" @@ -30019,6 +30138,10 @@ msgstr "" msgid "You viewed this" msgstr "" +#: frappe/public/js/frappe/router.js:653 +msgid "You will be redirected to:" +msgstr "" + #: frappe/core/doctype/user_invitation/user_invitation.py:113 msgid "You've been invited to join {0}" msgstr "" @@ -30064,7 +30187,7 @@ msgstr "" msgid "Your account has been deleted" msgstr "" -#: frappe/auth.py:514 +#: frappe/auth.py:517 msgid "Your account has been locked and will resume after {0} seconds" msgstr "" @@ -30130,7 +30253,7 @@ msgstr "" msgid "Your report is being generated in the background. You will receive an email on {0} with a download link once it is ready." msgstr "" -#: frappe/app.py:374 +#: frappe/app.py:377 msgid "Your session has expired, please login again to continue." msgstr "" @@ -30467,7 +30590,7 @@ msgstr "" msgid "logged in" msgstr "" -#: frappe/website/doctype/web_form/web_form.js:362 +#: frappe/website/doctype/web_form/web_form.js:363 msgid "login_required" msgstr "" @@ -30805,7 +30928,7 @@ msgstr "" msgid "via Google Meet" msgstr "" -#: frappe/email/doctype/notification/notification.py:403 +#: frappe/email/doctype/notification/notification.py:405 msgid "via Notification" msgstr "" @@ -30915,7 +31038,7 @@ msgstr "" msgid "{0} Dashboard" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:486 +#: frappe/public/js/frappe/form/grid_row.js:487 #: frappe/public/js/frappe/list/list_settings.js:225 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:178 msgid "{0} Fields" @@ -30966,7 +31089,7 @@ msgstr "" msgid "{0} Report" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:956 +#: frappe/public/js/frappe/views/reports/query_report.js:964 msgid "{0} Reports" msgstr "" @@ -31039,7 +31162,7 @@ msgctxt "Form timeline" msgid "{0} attached {1}" msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:152 +#: frappe/core/doctype/system_settings/system_settings.py:153 msgid "{0} can not be more than {1}" msgstr "" @@ -31116,7 +31239,7 @@ msgstr "" msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values" msgstr "" -#: frappe/database/query.py:708 +#: frappe/database/query.py:710 msgid "{0} fields cannot contain backticks (`): {1}" msgstr "" @@ -31161,7 +31284,7 @@ msgstr "" msgid "{0} is a mandatory field" msgstr "" -#: frappe/core/doctype/file/file.py:566 +#: frappe/core/doctype/file/file.py:569 msgid "{0} is a not a valid zip file" msgstr "" @@ -31210,7 +31333,7 @@ msgstr "" msgid "{0} is mandatory" msgstr "" -#: frappe/database/query.py:485 +#: frappe/database/query.py:487 msgid "{0} is not a child table of {1}" msgstr "" @@ -31230,7 +31353,7 @@ msgstr "" msgid "{0} is not a valid Cron expression." msgstr "" -#: frappe/public/js/frappe/form/controls/dynamic_link.js:27 +#: frappe/public/js/frappe/form/controls/dynamic_link.js:23 msgid "{0} is not a valid DocType for Dynamic Link" msgstr "" @@ -31267,7 +31390,7 @@ msgstr "" msgid "{0} is not a valid report format. Report format should one of the following {1}" msgstr "" -#: frappe/core/doctype/file/file.py:546 +#: frappe/core/doctype/file/file.py:549 msgid "{0} is not a zip file" msgstr "" @@ -31315,7 +31438,7 @@ msgstr "" msgid "{0} is within {1}" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1839 +#: frappe/public/js/frappe/list/list_view.js:1841 msgid "{0} items selected" msgstr "" @@ -31401,11 +31524,11 @@ msgid "{0} not found" msgstr "" #: frappe/core/doctype/report/report.py:427 -#: frappe/public/js/frappe/list/list_view.js:1211 +#: frappe/public/js/frappe/list/list_view.js:1213 msgid "{0} of {1}" msgstr "{0} di {1}" -#: frappe/public/js/frappe/list/list_view.js:1213 +#: frappe/public/js/frappe/list/list_view.js:1215 msgid "{0} of {1} ({2} rows with children)" msgstr "" @@ -31455,7 +31578,7 @@ msgstr "" msgid "{0} removed {1} rows from {2}" msgstr "" -#: frappe/public/js/frappe/roles_editor.js:62 +#: frappe/public/js/frappe/roles_editor.js:64 msgid "{0} role does not have permission on any doctype" msgstr "" @@ -31529,7 +31652,7 @@ msgstr "" msgid "{0} un-shared this document with {1}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:254 +#: frappe/custom/doctype/customize_form/customize_form.py:256 msgid "{0} updated" msgstr "" @@ -31589,7 +31712,7 @@ msgstr "" msgid "{0} {1} not found" msgstr "" -#: frappe/model/delete_doc.py:248 +#: frappe/model/delete_doc.py:288 msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first." msgstr "" @@ -31702,7 +31825,7 @@ msgstr "" msgid "{0}: {1} is set to state {2}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1283 +#: frappe/public/js/frappe/views/reports/query_report.js:1291 msgid "{0}: {1} vs {2}" msgstr "" @@ -31738,11 +31861,11 @@ msgstr "" msgid "{} Complete" msgstr "" -#: frappe/utils/data.py:2541 +#: frappe/utils/data.py:2567 msgid "{} Invalid python code on line {}" msgstr "" -#: frappe/utils/data.py:2550 +#: frappe/utils/data.py:2576 msgid "{} Possibly invalid python code.
{}" msgstr "" @@ -31768,7 +31891,7 @@ msgstr "" msgid "{} is not a valid date string." msgstr "" -#: frappe/commands/utils.py:562 +#: frappe/commands/utils.py:561 msgid "{} not found in PATH! This is required to access the console." msgstr "" diff --git a/frappe/locale/main.pot b/frappe/locale/main.pot index 8fcb560355..74f08a4df4 100644 --- a/frappe/locale/main.pot +++ b/frappe/locale/main.pot @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: Frappe Framework VERSION\n" "Report-Msgid-Bugs-To: developers@frappe.io\n" -"POT-Creation-Date: 2025-09-21 09:33+0000\n" -"PO-Revision-Date: 2025-09-21 09:33+0000\n" +"POT-Creation-Date: 2025-10-05 09:33+0000\n" +"PO-Revision-Date: 2025-10-05 09:33+0000\n" "Last-Translator: developers@frappe.io\n" "Language-Team: developers@frappe.io\n" "MIME-Version: 1.0\n" @@ -76,7 +76,7 @@ msgstr "" msgid "'In List View' is not allowed for field {0} of type {1}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:363 +#: frappe/custom/doctype/customize_form/customize_form.py:367 msgid "'In List View' not allowed for type {0} in row {1}" msgstr "" @@ -120,7 +120,7 @@ msgstr "" msgid "0 is highest" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:892 +#: frappe/public/js/frappe/form/grid_row.js:893 msgid "1 = True & 0 = False" msgstr "" @@ -139,11 +139,11 @@ msgstr "" msgid "1 Google Calendar Event synced." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:955 +#: frappe/public/js/frappe/views/reports/query_report.js:963 msgid "1 Report" msgstr "" -#: frappe/tests/test_utils.py:739 +#: frappe/tests/test_utils.py:845 msgid "1 day ago" msgstr "" @@ -152,17 +152,17 @@ msgid "1 hour" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:52 -#: frappe/tests/test_utils.py:737 +#: frappe/tests/test_utils.py:843 msgid "1 hour ago" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:48 -#: frappe/tests/test_utils.py:735 +#: frappe/tests/test_utils.py:841 msgid "1 minute ago" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:66 -#: frappe/tests/test_utils.py:743 +#: frappe/tests/test_utils.py:849 msgid "1 month ago" msgstr "" @@ -184,37 +184,37 @@ msgctxt "User added row to child table" msgid "1 row to {0}" msgstr "" -#: frappe/tests/test_utils.py:734 +#: frappe/tests/test_utils.py:840 msgid "1 second ago" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:62 -#: frappe/tests/test_utils.py:741 +#: frappe/tests/test_utils.py:847 msgid "1 week ago" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:70 -#: frappe/tests/test_utils.py:745 +#: frappe/tests/test_utils.py:851 msgid "1 year ago" msgstr "" -#: frappe/tests/test_utils.py:738 +#: frappe/tests/test_utils.py:844 msgid "2 hours ago" msgstr "" -#: frappe/tests/test_utils.py:744 +#: frappe/tests/test_utils.py:850 msgid "2 months ago" msgstr "" -#: frappe/tests/test_utils.py:742 +#: frappe/tests/test_utils.py:848 msgid "2 weeks ago" msgstr "" -#: frappe/tests/test_utils.py:746 +#: frappe/tests/test_utils.py:852 msgid "2 years ago" msgstr "" -#: frappe/tests/test_utils.py:736 +#: frappe/tests/test_utils.py:842 msgid "3 minutes ago" msgstr "" @@ -230,7 +230,7 @@ msgstr "" msgid "5 Records" msgstr "" -#: frappe/tests/test_utils.py:740 +#: frappe/tests/test_utils.py:846 msgid "5 days ago" msgstr "" @@ -267,6 +267,16 @@ msgstr "" 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 "" +#. Introduction text of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "

Request a file containing your personally identifiable information (PII) that is saved on our system. The file will be in JSON format and is sent to you by email. If you would like to have your PII deleted from our system, please make a request to delete data.

" +msgstr "" + +#. Introduction text of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "

Send a request to delete your account and personally identifiable information (PII) that is stored on our system. You will receive an email to verify your request. Once the request is verified we will take care of deleting your PII. If you just want to check what PII we have stored, you can request your data.

" +msgstr "" + #. Content of the 'Help HTML' (HTML) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -604,6 +614,11 @@ msgstr "" msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three." msgstr "" +#. Success message of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "A download link with your data will be sent to the email address associated with your account." +msgstr "" + #: frappe/custom/doctype/custom_field/custom_field.py:175 msgid "A field with the name {0} already exists in {1}" msgstr "" @@ -731,7 +746,7 @@ msgstr "" #. 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.js:452 frappe/core/doctype/user/user.json +#: frappe/core/doctype/user/user.js:459 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 @@ -750,7 +765,7 @@ msgstr "" msgid "API Key cannot be regenerated" msgstr "" -#: frappe/core/doctype/user/user.js:449 +#: frappe/core/doctype/user/user.js:456 msgid "API Keys" msgstr "" @@ -774,7 +789,7 @@ msgstr "" #. 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.js:459 frappe/core/doctype/user/user.json +#: frappe/core/doctype/user/user.js:466 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" @@ -860,7 +875,7 @@ msgstr "" msgid "Access Token URL" msgstr "" -#: frappe/auth.py:491 +#: frappe/auth.py:494 msgid "Access not allowed from this IP Address" msgstr "" @@ -976,7 +991,7 @@ msgstr "" #: 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:842 +#: frappe/public/js/frappe/views/reports/query_report.js:850 msgid "Actions" msgstr "" @@ -1033,7 +1048,7 @@ msgstr "" #: 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:501 +#: frappe/public/js/frappe/form/grid_row.js:502 #: 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 @@ -1044,7 +1059,7 @@ msgstr "" msgid "Add" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:454 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Add / Remove Columns" msgstr "" @@ -1089,8 +1104,8 @@ msgid "Add Child" msgstr "" #: frappe/public/js/frappe/views/kanban/kanban_board.html:4 -#: frappe/public/js/frappe/views/reports/query_report.js:1832 -#: frappe/public/js/frappe/views/reports/query_report.js:1835 +#: frappe/public/js/frappe/views/reports/query_report.js:1840 +#: frappe/public/js/frappe/views/reports/query_report.js:1843 #: frappe/public/js/frappe/views/reports/report_view.js:360 #: frappe/public/js/frappe/views/reports/report_view.js:385 #: frappe/public/js/print_format_builder/Field.vue:112 @@ -1184,7 +1199,7 @@ msgstr "" msgid "Add Tags" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2149 +#: frappe/public/js/frappe/list/list_view.js:2151 msgctxt "Button in list view actions menu" msgid "Add Tags" msgstr "" @@ -1565,11 +1580,11 @@ msgstr "" msgid "Alerts and Notifications" msgstr "" -#: frappe/database/query.py:1608 +#: frappe/database/query.py:1610 msgid "Alias cannot be a SQL keyword: {0}" msgstr "" -#: frappe/database/query.py:1533 +#: frappe/database/query.py:1535 msgid "Alias must be a string" msgstr "" @@ -2018,6 +2033,12 @@ msgstr "" msgid "Alternative Email ID" msgstr "" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Always" +msgstr "" + #. Label of the always_bcc (Data) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Always BCC Address" @@ -2094,6 +2115,11 @@ msgstr "" msgid "Amendment naming rules updated." msgstr "" +#. Success message of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "An email to verify your request has been sent to your email address. Please verify your request to complete the process." +msgstr "" + #: frappe/public/js/frappe/ui/toolbar/toolbar.js:354 msgid "An error occurred while setting Session Defaults" msgstr "" @@ -2276,7 +2302,7 @@ msgstr "" msgid "Apply" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2134 +#: frappe/public/js/frappe/list/list_view.js:2136 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" msgstr "" @@ -2361,7 +2387,7 @@ msgstr "" msgid "Are you sure you want to cancel the invitation?" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2113 +#: frappe/public/js/frappe/list/list_view.js:2115 msgid "Are you sure you want to clear the assignments?" msgstr "" @@ -2397,7 +2423,7 @@ msgstr "" msgid "Are you sure you want to discard the changes?" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:969 +#: frappe/public/js/frappe/views/reports/query_report.js:977 msgid "Are you sure you want to generate a new report?" msgstr "" @@ -2405,7 +2431,7 @@ msgstr "" msgid "Are you sure you want to merge {0} with {1}?" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:108 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:118 msgid "Are you sure you want to proceed?" msgstr "" @@ -2460,6 +2486,12 @@ msgstr "" msgid "As per your request, your account and data on {0} associated with email {1} has been permanently deleted" msgstr "" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Ask" +msgstr "" + #. Label of the assign_condition (Code) field in DocType 'Assignment Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Assign Condition" @@ -2469,7 +2501,7 @@ msgstr "" msgid "Assign To" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2095 +#: frappe/public/js/frappe/list/list_view.js:2097 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "" @@ -2612,7 +2644,7 @@ msgstr "" msgid "Asynchronous" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:696 +#: frappe/public/js/frappe/form/grid_row.js:697 msgid "At least one column is required to show in the grid." msgstr "" @@ -3593,7 +3625,7 @@ msgstr "" msgid "Bulk Edit" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1189 +#: frappe/public/js/frappe/form/grid.js:1190 msgid "Bulk Edit {0}" msgstr "" @@ -3885,7 +3917,7 @@ msgstr "" #. 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/doctype/doctype_list.js:131 #: frappe/core/doctype/user_document_type/user_document_type.json #: frappe/core/doctype/user_invitation/user_invitation.js:17 #: frappe/email/doctype/notification/notification.json @@ -3893,7 +3925,7 @@ msgstr "" msgid "Cancel" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2204 +#: frappe/public/js/frappe/list/list_view.js:2206 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "" @@ -3911,7 +3943,7 @@ msgstr "" msgid "Cancel All Documents" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2209 +#: frappe/public/js/frappe/list/list_view.js:2211 msgctxt "Title of confirmation dialog" msgid "Cancel {0} documents?" msgstr "" @@ -3964,7 +3996,7 @@ msgstr "" msgid "Cannot Update After Submit" msgstr "" -#: frappe/core/doctype/file/file.py:643 +#: frappe/core/doctype/file/file.py:646 msgid "Cannot access file path {0}" msgstr "" @@ -4012,7 +4044,7 @@ msgstr "" msgid "Cannot delete Home and Attachments folders" msgstr "" -#: frappe/model/delete_doc.py:379 +#: frappe/model/delete_doc.py:419 msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}" msgstr "" @@ -4092,7 +4124,7 @@ msgstr "" msgid "Cannot find file {} on disk" msgstr "" -#: frappe/core/doctype/file/file.py:583 +#: frappe/core/doctype/file/file.py:586 msgid "Cannot get file contents of a Folder" msgstr "" @@ -4100,7 +4132,7 @@ msgstr "" msgid "Cannot have multiple printers mapped to a single print format." msgstr "" -#: frappe/public/js/frappe/form/grid.js:1133 +#: frappe/public/js/frappe/form/grid.js:1134 msgid "Cannot import table with more than 5000 rows." msgstr "" @@ -4116,7 +4148,7 @@ msgstr "" msgid "Cannot match column {0} with any field" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:175 +#: frappe/public/js/frappe/form/grid_row.js:176 msgid "Cannot move row" msgstr "" @@ -4145,11 +4177,11 @@ msgstr "" msgid "Cannot update {0}" msgstr "" -#: frappe/model/db_query.py:1130 +#: frappe/model/db_query.py:1136 msgid "Cannot use sub-query here." msgstr "" -#: frappe/model/db_query.py:1162 +#: frappe/model/db_query.py:1168 msgid "Cannot use {0} in order/group by" msgstr "" @@ -4423,11 +4455,11 @@ msgstr "" #. Description of the 'Is Child Table' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:52 +#: frappe/core/doctype/doctype/doctype_list.js:53 msgid "Child Tables are shown as a Grid in other DocTypes" msgstr "" -#: frappe/database/query.py:660 +#: frappe/database/query.py:662 msgid "Child query fields for '{0}' must be a list or tuple." msgstr "" @@ -4483,7 +4515,7 @@ msgstr "" msgid "Clear All" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2110 +#: frappe/public/js/frappe/list/list_view.js:2112 msgctxt "Button in list view actions menu" msgid "Clear Assignment" msgstr "" @@ -4577,7 +4609,7 @@ msgstr "" msgid "Click to Set Filters" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:739 +#: frappe/public/js/frappe/list/list_view.js:741 msgid "Click to sort by {0}" msgstr "" @@ -4755,7 +4787,7 @@ msgctxt "Shrink code field." msgid "Collapse" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2113 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 #: frappe/public/js/frappe/views/treeview.js:123 msgid "Collapse All" msgstr "" @@ -4810,7 +4842,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:1233 +#: frappe/public/js/frappe/views/reports/query_report.js:1241 #: frappe/public/js/frappe/widgets/widget_dialog.js:546 #: frappe/public/js/frappe/widgets/widget_dialog.js:694 #: frappe/website/doctype/color/color.json @@ -4866,11 +4898,11 @@ msgstr "" msgid "Column Name cannot be empty" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:454 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Column Width" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:661 +#: frappe/public/js/frappe/form/grid_row.js:662 msgid "Column width cannot be zero." msgstr "" @@ -4897,7 +4929,7 @@ msgstr "" msgid "Columns / Fields" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:397 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:411 msgid "Columns based on" msgstr "" @@ -5161,7 +5193,7 @@ msgstr "" msgid "Configure Chart" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:406 +#: frappe/public/js/frappe/form/grid_row.js:407 msgid "Configure Columns" msgstr "" @@ -5189,7 +5221,7 @@ msgstr "" msgid "Configure various aspects of how document naming works like naming series, current counter." msgstr "" -#: frappe/core/doctype/user/user.js:412 frappe/public/js/frappe/dom.js:345 +#: frappe/core/doctype/user/user.js:400 frappe/public/js/frappe/dom.js:345 #: frappe/www/update-password.html:66 msgid "Confirm" msgstr "" @@ -5208,7 +5240,7 @@ msgstr "" msgid "Confirm Deletion of Account" msgstr "" -#: frappe/core/doctype/user/user.js:196 +#: frappe/core/doctype/user/user.js:184 msgid "Confirm New Password" msgstr "" @@ -5461,7 +5493,7 @@ msgstr "" msgid "Copy to Clipboard" msgstr "" -#: frappe/core/doctype/user/user.js:480 +#: frappe/core/doctype/user/user.js:487 msgid "Copy token to clipboard" msgstr "" @@ -5470,7 +5502,7 @@ msgstr "" msgid "Copyright" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:123 +#: frappe/custom/doctype/customize_form/customize_form.py:125 msgid "Core DocTypes cannot be customized." msgstr "" @@ -5494,7 +5526,7 @@ msgstr "" msgid "Could not map column {0} to field {1}" msgstr "" -#: frappe/database/query.py:564 +#: frappe/database/query.py:566 msgid "Could not parse field: {0}" msgstr "" @@ -5586,13 +5618,13 @@ 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:1265 +#: frappe/public/js/frappe/views/reports/query_report.js:1273 #: frappe/public/js/frappe/views/workspace/workspace.js:469 #: frappe/workflow/page/workflow_builder/workflow_builder.js:46 msgid "Create" msgstr "" -#: frappe/core/doctype/doctype/doctype_list.js:102 +#: frappe/core/doctype/doctype/doctype_list.js:103 msgid "Create & Continue" msgstr "" @@ -5606,7 +5638,7 @@ msgid "Create Card" msgstr "" #: frappe/public/js/frappe/views/reports/query_report.js:285 -#: frappe/public/js/frappe/views/reports/query_report.js:1192 +#: frappe/public/js/frappe/views/reports/query_report.js:1200 msgid "Create Chart" msgstr "" @@ -5640,12 +5672,12 @@ msgstr "" msgid "Create New" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:512 +#: frappe/public/js/frappe/list/list_view.js:514 msgctxt "Create a new document from list view" msgid "Create New" msgstr "" -#: frappe/core/doctype/doctype/doctype_list.js:100 +#: frappe/core/doctype/doctype/doctype_list.js:101 msgid "Create New DocType" msgstr "" @@ -5653,7 +5685,7 @@ msgstr "" msgid "Create New Kanban Board" msgstr "" -#: frappe/core/doctype/user/user.js:276 +#: frappe/core/doctype/user/user.js:264 msgid "Create User Email" msgstr "" @@ -5676,8 +5708,8 @@ msgstr "" #: frappe/public/js/frappe/form/controls/link.js:315 #: frappe/public/js/frappe/form/controls/link.js:317 #: frappe/public/js/frappe/form/link_selector.js:139 -#: frappe/public/js/frappe/list/list_view.js:504 -#: frappe/public/js/frappe/web_form/web_form_list.js:225 +#: frappe/public/js/frappe/list/list_view.js:506 +#: frappe/public/js/frappe/web_form/web_form_list.js:226 msgid "Create a new {0}" msgstr "" @@ -5693,7 +5725,7 @@ msgstr "" msgid "Create or Edit Workflow" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:507 +#: frappe/public/js/frappe/list/list_view.js:509 msgid "Create your first {0}" msgstr "" @@ -6040,7 +6072,7 @@ 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/core/doctype/doctype/doctype_list.js:83 #: frappe/website/doctype/website_theme/website_theme.json msgid "Custom?" msgstr "" @@ -6075,7 +6107,7 @@ msgstr "" msgid "Customize" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1947 +#: frappe/public/js/frappe/list/list_view.js:1949 msgctxt "Button in list view menu" msgid "Customize" msgstr "" @@ -6094,7 +6126,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:343 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 msgid "Customize Form" msgstr "" @@ -6325,7 +6357,7 @@ msgstr "" msgid "Data Import Template" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:615 +#: frappe/custom/doctype/customize_form/customize_form.py:619 msgid "Data Too Long" msgstr "" @@ -6356,7 +6388,7 @@ msgstr "" msgid "Database Storage Usage By Tables" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:249 +#: frappe/custom/doctype/customize_form/customize_form.py:251 msgid "Database Table Row Size Limit" msgstr "" @@ -6726,13 +6758,13 @@ msgstr "" #: frappe/public/js/frappe/form/toolbar.js:464 #: frappe/public/js/frappe/views/reports/report_view.js:1749 #: frappe/public/js/frappe/views/treeview.js:329 -#: frappe/public/js/frappe/web_form/web_form_list.js:282 +#: frappe/public/js/frappe/web_form/web_form_list.js:283 #: frappe/templates/discussions/reply_card.html:35 #: frappe/templates/discussions/reply_section.html:29 msgid "Delete" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2172 +#: frappe/public/js/frappe/list/list_view.js:2174 msgctxt "Button in list view actions menu" msgid "Delete" msgstr "" @@ -6765,7 +6797,7 @@ msgstr "" msgid "Delete Data" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:106 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:116 msgid "Delete Kanban Board" msgstr "" @@ -6779,7 +6811,7 @@ msgctxt "Title of confirmation dialog" msgid "Delete Tab" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:936 +#: frappe/public/js/frappe/views/reports/query_report.js:944 msgid "Delete and Generate New" msgstr "" @@ -6821,12 +6853,12 @@ msgstr "" msgid "Delete this record to allow sending to this email address" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2177 +#: frappe/public/js/frappe/list/list_view.js:2179 msgctxt "Title of confirmation dialog" msgid "Delete {0} item permanently?" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2183 +#: frappe/public/js/frappe/list/list_view.js:2185 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "" @@ -7323,10 +7355,14 @@ msgstr "" msgid "Do not create new user if user with email does not exist in the system" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1194 +#: frappe/public/js/frappe/form/grid.js:1195 msgid "Do not edit headers which are preset in the template" msgstr "" +#: frappe/public/js/frappe/router.js:624 +msgid "Do not warn me again about {0}" +msgstr "" + #: frappe/core/doctype/system_settings/system_settings.js:71 msgid "Do you still want to proceed?" msgstr "" @@ -7751,7 +7787,7 @@ msgstr "" #: 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/public/js/frappe/roles_editor.js:68 #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json #: frappe/workflow/doctype/workflow/workflow.json msgid "Document Type" @@ -7802,15 +7838,15 @@ msgstr "" msgid "Document follow is not enabled for this user." msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1300 +#: frappe/public/js/frappe/list/list_view.js:1302 msgid "Document has been cancelled" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1299 +#: frappe/public/js/frappe/list/list_view.js:1301 msgid "Document has been submitted" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1298 +#: frappe/public/js/frappe/list/list_view.js:1300 msgid "Document is in draft state" msgstr "" @@ -7952,7 +7988,7 @@ msgstr "" msgid "Double click to edit label" msgstr "" -#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:467 +#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:474 #: frappe/email/doctype/auto_email_report/auto_email_report.js:8 #: frappe/public/js/frappe/form/grid.js:66 msgid "Download" @@ -7985,7 +8021,7 @@ msgstr "" msgid "Download PDF" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:832 +#: frappe/public/js/frappe/views/reports/query_report.js:840 msgid "Download Report" msgstr "" @@ -8185,8 +8221,8 @@ msgstr "" #: 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:880 -#: frappe/public/js/frappe/views/reports/query_report.js:1783 +#: frappe/public/js/frappe/views/reports/query_report.js:888 +#: frappe/public/js/frappe/views/reports/query_report.js:1791 #: 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 +8234,7 @@ msgstr "" msgid "Edit" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2258 +#: frappe/public/js/frappe/list/list_view.js:2260 msgctxt "Button in list view actions menu" msgid "Edit" msgstr "" @@ -8208,7 +8244,7 @@ msgctxt "Button in web form" msgid "Edit" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:349 +#: frappe/public/js/frappe/form/grid_row.js:350 msgctxt "Edit grid row" msgid "Edit" msgstr "" @@ -8237,7 +8273,7 @@ msgstr "" msgid "Edit DocType" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1974 +#: frappe/public/js/frappe/list/list_view.js:1976 msgctxt "Button in list view menu" msgid "Edit DocType" msgstr "" @@ -8357,7 +8393,7 @@ msgstr "" #. 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/core/doctype/doctype/doctype_list.js:58 #: frappe/custom/doctype/customize_form/customize_form.json msgid "Editable Grid" msgstr "" @@ -8402,6 +8438,8 @@ msgstr "" #. 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' +#. Label of a field in the request-data Web Form +#. Label of a field in the request-to-delete-data Web Form #: frappe/automation/workspace/tools/tools.json #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/custom_docperm/custom_docperm.json @@ -8420,6 +8458,8 @@ msgstr "" #: 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/website/web_form/request_data/request_data.json +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json #: frappe/www/login.html:8 frappe/www/login.py:104 msgid "Email" msgstr "" @@ -8651,7 +8691,7 @@ msgstr "" msgid "Email has been moved to trash" msgstr "" -#: frappe/core/doctype/user/user.js:278 +#: frappe/core/doctype/user/user.js:266 msgid "Email is mandatory to create User Email" msgstr "" @@ -8694,7 +8734,7 @@ msgstr "" msgid "Embed code copied" msgstr "" -#: frappe/database/query.py:1537 +#: frappe/database/query.py:1539 msgid "Empty alias is not allowed" msgstr "" @@ -8702,7 +8742,7 @@ msgstr "" msgid "Empty column" msgstr "" -#: frappe/database/query.py:1455 +#: frappe/database/query.py:1457 msgid "Empty string arguments are not allowed" msgstr "" @@ -9159,9 +9199,9 @@ msgstr "" msgid "Error in Header/Footer Script" msgstr "" -#: frappe/email/doctype/notification/notification.py:640 -#: frappe/email/doctype/notification/notification.py:780 -#: frappe/email/doctype/notification/notification.py:786 +#: frappe/email/doctype/notification/notification.py:642 +#: frappe/email/doctype/notification/notification.py:782 +#: frappe/email/doctype/notification/notification.py:788 msgid "Error in Notification" msgstr "" @@ -9181,7 +9221,7 @@ msgstr "" msgid "Error while connecting to email account {0}" msgstr "" -#: frappe/email/doctype/notification/notification.py:777 +#: frappe/email/doctype/notification/notification.py:779 msgid "Error while evaluating Notification {0}. Please fix your template." msgstr "" @@ -9342,7 +9382,7 @@ msgstr "" msgid "Executing..." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2132 +#: frappe/public/js/frappe/views/reports/query_report.js:2140 msgid "Execution Time: {0} sec" msgstr "" @@ -9368,12 +9408,12 @@ msgctxt "Enlarge code field." msgid "Expand" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2113 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 #: frappe/public/js/frappe/views/treeview.js:133 msgid "Expand All" msgstr "" -#: frappe/database/query.py:352 +#: frappe/database/query.py:354 msgid "Expected 'and' or 'or' operator, found: {0}" msgstr "" @@ -9431,13 +9471,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:1820 +#: frappe/public/js/frappe/views/reports/query_report.js:1828 #: frappe/public/js/frappe/views/reports/report_view.js:1629 #: frappe/public/js/frappe/widgets/chart_widget.js:315 msgid "Export" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2280 +#: frappe/public/js/frappe/list/list_view.js:2282 msgctxt "Button in list view actions menu" msgid "Export" msgstr "" @@ -9630,7 +9670,7 @@ msgstr "" msgid "Failed to connect to server" msgstr "" -#: frappe/auth.py:698 +#: frappe/auth.py:701 msgid "Failed to decode token, please provide a valid base64-encoded token." msgstr "" @@ -9794,7 +9834,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:236 -#: frappe/public/js/frappe/views/reports/query_report.js:1879 +#: frappe/public/js/frappe/views/reports/query_report.js:1887 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_form_list_column/web_form_list_column.json msgid "Field" @@ -9877,7 +9917,7 @@ msgstr "" msgid "Field {0} not found." msgstr "" -#: frappe/email/doctype/notification/notification.py:545 +#: frappe/email/doctype/notification/notification.py:547 msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link" msgstr "" @@ -9895,7 +9935,7 @@ msgstr "" #: 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:454 +#: frappe/public/js/frappe/form/grid_row.js:455 #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Fieldname" msgstr "" @@ -9976,7 +10016,7 @@ msgstr "" msgid "Fields must be a list or tuple when as_list is enabled" msgstr "" -#: frappe/database/query.py:611 +#: frappe/database/query.py:613 msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function" msgstr "" @@ -10004,7 +10044,7 @@ msgstr "" msgid "Fieldtype cannot be changed from {0} to {1}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:589 +#: frappe/custom/doctype/customize_form/customize_form.py:593 msgid "Fieldtype cannot be changed from {0} to {1} in row {2}" msgstr "" @@ -10070,7 +10110,7 @@ msgstr "" msgid "File backup is ready" msgstr "" -#: frappe/core/doctype/file/file.py:646 +#: frappe/core/doctype/file/file.py:649 msgid "File name cannot have {0}" msgstr "" @@ -10078,7 +10118,7 @@ msgstr "" msgid "File not attached" msgstr "" -#: frappe/core/doctype/file/file.py:756 frappe/public/js/frappe/request.js:200 +#: frappe/core/doctype/file/file.py:759 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 "" @@ -10091,7 +10131,7 @@ msgstr "" msgid "File type of {0} is not allowed" msgstr "" -#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:448 +#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:451 msgid "File {0} does not exist" msgstr "" @@ -10145,11 +10185,11 @@ msgstr "" msgid "Filter Values" msgstr "" -#: frappe/database/query.py:358 +#: frappe/database/query.py:360 msgid "Filter condition missing after operator: {0}" msgstr "" -#: frappe/database/query.py:425 +#: frappe/database/query.py:427 msgid "Filter fields cannot contain backticks (`)." msgstr "" @@ -10226,7 +10266,7 @@ msgstr "" msgid "Filters applied for {0}" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:188 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:202 msgid "Filters saved" msgstr "" @@ -10274,9 +10314,12 @@ msgstr "" #. Label of the first_name (Data) field in DocType 'Contact' #. Label of the first_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json #: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:44 -#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:15 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:15 msgid "First Name" msgstr "" @@ -10357,7 +10400,7 @@ msgstr "" msgid "Folder name should not include '/' (slash)" msgstr "" -#: frappe/core/doctype/file/file.py:494 +#: frappe/core/doctype/file/file.py:497 msgid "Folder {0} is not empty" msgstr "" @@ -10560,7 +10603,7 @@ msgstr "" msgid "For Value" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2129 +#: frappe/public/js/frappe/views/reports/query_report.js:2137 #: frappe/public/js/frappe/views/reports/report_view.js:108 msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)." msgstr "" @@ -10845,7 +10888,7 @@ msgstr "" msgid "From Date Field" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1840 +#: frappe/public/js/frappe/views/reports/query_report.js:1848 msgid "From Document Type" msgstr "" @@ -10907,12 +10950,12 @@ msgstr "" msgid "Function {0} is not whitelisted." msgstr "" -#: frappe/database/query.py:1417 +#: frappe/database/query.py:1419 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" +msgid "Further sub-groups can only be created under records marked as 'Group'" msgstr "" #: frappe/core/doctype/communication/communication.js:291 @@ -10972,7 +11015,7 @@ msgstr "" msgid "Generate Keys" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:874 +#: frappe/public/js/frappe/views/reports/query_report.js:882 msgid "Generate New Report" msgstr "" @@ -11388,14 +11431,10 @@ msgstr "" msgid "Group By field is required to create a dashboard chart" msgstr "" -#: frappe/database/query.py:750 +#: frappe/database/query.py:752 msgid "Group By must be a string" msgstr "" -#: frappe/public/js/frappe/views/treeview.js:418 -msgid "Group Node" -msgstr "" - #. Label of the ldap_group_objectclass (Data) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Group Object Class" @@ -11725,7 +11764,7 @@ msgstr "" msgid "Hidden Fields" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1642 +#: frappe/public/js/frappe/views/reports/query_report.js:1650 msgid "Hidden columns include: {0}" msgstr "" @@ -11837,7 +11876,7 @@ msgstr "" msgid "Hide Standard Menu" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1849 +#: frappe/public/js/frappe/list/list_view.js:1851 msgid "Hide Tags" msgstr "" @@ -12096,7 +12135,7 @@ msgstr "" #: frappe/core/doctype/doctype/doctype.py:1777 #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45 -#: frappe/public/js/frappe/roles_editor.js:66 +#: frappe/public/js/frappe/roles_editor.js:68 msgid "If Owner" msgstr "" @@ -12324,8 +12363,8 @@ msgstr "" msgid "Illegal Document Status for {0}" msgstr "" -#: frappe/model/db_query.py:453 frappe/model/db_query.py:456 -#: frappe/model/db_query.py:1121 +#: frappe/model/db_query.py:454 frappe/model/db_query.py:457 +#: frappe/model/db_query.py:1122 msgid "Illegal SQL Query" msgstr "" @@ -12412,11 +12451,11 @@ msgstr "" #. Option for the 'Operation' (Select) field in DocType 'Activity Log' #: frappe/core/doctype/activity_log/activity_log.json -#: frappe/core/doctype/user/user.js:384 +#: frappe/core/doctype/user/user.js:372 msgid "Impersonate" msgstr "" -#: frappe/core/doctype/user/user.js:411 +#: frappe/core/doctype/user/user.js:399 msgid "Impersonate as {0}" msgstr "" @@ -12446,7 +12485,7 @@ msgstr "" msgid "Import" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1911 +#: frappe/public/js/frappe/list/list_view.js:1913 msgctxt "Button in list view menu" msgid "Import" msgstr "" @@ -12675,15 +12714,15 @@ msgid "Include Web View Link in Email" msgstr "" #: frappe/public/js/frappe/form/print_utils.js:59 -#: frappe/public/js/frappe/views/reports/query_report.js:1620 +#: frappe/public/js/frappe/views/reports/query_report.js:1628 msgid "Include filters" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1640 +#: frappe/public/js/frappe/views/reports/query_report.js:1648 msgid "Include hidden columns" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1612 +#: frappe/public/js/frappe/views/reports/query_report.js:1620 msgid "Include indentation" msgstr "" @@ -12730,7 +12769,7 @@ msgstr "" msgid "Incomplete Virtual Doctype Implementation" msgstr "" -#: frappe/auth.py:255 +#: frappe/auth.py:258 msgid "Incomplete login details" msgstr "" @@ -12841,7 +12880,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:1885 +#: frappe/public/js/frappe/views/reports/query_report.js:1893 msgid "Insert After" msgstr "" @@ -12914,7 +12953,7 @@ msgstr "" msgid "Insufficient Permission Level for {0}" msgstr "" -#: frappe/database/query.py:806 frappe/database/query.py:1052 +#: frappe/database/query.py:808 frappe/database/query.py:1054 msgid "Insufficient Permission for {0}" msgstr "" @@ -13030,7 +13069,7 @@ msgid "Invalid" msgstr "" #: frappe/public/js/form_builder/utils.js:221 -#: frappe/public/js/frappe/form/grid_row.js:849 +#: frappe/public/js/frappe/form/grid_row.js:850 #: frappe/public/js/frappe/form/layout.js:810 #: frappe/public/js/frappe/views/reports/report_view.js:721 msgid "Invalid \"depends_on\" expression" @@ -13088,8 +13127,8 @@ 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 +#: frappe/database/query.py:429 frappe/database/query.py:456 +#: frappe/database/query.py:466 frappe/database/query.py:489 msgid "Invalid Filter" msgstr "" @@ -13161,7 +13200,7 @@ msgstr "" msgid "Invalid Phone Number" msgstr "" -#: frappe/auth.py:94 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 +#: frappe/auth.py:97 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 #: frappe/www/login.py:128 msgid "Invalid Request" msgstr "" @@ -13201,7 +13240,7 @@ msgstr "" msgid "Invalid aggregate function" msgstr "" -#: frappe/database/query.py:1542 +#: frappe/database/query.py:1544 msgid "Invalid alias format: {0}. Alias must be a simple identifier." msgstr "" @@ -13209,19 +13248,19 @@ msgstr "" msgid "Invalid app" msgstr "" -#: frappe/database/query.py:1468 +#: frappe/database/query.py:1470 msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed." msgstr "" -#: frappe/database/query.py:1444 +#: frappe/database/query.py:1446 msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed." msgstr "" -#: frappe/database/query.py:460 +#: frappe/database/query.py:462 msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed." msgstr "" -#: frappe/database/query.py:575 +#: frappe/database/query.py:577 msgid "Invalid characters in table name: {0}" msgstr "" @@ -13229,11 +13268,11 @@ msgstr "" msgid "Invalid column" msgstr "" -#: frappe/database/query.py:381 +#: frappe/database/query.py:383 msgid "Invalid condition type in nested filters: {0}" msgstr "" -#: frappe/database/query.py:787 +#: frappe/database/query.py:789 msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'." msgstr "" @@ -13249,23 +13288,23 @@ msgstr "" msgid "Invalid expression set in filter {0} ({1})" msgstr "" -#: frappe/database/query.py:1301 +#: frappe/database/query.py:1303 msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'." msgstr "" -#: frappe/database/query.py:734 +#: frappe/database/query.py:736 msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'." msgstr "" -#: frappe/database/query.py:1620 +#: frappe/database/query.py:1622 msgid "Invalid field name in function: {0}. Only simple field names are allowed." msgstr "" -#: frappe/utils/data.py:2215 +#: frappe/utils/data.py:2241 msgid "Invalid field name {0}" msgstr "" -#: frappe/database/query.py:668 +#: frappe/database/query.py:670 msgid "Invalid field type: {0}" msgstr "" @@ -13277,11 +13316,11 @@ msgstr "" msgid "Invalid file path: {0}" msgstr "" -#: frappe/database/query.py:364 +#: frappe/database/query.py:366 msgid "Invalid filter condition: {0}. Expected a list or tuple." msgstr "" -#: frappe/database/query.py:450 +#: frappe/database/query.py:452 msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'." msgstr "" @@ -13289,11 +13328,11 @@ msgstr "" msgid "Invalid filter: {0}" msgstr "" -#: frappe/database/query.py:1422 +#: frappe/database/query.py:1424 msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed." msgstr "" -#: frappe/database/query.py:1383 +#: frappe/database/query.py:1385 msgid "Invalid function dictionary format" msgstr "" @@ -13330,23 +13369,27 @@ msgstr "" msgid "Invalid redirect regex in row #{}: {}" msgstr "" -#: frappe/app.py:337 +#: frappe/app.py:340 msgid "Invalid request arguments" msgstr "" +#: frappe/app.py:327 +msgid "Invalid request body" +msgstr "" + #: frappe/core/doctype/user_invitation/user_invitation.py:181 msgid "Invalid role" msgstr "" -#: frappe/database/query.py:410 +#: frappe/database/query.py:412 msgid "Invalid simple filter format: {0}" msgstr "" -#: frappe/database/query.py:341 +#: frappe/database/query.py:343 msgid "Invalid start for filter condition: {0}. Expected a list or tuple." msgstr "" -#: frappe/database/query.py:1489 +#: frappe/database/query.py:1491 msgid "Invalid string literal format: {0}" msgstr "" @@ -13450,7 +13493,7 @@ msgstr "" #. 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/doctype_list.js:50 #: frappe/core/doctype/doctype_link/doctype_link.json msgid "Is Child Table" msgstr "" @@ -13503,6 +13546,10 @@ msgstr "" msgid "Is Global" msgstr "" +#: frappe/public/js/frappe/views/treeview.js:418 +msgid "Is Group" +msgstr "" + #. Label of the is_hidden (Check) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "Is Hidden" @@ -13591,7 +13638,7 @@ 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/core/doctype/doctype/doctype_list.js:65 #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Is Single" msgstr "" @@ -13627,7 +13674,7 @@ msgstr "" #. Label of the is_submittable (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:39 +#: frappe/core/doctype/doctype/doctype_list.js:40 msgid "Is Submittable" msgstr "" @@ -13833,11 +13880,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:388 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:402 msgid "Kanban Board Name" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:265 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:279 msgctxt "Button in kanban view menu" msgid "Kanban Settings" msgstr "" @@ -14135,10 +14182,13 @@ msgstr "" #. 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' +#. Label of a field in the edit-profile Web Form #: 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:117 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/printing/page/print/print.js:117 #: frappe/public/js/frappe/form/templates/print_layout.html:11 msgid "Language" msgstr "" @@ -14226,9 +14276,12 @@ msgstr "" #. Label of the last_name (Data) field in DocType 'Contact' #. Label of the last_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json #: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:45 -#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:19 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:19 msgid "Last Name" msgstr "" @@ -14469,7 +14522,7 @@ msgstr "" #: 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/public/js/frappe/roles_editor.js:68 #: frappe/website/doctype/help_article/help_article.json msgid "Level" msgstr "" @@ -14762,7 +14815,7 @@ msgstr "" msgid "List Settings" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1991 +#: frappe/public/js/frappe/list/list_view.js:1993 msgctxt "Button in list view menu" msgid "List Settings" msgstr "" @@ -14813,7 +14866,7 @@ msgid "Load Balancing" msgstr "" #: frappe/public/js/frappe/list/base_list.js:399 -#: frappe/public/js/frappe/web_form/web_form_list.js:305 +#: frappe/public/js/frappe/web_form/web_form_list.js:306 #: frappe/website/doctype/help_article/templates/help_article_list.html:30 msgid "Load More" msgstr "" @@ -14833,7 +14886,7 @@ msgstr "" #: frappe/public/js/frappe/list/base_list.js:526 #: frappe/public/js/frappe/list/list_view.js:363 #: frappe/public/js/frappe/ui/listing.html:16 -#: frappe/public/js/frappe/views/reports/query_report.js:1089 +#: frappe/public/js/frappe/views/reports/query_report.js:1097 msgid "Loading" msgstr "" @@ -14976,7 +15029,7 @@ msgstr "" msgid "Login and view in Browser" msgstr "" -#: frappe/website/doctype/web_form/web_form.js:367 +#: frappe/website/doctype/web_form/web_form.js:368 msgid "Login is required to see web form list view. Enable {0} to see list settings" msgstr "" @@ -14984,7 +15037,7 @@ msgstr "" msgid "Login link sent to your email" msgstr "" -#: frappe/auth.py:339 frappe/auth.py:342 +#: frappe/auth.py:342 frappe/auth.py:345 msgid "Login not allowed at this time" msgstr "" @@ -15037,7 +15090,7 @@ msgstr "" msgid "Login with email link expiry (in minutes)" msgstr "" -#: frappe/auth.py:144 +#: frappe/auth.py:147 msgid "Login with username and password is not allowed." msgstr "" @@ -15056,7 +15109,7 @@ msgstr "" msgid "Logout" msgstr "" -#: frappe/core/doctype/user/user.js:202 +#: frappe/core/doctype/user/user.js:190 msgid "Logout All Sessions" msgstr "" @@ -15160,7 +15213,10 @@ msgid "Major" msgstr "" #. Label of the show_name_in_global_search (Check) field in DocType 'DocType' +#. Label of the show_name_in_global_search (Check) field in DocType 'Customize +#. Form' #: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Make \"name\" searchable in Global Search" msgstr "" @@ -15236,7 +15292,7 @@ msgstr "" msgid "Mandatory Depends On (JS)" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:509 +#: frappe/website/doctype/web_form/web_form.py:536 msgid "Mandatory Information missing:" msgstr "" @@ -15693,6 +15749,11 @@ msgstr "" msgid "Middle Name" msgstr "" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Middle Name (Optional)" +msgstr "" + #. Name of a DocType #. Label of a Link in the Tools Workspace #: frappe/automation/doctype/milestone/milestone.json @@ -15799,6 +15860,11 @@ msgstr "" msgid "Mobile No" msgstr "" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Mobile Number" +msgstr "" + #. 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" @@ -15824,7 +15890,7 @@ msgstr "" #. 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/doctype/doctype_list.js:31 #: 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 @@ -16000,10 +16066,12 @@ msgstr "" #. Label of the additional_info (Section Break) field in DocType #. 'Communication' #. Label of the short_bio (Tab Break) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: 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 +#: frappe/core/web_form/edit_profile/edit_profile.json msgid "More Information" msgstr "" @@ -16033,7 +16101,7 @@ msgstr "" msgid "Move" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:193 +#: frappe/public/js/frappe/form/grid_row.js:194 msgid "Move To" msgstr "" @@ -16069,7 +16137,7 @@ msgstr "" msgid "Move the current field and the following fields to a new column" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:168 +#: frappe/public/js/frappe/form/grid_row.js:169 msgid "Move to Row Number" msgstr "" @@ -16137,7 +16205,7 @@ msgid "Mx" msgstr "" #: frappe/templates/includes/web_sidebar.html:41 -#: frappe/website/doctype/web_form/web_form.py:498 +#: frappe/website/doctype/web_form/web_form.py:525 #: 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" @@ -16280,12 +16348,12 @@ msgstr "" msgid "Navbar Template Values" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1378 +#: frappe/public/js/frappe/list/list_view.js:1380 msgctxt "Description of a list view shortcut" msgid "Navigate list down" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1385 +#: frappe/public/js/frappe/list/list_view.js:1387 msgctxt "Description of a list view shortcut" msgid "Navigate list up" msgstr "" @@ -16300,6 +16368,10 @@ msgstr "" msgid "Navigation Settings" msgstr "" +#: frappe/public/js/frappe/list/list_view.js:485 +msgid "Need Help?" +msgstr "" + #: frappe/desk/doctype/workspace/workspace.py:322 msgid "Need Workspace Manager role to edit private workspace of other users" msgstr "" @@ -16308,7 +16380,7 @@ msgstr "" msgid "Negative Value" msgstr "" -#: frappe/database/query.py:333 +#: frappe/database/query.py:335 msgid "Nested filters must be provided as a list or tuple." msgstr "" @@ -16321,6 +16393,12 @@ msgstr "" msgid "Network Printer Settings" msgstr "" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Never" +msgstr "" + #. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/core/doctype/success_action/success_action.js:57 @@ -16329,7 +16407,7 @@ msgstr "" #: 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/treeview.js:473 #: frappe/public/js/frappe/views/workspace/workspace.js:64 #: frappe/website/doctype/web_form/templates/web_list.html:15 #: frappe/www/list.html:19 @@ -16390,7 +16468,7 @@ msgstr "" msgid "New Folder" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 msgid "New Kanban Board" msgstr "" @@ -16425,7 +16503,7 @@ msgstr "" msgid "New Onboarding" msgstr "" -#: frappe/core/doctype/user/user.js:190 frappe/www/update-password.html:43 +#: frappe/core/doctype/user/user.js:178 frappe/www/update-password.html:43 msgid "New Password" msgstr "" @@ -16522,7 +16600,7 @@ msgstr "" #: frappe/public/js/frappe/ui/toolbar/search_utils.js:227 #: 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:411 +#: frappe/website/doctype/web_form/web_form.py:438 msgid "New {0}" msgstr "" @@ -16674,7 +16752,7 @@ msgstr "" #: frappe/public/js/form_builder/utils.js:341 #: frappe/public/js/frappe/form/controls/link.js:498 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1665 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 #: frappe/website/doctype/help_article/templates/help_article.html:26 msgid "No" msgstr "" @@ -16823,7 +16901,7 @@ msgstr "" msgid "No Roles Specified" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 msgid "No Select Field Found" msgstr "" @@ -16907,7 +16985,7 @@ msgstr "" msgid "No failed logs" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:371 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:385 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 "" @@ -16931,7 +17009,7 @@ msgstr "" msgid "No matching records. Search something new" msgstr "" -#: frappe/public/js/frappe/web_form/web_form_list.js:161 +#: frappe/public/js/frappe/web_form/web_form_list.js:162 msgid "No more items to display" msgstr "" @@ -16975,7 +17053,7 @@ msgctxt "{0} = verb, {1} = object" msgid "No permission to '{0}' {1}" msgstr "" -#: frappe/model/db_query.py:948 +#: frappe/model/db_query.py:949 msgid "No permission to read {0}" msgstr "" @@ -17023,11 +17101,11 @@ msgstr "" msgid "No {0} Found" msgstr "" -#: frappe/public/js/frappe/web_form/web_form_list.js:233 +#: frappe/public/js/frappe/web_form/web_form_list.js:234 msgid "No {0} found" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:497 +#: frappe/public/js/frappe/list/list_view.js:499 msgid "No {0} found with matching filters. Clear filters to see all {0}." msgstr "" @@ -17036,7 +17114,7 @@ msgid "No {0} mail" msgstr "" #: frappe/public/js/form_builder/utils.js:117 -#: frappe/public/js/frappe/form/grid_row.js:256 +#: frappe/public/js/frappe/form/grid_row.js:257 msgctxt "Title of the 'row number' column" msgid "No." msgstr "" @@ -17100,7 +17178,7 @@ msgstr "" msgid "Not Equals" msgstr "" -#: frappe/app.py:387 frappe/www/404.html:3 +#: frappe/app.py:390 frappe/www/404.html:3 msgid "Not Found" msgstr "" @@ -17126,9 +17204,9 @@ msgstr "" msgid "Not Nullable" msgstr "" -#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26 +#: frappe/__init__.py:550 frappe/app.py:383 frappe/desk/calendar.py:26 #: frappe/public/js/frappe/web_form/webform_script.js:15 -#: frappe/website/doctype/web_form/web_form.py:747 +#: frappe/website/doctype/web_form/web_form.py:774 #: 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 @@ -17147,7 +17225,7 @@ msgstr "" #: 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/kanban/kanban_view.js:183 #: frappe/public/js/frappe/views/reports/report_view.js:209 #: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39 #: frappe/website/doctype/web_form/templates/web_form.html:85 @@ -17198,7 +17276,7 @@ msgstr "" msgid "Not allowed for {0}: {1}" msgstr "" -#: frappe/email/doctype/notification/notification.py:637 +#: frappe/email/doctype/notification/notification.py:639 msgid "Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings" msgstr "" @@ -17230,12 +17308,12 @@ msgstr "" msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType." msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:216 +#: frappe/core/doctype/system_settings/system_settings.py:217 #: 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:760 +#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:787 #: frappe/website/js/website.js:97 msgid "Not permitted" msgstr "" @@ -17281,7 +17359,7 @@ msgstr "" msgid "Note: Multiple sessions will be allowed in case of mobile device" msgstr "" -#: frappe/core/doctype/user/user.js:399 +#: frappe/core/doctype/user/user.js:387 msgid "Note: This will be shared with user." msgstr "" @@ -17353,15 +17431,15 @@ msgstr "" msgid "Notification sent to" msgstr "" -#: frappe/email/doctype/notification/notification.py:542 +#: frappe/email/doctype/notification/notification.py:544 msgid "Notification: customer {0} has no Mobile number set" msgstr "" -#: frappe/email/doctype/notification/notification.py:528 +#: frappe/email/doctype/notification/notification.py:530 msgid "Notification: document {0} has no {1} number set (field: {2})" msgstr "" -#: frappe/email/doctype/notification/notification.py:537 +#: frappe/email/doctype/notification/notification.py:539 msgid "Notification: user {0} has no Mobile number set" msgstr "" @@ -17475,7 +17553,7 @@ msgstr "" msgid "Number of attachment fields are more than {}, limit updated to {}." msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:171 +#: frappe/core/doctype/system_settings/system_settings.py:172 msgid "Number of backups must be greater than zero." msgstr "" @@ -17747,7 +17825,7 @@ msgstr "" #. Description of the 'Is Submittable' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:42 +#: frappe/core/doctype/doctype/doctype_list.js:43 msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended." msgstr "" @@ -17836,11 +17914,11 @@ msgstr "" msgid "Only reports of type Report Builder can be edited" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:129 +#: frappe/custom/doctype/customize_form/customize_form.py:131 msgid "Only standard DocTypes are allowed to be customized from Customize Form." msgstr "" -#: frappe/model/delete_doc.py:241 +#: frappe/model/delete_doc.py:281 msgid "Only the Administrator can delete a standard DocType." msgstr "" @@ -17936,7 +18014,7 @@ msgstr "" msgid "Open in a new tab" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1431 +#: frappe/public/js/frappe/list/list_view.js:1433 msgctxt "Description of a list view shortcut" msgid "Open list item" msgstr "" @@ -17985,7 +18063,7 @@ msgstr "" msgid "Operation" msgstr "" -#: frappe/utils/data.py:2146 +#: frappe/utils/data.py:2172 msgid "Operator must be one of {0}" msgstr "" @@ -18031,6 +18109,7 @@ msgstr "" #. 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 (Text) field in DocType 'Web Form List Column' #. 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 @@ -18039,6 +18118,7 @@ msgstr "" #: 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_form_list_column/web_form_list_column.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Options" msgstr "" @@ -18084,7 +18164,7 @@ msgstr "" msgid "Order" msgstr "" -#: frappe/database/query.py:767 +#: frappe/database/query.py:769 msgid "Order By must be a string" msgstr "" @@ -18182,7 +18262,7 @@ msgstr "" #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/printing/page/print/print.js:84 #: frappe/public/js/frappe/form/templates/print_layout.html:44 -#: frappe/public/js/frappe/views/reports/query_report.js:1804 +#: frappe/public/js/frappe/views/reports/query_report.js:1812 msgid "PDF" msgstr "" @@ -18530,8 +18610,8 @@ msgstr "" #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/system_settings/system_settings.json -#: frappe/core/doctype/user/user.js:177 frappe/core/doctype/user/user.js:224 -#: frappe/core/doctype/user/user.js:244 +#: frappe/core/doctype/user/user.js:165 frappe/core/doctype/user/user.js:212 +#: frappe/core/doctype/user/user.js:232 #: 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 @@ -18554,7 +18634,7 @@ msgstr "" msgid "Password Reset Link Generation Limit" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:896 +#: frappe/public/js/frappe/form/grid_row.js:897 msgid "Password cannot be filtered" msgstr "" @@ -18591,7 +18671,7 @@ msgstr "" msgid "Password set" msgstr "" -#: frappe/auth.py:258 +#: frappe/auth.py:261 msgid "Password size exceeded the maximum allowed size" msgstr "" @@ -18603,7 +18683,7 @@ msgstr "" msgid "Passwords do not match" msgstr "" -#: frappe/core/doctype/user/user.js:210 +#: frappe/core/doctype/user/user.js:198 msgid "Passwords do not match!" msgstr "" @@ -18754,7 +18834,7 @@ msgstr "" msgid "Permanently delete {0}?" msgstr "" -#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533 +#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:535 msgid "Permission Error" msgstr "" @@ -18814,8 +18894,8 @@ msgstr "" #: 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:143 frappe/core/doctype/user/user.js:152 -#: frappe/core/doctype/user/user.js:161 +#: frappe/core/doctype/user/user.js:131 frappe/core/doctype/user/user.js:140 +#: frappe/core/doctype/user/user.js:149 #: 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 @@ -18885,6 +18965,7 @@ msgstr "" #. Option for the 'Type' (Select) field in DocType 'Communication' #. Option for the 'Type' (Select) field in DocType 'DocField' #. Label of the phone (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #. 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' @@ -18895,6 +18976,7 @@ msgstr "" #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.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 @@ -19069,7 +19151,7 @@ msgstr "" msgid "Please duplicate this to make changes" msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:164 +#: frappe/core/doctype/system_settings/system_settings.py:165 msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login." msgstr "" @@ -19201,11 +19283,11 @@ msgstr "" msgid "Please select Entity Type first" msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:115 +#: frappe/core/doctype/system_settings/system_settings.py:116 msgid "Please select Minimum Password Score" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1185 +#: frappe/public/js/frappe/views/reports/query_report.js:1193 msgid "Please select X and Y fields" msgstr "" @@ -19233,7 +19315,7 @@ msgstr "" msgid "Please select applicable Doctypes" msgstr "" -#: frappe/model/db_query.py:1157 +#: frappe/model/db_query.py:1163 msgid "Please select atleast 1 column from {0} to sort/group" msgstr "" @@ -19263,7 +19345,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:1408 +#: frappe/public/js/frappe/views/reports/query_report.js:1416 msgid "Please set filters" msgstr "" @@ -19283,7 +19365,7 @@ msgstr "" msgid "Please set the series to be used." msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:128 +#: frappe/core/doctype/system_settings/system_settings.py:129 msgid "Please setup SMS before setting it as an authentication method, via SMS Settings" msgstr "" @@ -19435,7 +19517,7 @@ msgstr "" msgid "Posting Timestamp" msgstr "" -#: frappe/database/query.py:1518 +#: frappe/database/query.py:1520 msgid "Potentially dangerous content in string literal: {0}" msgstr "" @@ -19637,13 +19719,13 @@ msgstr "" #: 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:1789 +#: frappe/public/js/frappe/views/reports/query_report.js:1797 #: frappe/public/js/frappe/views/reports/report_view.js:1539 -#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18 +#: frappe/public/js/frappe/views/treeview.js:492 frappe/www/printview.html:18 msgid "Print" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2164 +#: frappe/public/js/frappe/list/list_view.js:2166 msgctxt "Button in list view actions menu" msgid "Print" msgstr "" @@ -19713,7 +19795,7 @@ msgstr "" msgid "Print Format Type" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1578 +#: frappe/public/js/frappe/views/reports/query_report.js:1586 msgid "Print Format not found" msgstr "" @@ -19894,11 +19976,11 @@ msgstr "" msgid "Proceed" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:932 +#: frappe/public/js/frappe/views/reports/query_report.js:940 msgid "Proceed Anyway" msgstr "" -#: frappe/public/js/frappe/form/controls/table.js:123 +#: frappe/public/js/frappe/form/controls/table.js:104 msgid "Processing" msgstr "" @@ -19915,11 +19997,21 @@ msgstr "" msgid "Profile" msgstr "" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile Picture" +msgstr "" + +#. Success message of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile updated successfully." +msgstr "" + #: frappe/public/js/frappe/socketio_client.js:82 msgid "Progress" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:408 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:422 msgid "Project" msgstr "" @@ -19963,7 +20055,7 @@ msgstr "" msgid "Protect Attached Files" msgstr "" -#: frappe/core/doctype/file/file.py:523 +#: frappe/core/doctype/file/file.py:526 msgid "Protected File" msgstr "" @@ -20469,11 +20561,11 @@ msgstr "" msgid "Reason" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:886 +#: frappe/public/js/frappe/views/reports/query_report.js:894 msgid "Rebuild" msgstr "" -#: frappe/public/js/frappe/views/treeview.js:509 +#: frappe/public/js/frappe/views/treeview.js:511 msgid "Rebuild Tree" msgstr "" @@ -20854,8 +20946,8 @@ 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:1778 -#: frappe/public/js/frappe/views/treeview.js:496 +#: frappe/public/js/frappe/views/reports/query_report.js:1786 +#: frappe/public/js/frappe/views/treeview.js:498 #: frappe/public/js/frappe/widgets/chart_widget.js:291 #: frappe/public/js/frappe/widgets/number_card_widget.js:352 #: frappe/public/js/print_format_builder/Preview.vue:24 @@ -20886,13 +20978,13 @@ msgstr "" msgid "Refresh Token" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:534 +#: frappe/public/js/frappe/list/list_view.js:536 msgctxt "Document count in list view" msgid "Refreshing" msgstr "" #: frappe/core/doctype/system_settings/system_settings.js:57 -#: frappe/core/doctype/user/user.js:374 +#: frappe/core/doctype/user/user.js:362 #: frappe/desk/page/setup_wizard/setup_wizard.js:211 msgid "Refreshing..." msgstr "" @@ -21277,7 +21369,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:1965 +#: frappe/public/js/frappe/views/reports/query_report.js:1973 msgid "Report Name" msgstr "" @@ -21329,7 +21421,7 @@ msgstr "" msgid "Report has no numeric fields, please change the Report Name" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1013 +#: frappe/public/js/frappe/views/reports/query_report.js:1021 msgid "Report initiated, click to view status" msgstr "" @@ -21349,7 +21441,7 @@ msgstr "" msgid "Report was not saved (there were errors)" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2003 +#: frappe/public/js/frappe/views/reports/query_report.js:2011 msgid "Report with more than 10 columns looks better in Landscape mode." msgstr "" @@ -21385,7 +21477,7 @@ msgstr "" msgid "Reports & Masters" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:929 +#: frappe/public/js/frappe/views/reports/query_report.js:937 msgid "Reports already in Queue" msgstr "" @@ -21404,7 +21496,10 @@ msgid "Request Body" msgstr "" #. Label of the data (Code) field in DocType 'Integration Request' +#. Title of the request-data Web Form +#. Button label of the request-data Web Form #: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/website/web_form/request_data/request_data.json msgid "Request Data" msgstr "" @@ -21456,6 +21551,11 @@ msgstr "" msgid "Request URL" msgstr "" +#. Title of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "Request for Account Deletion" +msgstr "" + #. Label of the requested_numbers (Code) field in DocType 'SMS Log' #: frappe/core/doctype/sms_log/sms_log.json msgid "Requested Numbers" @@ -21511,7 +21611,7 @@ msgstr "" msgid "Reset Fields" msgstr "" -#: frappe/core/doctype/user/user.js:184 frappe/core/doctype/user/user.js:187 +#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:175 msgid "Reset LDAP Password" msgstr "" @@ -21519,11 +21619,11 @@ msgstr "" msgid "Reset Layout" msgstr "" -#: frappe/core/doctype/user/user.js:235 +#: frappe/core/doctype/user/user.js:223 msgid "Reset OTP Secret" msgstr "" -#: frappe/core/doctype/user/user.js:168 frappe/www/login.html:199 +#: frappe/core/doctype/user/user.js:156 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" @@ -21558,7 +21658,7 @@ msgstr "" msgid "Reset sorting" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:433 +#: frappe/public/js/frappe/form/grid_row.js:434 msgid "Reset to default" msgstr "" @@ -21810,7 +21910,7 @@ 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 +#: frappe/public/js/frappe/roles_editor.js:114 msgid "Role Permissions" msgstr "" @@ -21820,7 +21920,7 @@ msgstr "" msgid "Role Permissions Manager" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1933 +#: frappe/public/js/frappe/list/list_view.js:1935 msgctxt "Button in list view menu" msgid "Role Permissions Manager" msgstr "" @@ -22013,11 +22113,11 @@ msgstr "" msgid "Row {0}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:353 +#: frappe/custom/doctype/customize_form/customize_form.py:357 msgid "Row {0}: Not allowed to disable Mandatory for standard fields" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:342 +#: frappe/custom/doctype/customize_form/customize_form.py:346 msgid "Row {0}: Not allowed to enable Allow on Submit for standard fields" msgstr "" @@ -22036,7 +22136,10 @@ msgid "Rows Removed" msgstr "" #. Label of the rows_threshold_for_grid_search (Int) field in DocType 'DocType' +#. Label of the rows_threshold_for_grid_search (Int) field in DocType +#. 'Customize Form' #: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Rows Threshold for Grid Search" msgstr "" @@ -22244,8 +22347,8 @@ msgstr "" #: 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:1957 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 +#: frappe/public/js/frappe/views/reports/query_report.js:1965 #: frappe/public/js/frappe/views/reports/report_view.js:1735 #: frappe/public/js/frappe/views/workspace/workspace.js:335 #: frappe/public/js/frappe/widgets/base_widget.js:142 @@ -22268,11 +22371,11 @@ msgstr "" msgid "Save Customizations" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1960 +#: frappe/public/js/frappe/views/reports/query_report.js:1968 msgid "Save Report" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:97 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:107 msgid "Save filters" msgstr "" @@ -22644,7 +22747,7 @@ msgstr "" msgid "See all Activity" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:855 +#: frappe/public/js/frappe/views/reports/query_report.js:863 msgid "See all past reports." msgstr "" @@ -22708,7 +22811,7 @@ msgstr "" #: 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:497 +#: frappe/public/js/frappe/form/grid_row.js:498 msgid "Select All" msgstr "" @@ -22788,7 +22891,7 @@ msgstr "" msgid "Select Field..." msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:489 +#: frappe/public/js/frappe/form/grid_row.js:490 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:181 msgid "Select Fields" msgstr "" @@ -22908,7 +23011,7 @@ msgid "Select a field to edit its properties." msgstr "" #: frappe/public/js/frappe/views/treeview.js:358 -msgid "Select a group node first." +msgid "Select a group {0} first." msgstr "" #: frappe/core/doctype/doctype/doctype.py:1956 @@ -22945,13 +23048,13 @@ msgstr "" msgid "Select atleast 2 actions" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1445 +#: frappe/public/js/frappe/list/list_view.js:1447 msgctxt "Description of a list view shortcut" msgid "Select list item" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1397 -#: frappe/public/js/frappe/list/list_view.js:1413 +#: frappe/public/js/frappe/list/list_view.js:1399 +#: frappe/public/js/frappe/list/list_view.js:1415 msgctxt "Description of a list view shortcut" msgid "Select multiple list items" msgstr "" @@ -23273,7 +23376,7 @@ msgstr "" msgid "Server Action" msgstr "" -#: frappe/app.py:396 frappe/public/js/frappe/request.js:611 +#: frappe/app.py:399 frappe/public/js/frappe/request.js:611 #: frappe/www/error.html:36 frappe/www/error.py:15 msgid "Server Error" msgstr "" @@ -23339,7 +23442,7 @@ msgstr "" msgid "Session Defaults Saved" msgstr "" -#: frappe/app.py:373 +#: frappe/app.py:376 msgid "Session Expired" msgstr "" @@ -23348,7 +23451,7 @@ msgstr "" msgid "Session Expiry (idle timeout)" msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:122 +#: frappe/core/doctype/system_settings/system_settings.py:123 msgid "Session Expiry must be in format {0}" msgstr "" @@ -23397,7 +23500,7 @@ msgstr "" msgid "Set Filters for {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2113 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 msgid "Set Level" msgstr "" @@ -23451,7 +23554,7 @@ msgstr "" msgid "Set Role For" msgstr "" -#: frappe/core/doctype/user/user.js:136 +#: frappe/core/doctype/user/user.js:124 #: frappe/core/page/permission_manager/permission_manager.js:72 msgid "Set User Permissions" msgstr "" @@ -23616,7 +23719,7 @@ msgstr "" msgid "Setup > User Permissions" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1826 +#: frappe/public/js/frappe/views/reports/query_report.js:1834 #: frappe/public/js/frappe/views/reports/report_view.js:1713 msgid "Setup Auto Email" msgstr "" @@ -23757,6 +23860,12 @@ msgstr "" msgid "Show Error" msgstr "" +#. Label of the show_external_link_warning (Select) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Show External Link Warning" +msgstr "" + #: frappe/public/js/frappe/form/layout.js:578 msgid "Show Fieldname (click to copy on clipboard)" msgstr "" @@ -23885,7 +23994,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:1849 +#: frappe/public/js/frappe/list/list_view.js:1851 msgid "Show Tags" msgstr "" @@ -24092,22 +24201,22 @@ msgstr "" msgid "Signups have been disabled for this website." msgstr "" -#. 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 "" - #. 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\")" +msgid "Simple Python Expression, Example: status == \"Invalid\"" msgstr "" #. 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'" +msgid "Simple Python Expression, Example: status == 'Open' and issue_type == 'Bug'" +msgstr "" + +#. 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 "" #. Label of the simultaneous_sessions (Int) field in DocType 'User' @@ -24115,13 +24224,13 @@ msgstr "" msgid "Simultaneous Sessions" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:126 +#: frappe/custom/doctype/customize_form/customize_form.py:128 msgid "Single DocTypes cannot be customized." 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 +#: frappe/core/doctype/doctype/doctype_list.js:68 msgid "Single Types have only one record no tables associated. Values are stored in tabSingles" msgstr "" @@ -24457,7 +24566,7 @@ msgid "Splash Image" msgstr "" #: frappe/desk/reportview.py:455 -#: frappe/public/js/frappe/web_form/web_form_list.js:175 +#: frappe/public/js/frappe/web_form/web_form_list.js:176 #: frappe/templates/print_formats/standard_macros.html:44 msgid "Sr" msgstr "" @@ -24489,7 +24598,7 @@ msgstr "" msgid "Standard" msgstr "" -#: frappe/model/delete_doc.py:79 +#: frappe/model/delete_doc.py:119 msgid "Standard DocType can not be deleted." msgstr "" @@ -24759,7 +24868,7 @@ msgstr "" #. Label of the sticky (Check) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json -#: frappe/public/js/frappe/form/grid_row.js:454 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Sticky" msgstr "" @@ -24789,7 +24898,7 @@ msgstr "" msgid "Store Attached PDF Document" msgstr "" -#: frappe/core/doctype/user/user.js:490 +#: frappe/core/doctype/user/user.js:497 msgid "Store the API secret securely. It won't be displayed again." msgstr "" @@ -24901,6 +25010,7 @@ msgstr "" #. 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' +#. Button label of the request-to-delete-data Web Form #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/docshare/docshare.json @@ -24909,10 +25019,11 @@ msgstr "" #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/quick_entry.js:225 #: frappe/public/js/frappe/ui/capture.js:307 +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json msgid "Submit" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2231 +#: frappe/public/js/frappe/list/list_view.js:2233 msgctxt "Button in list view actions menu" msgid "Submit" msgstr "" @@ -24922,7 +25033,7 @@ msgctxt "Button in web form" msgid "Submit" msgstr "" -#: frappe/public/js/frappe/ui/dialog.js:63 +#: frappe/public/js/frappe/ui/dialog.js:64 msgctxt "Primary action in dialog" msgid "Submit" msgstr "" @@ -24970,7 +25081,7 @@ msgstr "" msgid "Submit this document to confirm" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2236 +#: frappe/public/js/frappe/list/list_view.js:2238 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "" @@ -25020,7 +25131,7 @@ msgstr "" #: 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:1171 +#: frappe/public/js/frappe/form/grid.js:1172 #: frappe/public/js/frappe/views/translation_manager.js:21 #: frappe/templates/includes/login/login.js:230 #: frappe/templates/includes/login/login.js:236 @@ -25235,7 +25346,7 @@ msgstr "" msgid "Syncing {0} of {1}" msgstr "" -#: frappe/utils/data.py:2547 +#: frappe/utils/data.py:2573 msgid "Syntax Error" msgstr "" @@ -25546,7 +25657,7 @@ msgstr "" msgid "Table Trimmed" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1170 +#: frappe/public/js/frappe/form/grid.js:1171 msgid "Table updated" msgstr "" @@ -25765,7 +25876,7 @@ msgstr "" msgid "The Auto Repeat for this document has been disabled." msgstr "" -#: frappe/public/js/frappe/form/grid.js:1193 +#: frappe/public/js/frappe/form/grid.js:1194 msgid "The CSV format is case sensitive" msgstr "" @@ -25835,7 +25946,7 @@ msgstr "" 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:685 +#: frappe/public/js/frappe/list/list_view.js:687 msgid "The count shown is an estimated count. Click here to see the accurate count." msgstr "" @@ -25948,7 +26059,7 @@ msgstr "" msgid "The reset password link has either been used before or is invalid" msgstr "" -#: frappe/app.py:388 frappe/public/js/frappe/request.js:149 +#: frappe/app.py:391 frappe/public/js/frappe/request.js:149 msgid "The resource you are looking for is not available" msgstr "" @@ -26021,12 +26132,12 @@ 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:965 +#: frappe/public/js/frappe/views/reports/query_report.js:973 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 +#: frappe/website/doctype/web_form/web_form.js:318 msgid "There can be only 9 Page Break fields in a Web Form" msgstr "" @@ -26050,11 +26161,11 @@ msgstr "" msgid "There is nothing new to show you right now." msgstr "" -#: frappe/core/doctype/file/file.py:640 frappe/utils/file_manager.py:372 +#: frappe/core/doctype/file/file.py:643 frappe/utils/file_manager.py:372 msgid "There is some problem with the file url: {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:962 +#: frappe/public/js/frappe/views/reports/query_report.js:970 msgid "There is {0} with the same filters already in the queue:" msgstr "" @@ -26066,7 +26177,7 @@ msgstr "" msgid "There was an error building this page" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:182 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:196 msgid "There was an error saving filters" msgstr "" @@ -26123,7 +26234,7 @@ msgstr "" msgid "This Currency is disabled. Enable to use in transactions" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:391 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:405 msgid "This Kanban Board will be private" msgstr "" @@ -26160,7 +26271,7 @@ msgstr "" msgid "This cannot be undone" msgstr "" -#: frappe/desk/doctype/number_card/number_card.js:480 +#: frappe/desk/doctype/number_card/number_card.js:484 msgctxt "Number Card" msgid "This card is visible only to Administrator and System Managers by default. Set a DocType to share with users who have read access." msgstr "" @@ -26183,7 +26294,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:113 +#: frappe/model/delete_doc.py:153 msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time." msgstr "" @@ -26227,7 +26338,7 @@ msgid "" "eval:doc.age>18" msgstr "" -#: frappe/core/doctype/file/file.py:522 +#: frappe/core/doctype/file/file.py:525 msgid "This file is attached to a protected document and cannot be deleted." msgstr "" @@ -26262,7 +26373,7 @@ msgstr "" msgid "This goes above the slideshow." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2189 +#: frappe/public/js/frappe/views/reports/query_report.js:2197 msgid "This is a background report. Please set the appropriate filters and then generate a new one." msgstr "" @@ -26312,7 +26423,7 @@ msgstr "" msgid "This month" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1037 +#: frappe/public/js/frappe/views/reports/query_report.js:1045 msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead." msgstr "" @@ -26320,7 +26431,7 @@ msgstr "" msgid "This report was generated on {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:853 +#: frappe/public/js/frappe/views/reports/query_report.js:861 msgid "This report was generated {0}." msgstr "" @@ -26462,9 +26573,11 @@ msgstr "" #. Label of the time_zone (Select) field in DocType 'System Settings' #. Label of the time_zone (Autocomplete) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #. 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/core/web_form/edit_profile/edit_profile.json #: frappe/desk/page/setup_wizard/setup_wizard.js:407 #: frappe/website/doctype/web_page_view/web_page_view.json msgid "Time Zone" @@ -26731,7 +26844,7 @@ msgstr "" msgid "To generate password click {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:854 +#: frappe/public/js/frappe/views/reports/query_report.js:862 msgid "To get the updated report, click on {0}." msgstr "" @@ -26806,7 +26919,7 @@ msgstr "" msgid "Toggle Sidebar" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1964 +#: frappe/public/js/frappe/list/list_view.js:1966 msgctxt "Button in list view menu" msgid "Toggle Sidebar" msgstr "" @@ -26932,7 +27045,7 @@ msgstr "" #: frappe/desk/query_report.py:587 #: frappe/public/js/frappe/views/reports/print_grid.html:45 -#: frappe/public/js/frappe/views/reports/query_report.js:1324 +#: frappe/public/js/frappe/views/reports/query_report.js:1332 #: frappe/public/js/frappe/views/reports/report_view.js:1553 msgid "Total" msgstr "" @@ -27090,7 +27203,7 @@ msgstr "" msgid "Translatable" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2244 +#: frappe/public/js/frappe/views/reports/query_report.js:2252 msgid "Translate Data" msgstr "" @@ -27449,7 +27562,7 @@ msgstr "" msgid "Unable to update event" msgstr "" -#: frappe/core/doctype/file/file.py:486 +#: frappe/core/doctype/file/file.py:489 msgid "Unable to write file format for {0}" msgstr "" @@ -27458,7 +27571,7 @@ msgstr "" msgid "Unassign Condition" msgstr "" -#: frappe/app.py:396 +#: frappe/app.py:399 msgid "Uncaught Exception" msgstr "" @@ -27474,7 +27587,7 @@ msgstr "" msgid "Undo last action" msgstr "" -#: frappe/database/query.py:1495 +#: frappe/database/query.py:1497 msgid "Unescaped quotes in string literal: {0}" msgstr "" @@ -27522,7 +27635,7 @@ msgstr "" msgid "Unknown Rounding Method: {}" msgstr "" -#: frappe/auth.py:316 +#: frappe/auth.py:319 msgid "Unknown User" msgstr "" @@ -27588,8 +27701,8 @@ msgstr "" msgid "Unsubscribed" msgstr "" -#: frappe/database/query.py:653 frappe/database/query.py:1387 -#: frappe/database/query.py:1397 +#: frappe/database/query.py:655 frappe/database/query.py:1389 +#: frappe/database/query.py:1399 msgid "Unsupported function or invalid field name: {0}" msgstr "" @@ -27623,7 +27736,7 @@ msgstr "" #: 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:427 +#: frappe/public/js/frappe/form/grid_row.js:428 msgid "Update" msgstr "" @@ -27657,6 +27770,11 @@ msgstr "" msgid "Update Password" msgstr "" +#. Title of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Update Profile" +msgstr "" + #. Label of the update_series (Section Break) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -27872,11 +27990,7 @@ msgstr "" msgid "Use if the default settings don't seem to detect your data correctly" msgstr "" -#: frappe/model/db_query.py:436 -msgid "Use of function {0} in field is restricted" -msgstr "" - -#: frappe/model/db_query.py:413 +#: frappe/model/db_query.py:411 msgid "Use of sub-query or function is restricted" msgstr "" @@ -28098,12 +28212,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:1944 +#: frappe/public/js/frappe/views/reports/query_report.js:1952 #: frappe/public/js/frappe/views/reports/report_view.js:1761 msgid "User Permissions" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1922 +#: frappe/public/js/frappe/list/list_view.js:1924 msgctxt "Button in list view menu" msgid "User Permissions" msgstr "" @@ -28247,7 +28361,7 @@ msgstr "" msgid "User {0} is disabled" msgstr "" -#: frappe/sessions.py:242 +#: frappe/sessions.py:243 msgid "User {0} is disabled. Please contact your System Manager." msgstr "" @@ -28424,7 +28538,7 @@ msgstr "" msgid "Value for a check field can be either 0 or 1" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:612 +#: frappe/custom/doctype/customize_form/customize_form.py:616 msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters" msgstr "" @@ -28545,7 +28659,7 @@ msgstr "" msgid "View Audit Trail" msgstr "" -#: frappe/core/doctype/user/user.js:156 +#: frappe/core/doctype/user/user.js:144 msgid "View Doctype Permissions" msgstr "" @@ -28557,7 +28671,7 @@ msgstr "" msgid "View Full Log" msgstr "" -#: frappe/public/js/frappe/views/treeview.js:484 +#: frappe/public/js/frappe/views/treeview.js:486 #: frappe/public/js/frappe/widgets/quick_list_widget.js:258 msgid "View List" msgstr "" @@ -28567,7 +28681,7 @@ msgstr "" msgid "View Log" msgstr "" -#: frappe/core/doctype/user/user.js:147 +#: frappe/core/doctype/user/user.js:135 #: frappe/core/doctype/user_permission/user_permission.js:24 msgid "View Permitted Documents" msgstr "" @@ -28683,6 +28797,7 @@ msgid "Warehouse" msgstr "" #. Option for the 'Style' (Select) field in DocType 'Workflow State' +#: frappe/public/js/frappe/router.js:613 #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Warning" msgstr "" @@ -29328,7 +29443,7 @@ msgstr "" msgid "Workspace" msgstr "" -#: frappe/public/js/frappe/router.js:175 +#: frappe/public/js/frappe/router.js:180 msgid "Workspace {0} does not exist" msgstr "" @@ -29450,7 +29565,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:1225 +#: frappe/public/js/frappe/views/reports/query_report.js:1233 msgid "Y Field" msgstr "" @@ -29512,7 +29627,7 @@ msgstr "" #: frappe/public/js/form_builder/utils.js:336 #: frappe/public/js/frappe/form/controls/link.js:498 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1665 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 #: frappe/website/doctype/help_article/templates/help_article.html:25 msgid "Yes" msgstr "" @@ -29548,6 +29663,10 @@ msgstr "" msgid "You added {0} rows to {1}" msgstr "" +#: frappe/public/js/frappe/router.js:642 +msgid "You are about to open an external link. To confirm, click the link again." +msgstr "" + #: frappe/public/js/frappe/dom.js:438 msgid "You are connected to internet." msgstr "" @@ -29591,7 +29710,7 @@ msgstr "" msgid "You are not allowed to export {} doctype" msgstr "" -#: frappe/public/js/frappe/views/treeview.js:448 +#: frappe/public/js/frappe/views/treeview.js:450 msgid "You are not allowed to print this report" msgstr "" @@ -29599,7 +29718,7 @@ msgstr "" msgid "You are not allowed to send emails related to this document" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:605 +#: frappe/website/doctype/web_form/web_form.py:632 msgid "You are not allowed to update this Web Form Document" msgstr "" @@ -29672,11 +29791,11 @@ msgstr "" msgid "You can continue with the onboarding after exploring this page" msgstr "" -#: frappe/model/delete_doc.py:137 +#: frappe/model/delete_doc.py:177 msgid "You can disable this {0} instead of deleting it." msgstr "" -#: frappe/core/doctype/file/file.py:758 +#: frappe/core/doctype/file/file.py:761 msgid "You can increase the limit from System Settings." msgstr "" @@ -29726,11 +29845,11 @@ msgstr "" msgid "You can use wildcard %" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:390 +#: frappe/custom/doctype/customize_form/customize_form.py:394 msgid "You can't set 'Options' for field {0}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:394 +#: frappe/custom/doctype/customize_form/customize_form.py:398 msgid "You can't set 'Translatable' for field {0}" msgstr "" @@ -29748,7 +29867,7 @@ msgstr "" msgid "You cannot create a dashboard chart from single DocTypes" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:386 +#: frappe/custom/doctype/customize_form/customize_form.py:390 msgid "You cannot unset 'Read Only' for field {0}" msgstr "" @@ -29791,11 +29910,11 @@ msgstr "" msgid "You do not have enough permissions to access this resource. Please contact your manager to get access." msgstr "" -#: frappe/app.py:381 +#: frappe/app.py:384 msgid "You do not have enough permissions to complete the action" msgstr "" -#: frappe/database/query.py:529 +#: frappe/database/query.py:531 msgid "You do not have permission to access field: {0}" msgstr "" @@ -29811,7 +29930,7 @@ msgstr "" msgid "You don't have access to Report: {0}" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:808 +#: frappe/website/doctype/web_form/web_form.py:835 msgid "You don't have permission to access the {0} DocType." msgstr "" @@ -29835,7 +29954,7 @@ msgstr "" msgid "You have been successfully logged out" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:245 +#: frappe/custom/doctype/customize_form/customize_form.py:247 msgid "You have hit the row size limit on database table: {0}" msgstr "" @@ -29863,7 +29982,7 @@ msgstr "" msgid "You haven't added any Dashboard Charts or Number Cards yet." msgstr "" -#: frappe/public/js/frappe/list/list_view.js:501 +#: frappe/public/js/frappe/list/list_view.js:503 msgid "You haven't created a {0} yet" msgstr "" @@ -29880,11 +29999,11 @@ msgstr "" msgid "You must add atleast one link." msgstr "" -#: frappe/website/doctype/web_form/web_form.py:804 +#: frappe/website/doctype/web_form/web_form.py:831 msgid "You must be logged in to use this form." msgstr "" -#: frappe/website/doctype/web_form/web_form.py:645 +#: frappe/website/doctype/web_form/web_form.py:672 msgid "You must login to submit this form" msgstr "" @@ -29999,6 +30118,10 @@ msgstr "" msgid "You viewed this" msgstr "" +#: frappe/public/js/frappe/router.js:653 +msgid "You will be redirected to:" +msgstr "" + #: frappe/core/doctype/user_invitation/user_invitation.py:113 msgid "You've been invited to join {0}" msgstr "" @@ -30044,7 +30167,7 @@ msgstr "" msgid "Your account has been deleted" msgstr "" -#: frappe/auth.py:514 +#: frappe/auth.py:517 msgid "Your account has been locked and will resume after {0} seconds" msgstr "" @@ -30110,7 +30233,7 @@ msgstr "" msgid "Your report is being generated in the background. You will receive an email on {0} with a download link once it is ready." msgstr "" -#: frappe/app.py:374 +#: frappe/app.py:377 msgid "Your session has expired, please login again to continue." msgstr "" @@ -30447,7 +30570,7 @@ msgstr "" msgid "logged in" msgstr "" -#: frappe/website/doctype/web_form/web_form.js:362 +#: frappe/website/doctype/web_form/web_form.js:363 msgid "login_required" msgstr "" @@ -30785,7 +30908,7 @@ msgstr "" msgid "via Google Meet" msgstr "" -#: frappe/email/doctype/notification/notification.py:403 +#: frappe/email/doctype/notification/notification.py:405 msgid "via Notification" msgstr "" @@ -30895,7 +31018,7 @@ msgstr "" msgid "{0} Dashboard" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:486 +#: frappe/public/js/frappe/form/grid_row.js:487 #: frappe/public/js/frappe/list/list_settings.js:225 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:178 msgid "{0} Fields" @@ -30946,7 +31069,7 @@ msgstr "" msgid "{0} Report" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:956 +#: frappe/public/js/frappe/views/reports/query_report.js:964 msgid "{0} Reports" msgstr "" @@ -31019,7 +31142,7 @@ msgctxt "Form timeline" msgid "{0} attached {1}" msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:152 +#: frappe/core/doctype/system_settings/system_settings.py:153 msgid "{0} can not be more than {1}" msgstr "" @@ -31096,7 +31219,7 @@ msgstr "" msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values" msgstr "" -#: frappe/database/query.py:708 +#: frappe/database/query.py:710 msgid "{0} fields cannot contain backticks (`): {1}" msgstr "" @@ -31141,7 +31264,7 @@ msgstr "" msgid "{0} is a mandatory field" msgstr "" -#: frappe/core/doctype/file/file.py:566 +#: frappe/core/doctype/file/file.py:569 msgid "{0} is a not a valid zip file" msgstr "" @@ -31190,7 +31313,7 @@ msgstr "" msgid "{0} is mandatory" msgstr "" -#: frappe/database/query.py:485 +#: frappe/database/query.py:487 msgid "{0} is not a child table of {1}" msgstr "" @@ -31210,7 +31333,7 @@ msgstr "" msgid "{0} is not a valid Cron expression." msgstr "" -#: frappe/public/js/frappe/form/controls/dynamic_link.js:27 +#: frappe/public/js/frappe/form/controls/dynamic_link.js:23 msgid "{0} is not a valid DocType for Dynamic Link" msgstr "" @@ -31247,7 +31370,7 @@ msgstr "" msgid "{0} is not a valid report format. Report format should one of the following {1}" msgstr "" -#: frappe/core/doctype/file/file.py:546 +#: frappe/core/doctype/file/file.py:549 msgid "{0} is not a zip file" msgstr "" @@ -31295,7 +31418,7 @@ msgstr "" msgid "{0} is within {1}" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1839 +#: frappe/public/js/frappe/list/list_view.js:1841 msgid "{0} items selected" msgstr "" @@ -31381,11 +31504,11 @@ msgid "{0} not found" msgstr "" #: frappe/core/doctype/report/report.py:427 -#: frappe/public/js/frappe/list/list_view.js:1211 +#: frappe/public/js/frappe/list/list_view.js:1213 msgid "{0} of {1}" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1213 +#: frappe/public/js/frappe/list/list_view.js:1215 msgid "{0} of {1} ({2} rows with children)" msgstr "" @@ -31435,7 +31558,7 @@ msgstr "" msgid "{0} removed {1} rows from {2}" msgstr "" -#: frappe/public/js/frappe/roles_editor.js:62 +#: frappe/public/js/frappe/roles_editor.js:64 msgid "{0} role does not have permission on any doctype" msgstr "" @@ -31509,7 +31632,7 @@ msgstr "" msgid "{0} un-shared this document with {1}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:254 +#: frappe/custom/doctype/customize_form/customize_form.py:256 msgid "{0} updated" msgstr "" @@ -31569,7 +31692,7 @@ msgstr "" msgid "{0} {1} not found" msgstr "" -#: frappe/model/delete_doc.py:248 +#: frappe/model/delete_doc.py:288 msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first." msgstr "" @@ -31682,7 +31805,7 @@ msgstr "" msgid "{0}: {1} is set to state {2}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1283 +#: frappe/public/js/frappe/views/reports/query_report.js:1291 msgid "{0}: {1} vs {2}" msgstr "" @@ -31718,11 +31841,11 @@ msgstr "" msgid "{} Complete" msgstr "" -#: frappe/utils/data.py:2541 +#: frappe/utils/data.py:2567 msgid "{} Invalid python code on line {}" msgstr "" -#: frappe/utils/data.py:2550 +#: frappe/utils/data.py:2576 msgid "{} Possibly invalid python code.
{}" msgstr "" @@ -31748,7 +31871,7 @@ msgstr "" msgid "{} is not a valid date string." msgstr "" -#: frappe/commands/utils.py:562 +#: frappe/commands/utils.py:561 msgid "{} not found in PATH! This is required to access the console." msgstr "" diff --git a/frappe/locale/my.po b/frappe/locale/my.po new file mode 100644 index 0000000000..c92da95ee7 --- /dev/null +++ b/frappe/locale/my.po @@ -0,0 +1,31819 @@ +msgid "" +msgstr "" +"Project-Id-Version: frappe\n" +"Report-Msgid-Bugs-To: developers@frappe.io\n" +"POT-Creation-Date: 2025-10-05 09:33+0000\n" +"PO-Revision-Date: 2025-10-11 00:22\n" +"Last-Translator: developers@frappe.io\n" +"Language-Team: Burmese\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\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: my\n" +"X-Crowdin-File: /[frappe.frappe] develop/frappe/locale/main.pot\n" +"X-Crowdin-File-ID: 52\n" +"Language: my_MM\n" + +#. Option for the 'Condition' (Select) field in DocType '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' +#: frappe/website/doctype/about_us_settings/about_us_settings.json +msgid "\"Company History\"" +msgstr "" + +#: frappe/core/doctype/data_export/exporter.py:202 +msgid "\"Parent\" signifies the parent table in which this row must be added" +msgstr "" + +#. Description 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\" or \"Management\"" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:1090 +msgid "\"amended_from\" field must be present to do an amendment." +msgstr "" + +#: frappe/utils/csvutils.py:246 +msgid "\"{0}\" is not a valid Google Sheets URL" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/tag_utils.js:21 +#: frappe/public/js/frappe/ui/toolbar/tag_utils.js:22 +msgid "#{0}" +msgstr "" + +#: 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 "" + +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +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 "" + +#: frappe/core/doctype/doctype/doctype.py:1355 +msgid "'In Global Search' not allowed for type {0} in row {1}" +msgstr "" + +#: frappe/public/js/form_builder/store.js:198 +msgid "'In List View' is not allowed for field {0} of type {1}" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.py:367 +msgid "'In List View' not allowed for type {0} in row {1}" +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:164 +msgid "'Recipients' not specified" +msgstr "" + +#: frappe/utils/__init__.py:271 +msgid "'{0}' is not a valid IBAN" +msgstr "" + +#: frappe/utils/__init__.py:261 +msgid "'{0}' is not a valid URL" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1349 +msgid "'{0}' not allowed for type {1} in row {2}" +msgstr "" + +#: frappe/public/js/frappe/data_import/data_exporter.js:302 +msgid "(Mandatory)" +msgstr "" + +#: frappe/model/rename_doc.py:703 +msgid "** Failed: {0} to {1}: {2}" +msgstr "" + +#: frappe/public/js/frappe/list/list_settings.js:133 +#: 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' +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json +msgid "0 - Draft; 1 - Submitted; 2 - Cancelled" +msgstr "" + +#. Description of the 'Priority' (Int) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "0 is highest" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row.js:893 +msgid "1 = True & 0 = False" +msgstr "" + +#. Description of the 'Fraction Units' (Int) field in DocType 'Currency' +#: frappe/geo/doctype/currency/currency.json +msgid "1 Currency = [?] Fraction\n" +"For e.g. 1 USD = 100 Cent" +msgstr "" + +#: frappe/public/js/frappe/form/reminders.js:19 +msgid "1 Day" +msgstr "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:374 +msgid "1 Google Calendar Event synced." +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:963 +msgid "1 Report" +msgstr "" + +#: frappe/tests/test_utils.py:845 +msgid "1 day ago" +msgstr "" + +#: frappe/public/js/frappe/form/reminders.js:17 +msgid "1 hour" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:52 +#: frappe/tests/test_utils.py:843 +msgid "1 hour ago" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:48 +#: frappe/tests/test_utils.py:841 +msgid "1 minute ago" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:66 +#: frappe/tests/test_utils.py:849 +msgid "1 month ago" +msgstr "" + +#: 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 "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:320 +msgctxt "User removed row from child table" +msgid "1 row from {0}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:275 +msgctxt "User added row to child table" +msgid "1 row to {0}" +msgstr "" + +#: frappe/tests/test_utils.py:840 +msgid "1 second ago" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:62 +#: frappe/tests/test_utils.py:847 +msgid "1 week ago" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:70 +#: frappe/tests/test_utils.py:851 +msgid "1 year ago" +msgstr "" + +#: frappe/tests/test_utils.py:844 +msgid "2 hours ago" +msgstr "" + +#: frappe/tests/test_utils.py:850 +msgid "2 months ago" +msgstr "" + +#: frappe/tests/test_utils.py:848 +msgid "2 weeks ago" +msgstr "" + +#: frappe/tests/test_utils.py:852 +msgid "2 years ago" +msgstr "" + +#: frappe/tests/test_utils.py:842 +msgid "3 minutes ago" +msgstr "" + +#: frappe/public/js/frappe/form/reminders.js:16 +msgid "30 minutes" +msgstr "" + +#: frappe/public/js/frappe/form/reminders.js:18 +msgid "4 hours" +msgstr "" + +#: frappe/public/js/frappe/data_import/data_exporter.js:37 +msgid "5 Records" +msgstr "" + +#: frappe/tests/test_utils.py:846 +msgid "5 days ago" +msgstr "" + +#: frappe/desk/doctype/bulk_update/bulk_update.py:36 +msgid "; not allowed in condition" +msgstr "" + +#. Option for the 'Condition' (Select) field in DocType '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' +#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json +msgid "<=" +msgstr "" + +#. Description of the 'Generate Keys' (Button) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "\n" +" Click here to learn about token-based authentication\n" +"" +msgstr "" + +#: 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' +#: 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 "" + +#. Introduction text of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "

Request a file containing your personally identifiable information (PII) that is saved on our system. The file will be in JSON format and is sent to you by email. If you would like to have your PII deleted from our system, please make a request to delete data.

" +msgstr "" + +#. Introduction text of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "

Send a request to delete your account and personally identifiable information (PII) that is stored on our system. You will receive an email to verify your request. Once the request is verified we will take care of deleting your PII. If you just want to check what PII we have stored, you can request your data.

" +msgstr "" + +#. Content of the 'Help HTML' (HTML) field in DocType 'Document Naming +#. Settings' +#: 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" +"
  • Allowed special characters are \"/\" and \"-\"
  • \n" +"
  • \n" +" Optionally, set the number of digits in the series using dot (.)\n" +" followed by hashes (#). For example, \".####\" means that the series\n" +" will have four digits. Default is five digits.\n" +"
  • \n" +"
  • \n" +" You can also use variables in the series name by putting them\n" +" between (.) dots\n" +"
    \n" +" Supported Variables:\n" +"
      \n" +"
    • .YYYY. - Year in 4 digits
    • \n" +"
    • .YY. - Year in 2 digits
    • \n" +"
    • .MM. - Month
    • \n" +"
    • .DD. - Day of month
    • \n" +"
    • .WW. - Week of the 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" +" Examples:\n" +"
    \n" +"
  • INV-
  • \n" +"
  • INV-10-
  • \n" +"
  • INVK-
  • \n" +"
  • INV-.YYYY.-.{branch}.-.MM.-.####
  • \n" +"
\n" +"
\n" +"
\n" +msgstr "" + +#. Content of the 'Custom HTML Help' (HTML) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "

Custom CSS Help

\n\n" +"

Notes:

\n\n" +"
    \n" +"
  1. All field groups (label + value) are set attributes data-fieldtype and data-fieldname
  2. \n" +"
  3. All values are given class value
  4. \n" +"
  5. All Section Breaks are given class section-break
  6. \n" +"
  7. All Column Breaks are given class column-break
  8. \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' +#: frappe/printing/doctype/print_format/print_format.json +#, python-format +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" +"

For styling, the Boostrap CSS framework is provided and you can enjoy the full range of classes.

\n" +"
\n" +"

References

\n" +"
    \n" +"\t
  1. Jinja Templating Language
  2. \n" +"\t
  3. Bootstrap CSS Framework
  4. \n" +"
\n" +"
\n" +"

Example

\n" +"
<h3>{{ doc.select_print_heading or \"Invoice\" }}</h3>\n"
+"<div class=\"row\">\n"
+"\t<div class=\"col-md-3 text-right\">Customer Name</div>\n"
+"\t<div class=\"col-md-9\">{{ doc.customer_name }}</div>\n"
+"</div>\n"
+"<div class=\"row\">\n"
+"\t<div class=\"col-md-3 text-right\">Date</div>\n"
+"\t<div class=\"col-md-9\">{{ doc.get_formatted(\"invoice_date\") }}</div>\n"
+"</div>\n"
+"<table class=\"table table-bordered\">\n"
+"\t<tbody>\n"
+"\t\t<tr>\n"
+"\t\t\t<th>Sr</th>\n"
+"\t\t\t<th>Item Name</th>\n"
+"\t\t\t<th>Description</th>\n"
+"\t\t\t<th class=\"text-right\">Qty</th>\n"
+"\t\t\t<th class=\"text-right\">Rate</th>\n"
+"\t\t\t<th class=\"text-right\">Amount</th>\n"
+"\t\t</tr>\n"
+"\t\t{%- for row in doc.items -%}\n"
+"\t\t<tr>\n"
+"\t\t\t<td style=\"width: 3%;\">{{ row.idx }}</td>\n"
+"\t\t\t<td style=\"width: 20%;\">\n"
+"\t\t\t\t{{ row.item_name }}\n"
+"\t\t\t\t{% if row.item_code != row.item_name -%}\n"
+"\t\t\t\t<br>Item Code: {{ row.item_code}}\n"
+"\t\t\t\t{%- endif %}\n"
+"\t\t\t</td>\n"
+"\t\t\t<td style=\"width: 37%;\">\n"
+"\t\t\t\t<div style=\"border: 0px;\">{{ row.description }}</div></td>\n"
+"\t\t\t<td style=\"width: 10%; text-align: right;\">{{ row.qty }} {{ row.uom or row.stock_uom }}</td>\n"
+"\t\t\t<td style=\"width: 15%; text-align: right;\">{{\n"
+"\t\t\t\trow.get_formatted(\"rate\", doc) }}</td>\n"
+"\t\t\t<td style=\"width: 15%; text-align: right;\">{{\n"
+"\t\t\t\trow.get_formatted(\"amount\", doc) }}</td>\n"
+"\t\t</tr>\n"
+"\t\t{%- endfor -%}\n"
+"\t</tbody>\n"
+"</table>
\n" +"
\n" +"

Common Functions

\n" +"\n" +"\t\n" +"\t\t\n" +"\t\t\t\n" +"\t\t\t\n" +"\t\t\n" +"\t\t\n" +"\t\t\t\n" +"\t\t\t\n" +"\t\t\n" +"\t\n" +"
doc.get_formatted(\"[fieldname]\", [parent_doc])Get document value formatted as Date, Currency, etc. Pass parent doc for currency type fields.
frappe.db.get_value(\"[doctype]\", \"[name]\", \"fieldname\")Get value from another document.
\n" +msgstr "" + +#. Description of the 'Template' (Code) field in DocType 'Address Template' +#: frappe/contacts/doctype/address_template/address_template.json +#, python-format +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"
+"{{ city }}<br>\n"
+"{% if state %}{{ state }}<br>{% endif -%}\n"
+"{% if pincode %} PIN:  {{ pincode }}<br>{% endif -%}\n"
+"{{ country }}<br>\n"
+"{% if phone %}Phone: {{ phone }}<br>{% endif -%}\n"
+"{% if fax %}Fax: {{ fax }}<br>{% endif -%}\n"
+"{% if email_id %}Email: {{ email_id }}<br>{% endif -%}\n"
+"
" +msgstr "" + +#. Content of the 'Email Reply Help' (HTML) field in DocType 'Email Template' +#: 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" +"

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' +#: frappe/core/doctype/data_import/data_import.json +msgid "
Or
" +msgstr "" + +#. Content of the 'Message Examples' (HTML) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +#, python-format +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"
+"<ul>\n"
+"<li>Customer: {{ doc.customer }}\n"
+"<li>Amount: {{ doc.grand_total }}\n"
+"</ul>\n"
+"
" +msgstr "" + +#. Content of the 'html_condition' (HTML) field in DocType 'Webhook' +#: 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' +#: 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' +#: 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' +#: 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' +#: 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 "" + +#: frappe/twofactor.py:451 +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' +#. Description 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 "
*  *  *  *  *\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 "" + +#. Content of the 'Example' (HTML) field in DocType 'Workflow Transition' +#: 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" +"
  • frappe.db.get_value
  • \n" +"
  • frappe.db.get_list
  • \n" +"
  • frappe.session
  • \n" +"
  • frappe.utils.now_datetime
  • \n" +"
  • frappe.utils.get_datetime
  • \n" +"
  • frappe.utils.add_to_date
  • \n" +"
  • frappe.utils.now
  • \n" +"
\n" +"

Example:

doc.creation > frappe.utils.add_to_date(frappe.utils.now_datetime(), days=-5, as_string=True, as_datetime=True) 

" +msgstr "" + +#. 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' +#: 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' +#: 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' +#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json +msgid ">=" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1035 +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 "" + +#. Success message of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "A download link with your data will be sent to the email address associated with your account." +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.py:175 +msgid "A field with the name {0} already exists in {1}" +msgstr "" + +#: frappe/core/doctype/file/file.py:269 +msgid "A file with same name {} already exists" +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.
e.g. project" +msgstr "" + +#: frappe/templates/emails/new_user.html:5 +msgid "A new account has been created for you at {0}" +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:431 +msgid "A recurring {0} {1} has been created for you via Auto Repeat {2}." +msgstr "" + +#. Description of the 'Symbol' (Data) field in DocType 'Currency' +#: frappe/geo/doctype/currency/currency.json +msgid "A symbol for this currency. For e.g. $" +msgstr "" + +#: frappe/printing/doctype/print_format_field_template/print_format_field_template.py:49 +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 "" + +#. Option for the 'PDF Page Size' (Select) field in DocType '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' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "A1" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType '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' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "A3" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "A4" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType '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' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "A6" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType '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' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "A8" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType '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' +#: frappe/email/doctype/email_account/email_account.json +msgid "ALL" +msgstr "" + +#. Option for the 'Script Type' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "API" +msgstr "" + +#. Label of the api_access (Section Break) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "API Access" +msgstr "" + +#. 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 "" + +#. 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 "" + +#: frappe/integrations/doctype/social_login_key/social_login_key.py:102 +msgid "API Endpoint Args should be valid JSON" +msgstr "" + +#. 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.js:459 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 "" + +#. 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' +#: frappe/core/doctype/user/user.json +msgid "API Key cannot be regenerated" +msgstr "" + +#: frappe/core/doctype/user/user.js:456 +msgid "API Keys" +msgstr "" + +#. 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 "" + +#. 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.js:466 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 "" + +#. Option for the 'Default Sort Order' (Select) field in DocType '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 "" + +#. Label of a standard help item +#. Type: Action +#: frappe/hooks.py +msgid "About" +msgstr "" + +#: frappe/www/about.html:11 frappe/www/about.html:18 +msgid "About Us" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Website Workspace +#: frappe/website/doctype/about_us_settings/about_us_settings.json +#: frappe/website/workspace/website/website.json +msgid "About Us Settings" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/about_us_team_member/about_us_team_member.json +msgid "About Us Team Member" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:27 +msgid "About {0} minute remaining" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:28 +msgid "About {0} minutes remaining" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:25 +msgid "About {0} seconds remaining" +msgstr "" + +#: frappe/templates/emails/user_invitation.html:16 +msgid "Accept Invitation" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Accepted" +msgstr "" + +#. Label of the accepted_at (Datetime) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Accepted At" +msgstr "" + +#. 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 +#. Label of a Link in the Users Workspace +#: frappe/core/doctype/access_log/access_log.json +#: frappe/core/workspace/users/users.json +msgid "Access Log" +msgstr "" + +#. 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 "" + +#. 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 "" + +#: frappe/auth.py:494 +msgid "Access not allowed from this IP Address" +msgstr "" + +#. Label of the account_section (Section Break) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Account" +msgstr "" + +#. 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 +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/contacts/doctype/contact/contact.json +#: frappe/geo/doctype/currency/currency.json +msgid "Accounts Manager" +msgstr "" + +#. Name of a role +#: 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 "" + +#: 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 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 "" + +#. Label of the action (Small Text) field in DocType 'DocType Action' +#: frappe/core/doctype/doctype_action/doctype_action.json +msgid "Action / Route" +msgstr "" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:305 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:376 +msgid "Action Complete" +msgstr "" + +#: frappe/model/document.py:1888 +msgid "Action Failed" +msgstr "" + +#. 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 the action_timeout (Int) field in DocType 'Success Action' +#: frappe/core/doctype/success_action/success_action.json +msgid "Action Timeout (Seconds)" +msgstr "" + +#. Label of the action_type (Select) field in DocType 'DocType Action' +#: frappe/core/doctype/doctype_action/doctype_action.json +msgid "Action Type" +msgstr "" + +#: frappe/core/doctype/submission_queue/submission_queue.py:120 +msgid "Action {0} completed successfully on {1} {2}. View it {3}" +msgstr "" + +#: frappe/core/doctype/submission_queue/submission_queue.py:116 +msgid "Action {0} failed on {1} {2}. View it {3}" +msgstr "" + +#. 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:850 +msgid "Actions" +msgstr "" + +#. Label of the activate (Check) field in DocType 'Package Import' +#: frappe/core/doctype/package_import/package_import.json +msgid "Activate" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Auto Repeat' +#. Option for the 'Status' (Select) field in DocType 'Kanban Board Column' +#. Option for the 'Status' (Select) field in DocType '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 "" + +#. Option for the 'Directory Server' (Select) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "Active Directory" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. Group in User's connections +#: 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 "" + +#. Name of a DocType +#. Label of a Link in the Build Workspace +#. Label of a Link in the Users Workspace +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/workspace/build/build.json +#: frappe/core/workspace/users/users.json +msgid "Activity Log" +msgstr "" + +#: 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:502 +#: 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 "" + +#: frappe/public/js/frappe/form/grid_row.js:455 +msgid "Add / Remove Columns" +msgstr "" + +#: frappe/core/doctype/user_permission/user_permission_list.js:4 +msgid "Add / Update" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager.js:442 +msgid "Add A New Rule" +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:601 +#: frappe/public/js/frappe/views/interaction.js:159 +msgid "Add Attachment" +msgstr "" + +#. 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 "" + +#. 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 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 "" + +#: frappe/desk/doctype/number_card/number_card.js:37 +msgid "Add Card to Dashboard" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:210 +msgid "Add Chart to Dashboard" +msgstr "" + +#: frappe/public/js/frappe/views/treeview.js:301 +msgid "Add Child" +msgstr "" + +#: frappe/public/js/frappe/views/kanban/kanban_board.html:4 +#: frappe/public/js/frappe/views/reports/query_report.js:1840 +#: frappe/public/js/frappe/views/reports/query_report.js:1843 +#: frappe/public/js/frappe/views/reports/report_view.js:360 +#: frappe/public/js/frappe/views/reports/report_view.js:385 +#: frappe/public/js/print_format_builder/Field.vue:112 +msgid "Add Column" +msgstr "" + +#: frappe/core/doctype/communication/communication.js:127 +msgid "Add Contact" +msgstr "" + +#: frappe/desk/doctype/event/event.js:38 +msgid "Add Contacts" +msgstr "" + +#. 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 "" + +#. 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 "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:188 +#: frappe/public/js/frappe/widgets/widget_dialog.js:716 +msgid "Add Filters" +msgstr "" + +#. 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 "" + +#: 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 "" + +#: frappe/core/doctype/recorder/recorder.js:30 +msgid "Add Indexes" +msgstr "" + +#: frappe/public/js/frappe/form/grid.js:66 +msgid "Add Multiple" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager.js:445 +msgid "Add New Permission Rule" +msgstr "" + +#: frappe/desk/doctype/event/event.js:35 frappe/desk/doctype/event/event.js:42 +msgid "Add Participants" +msgstr "" + +#. 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 "" + +#: frappe/core/doctype/user/user.py:819 +msgid "Add Roles" +msgstr "" + +#: 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 "" + +#. 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 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 "" + +#: frappe/email/doctype/email_group/email_group.js:38 +#: frappe/email/doctype/email_group/email_group.js:59 +msgid "Add Subscribers" +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:425 +msgid "Add Tags" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:2151 +msgctxt "Button in list view actions menu" +msgid "Add Tags" +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:433 +msgid "Add Template" +msgstr "" + +#. Label of the add_total_row (Check) field in DocType 'Report' +#: frappe/core/doctype/report/report.json +msgid "Add Total Row" +msgstr "" + +#. 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 "" + +#: frappe/core/doctype/user_permission/user_permission_list.js:6 +msgid "Add User Permissions" +msgstr "" + +#. Label of the add_video_conferencing (Check) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Add Video Conferencing" +msgstr "" + +#: 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 "" + +#: frappe/templates/includes/comments/comments.html:30 +#: frappe/templates/includes/comments/comments.html:47 +msgid "Add a comment" +msgstr "" + +#: 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 "" + +#: frappe/public/js/frappe/form/form.js:205 +msgid "Add a row at the bottom" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:201 +msgid "Add a row at the top" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:197 +msgid "Add a row below the current row" +msgstr "" + +#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:286 +msgid "Add a {0} Chart" +msgstr "" + +#: 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:18 +msgid "Add script for Child Table" +msgstr "" + +#: 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 "" + +#: frappe/public/js/frappe/form/sidebar/assign_to.js:99 +msgid "Add to ToDo" +msgstr "" + +#: frappe/website/doctype/website_slideshow/website_slideshow.js:32 +msgid "Add to table" +msgstr "" + +#: 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:289 +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' +#: 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 "" + +#: frappe/core/doctype/log_settings/log_settings.py:81 +msgid "Added default log doctypes: {}" +msgstr "" + +#: frappe/public/js/frappe/form/link_selector.js:180 +#: frappe/public/js/frappe/form/link_selector.js:202 +msgid "Added {0} ({1})" +msgstr "" + +#. 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 "" + +#. Name of a DocType +#. 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/contacts/report/addresses_and_contacts/addresses_and_contacts.py:46 +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Address" +msgstr "" + +#. 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/contacts/report/addresses_and_contacts/addresses_and_contacts.py:37 +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +msgid "Address Line 1" +msgstr "" + +#. 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/contacts/report/addresses_and_contacts/addresses_and_contacts.py:38 +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +msgid "Address Line 2" +msgstr "" + +#. Name of a DocType +#: frappe/contacts/doctype/address_template/address_template.json +msgid "Address Template" +msgstr "" + +#. 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 "" + +#: frappe/contacts/doctype/address/address.py:72 +msgid "Address Title is mandatory." +msgstr "" + +#. Label of the address_type (Select) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "Address Type" +msgstr "" + +#. Description of the 'Address' (Small Text) field in DocType '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 "" + +#: frappe/contacts/doctype/address/address.py:206 +msgid "Addresses" +msgstr "" + +#. Name of a report +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.json +msgid "Addresses And Contacts" +msgstr "" + +#. 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:561 +msgid "Administration" +msgstr "" + +#. Name of a role +#: 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/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 "" + +#: frappe/core/doctype/user/user.py:1226 +msgid "Administrator Logged In" +msgstr "" + +#: frappe/core/doctype/user/user.py:1220 +msgid "Administrator accessed {0} on {1} via IP Address {2}." +msgstr "" + +#: frappe/desk/form/document_follow.py:52 +msgid "Administrator can't follow" +msgstr "" + +#. 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 "" + +#. 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 "" + +#: frappe/public/js/frappe/form/controls/link.js:339 +#: frappe/public/js/frappe/form/controls/link.js:341 +msgid "Advanced Search" +msgstr "" + +#. Label of the sb_advanced (Section Break) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Advanced Settings" +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' +#: frappe/core/doctype/server_script/server_script.json +msgid "After Cancel" +msgstr "" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "After Delete" +msgstr "" + +#. Option for the 'DocType Event' (Select) field in DocType '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' +#: frappe/core/doctype/server_script/server_script.json +msgid "After Rename" +msgstr "" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "After Save" +msgstr "" + +#. 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' +#: frappe/core/doctype/server_script/server_script.json +msgid "After Submit" +msgstr "" + +#: frappe/desk/doctype/number_card/number_card.py:63 +msgid "Aggregate Field is required to create a number card" +msgstr "" + +#. 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 "" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:410 +msgid "Aggregate Function field is required to create a dashboard chart" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Notification Log' +#: frappe/desk/doctype/notification_log/notification_log.json +msgid "Alert" +msgstr "" + +#. Label of a Card Break in the Tools Workspace +#: frappe/automation/workspace/tools/tools.json +msgid "Alerts and Notifications" +msgstr "" + +#: frappe/database/query.py:1610 +msgid "Alias cannot be a SQL keyword: {0}" +msgstr "" + +#: frappe/database/query.py:1535 +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 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 "" + +#. 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 "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:479 +msgid "Align Value" +msgstr "" + +#. Name of a role +#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' +#. Option for the 'Event Frequency' (Select) field in DocType '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 "" + +#. 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 "" + +#: frappe/website/doctype/website_slideshow/website_slideshow.py:43 +msgid "All Images attached to Website Slideshow should be public" +msgstr "" + +#: frappe/public/js/frappe/data_import/data_exporter.js:29 +msgid "All Records" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:2224 +msgid "All Submissions" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:452 +msgid "All customizations will be removed. Please confirm." +msgstr "" + +#: 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' +#: 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 "" + +#: frappe/utils/password_strength.py:183 +msgid "All-uppercase is almost as easy to guess as all-lowercase." +msgstr "" + +#. Label of the allocated_to (Link) field in DocType 'ToDo' +#: frappe/desk/doctype/todo/todo.json +msgid "Allocated To" +msgstr "" + +#. Label of the allow (Link) field in DocType 'User Permission' +#. Option for the 'Sign ups' (Select) field in DocType '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 "" + +#: frappe/website/doctype/website_settings/website_settings.py:160 +msgid "Allow API Indexing Access" +msgstr "" + +#. 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 "" + +#. 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 "" + +#: frappe/integrations/doctype/google_contacts/google_contacts.py:40 +msgid "Allow Google Contacts Access" +msgstr "" + +#. Label of the allow_guest (Check) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Allow Guest" +msgstr "" + +#. Label of the allow_guest_to_view (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Allow Guest to View" +msgstr "" + +#. 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 "" + +#. 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 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 "" + +#. Label of the allow_print_for_draft (Check) field in DocType 'Print Settings' +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:438 +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Allow Print for Draft" +msgstr "" + +#. 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 "" + +#. Label of the allow_rename (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Allow Rename" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. 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' +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +msgid "Allow approval for creator of the document" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#. 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 the allow_multiple (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Allow multiple responses" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#. 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 +#. Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Allow saving if mandatory fields are not filled" +msgstr "" + +#: 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' +#: frappe/core/doctype/user/user.json +msgid "Allow user to login only after this hour (0-24)" +msgstr "" + +#. Description of the 'Login Before' (Int) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Allow user to login only before this hour (0-24)" +msgstr "" + +#. Description of the 'Login with email link' (Check) field in DocType '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 the allowed (Link) field in DocType 'Workflow Transition' +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +msgid "Allowed" +msgstr "" + +#. 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 the allowed_in_mentions (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Allowed In Mentions" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. 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:1034 +msgid "Already Registered" +msgstr "" + +#: frappe/desk/form/assign_to.py:137 +msgid "Already in the following Users ToDo list:{0}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:907 +msgid "Also adding the dependent currency field {0}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:920 +msgid "Also adding the status dependency field {0}" +msgstr "" + +#. Label of the login_id (Data) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Alternative Email ID" +msgstr "" + +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Always" +msgstr "" + +#. 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 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 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 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 "" + +#. Option for the 'Action' (Select) field in DocType 'Amended Document Naming +#. Settings' +#. Option for the 'Default Amendment Naming' (Select) field in DocType +#. '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 +#: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json +msgid "Amended Document Naming Settings" +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 "" + +#. Label of the amended_from (Link) field in DocType 'Personal Data Download +#. Request' +#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json +msgid "Amended From" +msgstr "" + +#: frappe/public/js/frappe/form/save.js:12 +msgctxt "Freeze message while amending a document" +msgid "Amending" +msgstr "" + +#. 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 "" + +#: 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 "" + +#. Success message of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "An email to verify your request has been sent to your email address. Please verify your request to complete the process." +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:354 +msgid "An error occurred while setting Session Defaults" +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 "" + +#: frappe/templates/includes/oauth_confirmation.html:38 +msgid "An unexpected error occurred while authorizing {}." +msgstr "" + +#. Label of the analytics_section (Section Break) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Analytics" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:35 +msgid "Ancestors Of" +msgstr "" + +#. 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' +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +msgid "Annual" +msgstr "" + +#. 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 the anonymous (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Anonymous responses" +msgstr "" + +#: frappe/public/js/frappe/request.js:189 +msgid "Another transaction is blocking this one. Please try again in a few seconds." +msgstr "" + +#: frappe/model/rename_doc.py:379 +msgid "Another {0} with name {1} exists, select another name" +msgstr "" + +#. 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 "" + +#: 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 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 the app_id (Data) field in DocType 'Google Settings' +#: frappe/integrations/doctype/google_settings/google_settings.json +msgid "App ID" +msgstr "" + +#. 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 "" + +#. Label of the app_name (Select) field in DocType 'Module Def' +#. Label of the app_name (Select) field in DocType 'User Invitation' +#. 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/core/doctype/user_invitation/user_invitation.json +#: frappe/desk/doctype/changelog_feed/changelog_feed.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:1113 +msgid "App {0} is not installed" +msgstr "" + +#. 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 "" + +#. 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 "" + +#: frappe/email/doctype/email_account/email_account.py:202 +msgid "Append To can be one of {0}" +msgstr "" + +#. Description of the 'Append To' (Link) field in DocType '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 "" + +#: frappe/core/doctype/user_permission/user_permission_list.js:105 +msgid "Applicable Document Types" +msgstr "" + +#. Label of the applicable_for (Link) field in DocType 'User Permission' +#: frappe/core/doctype/user_permission/user_permission.json +msgid "Applicable For" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. Label of the app_version (Data) field in DocType 'Installed Application' +#: frappe/core/doctype/installed_application/installed_application.json +msgid "Application Version" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:195 +msgid "Application is not installed" +msgstr "" + +#. Label of the doctype_or_field (Select) field in DocType 'Property Setter' +#: frappe/custom/doctype/property_setter/property_setter.json +msgid "Applied On" +msgstr "" + +#: frappe/public/js/form_builder/components/Field.vue:103 +msgid "Apply" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:2136 +msgctxt "Button in list view actions menu" +msgid "Apply Assignment Rule" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter_list.js:318 +msgid "Apply Filters" +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 "" + +#. Label of the view (Select) field in DocType 'Client Script' +#: frappe/custom/doctype/client_script/client_script.json +msgid "Apply To" +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 "" + +#. 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' +#. Description of the 'If user is the owner' (Check) field in DocType '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 "" + +#: frappe/core/doctype/user_permission/user_permission_list.js:75 +msgid "Apply to all Documents Types" +msgstr "" + +#: frappe/model/workflow.py:322 +msgid "Applying: {0}" +msgstr "" + +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:115 +msgid "Approval Required" +msgstr "" + +#. 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 "" + +#: frappe/public/js/frappe/views/kanban/kanban_column.html:14 +msgid "Archive" +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 "" + +#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:494 +msgid "Archived Columns" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.js:18 +msgid "Are you sure you want to cancel the invitation?" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:2115 +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 "" + +#: 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 "" + +#: 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:203 +msgid "Are you sure you want to delete this record?" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form.js:191 +msgid "Are you sure you want to discard the changes?" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:977 +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 "" + +#: frappe/public/js/frappe/views/kanban/kanban_view.js:118 +msgid "Are you sure you want to proceed?" +msgstr "" + +#: frappe/core/doctype/rq_job/rq_job_list.js:25 +msgid "Are you sure you want to re-enable scheduler?" +msgstr "" + +#: frappe/core/doctype/communication/communication.js:163 +msgid "Are you sure you want to relink this communication to {0}?" +msgstr "" + +#: frappe/core/doctype/rq_job/rq_job_list.js:10 +msgid "Are you sure you want to remove all failed jobs?" +msgstr "" + +#: frappe/public/js/frappe/list/list_filter.js:116 +msgid "Are you sure you want to remove the {0} filter?" +msgstr "" + +#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:268 +msgid "Are you sure you want to reset all customizations?" +msgstr "" + +#: frappe/workflow/doctype/workflow/workflow.js:125 +msgid "Are you sure you want to save this document?" +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 "" + +#. 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' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "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 "" + +#: frappe/desk/form/assign_to.py:107 +msgid "As document sharing is disabled, please give them the required permissions before assigning." +msgstr "" + +#: 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 "" + +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Ask" +msgstr "" + +#. Label of the assign_condition (Code) field in DocType 'Assignment Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Assign Condition" +msgstr "" + +#: frappe/public/js/frappe/form/sidebar/assign_to.js:183 +msgid "Assign To" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:2097 +msgctxt "Button in list view actions menu" +msgid "Assign To" +msgstr "" + +#: frappe/public/js/frappe/form/sidebar/assign_to.js:193 +msgid "Assign To User Group" +msgstr "" + +#. 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 "" + +#: frappe/automation/doctype/assignment_rule/assignment_rule.js:52 +msgid "Assign one by one, in sequence" +msgstr "" + +#: frappe/public/js/frappe/form/sidebar/assign_to.js:174 +msgid "Assign to me" +msgstr "" + +#: frappe/automation/doctype/assignment_rule/assignment_rule.js:53 +msgid "Assign to the one who has the least assignments" +msgstr "" + +#: frappe/automation/doctype/assignment_rule/assignment_rule.js:54 +msgid "Assign to the user set in this field" +msgstr "" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#: frappe/core/doctype/comment/comment.json +msgid "Assigned" +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 "" + +#. 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 "" + +#: 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 "" + +#: frappe/desk/report/todo/todo.py:40 +msgid "Assigned To/Owner" +msgstr "" + +#. Label of the assignee (Table MultiSelect) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Assignee" +msgstr "" + +#: frappe/public/js/frappe/form/sidebar/assign_to.js:269 +msgid "Assigning..." +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Notification Log' +#: frappe/desk/doctype/notification_log/notification_log.json +msgid "Assignment" +msgstr "" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#: frappe/core/doctype/comment/comment.json +msgid "Assignment Completed" +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 "" + +#. Name of a DocType +#. Label of a Link in the Tools Workspace +#. Label of a shortcut in the Tools Workspace +#. 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 "" + +#. Name of a DocType +#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json +msgid "Assignment Rule Day" +msgstr "" + +#. Name of a DocType +#: frappe/automation/doctype/assignment_rule_user/assignment_rule_user.json +msgid "Assignment Rule User" +msgstr "" + +#: frappe/automation/doctype/assignment_rule/assignment_rule.py:55 +msgid "Assignment Rule is not allowed on document type {0}" +msgstr "" + +#. 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 "" + +#: frappe/desk/doctype/notification_log/notification_log.py:153 +msgid "Assignment Update on {0}" +msgstr "" + +#: frappe/desk/form/assign_to.py:78 +msgid "Assignment for {0} {1}" +msgstr "" + +#: frappe/desk/doctype/todo/todo.py:62 +msgid "Assignment of {0} removed by {1}" +msgstr "" + +#. 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 "" + +#. Label of the asynchronous (Check) field in DocType 'Workflow Transition +#. Task' +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Asynchronous" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row.js:697 +msgid "At least one column is required to show in the grid." +msgstr "" + +#: frappe/website/doctype/web_form/web_form.js:73 +msgid "At least one field is required in Web Form Fields Table" +msgstr "" + +#: 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' +#. 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' +#: 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 "" + +#: frappe/public/js/frappe/views/communication.js:155 +msgid "Attach Document Print" +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 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_form_field/web_form_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Attach Image" +msgstr "" + +#. 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 the attach_print (Check) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Attach Print" +msgstr "" + +#: 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 "" + +#. Label of the attached_file (Code) field in DocType 'Notification Log' +#: frappe/desk/doctype/notification_log/notification_log.json +msgid "Attached File" +msgstr "" + +#. Label of the attached_to_doctype (Link) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "Attached To DocType" +msgstr "" + +#. Label of the attached_to_field (Data) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "Attached To Field" +msgstr "" + +#. Label of the attached_to_name (Data) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "Attached To Name" +msgstr "" + +#: frappe/core/doctype/file/file.py:152 +msgid "Attached To Name must be a string or an integer" +msgstr "" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#: frappe/core/doctype/comment/comment.json +msgid "Attachment" +msgstr "" + +#. 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 "" + +#: frappe/core/doctype/file/file.py:338 +#: frappe/public/js/frappe/form/sidebar/attachments.js:36 +msgid "Attachment Limit Reached" +msgstr "" + +#. Label of the attachment_link (HTML) field in DocType 'Notification Log' +#: frappe/desk/doctype/notification_log/notification_log.json +msgid "Attachment Link" +msgstr "" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#: frappe/core/doctype/comment/comment.json +msgid "Attachment Removed" +msgstr "" + +#. 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:113 +msgid "Attachments" +msgstr "" + +#: frappe/public/js/frappe/form/print_utils.js:119 +msgid "Attempting Connection to QZ Tray..." +msgstr "" + +#: frappe/public/js/frappe/form/print_utils.js:135 +msgid "Attempting to launch QZ Tray..." +msgstr "" + +#: frappe/www/attribution.html:9 +msgid "Attribution" +msgstr "" + +#. Name of a report +#: frappe/custom/report/audit_system_hooks/audit_system_hooks.json +msgid "Audit System Hooks" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/audit_trail/audit_trail.json +msgid "Audit Trail" +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 "" + +#: frappe/integrations/doctype/social_login_key/social_login_key.py:96 +msgid "Auth URL data should be valid JSON" +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 +#: 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 "" + +#: frappe/www/qrcode.html:19 +msgid "Authentication Apps you can use are:" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:339 +msgid "Authentication failed while receiving emails from Email Account: {0}." +msgstr "" + +#. Label of the author (Data) field in DocType 'Help Article' +#: frappe/website/doctype/help_article/help_article.json +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 +#. Contacts' +#. Label of the authorization_code (Data) field in DocType 'OAuth Authorization +#. Code' +#. Option for the 'Grant Type' (Select) field in DocType '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 "" + +#. Label of the authorization_uri (Small Text) field in DocType 'Connected App' +#: frappe/integrations/doctype/connected_app/connected_app.json +msgid "Authorization URI" +msgstr "" + +#: frappe/templates/includes/oauth_confirmation.html:35 +msgid "Authorization error for {}." +msgstr "" + +#. 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 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 "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#. Option for the 'Status' (Select) field in DocType 'Integration Request' +#: frappe/integrations/doctype/integration_request/integration_request.json +msgid "Authorized" +msgstr "" + +#: 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' +#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json +msgid "Auto" +msgstr "" + +#. Label of a Link in the Tools Workspace +#. Name of a DocType +#: frappe/automation/workspace/tools/tools.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Auto Email Report" +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 "" + +#. Name of a DocType +#. Label of a Link in the Tools Workspace +#: 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 "" + +#. Name of a DocType +#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json +msgid "Auto Repeat Day" +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:173 +msgid "Auto Repeat Day{0} {1} has been repeated." +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:479 +msgid "Auto Repeat Document Creation Failed" +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.js:117 +msgid "Auto Repeat Schedule" +msgstr "" + +#. Name of a DocType +#: frappe/automation/doctype/auto_repeat_user/auto_repeat_user.json +msgid "Auto Repeat User" +msgstr "" + +#: frappe/public/js/frappe/utils/common.js:434 +msgid "Auto Repeat created for this document" +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:482 +msgid "Auto Repeat failed for {0}" +msgstr "" + +#. 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 the auto_reply_message (Text Editor) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Auto Reply Message" +msgstr "" + +#: frappe/automation/doctype/assignment_rule/assignment_rule.py:177 +msgid "Auto assignment failed: {0}" +msgstr "" + +#. 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 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 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 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 the follow_created_documents (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Auto follow documents that you create" +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:242 +msgid "Auto repeat failed. Please enable auto repeat after fixing the issues." +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' +#: 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' +#: 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' +#: frappe/core/doctype/communication/communication.json +msgid "Automated Message" +msgstr "" + +#. Option for the 'Desk Theme' (Select) field in DocType 'User' +#: frappe/core/doctype/user/user.json +#: frappe/public/js/frappe/ui/theme_switcher.js:69 +msgid "Automatic" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:772 +msgid "Automatic Linking can be activated only for one Email Account." +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:766 +msgid "Automatic Linking can be activated only if Incoming is enabled." +msgstr "" + +#. 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:131 +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 +#: frappe/automation/workspace/tools/tools.json +msgid "Automation" +msgstr "" + +#. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart' +#. Option for the 'Group By Type' (Select) field in DocType 'Dashboard Chart' +#. Option for the 'Function' (Select) field in DocType '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 "" + +#: frappe/public/js/frappe/ui/group_by/group_by.js:345 +msgid "Average of {0}" +msgstr "" + +#: frappe/utils/password_strength.py:130 +msgid "Avoid dates and years that are associated with you." +msgstr "" + +#: frappe/utils/password_strength.py:124 +msgid "Avoid recent years." +msgstr "" + +#: frappe/utils/password_strength.py:117 +msgid "Avoid sequences like abc or 6543 as they are easy to guess" +msgstr "" + +#: frappe/utils/password_strength.py:124 +msgid "Avoid years that are associated with you." +msgstr "" + +#. Label of the awaiting_password (Check) field in DocType 'User Email' +#: frappe/core/doctype/user_email/user_email.json +msgid "Awaiting Password" +msgstr "" + +#. Label of the awaiting_password (Check) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Awaiting password" +msgstr "" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:195 +msgid "Awesome Work" +msgstr "" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:353 +msgid "Awesome, now try making an entry yourself" +msgstr "" + +#: 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' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "B0" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType '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' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "B10" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType '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' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "B3" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType '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' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "B5" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType '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' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "B7" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType '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' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "B9" +msgstr "" + +#. 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 "" + +#: frappe/public/js/frappe/views/communication.js:87 +msgctxt "Email Recipients" +msgid "BCC" +msgstr "" + +#: frappe/public/js/frappe/file_uploader/ImageCropper.vue:31 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:181 +msgid "Back" +msgstr "" + +#: frappe/templates/pages/integrations/gcalendar-success.html:13 +msgid "Back to Desk" +msgstr "" + +#: frappe/www/404.html:26 +msgid "Back to Home" +msgstr "" + +#: frappe/www/login.html:201 frappe/www/login.html:232 +msgid "Back to Login" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. Label of a Link in the Build Workspace +#. 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 "" + +#. 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 "" + +#: frappe/desk/page/backups/backups.js:28 +msgid "Backup Encryption Key" +msgstr "" + +#: frappe/desk/page/backups/backups.py:98 +msgid "Backup job is already queued. You will receive an email with the download link" +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 +#. Report' +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Backups" +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' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Banker's Rounding" +msgstr "" + +#. Option for the 'Rounding Method' (Select) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Banker's Rounding (legacy)" +msgstr "" + +#. Label of the banner (Section Break) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Banner" +msgstr "" + +#. Label of the banner_html (Code) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Banner HTML" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Bar" +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' +#: 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 "" + +#. 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 "" + +#. 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 "" + +#. Label of the based_on (Link) field in DocType 'Language' +#: frappe/core/doctype/language/language.json +#: frappe/printing/page/print/print.js:286 +#: frappe/printing/page/print/print.js:340 +msgid "Based On" +msgstr "" + +#. Option for the 'Rule' (Select) field in DocType 'Assignment Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Based on Field" +msgstr "" + +#. 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 "" + +#. Option for the 'Method' (Select) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Basic" +msgstr "" + +#. 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' +#: frappe/core/doctype/server_script/server_script.json +msgid "Before Cancel" +msgstr "" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Before Delete" +msgstr "" + +#. Option for the 'DocType Event' (Select) field in DocType '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 "" + +#. Option for the 'DocType Event' (Select) field in DocType '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 "" + +#. 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 "" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Before Submit" +msgstr "" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Before Validate" +msgstr "" + +#. Option for the 'Level' (Select) field in DocType 'Help Article' +#: frappe/website/doctype/help_article/help_article.json +msgid "Beginner" +msgstr "" + +#: frappe/public/js/frappe/form/link_selector.js:29 +msgid "Beginning with" +msgstr "" + +#. Label of the beta (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Beta" +msgstr "" + +#: frappe/utils/password_strength.py:73 +msgid "Better add a few more letters or another word" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:27 +msgid "Between" +msgstr "" + +#. Option for the 'Address Type' (Select) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "Billing" +msgstr "" + +#: 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' +#: frappe/core/doctype/user/user.json +#: frappe/website/doctype/about_us_team_member/about_us_team_member.json +msgid "Bio" +msgstr "" + +#. Label of the birth_date (Date) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Birth Date" +msgstr "" + +#: frappe/public/js/frappe/data_import/data_exporter.js:41 +msgid "Blank Template" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/block_module/block_module.json +msgid "Block Module" +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 "" + +#. Label of the blocked (Check) field in DocType 'Desktop Icon' +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +msgid "Blocked" +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 "Blue" +msgstr "" + +#. 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 "" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#: frappe/core/doctype/comment/comment.json +msgid "Bot" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:126 +msgid "Both DocType and Name required" +msgstr "" + +#: 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' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:154 +msgid "Bottom" +msgstr "" + +#. Option for the 'Position' (Select) field in DocType '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' +#: 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' +#. 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:249 +msgid "Bottom Right" +msgstr "" + +#. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Bounced" +msgstr "" + +#. Label of the brand (Section Break) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Brand" +msgstr "" + +#. Label of the brand_html (Code) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Brand HTML" +msgstr "" + +#. Label of the banner_image (Attach Image) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Brand Image" +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 "" + +#. Description of the 'Brand HTML' (Code) field in DocType 'Website Settings' +#: 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 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 "" + +#. 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 "" + +#. 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 "" + +#: frappe/public/js/frappe/desk.js:19 +msgid "Browser not supported" +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 "" + +#. 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 +#: frappe/core/workspace/build/build.json +msgid "Build" +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 "" + +#: frappe/workflow/doctype/workflow/workflow_list.js:18 +msgid "Build {0}" +msgstr "" + +#: 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 "" + +#: frappe/core/doctype/user_permission/user_permission_list.js:142 +msgid "Bulk Delete" +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:321 +msgid "Bulk Edit" +msgstr "" + +#: frappe/public/js/frappe/form/grid.js:1190 +msgid "Bulk Edit {0}" +msgstr "" + +#: frappe/desk/reportview.py:637 +msgid "Bulk Operation Failed" +msgstr "" + +#: frappe/desk/reportview.py:641 +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 +#. Name of a DocType +#: frappe/automation/workspace/tools/tools.json +#: frappe/desk/doctype/bulk_update/bulk_update.json +msgid "Bulk Update" +msgstr "" + +#: frappe/model/workflow.py:310 +msgid "Bulk approval only support up to 500 documents." +msgstr "" + +#: frappe/desk/doctype/bulk_update/bulk_update.py:56 +msgid "Bulk operation is enqueued in background." +msgstr "" + +#: frappe/desk/doctype/bulk_update/bulk_update.py:68 +msgid "Bulk operations only support up to 500 documents." +msgstr "" + +#: frappe/model/workflow.py:299 +msgid "Bulk {0} is enqueued in background." +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' +#: 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 "" + +#. Label of the button_gradients (Check) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Button Gradients" +msgstr "" + +#. 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 "" + +#. Label of the button_shadows (Check) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Button Shadows" +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 \"Naming Series\" field" +msgstr "" + +#: 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 "" + +#. 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 fieldname" +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 "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "C5E" +msgstr "" + +#: frappe/templates/print_formats/standard_macros.html:220 +msgid "CANCELLED" +msgstr "" + +#. 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 "" + +#: frappe/public/js/frappe/views/communication.js:77 +msgctxt "Email Recipients" +msgid "CC" +msgstr "" + +#. Label of the cmd (Data) field in DocType 'Recorder' +#: frappe/core/doctype/recorder/recorder.json +msgid "CMD" +msgstr "" + +#: frappe/public/js/frappe/color_picker/color_picker.js:20 +msgid "COLOR PICKER" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. Description of the 'Element Selector' (Data) field in DocType '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 'File Type' (Select) field in DocType '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 "" + +#. 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 "" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:181 +msgid "Calculate" +msgstr "" + +#. Label of a Link in the Tools Workspace +#. Option for the 'Select List View' (Select) field in DocType 'Form Tour' +#. Option for the 'DocType View' (Select) field in DocType '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 "" + +#. Label of the calendar_name (Data) field in DocType 'Google Calendar' +#: frappe/integrations/doctype/google_calendar/google_calendar.json +msgid "Calendar Name" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/calendar_view/calendar_view.json +#: frappe/public/js/frappe/list/base_list.js:207 +msgid "Calendar View" +msgstr "" + +#. Option for the 'Event Category' (Select) field in DocType 'Event' +#: frappe/contacts/doctype/contact/contact.js:55 +#: frappe/desk/doctype/event/event.json +msgid "Call" +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 "" + +#. 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 "" + +#. Label of the callback_message (Small Text) field in DocType 'Onboarding +#. Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Callback Message" +msgstr "" + +#. Label of the callback_title (Data) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Callback Title" +msgstr "" + +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:150 +#: frappe/public/js/frappe/ui/capture.js:334 +msgid "Camera" +msgstr "" + +#. Label of the campaign (Data) field in DocType 'Web Page View' +#: frappe/public/js/frappe/utils/utils.js:1766 +#: frappe/website/doctype/web_page_view/web_page_view.json +#: frappe/website/report/website_analytics/website_analytics.js:39 +msgid "Campaign" +msgstr "" + +#. 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 "" + +#: 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 "" + +#: frappe/core/doctype/doctype/doctype.py:1164 +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' +#: 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 "" + +#: 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 "" + +#. 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:131 +#: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/core/doctype/user_invitation/user_invitation.js:17 +#: frappe/email/doctype/notification/notification.json +#: frappe/public/js/frappe/form/reminders.js:54 +msgid "Cancel" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:2206 +msgctxt "Button in list view actions menu" +msgid "Cancel" +msgstr "" + +#: frappe/public/js/frappe/ui/messages.js:68 +msgctxt "Secondary button in warning dialog" +msgid "Cancel" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:979 +msgid "Cancel All" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:966 +msgid "Cancel All Documents" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:2211 +msgctxt "Title of confirmation dialog" +msgid "Cancel {0} documents?" +msgstr "" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#. Option for the 'Status' (Select) field in DocType 'User Invitation' +#. 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 'Integration Request' +#: frappe/core/doctype/comment/comment.json +#: frappe/core/doctype/user_invitation/user_invitation.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 "" + +#: frappe/core/doctype/deleted_document/deleted_document.py:52 +msgid "Cancelled Document restored as Draft" +msgstr "" + +#: frappe/public/js/frappe/form/save.js:13 +msgctxt "Freeze message while cancelling a document" +msgid "Cancelling" +msgstr "" + +#: frappe/desk/form/linked_with.py:381 +msgid "Cancelling documents" +msgstr "" + +#: frappe/desk/doctype/bulk_update/bulk_update.py:91 +msgid "Cancelling {0}" +msgstr "" + +#: frappe/core/doctype/prepared_report/prepared_report.py:265 +msgid "Cannot Download Report due to insufficient permissions" +msgstr "" + +#: frappe/client.py:452 +msgid "Cannot Fetch Values" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager.py:156 +msgid "Cannot Remove" +msgstr "" + +#: frappe/model/base_document.py:1222 +msgid "Cannot Update After Submit" +msgstr "" + +#: frappe/core/doctype/file/file.py:646 +msgid "Cannot access file path {0}" +msgstr "" + +#: frappe/public/js/workflow_builder/utils.js:183 +msgid "Cannot cancel before submitting while transitioning from {0} State to {1} State" +msgstr "" + +#: frappe/workflow/doctype/workflow/workflow.py:110 +msgid "Cannot cancel before submitting. See Transition {0}" +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:294 +msgid "Cannot cancel {0}." +msgstr "" + +#: frappe/model/document.py:1017 +msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)" +msgstr "" + +#: frappe/model/document.py:1031 +msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)" +msgstr "" + +#: frappe/public/js/workflow_builder/utils.js:170 +msgid "Cannot change state of Cancelled Document ({0} State)" +msgstr "" + +#: frappe/workflow/doctype/workflow/workflow.py:99 +msgid "Cannot change state of Cancelled Document. Transition row {0}" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1154 +msgid "Cannot change to/from autoincrement autoname in Customize Form" +msgstr "" + +#: frappe/core/doctype/communication/communication.py:169 +msgid "Cannot create a {0} against a child document: {1}" +msgstr "" + +#: frappe/desk/doctype/workspace/workspace.py:272 +msgid "Cannot create private workspace of other users" +msgstr "" + +#: frappe/core/doctype/file/file.py:165 +msgid "Cannot delete Home and Attachments folders" +msgstr "" + +#: frappe/model/delete_doc.py:419 +msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:369 +msgid "Cannot delete standard action. You can hide it if you want" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:391 +msgid "Cannot delete standard document state." +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:321 +msgid "Cannot delete standard field {0}. You can hide it instead." +msgstr "" + +#: 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 "" + +#: frappe/custom/doctype/customize_form/customize_form.js:313 +msgid "Cannot delete system generated field {0}. You can hide it instead." +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:215 +msgid "Cannot delete {0}" +msgstr "" + +#: frappe/utils/nestedset.py:312 +msgid "Cannot delete {0} as it has child nodes" +msgstr "" + +#: frappe/desk/doctype/dashboard/dashboard.py:48 +msgid "Cannot edit Standard Dashboards" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:202 +msgid "Cannot edit Standard Notification. To edit, please disable this and duplicate it" +msgstr "" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:388 +msgid "Cannot edit Standard charts" +msgstr "" + +#: frappe/core/doctype/report/report.py:72 +msgid "Cannot edit a standard report. Please duplicate and create a new report" +msgstr "" + +#: frappe/model/document.py:1037 +msgid "Cannot edit cancelled document" +msgstr "" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:378 +msgid "Cannot edit filters for standard charts" +msgstr "" + +#: frappe/desk/doctype/number_card/number_card.js:289 +#: frappe/desk/doctype/number_card/number_card.js:381 +msgid "Cannot edit filters for standard number cards" +msgstr "" + +#: frappe/client.py:166 +msgid "Cannot edit standard fields" +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:131 +msgid "Cannot enable {0} for a non-submittable doctype" +msgstr "" + +#: frappe/core/doctype/file/file.py:264 +msgid "Cannot find file {} on disk" +msgstr "" + +#: frappe/core/doctype/file/file.py:586 +msgid "Cannot get file contents of a Folder" +msgstr "" + +#: frappe/printing/page/print/print.js:884 +msgid "Cannot have multiple printers mapped to a single print format." +msgstr "" + +#: frappe/public/js/frappe/form/grid.js:1134 +msgid "Cannot import table with more than 5000 rows." +msgstr "" + +#: frappe/model/document.py:1105 +msgid "Cannot link cancelled document: {0}" +msgstr "" + +#: frappe/model/mapper.py:175 +msgid "Cannot map because following condition fails:" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:971 +msgid "Cannot match column {0} with any field" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row.js:176 +msgid "Cannot move row" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:932 +msgid "Cannot remove ID field" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager.py:132 +msgid "Cannot set 'Report' permission if 'Only If Creator' permission is set" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:235 +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 "" + +#: frappe/public/js/frappe/list/bulk_operations.js:291 +msgid "Cannot submit {0}." +msgstr "" + +#: frappe/desk/doctype/bulk_update/bulk_update.js:26 +#: frappe/public/js/frappe/list/bulk_operations.js:366 +msgid "Cannot update {0}" +msgstr "" + +#: frappe/model/db_query.py:1136 +msgid "Cannot use sub-query here." +msgstr "" + +#: frappe/model/db_query.py:1168 +msgid "Cannot use {0} in order/group by" +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:297 +msgid "Cannot {0} {1}." +msgstr "" + +#: frappe/utils/password_strength.py:181 +msgid "Capitalization doesn't help very much." +msgstr "" + +#: frappe/public/js/frappe/ui/capture.js:294 +msgid "Capture" +msgstr "" + +#. Label of the card (Link) field in DocType 'Number Card Link' +#: frappe/desk/doctype/number_card_link/number_card_link.json +msgid "Card" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Workspace Link' +#: frappe/desk/doctype/workspace_link/workspace_link.json +msgid "Card Break" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:262 +msgid "Card Label" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:262 +msgid "Card Links" +msgstr "" + +#. Label of the cards (Table) field in DocType 'Dashboard' +#: frappe/desk/doctype/dashboard/dashboard.json +msgid "Cards" +msgstr "" + +#. 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 "" + +#. Label of the category_description (Text) field in DocType 'Help Category' +#: frappe/website/doctype/help_category/help_category.json +msgid "Category Description" +msgstr "" + +#. Label of the category_name (Data) field in DocType 'Help Category' +#: frappe/website/doctype/help_category/help_category.json +msgid "Category Name" +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 "" + +#: 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/public/js/frappe/form/templates/form_sidebar.html:11 +#: frappe/tests/test_translate.py:111 +msgid "Change" +msgstr "" + +#: frappe/tests/test_translate.py:112 +msgctxt "Coins" +msgid "Change" +msgstr "" + +#: 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 "" + +#: 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 "" + +#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:27 +msgid "Change Print Format" +msgstr "" + +#. Description of the 'Update Series Counter' (Section Break) field in DocType +#. 'Document Naming Settings' +#: 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 "" + +#. 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 "" + +#: 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 the channel (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Channel" +msgstr "" + +#. Label of the chart (Link) field in DocType 'Dashboard Chart Link' +#: frappe/desk/doctype/dashboard_chart_link/dashboard_chart_link.json +msgid "Chart" +msgstr "" + +#. Label of the chart_config (Code) field in DocType 'Dashboard Settings' +#: frappe/desk/doctype/dashboard_settings/dashboard_settings.json +msgid "Chart Configuration" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. Label of the source (Link) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Chart Source" +msgstr "" + +#. 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:510 +msgid "Chart Type" +msgstr "" + +#. 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 "" + +#. Option for the 'Type' (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Chat" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. 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' +#. 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/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Check" +msgstr "" + +#: frappe/integrations/doctype/webhook/webhook.py:99 +msgid "Check Request URL" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:1 +msgid "Check columns to select, drag to set order." +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:485 +msgid "Check the Error Log for more information: {0}" +msgstr "" + +#: 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 "" + +#. Description of the 'User must always select' (Check) field in DocType +#. '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 "" + +#. 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 "" + +#: frappe/website/doctype/website_settings/website_settings.js:140 +msgid "Checking this will enable tracking page views for blogs, web pages, etc." +msgstr "" + +#. Description of the 'Hide Custom DocTypes and Reports' (Check) field in +#. DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "Checking this will hide custom doctypes and reports cards in Links section" +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." +msgstr "" + +#: 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 "" + +#: frappe/www/list.py:85 +msgid "Child DocTypes are not allowed" +msgstr "" + +#. 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 "" + +#: frappe/core/doctype/doctype/doctype.py:1648 +msgid "Child Table {0} for field {1}" +msgstr "" + +#. Description of the 'Is Child Table' (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/doctype/doctype_list.js:53 +msgid "Child Tables are shown as a Grid in other DocTypes" +msgstr "" + +#: frappe/database/query.py:662 +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 "" + +#: frappe/public/js/frappe/views/workspace/workspace.js:571 +msgid "Choose a block or continue typing" +msgstr "" + +#: frappe/public/js/form_builder/components/controls/DataControl.vue:18 +#: frappe/public/js/frappe/form/controls/color.js:5 +msgid "Choose a color" +msgstr "" + +#: 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' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Choose authentication method to be used by all users" +msgstr "" + +#. Label of the city (Data) field in DocType 'Contact Us Settings' +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:39 +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +msgid "City" +msgstr "" + +#. Label of the city (Data) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "City/Town" +msgstr "" + +#: frappe/core/doctype/recorder/recorder_list.js:12 +#: frappe/public/js/frappe/form/controls/attach.js:16 +msgid "Clear" +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:438 +msgid "Clear & Add Template" +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:114 +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:2112 +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 "" + +#: frappe/core/doctype/error_log/error_log_list.js:12 +msgid "Clear Error Logs" +msgstr "" + +#: 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 "" + +#: frappe/core/doctype/user_permission/user_permission_list.js:144 +msgid "Clear User Permissions" +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:439 +msgid "Clear the email message and add the template" +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 "" + +#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:194 +msgid "Click On Customize to add your first widget" +msgstr "" + +#: frappe/templates/emails/user_invitation.html:8 +msgid "Click below to get started:" +msgstr "" + +#: frappe/website/doctype/web_form/templates/web_form.html:154 +msgid "Click here" +msgstr "" + +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:538 +msgid "Click on a file to select it." +msgstr "" + +#: frappe/templates/emails/login_with_email_link.html:19 +msgid "Click on the button to log in to {0}" +msgstr "" + +#: frappe/templates/emails/data_deletion_approval.html:2 +msgid "Click on the link below to approve the request" +msgstr "" + +#: frappe/templates/emails/new_user.html:7 +msgid "Click on the link below to complete your registration and set a new password" +msgstr "" + +#: frappe/templates/emails/download_data.html:3 +msgid "Click on the link below to download your data" +msgstr "" + +#: frappe/templates/emails/delete_data_confirmation.html:4 +msgid "Click on the link below to verify your request" +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 "" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:315 +#: frappe/desk/doctype/number_card/number_card.js:222 +#: 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 "" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:502 +#: frappe/desk/doctype/number_card/number_card.js:419 +msgid "Click to Set Dynamic Filters" +msgstr "" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:372 +#: frappe/desk/doctype/number_card/number_card.js:278 +#: frappe/website/doctype/web_form/web_form.js:262 +msgid "Click to Set Filters" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:741 +msgid "Click to sort by {0}" +msgstr "" + +#. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Clicked" +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 "" + +#. Label of the client_code_section (Section Break) field in DocType 'Report' +#: frappe/core/doctype/report/report.json +msgid "Client Code" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. 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 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 "" + +#. 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' +#: 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 "" + +#. 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" +msgstr "" + +#. 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 "" + +#. Label of the close_condition (Code) field in DocType 'Assignment Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Close Condition" +msgstr "" + +#: frappe/public/js/form_builder/components/FieldProperties.vue:79 +msgid "Close properties" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Activity Log' +#. Option for the 'Status' (Select) field in DocType 'Communication' +#. Option for the 'Status' (Select) field in DocType 'Event' +#. Option for the 'Status' (Select) field in DocType '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 "" + +#: 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 "" + +#. 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' +#. Label of the code (Data) field in DocType 'Country' +#. Option for the 'Response Type' (Select) field in DocType '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 "" + +#. 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 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 "" + +#: 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 "" + +#: 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:2121 +#: frappe/public/js/frappe/views/treeview.js:123 +msgid "Collapse All" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. Label of the collapsible_depends_on (Code) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Collapsible Depends On (JS)" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. 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' +#: 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:1241 +#: 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 "အရောင်" + +#. 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 "" + +#: 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 "" + +#. 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 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_form_field/web_form_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Column Break" +msgstr "" + +#: frappe/core/doctype/data_export/exporter.py:140 +msgid "Column Labels:" +msgstr "" + +#. 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 "" + +#: frappe/desk/doctype/kanban_board/kanban_board.py:45 +msgid "Column Name cannot be empty" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row.js:455 +msgid "Column Width" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row.js:662 +msgid "Column width cannot be zero." +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:380 +msgid "Column {0}" +msgstr "" + +#. 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 "" + +#. 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:411 +msgid "Columns based on" +msgstr "" + +#: frappe/integrations/doctype/oauth_client/oauth_client.py:57 +msgid "Combination of Grant Type ({0}) and Response Type ({1}) not allowed" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Comm10E" +msgstr "" + +#. Name of a DocType +#. Option for the 'Comment Type' (Select) field in DocType '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 "" + +#. Label of the comment_by (Data) field in DocType 'Comment' +#: frappe/core/doctype/comment/comment.json +msgid "Comment By" +msgstr "" + +#. Label of the comment_email (Data) field in DocType 'Comment' +#: frappe/core/doctype/comment/comment.json +msgid "Comment Email" +msgstr "" + +#. Label of the comment_type (Select) field in DocType 'Comment' +#: frappe/core/doctype/comment/comment.json +msgid "Comment Type" +msgstr "" + +#: frappe/desk/form/utils.py:58 +msgid "Comment can only be edited by the owner" +msgstr "" + +#: 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:129 +msgid "Comments" +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 "" + +#: frappe/templates/includes/comments/comments.py:52 +msgid "Comments cannot have links or email addresses" +msgstr "" + +#. Option for the 'Rounding Method' (Select) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Commercial Rounding" +msgstr "" + +#. Label of the commit (Check) field in DocType 'System Console' +#: frappe/desk/doctype/system_console/system_console.json +msgid "Commit" +msgstr "" + +#. Label of the committed (Check) field in DocType 'Console Log' +#: frappe/desk/doctype/console_log/console_log.json +msgid "Committed" +msgstr "" + +#: frappe/utils/password_strength.py:176 +msgid "Common names and surnames are easy to guess." +msgstr "" + +#. Name of a DocType +#. Option for the 'Communication Type' (Select) field in DocType +#. 'Communication' +#. 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 "" + +#. Name of a DocType +#: frappe/core/doctype/communication_link/communication_link.json +msgid "Communication Link" +msgstr "" + +#. Label of a Link in the Build Workspace +#: frappe/core/workspace/build/build.json +msgid "Communication Logs" +msgstr "" + +#. Label of the communication_type (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Communication Type" +msgstr "" + +#: frappe/integrations/frappe_providers/frappecloud_billing.py:32 +msgid "Communication secret not set" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/company_history/company_history.json +#: frappe/www/about.html:29 +msgid "Company History" +msgstr "" + +#. 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 "" + +#. Label of the company_name (Data) field in DocType 'Contact' +#: frappe/contacts/doctype/contact/contact.json +msgid "Company Name" +msgstr "" + +#: frappe/core/doctype/server_script/server_script.js:14 +#: frappe/custom/doctype/client_script/client_script.js:56 +#: frappe/public/js/frappe/utils/diffview.js:28 +msgid "Compare Versions" +msgstr "" + +#: frappe/core/doctype/server_script/server_script.py:159 +msgid "Compilation warning" +msgstr "" + +#: frappe/website/doctype/website_theme/website_theme.py:123 +msgid "Compiled Successfully" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log' +#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json +#: frappe/www/complete_signup.html:21 +msgid "Complete" +msgstr "" + +#: frappe/public/js/frappe/form/sidebar/assign_to.js:203 +msgid "Complete By" +msgstr "" + +#: frappe/core/doctype/user/user.py:479 +#: frappe/templates/emails/new_user.html:10 +msgid "Complete Registration" +msgstr "" + +#: 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' +#. Option for the 'Status' (Select) field in DocType 'Prepared Report' +#. 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' +#: 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 "" + +#. 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 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' +#: frappe/website/doctype/web_template/web_template.json +msgid "Component" +msgstr "" + +#: frappe/public/js/frappe/views/inbox/inbox_view.js:184 +msgid "Compose Email" +msgstr "" + +#. Option for the 'Row Format' (Select) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Compressed" +msgstr "" + +#. 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:208 +#: frappe/desk/doctype/number_card/number_card.js:347 +#: 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 the condition_type (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Condition Type" +msgstr "" + +#. 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 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 "" + +#. 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 "" + +#: frappe/public/js/frappe/views/reports/report_view.js:492 +msgid "Configure Chart" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row.js:407 +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' +#: 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 "" + +#. 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:400 frappe/public/js/frappe/dom.js:345 +#: frappe/www/update-password.html:66 +msgid "Confirm" +msgstr "" + +#: frappe/public/js/frappe/ui/messages.js:31 +msgctxt "Title of confirmation dialog" +msgid "Confirm" +msgstr "" + +#: 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 "" + +#: frappe/core/doctype/user/user.js:184 +msgid "Confirm New Password" +msgstr "" + +#: frappe/www/update-password.html:55 +msgid "Confirm Password" +msgstr "" + +#: frappe/templates/emails/data_deletion_approval.html:6 +#: frappe/templates/emails/delete_data_confirmation.html:7 +msgid "Confirm Request" +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/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:397 +msgid "Confirmed" +msgstr "" + +#: 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 "" + +#: frappe/integrations/doctype/connected_app/connected_app.js:20 +msgid "Connect to {}" +msgstr "" + +#. Label of the connected_app (Link) field in DocType 'Email Account' +#. Name of a DocType +#. 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 the connected_user (Link) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Connected User" +msgstr "" + +#: frappe/public/js/frappe/form/print_utils.js:125 +#: frappe/public/js/frappe/form/print_utils.js:149 +msgid "Connected to QZ Tray!" +msgstr "" + +#: frappe/public/js/frappe/request.js:36 +msgid "Connection Lost" +msgstr "" + +#: frappe/templates/pages/integrations/gcalendar-success.html:3 +msgid "Connection Success" +msgstr "" + +#: frappe/public/js/frappe/dom.js:446 +msgid "Connection lost. Some features might not work." +msgstr "" + +#. 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 the console (Code) field in DocType 'System Console' +#: frappe/desk/doctype/system_console/system_console.json +msgid "Console" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/console_log/console_log.json +msgid "Console Log" +msgstr "" + +#: 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 +#: frappe/contacts/doctype/contact/contact.json +#: frappe/core/doctype/communication/communication.js:113 +msgid "Contact" +msgstr "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:812 +msgid "Contact / email not found. Did not add attendee for -
{0}" +msgstr "" + +#. Label of the sb_01 (Section Break) field in DocType 'Contact' +#: frappe/contacts/doctype/contact/contact.json +msgid "Contact Details" +msgstr "" + +#. Name of a DocType +#: frappe/contacts/doctype/contact_email/contact_email.json +msgid "Contact Email" +msgstr "" + +#. Label of the phone_nos (Table) field in DocType 'Contact' +#: frappe/contacts/doctype/contact/contact.json +msgid "Contact Numbers" +msgstr "" + +#. Name of a DocType +#: frappe/contacts/doctype/contact_phone/contact_phone.json +msgid "Contact Phone" +msgstr "" + +#: frappe/integrations/doctype/google_contacts/google_contacts.py:291 +msgid "Contact Synced with Google Contacts." +msgstr "" + +#: frappe/www/contact.html:4 +msgid "Contact Us" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Website Workspace +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +#: frappe/website/workspace/website/website.json +msgid "Contact Us Settings" +msgstr "" + +#. Description of the 'Query Options' (Small Text) field in DocType '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 "" + +#. 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 '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:1782 +#: 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 "" + +#. Label of the content_hash (Data) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "Content Hash" +msgstr "" + +#. Label of the content_type (Select) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Content Type" +msgstr "" + +#: frappe/desk/doctype/workspace/workspace.py:86 +msgid "Content data shoud be a list" +msgstr "" + +#: frappe/website/doctype/web_page/web_page.js:91 +msgid "Content type for building the page" +msgstr "" + +#. 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 "" + +#. Label of the context_script (Code) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Context Script" +msgstr "" + +#: 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 "" + +#. Label of the contributed (Check) field in DocType 'Translation' +#: frappe/core/doctype/translation/translation.json +msgid "Contributed" +msgstr "" + +#. 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 "" + +#: 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:621 +msgid "Copy error to clipboard" +msgstr "" + +#: frappe/public/js/frappe/form/toolbar.js:507 +msgid "Copy to Clipboard" +msgstr "" + +#: frappe/core/doctype/user/user.js:487 +msgid "Copy token to clipboard" +msgstr "" + +#. Label of the copyright (Data) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Copyright" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.py:125 +msgid "Core DocTypes cannot be customized." +msgstr "" + +#: frappe/desk/doctype/global_search_settings/global_search_settings.py:36 +msgid "Core Modules {0} cannot be searched in Global Search." +msgstr "" + +#: frappe/printing/page/print/print.js:660 +msgid "Correct version :" +msgstr "" + +#: frappe/email/smtp.py:78 +msgid "Could not connect to outgoing email server" +msgstr "" + +#: frappe/model/document.py:1101 +msgid "Could not find {0}" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:933 +msgid "Could not map column {0} to field {1}" +msgstr "" + +#: frappe/database/query.py:566 +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:383 +msgid "Couldn't save, please check the data you have entered" +msgstr "" + +#. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart' +#. Option for the 'Group By Type' (Select) field in DocType 'Dashboard Chart' +#. Option for the 'Function' (Select) field in DocType '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 "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:540 +msgid "Count Customizations" +msgstr "" + +#. 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 "" + +#: frappe/public/js/frappe/form/dashboard.js:509 +msgid "Count of linked documents" +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 "" + +#. 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 +#. 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/contacts/report/addresses_and_contacts/addresses_and_contacts.py:42 +#: 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 "" + +#: frappe/utils/__init__.py:132 +msgid "Country Code Required" +msgstr "" + +#. Label of the country_name (Data) field in DocType 'Country' +#: frappe/geo/doctype/country/country.json +msgid "Country Name" +msgstr "" + +#. Label of the county (Data) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "County" +msgstr "" + +#: frappe/public/js/frappe/utils/number_systems.js:23 +#: frappe/public/js/frappe/utils/number_systems.js:45 +msgctxt "Number system" +msgid "Cr" +msgstr "" + +#. 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:1273 +#: frappe/public/js/frappe/views/workspace/workspace.js:469 +#: frappe/workflow/page/workflow_builder/workflow_builder.js:46 +msgid "Create" +msgstr "" + +#: frappe/core/doctype/doctype/doctype_list.js:103 +msgid "Create & Continue" +msgstr "" + +#: frappe/public/js/frappe/ui/address_autocomplete/autocomplete_dialog.js:49 +msgid "Create Address" +msgstr "" + +#: 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:285 +#: frappe/public/js/frappe/views/reports/query_report.js:1200 +msgid "Create Chart" +msgstr "" + +#: frappe/public/js/form_builder/components/controls/TableControl.vue:62 +msgid "Create Child Doctype" +msgstr "" + +#. 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' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Create Entry" +msgstr "" + +#: 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 "" + +#: 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 "" + +#: frappe/public/js/frappe/list/list_view.js:514 +msgctxt "Create a new document from list view" +msgid "Create New" +msgstr "" + +#: frappe/core/doctype/doctype/doctype_list.js:101 +msgid "Create New DocType" +msgstr "" + +#: frappe/public/js/frappe/list/list_view_select.js:204 +msgid "Create New Kanban Board" +msgstr "" + +#: frappe/core/doctype/user/user.js:264 +msgid "Create User Email" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder_start.html:16 +msgid "Create a New Format" +msgstr "" + +#: frappe/public/js/frappe/form/reminders.js:9 +msgid "Create a Reminder" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:546 +msgid "Create a new ..." +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:156 +msgid "Create a new record" +msgstr "" + +#: frappe/public/js/frappe/form/controls/link.js:315 +#: frappe/public/js/frappe/form/controls/link.js:317 +#: frappe/public/js/frappe/form/link_selector.js:139 +#: frappe/public/js/frappe/list/list_view.js:506 +#: frappe/public/js/frappe/web_form/web_form_list.js:226 +msgid "Create a new {0}" +msgstr "" + +#: frappe/www/login.html:162 +msgid "Create a {0} Account" +msgstr "" + +#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:34 +msgid "Create or Edit Print Format" +msgstr "" + +#: frappe/workflow/page/workflow_builder/workflow_builder.js:34 +msgid "Create or Edit Workflow" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:509 +msgid "Create your first {0}" +msgstr "" + +#: 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' +#: frappe/core/doctype/comment/comment.json +#: frappe/public/js/frappe/views/file/file_view.js:370 +msgid "Created" +msgstr "" + +#. Label of the created_at (Datetime) field in DocType 'Submission Queue' +#: frappe/core/doctype/submission_queue/submission_queue.json +msgid "Created At" +msgstr "" + +#: 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 "" + +#: frappe/workflow/doctype/workflow/workflow.py:65 +msgid "Created Custom Field {0} in {1}" +msgstr "" + +#: 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 "" + +#: frappe/public/js/frappe/desk.js:517 +#: frappe/public/js/frappe/views/treeview.js:393 +msgid "Creating {0}" +msgstr "" + +#: 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' +#. 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 "Cron" +msgstr "" + +#. 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 "" + +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:62 +msgid "Cron format is required for job types with Cron frequency." +msgstr "" + +#: 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 "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' +#. 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' +#: 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 "" + +#. Label of the currency_name (Data) field in DocType 'Currency' +#: frappe/geo/doctype/currency/currency.json +msgid "Currency Name" +msgstr "" + +#. Label of the currency_precision (Select) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Currency Precision" +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' +#: frappe/contacts/doctype/address/address.json +msgid "Current" +msgstr "" + +#. 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 the current_value (Int) field in DocType 'Document Naming Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Current Value" +msgstr "" + +#: 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 "" + +#. 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' +#. Label of the custom (Check) field in DocType 'Desktop Icon' +#. Option for the 'Type' (Select) field in DocType 'Number Card' +#. 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' +#. 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 "" + +#. 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 "" + +#. 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 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 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 "" + +#. 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 "" + +#. 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 +#: frappe/core/doctype/custom_docperm/custom_docperm.json +msgid "Custom DocPerm" +msgstr "" + +#. 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 "" + +#: frappe/core/doctype/user_type/user_type.py:105 +msgid "Custom Document Types Limit Exceeded" +msgstr "" + +#: frappe/desk/desktop.py:524 +msgid "Custom Documents" +msgstr "" + +#. Label of a Link in the Build Workspace +#. Name of a DocType +#: frappe/core/workspace/build/build.json +#: frappe/custom/doctype/custom_field/custom_field.json +msgid "Custom Field" +msgstr "" + +#: 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 "" + +#: frappe/custom/doctype/custom_field/custom_field.py:277 +msgid "Custom Fields can only be added to a standard DocType." +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.py:274 +msgid "Custom Fields cannot be added to core DocTypes." +msgstr "" + +#. 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 the custom_format (Check) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Custom Format" +msgstr "" + +#. 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 "" + +#: 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 "" + +#: 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 "" + +#. Name of a DocType +#: frappe/desk/doctype/custom_html_block/custom_html_block.json +msgid "Custom HTML Block" +msgstr "" + +#. 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 "" + +#: 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 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 the custom_menu (Table) field in DocType 'Portal Settings' +#: frappe/website/doctype/portal_settings/portal_settings.json +msgid "Custom Menu Items" +msgstr "" + +#. Label of the custom_options (Code) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Custom Options" +msgstr "" + +#. Label of the custom_overrides (Code) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Custom Overrides" +msgstr "" + +#. Option for the 'Report Type' (Select) field in DocType 'Report' +#: frappe/core/doctype/report/report.json +msgid "Custom Report" +msgstr "" + +#: frappe/desk/desktop.py:525 +msgid "Custom Reports" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/custom_role/custom_role.json +msgid "Custom Role" +msgstr "" + +#. Label of the custom_scss (Code) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Custom SCSS" +msgstr "" + +#. 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 "" + +#. Label of a Link in the Build Workspace +#: frappe/core/workspace/build/build.json +msgid "Custom Translation" +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.py:423 +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 +#: frappe/core/doctype/doctype/doctype_list.js:83 +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Custom?" +msgstr "" + +#. 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 "" + +#: frappe/public/js/frappe/views/workspace/workspace.js:358 +msgid "Customizations Discarded" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:465 +msgid "Customizations Reset" +msgstr "" + +#: frappe/modules/utils.py:96 +msgid "Customizations for {0} exported to:
{1}" +msgstr "" + +#: frappe/printing/page/print/print.js:184 +#: 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 "" + +#: frappe/public/js/frappe/list/list_view.js:1949 +msgctxt "Button in list view menu" +msgid "Customize" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:89 +msgid "Customize Child Table" +msgstr "" + +#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:38 +msgid "Customize Dashboard" +msgstr "" + +#. Label of a Link in the Build Workspace +#. 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:357 +msgid "Customize Form" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:100 +msgid "Customize Form - {0}" +msgstr "" + +#. Name of a DocType +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Customize Form Field" +msgstr "" + +#. 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 "" + +#: frappe/public/js/frappe/views/file/file_view.js:144 +msgid "Cut" +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 "Cyan" +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 "" + +#. Option for the 'Default Sort Order' (Select) field in DocType '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 "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "DLE" +msgstr "" + +#: frappe/templates/print_formats/standard_macros.html:215 +msgid "DRAFT" +msgstr "" + +#. 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' +#: 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 "" + +#: frappe/templates/emails/upcoming_events.html:8 +msgid "Daily Event Digest is sent for Calendar Events where reminders are set." +msgstr "" + +#: frappe/desk/doctype/event/event.py:104 +msgid "Daily Events should finish on the Same Day." +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 "" + +#. 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' +#: frappe/workflow/doctype/workflow_state/workflow_state.json +msgid "Danger" +msgstr "" + +#. Option for the 'Desk Theme' (Select) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Dark" +msgstr "" + +#. Label of the dark_color (Link) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Dark Color" +msgstr "" + +#: frappe/public/js/frappe/ui/theme_switcher.js:65 +msgid "Dark Theme" +msgstr "" + +#. Label of the dashboard (Check) field in DocType 'User' +#. Label of a Link in the Build Workspace +#. Name of a DocType +#. Option for the 'Select List View' (Select) field in DocType 'Form Tour' +#. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut' +#. Option for the 'DocType View' (Select) field in DocType '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:571 +#: frappe/public/js/frappe/utils/utils.js:935 +msgid "Dashboard" +msgstr "" + +#. Label of a Link in the Build Workspace +#. 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 "" + +#. Name of a DocType +#: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json +msgid "Dashboard Chart Field" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/dashboard_chart_link/dashboard_chart_link.json +msgid "Dashboard Chart Link" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json +msgid "Dashboard Chart Source" +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 "" + +#. Label of the dashboard_name (Data) field in DocType 'Dashboard' +#: frappe/desk/doctype/dashboard/dashboard.json +msgid "Dashboard Name" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/dashboard_settings/dashboard_settings.json +msgid "Dashboard Settings" +msgstr "" + +#: 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 "" + +#. Label of a Card Break in the Tools Workspace +#. Label of the data (Code) field in DocType 'Deleted Document' +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' +#. 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' +#. Option for the 'Fieldtype' (Select) field in DocType '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/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 "" + +#: frappe/public/js/frappe/form/controls/data.js:59 +msgid "Data Clipped" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/data_export/data_export.json +msgid "Data Export" +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 "" + +#. Name of a DocType +#: frappe/core/doctype/data_import_log/data_import_log.json +msgid "Data Import Log" +msgstr "" + +#: frappe/core/doctype/data_export/exporter.py:174 +msgid "Data Import Template" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.py:619 +msgid "Data Too Long" +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 "" + +#. Label of the engine (Select) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Database Engine" +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 "" + +#: frappe/public/js/frappe/doctype/index.js:38 +msgid "Database Row Size Utilization" +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 "" + +#: frappe/custom/doctype/customize_form/customize_form.py:251 +msgid "Database Table Row Size Limit" +msgstr "" + +#: frappe/public/js/frappe/doctype/index.js:40 +msgid "Database Table Row Size Utilization: {0}%, this limits number of fields you can add." +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 "" + +#. 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' +#. 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' +#. Option for the 'Fieldtype' (Select) field in DocType '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 "" + +#. 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 "" + +#. 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 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 "" + +#: frappe/public/js/frappe/form/controls/date.js:247 +msgid "Date {0} must be in format: {1}" +msgstr "" + +#: frappe/utils/password_strength.py:129 +msgid "Dates are often easy to guess." +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. 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' +#. Option for the 'Fieldtype' (Select) field in DocType '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 "" + +#. 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 "နေ့" + +#. 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 "" + +#: 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" +msgstr "" + +#. Option for the 'Send Alert On' (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Days Before" +msgstr "" + +#. Label of the days_in_advance (Int) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Days Before or After" +msgstr "" + +#: frappe/public/js/frappe/request.js:252 +msgid "Deadlock Occurred" +msgstr "" + +#: frappe/templates/emails/password_reset.html:1 +msgid "Dear" +msgstr "" + +#: frappe/templates/emails/administrator_logged_in.html:1 +msgid "Dear System Manager," +msgstr "" + +#: frappe/templates/emails/account_deletion_notification.html:1 +#: frappe/templates/emails/delete_data_confirmation.html:1 +msgid "Dear User," +msgstr "" + +#: frappe/templates/emails/download_data.html:1 +msgid "Dear {0}" +msgstr "" + +#. 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 "" + +#: frappe/public/js/frappe/views/reports/report_utils.js:318 +msgid "Decimal Separator must be '.' when Quoting is set to Non-numeric" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_utils.js:310 +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' +#. 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 "" + +#: frappe/contacts/doctype/address_template/address_template.py:41 +msgid "Default Address Template cannot be deleted" +msgstr "" + +#. 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 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 "" + +#: frappe/email/doctype/email_account/email_account_list.js:13 +msgid "Default Inbox" +msgstr "" + +#. 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 "" + +#. Label of the is_default (Check) field in DocType 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json +msgid "Default Letter Head" +msgstr "" + +#. Option for the 'Action' (Select) field in DocType 'Amended Document Naming +#. Settings' +#. Option for the 'Default Amendment Naming' (Select) field in DocType +#. '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 "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#: frappe/email/doctype/email_account/email_account_list.js:16 +msgid "Default Sending" +msgstr "" + +#: frappe/email/doctype/email_account/email_account_list.js:7 +msgid "Default Sending and Inbox" +msgstr "" + +#. Label of the sort_field (Data) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Default Sort Field" +msgstr "" + +#. Label of the sort_order (Select) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Default Sort Order" +msgstr "" + +#. 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 "" + +#: frappe/website/doctype/website_theme/website_theme.js:28 +msgid "Default Theme" +msgstr "" + +#. 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 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 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 "" + +#. 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 the default_workspace (Link) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Default Workspace" +msgstr "" + +#. 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:1377 +msgid "Default for 'Check' type of field {0} must be either '0' or '1'" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1390 +msgid "Default value for {0} must be in the list of options." +msgstr "" + +#: frappe/core/doctype/session_default_settings/session_default_settings.py:38 +msgid "Default {0}" +msgstr "" + +#. Description of the 'Heading' (Data) field in DocType 'Contact Us Settings' +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +msgid "Default: \"Contact Us\"" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/defaultvalue/defaultvalue.json +msgid "DefaultValue" +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 "" + +#: frappe/email/doctype/email_account/email_account.py:243 +msgid "Defaults Updated" +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 "" + +#. Description of the 'Delete Background Exported Reports After (Hours)' (Int) +#. field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Defines how long exported reports sent via email are kept in the system. Older files will be automatically deleted." +msgstr "" + +#. 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:627 +#: 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:1749 +#: frappe/public/js/frappe/views/treeview.js:329 +#: frappe/public/js/frappe/web_form/web_form_list.js:283 +#: frappe/templates/discussions/reply_card.html:35 +#: frappe/templates/discussions/reply_section.html:29 +msgid "Delete" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:2174 +msgctxt "Button in list view actions menu" +msgid "Delete" +msgstr "" + +#: frappe/website/doctype/web_form/templates/web_form.html:52 +msgctxt "Button in web form" +msgid "Delete" +msgstr "" + +#: frappe/www/me.html:65 +msgid "Delete Account" +msgstr "" + +#: frappe/public/js/frappe/form/grid.js:66 +msgid "Delete All" +msgstr "" + +#. Label of the delete_background_exported_reports_after (Int) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Delete Background Exported Reports After (Hours)" +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 "" + +#: frappe/public/js/frappe/views/kanban/kanban_view.js:116 +msgid "Delete Kanban Board" +msgstr "" + +#: frappe/public/js/form_builder/components/Section.vue:125 +msgctxt "Title of confirmation dialog" +msgid "Delete Section" +msgstr "" + +#: 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:944 +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:742 +msgid "Delete comment?" +msgstr "" + +#: 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 "" + +#: frappe/public/js/frappe/list/list_view.js:2179 +msgctxt "Title of confirmation dialog" +msgid "Delete {0} item permanently?" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:2185 +msgctxt "Title of confirmation dialog" +msgid "Delete {0} items permanently?" +msgstr "" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion +#. Request' +#. Option for the 'Status' (Select) field in DocType '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 "" + +#. Label of the deleted_doctype (Data) field in DocType 'Deleted Document' +#: frappe/core/doctype/deleted_document/deleted_document.json +msgid "Deleted DocType" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/deleted_document/deleted_document.json +msgid "Deleted Document" +msgstr "" + +#. Label of a Link in the Tools Workspace +#: frappe/automation/workspace/tools/tools.json +msgid "Deleted Documents" +msgstr "" + +#. Label of the deleted_name (Data) field in DocType 'Deleted Document' +#: frappe/core/doctype/deleted_document/deleted_document.json +msgid "Deleted Name" +msgstr "" + +#: frappe/desk/reportview.py:641 +msgid "Deleted all documents successfully" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form.js:211 +msgid "Deleted!" +msgstr "" + +#: frappe/desk/reportview.py:618 +msgid "Deleting {0}" +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:202 +msgid "Deleting {0} records..." +msgstr "" + +#: frappe/public/js/frappe/model/model.js:692 +msgid "Deleting {0}..." +msgstr "" + +#. 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 "" + +#: 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 "" + +#. 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:306 +msgid "Delimiter must be a single character" +msgstr "" + +#. Label of the delivery_status (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Delivery Status" +msgstr "" + +#. Option for the 'Sign ups' (Select) field in DocType '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 the department (Data) field in DocType 'Contact' +#: frappe/contacts/doctype/contact/contact.json +msgid "Department" +msgstr "" + +#. 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 "" + +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Dependencies & Licenses" +msgstr "" + +#. 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 "" + +#: frappe/public/js/frappe/ui/filters/filter.js:32 +msgid "Descendants Of" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:33 +msgid "Descendants Of (inclusive)" +msgstr "" + +#. 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 '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/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 "" + +#. Description of the 'Description' (Section Break) field in DocType +#. '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 the designation (Data) field in DocType 'Contact' +#: frappe/contacts/doctype/contact/contact.json +msgid "Designation" +msgstr "" + +#. Label of the desk_access (Check) field in DocType 'Role' +#: frappe/core/doctype/role/role.json +msgid "Desk Access" +msgstr "" + +#. Label of the desk_settings_section (Section Break) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Desk Settings" +msgstr "" + +#. Label of the desk_theme (Select) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Desk Theme" +msgstr "" + +#. Name of a role +#: 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 +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +msgid "Desktop Icon" +msgstr "" + +#: frappe/desk/doctype/desktop_icon/desktop_icon.py:225 +msgid "Desktop Icon already exists" +msgstr "" + +#. 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:152 +#: frappe/public/js/frappe/views/treeview.js:292 +msgid "Details" +msgstr "" + +#. 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 "" + +#: frappe/core/page/permission_manager/permission_manager.js:494 +msgid "Did not add" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager.js:388 +msgid "Did not remove" +msgstr "" + +#: frappe/public/js/frappe/utils/diffview.js:57 +msgid "Diff" +msgstr "" + +#. Description of the 'States' (Section Break) field in DocType 'Workflow' +#: frappe/workflow/doctype/workflow/workflow.json +msgid "Different \"States\" this document can exist in. Like \"Open\", \"Pending Approval\" etc." +msgstr "" + +#. 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 "" + +#. 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 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 "" + +#. 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 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 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 "" + +#. 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 "" + +#: frappe/core/doctype/report/report.js:39 +msgid "Disable Report" +msgstr "" + +#. 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 "" + +#. Label of the disable_scrolling (Check) field in DocType 'List View Settings' +#: frappe/desk/doctype/list_view_settings/list_view_settings.json +msgid "Disable Scrolling" +msgstr "" + +#. 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 "" + +#: frappe/website/doctype/website_settings/website_settings.js:146 +msgid "Disable Signup for your site" +msgstr "" + +#. 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 "" + +#. 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 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 the disable_signup (Check) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Disable signups" +msgstr "" + +#. 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' +#. 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' +#: 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 +msgid "Disabled" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.js:300 +msgid "Disabled Auto Reply" +msgstr "" + +#: 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:193 +msgid "Discard" +msgstr "" + +#: frappe/website/doctype/web_form/templates/web_form.html:44 +msgctxt "Button in web form" +msgid "Discard" +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:30 +msgctxt "Discard Email" +msgid "Discard" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:848 +msgid "Discard {0}" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form.js:190 +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 +#: frappe/website/doctype/discussion_reply/discussion_reply.json +msgid "Discussion Reply" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/discussion_topic/discussion_topic.json +msgid "Discussion Topic" +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:639 +#: frappe/templates/discussions/reply_card.html:16 +#: frappe/templates/discussions/reply_section.html:29 +msgid "Dismiss" +msgstr "" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:572 +msgctxt "Stop showing the onboarding widget." +msgid "Dismiss" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. Label of the depends_on (Code) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Display Depends On (JS)" +msgstr "" + +#: 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' +#: 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 "" + +#: frappe/public/js/frappe/form/grid.js:1195 +msgid "Do not edit headers which are preset in the template" +msgstr "" + +#: frappe/public/js/frappe/router.js:624 +msgid "Do not warn me again about {0}" +msgstr "" + +#: frappe/core/doctype/system_settings/system_settings.js:71 +msgid "Do you still want to proceed?" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:958 +msgid "Do you want to cancel all linked documents?" +msgstr "" + +#. Label of the webhook_docevent (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "Doc Event" +msgstr "" + +#. Label of the sb_doc_events (Section Break) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "Doc Events" +msgstr "" + +#. 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 "" + +#. Name of a DocType +#. Option for the 'Applied On' (Select) field in DocType 'Property Setter' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/property_setter/property_setter.json +msgid "DocField" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/docperm/docperm.json +msgid "DocPerm" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/docshare/docshare.json +msgid "DocShare" +msgstr "" + +#: 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 +#. Group in Module Def's connections +#. 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 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' +#. Label of the document_type (Link) field in DocType 'Workspace Quick List' +#. 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 +#: 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 "" + +#: frappe/core/doctype/doctype/doctype.py:1578 +msgid "DocType {0} provided for the field {1} must have atleast one Link field" +msgstr "" + +#. Name of a DocType +#. Option for the 'Applied On' (Select) field in DocType 'Property Setter' +#: frappe/core/doctype/doctype_action/doctype_action.json +#: frappe/custom/doctype/property_setter/property_setter.json +msgid "DocType Action" +msgstr "" + +#. Option for the 'Script Type' (Select) field in DocType '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 "" + +#. Name of a DocType +#: frappe/custom/doctype/doctype_layout/doctype_layout.json +msgid "DocType Layout" +msgstr "" + +#. Name of a DocType +#: frappe/custom/doctype/doctype_layout_field/doctype_layout_field.json +msgid "DocType Layout Field" +msgstr "" + +#. Name of a DocType +#. Option for the 'Applied On' (Select) field in DocType 'Property Setter' +#: frappe/core/doctype/doctype_link/doctype_link.json +#: frappe/custom/doctype/property_setter/property_setter.json +msgid "DocType Link" +msgstr "" + +#. Name of a DocType +#. Option for the 'Applied On' (Select) field in DocType 'Property Setter' +#: frappe/core/doctype/doctype_state/doctype_state.json +#: frappe/custom/doctype/property_setter/property_setter.json +msgid "DocType State" +msgstr "" + +#. 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 "" + +#: frappe/core/doctype/doctype/doctype.py:657 +msgid "DocType can not be merged" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:651 +msgid "DocType can only be renamed by Administrator" +msgstr "" + +#. 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:83 +msgid "DocType must be Submittable for the selected Doc Event" +msgstr "" + +#: frappe/client.py:403 +msgid "DocType must be a string" +msgstr "" + +#: frappe/public/js/form_builder/store.js:154 +msgid "DocType must have atleast one field" +msgstr "" + +#: 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' +#: frappe/workflow/doctype/workflow/workflow.json +msgid "DocType on which this Workflow is applicable." +msgstr "" + +#: frappe/public/js/frappe/views/kanban/kanban_settings.js:4 +msgid "DocType required" +msgstr "" + +#: frappe/modules/utils.py:175 +msgid "DocType {0} does not exist." +msgstr "" + +#: frappe/modules/utils.py:238 +msgid "DocType {} not found" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1029 +msgid "DocType's name should not start or end with whitespace" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.js:67 +msgid "DocTypes cannot be modified, please use {0} instead" +msgstr "" + +#. 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 "" + +#: frappe/core/doctype/doctype/doctype.py:1023 +msgid "Doctype name is limited to {0} characters ({1})" +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:3 +msgid "Doctype required" +msgstr "" + +#. 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 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 "" + +#. Label of the document_follow_notifications_section (Section Break) field in +#. DocType 'User' +#. Name of a DocType +#: frappe/core/doctype/user/user.json +#: frappe/email/doctype/document_follow/document_follow.json +msgid "Document Follow" +msgstr "" + +#: frappe/desk/form/document_follow.py:94 +msgid "Document Follow Notification" +msgstr "" + +#. Label of the document_name (Data) field in DocType 'Notification Log' +#: frappe/desk/doctype/notification_log/notification_log.json +msgid "Document Link" +msgstr "" + +#. 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 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 "" + +#: frappe/core/doctype/doctype/doctype.py:1212 +msgid "Document Links Row #{0}: Could not find field {1} in {2} DocType" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1232 +msgid "Document Links Row #{0}: Invalid doctype or fieldname." +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1195 +msgid "Document Links Row #{0}: Parent DocType is mandatory for internal links" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1201 +msgid "Document Links Row #{0}: Table Fieldname is mandatory for internal links" +msgstr "" + +#. 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 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/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 "" + +#: frappe/client.py:406 +msgid "Document Name must be a string" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/document_naming_rule/document_naming_rule.json +msgid "Document Naming Rule" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json +msgid "Document Naming Rule Condition" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Document Naming Settings" +msgstr "" + +#: frappe/model/document.py:478 +msgid "Document Queued" +msgstr "" + +#: frappe/core/doctype/deleted_document/deleted_document_list.js:38 +msgid "Document Restoration Summary" +msgstr "" + +#: frappe/core/doctype/deleted_document/deleted_document.py:68 +msgid "Document Restored" +msgstr "" + +#: 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 the enable_email_share (Check) field in DocType 'Notification +#. Settings' +#: frappe/desk/doctype/notification_settings/notification_settings.json +msgid "Document Share" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/document_share_key/document_share_key.json +msgid "Document Share Key" +msgstr "" + +#. 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 +#: frappe/core/report/document_share_report/document_share_report.json +#: frappe/core/workspace/users/users.json +msgid "Document Share Report" +msgstr "" + +#. 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 "" + +#: 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 "" + +#. Label of the tag (Link) field in DocType 'Tag Link' +#: frappe/desk/doctype/tag_link/tag_link.json +msgid "Document Tag" +msgstr "" + +#. Label of the title (Data) field in DocType 'Tag Link' +#: frappe/desk/doctype/tag_link/tag_link.json +msgid "Document Title" +msgstr "" + +#. 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' +#. 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:68 +#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json +#: frappe/workflow/doctype/workflow/workflow.json +msgid "Document Type" +msgstr "" + +#: frappe/desk/doctype/number_card/number_card.py:60 +msgid "Document Type and Function are required to create a number card" +msgstr "" + +#: frappe/permissions.py:149 +msgid "Document Type is not importable" +msgstr "" + +#: frappe/permissions.py:145 +msgid "Document Type is not submittable" +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 "" + +#: frappe/desk/doctype/global_search_settings/global_search_settings.py:40 +msgid "Document Type {0} has been repeated." +msgstr "" + +#. Label of the user_doctypes (Table) field in DocType 'User Type' +#: frappe/core/doctype/user_type/user_type.json +msgid "Document Types" +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 "" + +#. 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 "" + +#: frappe/core/doctype/submission_queue/submission_queue.py:163 +#: frappe/model/document.py:1959 +msgid "Document Unlocked" +msgstr "" + +#: 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:1302 +msgid "Document has been cancelled" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1301 +msgid "Document has been submitted" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1300 +msgid "Document is in draft state" +msgstr "" + +#: 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 "" + +#: frappe/model/rename_doc.py:229 frappe/public/js/frappe/form/toolbar.js:155 +msgid "Document renamed from {0} to {1}" +msgstr "" + +#: frappe/public/js/frappe/form/toolbar.js:164 +msgid "Document renaming from {0} to {1} has been queued" +msgstr "" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:397 +msgid "Document type is required to create a dashboard chart" +msgstr "" + +#: frappe/core/doctype/deleted_document/deleted_document.py:45 +msgid "Document {0} Already Restored" +msgstr "" + +#: frappe/workflow/doctype/workflow_action/workflow_action.py:203 +msgid "Document {0} has been set to state {1} by {2}" +msgstr "" + +#: frappe/client.py:430 +msgid "Document {0} {1} does not exist" +msgstr "" + +#. Label of the documentation (Data) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Documentation Link" +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 "" + +#: frappe/public/js/frappe/form/templates/form_dashboard.html:17 +msgid "Documents" +msgstr "စာရွက်စာတမ်းများ" + +#: frappe/core/doctype/deleted_document/deleted_document_list.js:25 +msgid "Documents restored successfully" +msgstr "" + +#: frappe/core/doctype/deleted_document/deleted_document_list.js:33 +msgid "Documents that failed to restore" +msgstr "" + +#: frappe/core/doctype/deleted_document/deleted_document_list.js:29 +msgid "Documents that were already restored" +msgstr "" + +#. Name of a DocType +#. 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 "" + +#. 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 +#: frappe/core/doctype/domain_settings/domain_settings.json +msgid "Domain Settings" +msgstr "" + +#. Label of the domains_html (HTML) field in DocType 'Domain Settings' +#: frappe/core/doctype/domain_settings/domain_settings.json +msgid "Domains HTML" +msgstr "" + +#. 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 "" + +#: frappe/public/js/frappe/data_import/import_preview.js:272 +msgid "Don't Import" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. Description of the 'Ignore XSS Filter' (Check) field in DocType '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 "" + +#: frappe/www/login.html:139 frappe/www/login.html:155 +#: frappe/www/update-password.html:70 +msgid "Don't have an account?" +msgstr "" + +#: 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 "" + +#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Donut" +msgstr "" + +#: frappe/public/js/form_builder/components/EditableInput.vue:43 +msgid "Double click to edit label" +msgstr "" + +#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:474 +#: frappe/email/doctype/auto_email_report/auto_email_report.js:8 +#: frappe/public/js/frappe/form/grid.js:66 +msgid "Download" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_utils.js:247 +msgctxt "Export report" +msgid "Download" +msgstr "" + +#. Label of a Link in the Tools Workspace +#: frappe/automation/workspace/tools/tools.json +#: frappe/desk/page/backups/backups.js:4 +msgid "Download Backups" +msgstr "" + +#: frappe/templates/emails/download_data.html:6 +msgid "Download Data" +msgstr "" + +#: frappe/desk/page/backups/backups.js:14 +msgid "Download Files Backup" +msgstr "" + +#: frappe/templates/emails/download_data.html:9 +msgid "Download Link" +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:134 +msgid "Download PDF" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:840 +msgid "Download Report" +msgstr "" + +#. Label of the download_template (Button) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Download Template" +msgstr "" + +#: 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 "" + +#: 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 "" + +#: 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 "" + +#: frappe/public/js/form_builder/components/Tabs.vue:189 +msgid "Drag & Drop a section here from another tab" +msgstr "" + +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:14 +msgid "Drag and drop files here or upload from" +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 "" + +#: 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 "" + +#: frappe/public/js/workflow_builder/WorkflowBuilder.vue:296 +msgid "Drag to add state" +msgstr "" + +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:189 +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 "" + +#. Label of the date (Date) field in DocType 'ToDo' +#: frappe/desk/doctype/todo/todo.json +msgid "Due Date" +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 "" + +#: frappe/public/js/frappe/form/grid_row_form.js:42 +#: frappe/public/js/frappe/form/toolbar.js:422 +msgid "Duplicate" +msgstr "" + +#: frappe/printing/doctype/print_format_field_template/print_format_field_template.py:53 +msgid "Duplicate Entry" +msgstr "" + +#: frappe/public/js/frappe/list/list_filter.js:144 +msgid "Duplicate Filter Name" +msgstr "" + +#: frappe/model/base_document.py:720 frappe/model/rename_doc.py:111 +msgid "Duplicate Name" +msgstr "" + +#: frappe/public/js/frappe/form/grid.js:66 +msgid "Duplicate Row" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:209 +msgid "Duplicate current row" +msgstr "" + +#: frappe/public/js/form_builder/components/Field.vue:245 +msgid "Duplicate field" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. 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' +#. 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' +#: 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 "" + +#. Option for the 'Row Format' (Select) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Dynamic" +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 "" + +#. 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' +#: 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:670 +#: frappe/public/js/frappe/form/footer/form_timeline.js:678 +#: 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:888 +#: frappe/public/js/frappe/views/reports/query_report.js:1791 +#: 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:359 +#: 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 "" + +#: frappe/public/js/frappe/list/list_view.js:2260 +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:350 +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 "" + +#: 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 "" + +#: frappe/public/js/frappe/form/toolbar.js:619 +msgid "Edit DocType" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1976 +msgctxt "Button in list view menu" +msgid "Edit DocType" +msgstr "" + +#: 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 "" + +#: 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:29 +msgid "Edit Format" +msgstr "" + +#: frappe/public/js/frappe/form/quick_entry.js:326 +msgid "Edit Full Form" +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 "" + +#: 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 "" + +#: 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 "" + +#: frappe/www/me.html:38 +msgid "Edit Profile" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:173 +msgid "Edit Properties" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:48 +msgid "Edit Quick List" +msgstr "" + +#: 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 "" + +#: frappe/desk/doctype/note/note.js:11 +msgid "Edit mode" +msgstr "" + +#: 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 "" + +#: frappe/public/js/frappe/web_form/web_form.js:470 +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 "" + +#: frappe/public/js/frappe/views/reports/report_view.js:683 +#: frappe/public/js/frappe/widgets/widget_dialog.js:52 +msgid "Edit {0}" +msgstr "" + +#. 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:58 +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Editable Grid" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row_form.js:42 +msgid "Editing Row" +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 "" + +#. 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 "" + +#: frappe/rate_limiter.py:152 +msgid "Either key or IP flag is required." +msgstr "" + +#. 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 +#. Option for the 'Type' (Select) field in DocType 'Communication' +#. 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 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 'User Invitation' +#. 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' +#. Label of a field in the request-data Web Form +#. Label of a field in the request-to-delete-data Web Form +#: 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/core/doctype/user_invitation/user_invitation.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/website/web_form/request_data/request_data.json +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +#: frappe/www/login.html:8 frappe/www/login.py:104 +msgid "Email" +msgstr "" + +#. Label of a Link in the Tools Workspace +#. 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 "" + +#: frappe/email/doctype/email_account/email_account.py:343 +msgid "Email Account Disabled." +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 "" + +#: frappe/core/doctype/user/user.py:749 +msgid "Email Account added multiple times" +msgstr "" + +#: frappe/email/smtp.py:43 +msgid "Email Account not setup. Please create a new Email Account from Settings > Email Account" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:576 +msgid "Email Account {0} Disabled" +msgstr "" + +#. 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 "" + +#. 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 "" + +#: frappe/email/doctype/email_group/email_group.js:43 +msgid "Email Addresses" +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 "" + +#. Name of a DocType +#: frappe/email/doctype/email_flag_queue/email_flag_queue.json +msgid "Email Flag Queue" +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 "" + +#. Label of a Link in the Tools Workspace +#. 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 "" + +#. Name of a DocType +#: frappe/email/doctype/email_group_member/email_group_member.json +msgid "Email Group Member" +msgstr "" + +#. 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 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 "" + +#. Label of the email_ids (Table) field in DocType 'Contact' +#: frappe/contacts/doctype/contact/contact.json +msgid "Email IDs" +msgstr "" + +#. Label of the email_id (Data) field in DocType 'Contact Us Settings' +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:48 +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +msgid "Email Id" +msgstr "" + +#. Label of the email_inbox (Section Break) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Email Inbox" +msgstr "" + +#. Name of a DocType +#: frappe/email/doctype/email_queue/email_queue.json +msgid "Email Queue" +msgstr "" + +#. Name of a DocType +#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json +msgid "Email Queue Recipient" +msgstr "" + +#: frappe/email/queue.py:161 +msgid "Email Queue flushing aborted due to too many failures." +msgstr "" + +#. Description of a DocType +#: frappe/email/doctype/email_queue/email_queue.json +msgid "Email Queue records." +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 "" + +#. 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 +#: frappe/email/doctype/email_rule/email_rule.json +msgid "Email Rule" +msgstr "" + +#. Label of the email_sent_at (Datetime) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.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' +#. 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 "" + +#. Label of the email_signature (Text Editor) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Email Signature" +msgstr "" + +#. Label of the email_status (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Email Status" +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 "" + +#. Label of a Link in the Tools Workspace +#. 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 "" + +#. 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 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 "" + +#. Name of a DocType +#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json +msgid "Email Unsubscribe" +msgstr "" + +#: frappe/core/doctype/communication/communication.js:342 +msgid "Email has been marked as spam" +msgstr "" + +#: frappe/core/doctype/communication/communication.js:355 +msgid "Email has been moved to trash" +msgstr "" + +#: frappe/core/doctype/user/user.js:266 +msgid "Email is mandatory to create User Email" +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:822 +msgid "Email not sent to {0} (unsubscribed / disabled)" +msgstr "" + +#: frappe/utils/oauth.py:163 +msgid "Email not verified with {0}" +msgstr "" + +#: 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 "" + +#. 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 "" + +#: frappe/website/doctype/web_form/web_form.js:34 +msgid "Embed code copied" +msgstr "" + +#: frappe/database/query.py:1539 +msgid "Empty alias is not allowed" +msgstr "" + +#: frappe/public/js/form_builder/components/Section.vue:285 +msgid "Empty column" +msgstr "" + +#: frappe/database/query.py:1457 +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 "" + +#. 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 "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:123 +msgid "Enable Allow Auto Repeat for the doctype {0} in Customize Form" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. Label of the enable_comments (Check) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +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_notifications (Check) field in DocType +#. 'Notification Settings' +#: frappe/desk/doctype/notification_settings/notification_settings.json +msgid "Enable Email Notifications" +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 "" + +#. 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 "" + +#. 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 "" + +#. Label of the enable_onboarding (Check) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Enable Onboarding" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. 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 the enable_print_server (Check) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Enable Print Server" +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 "" + +#. 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 the enable_raw_printing (Check) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Enable Raw Printing" +msgstr "" + +#: frappe/core/doctype/report/report.js:39 +msgid "Enable Report" +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 "" + +#: frappe/core/doctype/rq_job/rq_job_list.js:23 +msgid "Enable Scheduler" +msgstr "" + +#. Label of the enable_security (Check) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "Enable Security" +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 "" + +#: frappe/website/doctype/website_settings/website_settings.js:139 +msgid "Enable Tracking Page Views" +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:438 +msgid "Enable Two Factor Auth" +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 "" + +#: frappe/website/doctype/web_template/web_template.py:33 +msgid "Enable developer mode to create a standard Web Template" +msgstr "" + +#. Description of the 'Modal Trigger' (Check) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Enable if on click\n" +"opens modal." +msgstr "" + +#. 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 "" + +#. 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' +#. Label of the enabled (Check) field in DocType 'Workflow Transition Task' +#: 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 +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Enabled" +msgstr "" + +#: frappe/core/doctype/rq_job/rq_job_list.js:29 +msgid "Enabled Scheduler" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:1010 +msgid "Enabled email inbox for user {0}" +msgstr "" + +#. Description of the 'Is Calendar and Gantt' (Check) field in DocType +#. '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 "" + +#: 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 a DocType +#. 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' +#. 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 the encrypt_backup (Check) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Encrypt Backups" +msgstr "" + +#: frappe/utils/password.py:196 +msgid "Encryption key is in invalid format!" +msgstr "" + +#: frappe/utils/password.py:211 +msgid "Encryption key is invalid! Please check site_config.json" +msgstr "" + +#: 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:150 +#: 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 "" + +#. 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 "" + +#: frappe/website/doctype/web_page/web_page.py:208 +msgid "End Date cannot be before Start Date!" +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:146 +msgid "End Date cannot be today." +msgstr "" + +#. 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 the sb_endpoints_section (Section Break) field in DocType +#. 'Connected App' +#: frappe/integrations/doctype/connected_app/connected_app.json +msgid "Endpoints" +msgstr "" + +#. Label of the ends_on (Datetime) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Ends on" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Notification Log' +#: frappe/desk/doctype/notification_log/notification_log.json +msgid "Energy Point" +msgstr "" + +#. Label of the enqueued_by (Data) field in DocType 'Submission Queue' +#: frappe/core/doctype/submission_queue/submission_queue.json +msgid "Enqueued By" +msgstr "" + +#: 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 "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:109 +msgid "Enter Client Id and Client Secret in Google Settings." +msgstr "" + +#: frappe/templates/includes/login/login.js:351 +msgid "Enter Code displayed in OTP App." +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:777 +msgid "Enter Email Recipient(s)" +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 "" + +#: frappe/public/js/frappe/ui/messages.js:94 +msgctxt "Title of prompt dialog" +msgid "Enter Value" +msgstr "" + +#: 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' +#: 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 "" + +#: frappe/public/js/frappe/views/file/file_view.js:111 +msgid "Enter folder name" +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 "" + +#. 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 "" + +#. 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 "" + +#: frappe/public/js/frappe/ui/messages.js:341 +msgid "Enter your password" +msgstr "" + +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js:22 +msgid "Entity Name" +msgstr "" + +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js:9 +msgid "Entity Type" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:16 +msgid "Equals" +msgstr "" + +#. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#. Option for the 'Status' (Select) field in DocType 'Data Import' +#. Label of the error (Code) field in DocType 'Error Log' +#. Option for the 'Status' (Select) field in DocType '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/api/user_invitation.py:73 frappe/core/api/user_invitation.py:78 +#: frappe/core/api/user_invitation.py:84 frappe/core/api/user_invitation.py:115 +#: 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/core/doctype/user_invitation/user_invitation.py:95 +#: frappe/core/doctype/user_invitation/user_invitation.py:99 +#: frappe/core/doctype/user_invitation/user_invitation.py:102 +#: frappe/core/doctype/user_invitation/user_invitation.py:125 +#: frappe/core/doctype/user_invitation/user_invitation.py:127 +#: 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 "" + +#: frappe/public/js/frappe/web_form/web_form.js:264 +msgctxt "Title of error message in web form" +msgid "Error" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/error_log/error_log.json +msgid "Error Log" +msgstr "" + +#. Label of a Link in the Build Workspace +#: frappe/core/workspace/build/build.json +msgid "Error Logs" +msgstr "" + +#. Label of the error_message (Text) field in DocType 'Prepared Report' +#: frappe/core/doctype/prepared_report/prepared_report.json +msgid "Error Message" +msgstr "" + +#: frappe/public/js/frappe/form/print_utils.js:156 +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 "" + +#: frappe/email/doctype/email_domain/email_domain.py:32 +msgid "Error connecting via IMAP/POP3: {e}" +msgstr "" + +#: frappe/email/doctype/email_domain/email_domain.py:33 +msgid "Error connecting via SMTP: {e}" +msgstr "" + +#: frappe/email/doctype/email_domain/email_domain.py:101 +msgid "Error has occurred in {0}" +msgstr "" + +#: frappe/public/js/frappe/form/script_manager.js:199 +msgid "Error in Client Script" +msgstr "" + +#: frappe/public/js/frappe/form/script_manager.js:256 +msgid "Error in Client Script." +msgstr "" + +#: frappe/printing/doctype/letter_head/letter_head.js:21 +msgid "Error in Header/Footer Script" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:642 +#: frappe/email/doctype/notification/notification.py:782 +#: frappe/email/doctype/notification/notification.py:788 +msgid "Error in Notification" +msgstr "" + +#: frappe/utils/pdf.py:59 +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 "" + +#: frappe/email/doctype/notification/notification.py:779 +msgid "Error while evaluating Notification {0}. Please fix your template." +msgstr "" + +#: frappe/model/base_document.py:860 +msgid "Error: Data missing in table {0}" +msgstr "" + +#: frappe/model/base_document.py:870 +msgid "Error: Value missing for {0}: {1}" +msgstr "" + +#: frappe/model/base_document.py:864 +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' +#. Name of a DocType +#. Option for the 'Event Category' (Select) field in DocType 'Event' +#: frappe/core/doctype/communication/communication.json +#: frappe/desk/doctype/event/event.json +msgid "Event" +msgstr "" + +#. Label of the event_category (Select) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Event Category" +msgstr "" + +#. 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 +#: frappe/desk/doctype/event/event.json +#: frappe/desk/doctype/event_participants/event_participants.json +msgid "Event Participants" +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 "" + +#: 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 "" + +#. 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 "" + +#: frappe/public/js/frappe/ui/notifications/notifications.js:56 +msgid "Events" +msgstr "" + +#: frappe/desk/doctype/event/event.py:278 +msgid "Events in Today's Calendar" +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 "" + +#. Description of the 'Custom Options' (Code) field in DocType 'Dashboard +#. Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Ex: \"colors\": [\"#d1d8dd\", \"#ff5858\"]" +msgstr "" + +#. 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 the example (HTML) field in DocType 'Workflow Transition' +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +msgid "Example" +msgstr "" + +#. Description of the 'Default Portal Home' (Data) field in DocType 'Portal +#. Settings' +#: frappe/website/doctype/portal_settings/portal_settings.json +msgid "Example: \"/desk\"" +msgstr "" + +#. Description of the 'Path' (Data) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Example: #Tree/Account" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. Description of the 'Description' (Small Text) field in DocType 'Assignment +#. Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Example: {{ subject }}" +msgstr "" + +#. Option for the 'File Type' (Select) field in DocType 'Data Export' +#: frappe/core/doctype/data_export/data_export.json +msgid "Excel" +msgstr "" + +#: frappe/public/js/frappe/form/controls/password.js:90 +msgid "Excellent" +msgstr "" + +#. 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 "" + +#. 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 "" + +#: frappe/desk/doctype/system_console/system_console.js:10 +msgid "Execute Console script" +msgstr "" + +#: frappe/public/js/frappe/ui/dropdown_console.js:132 +msgid "Executing Code" +msgstr "" + +#: frappe/desk/doctype/system_console/system_console.js:18 +msgid "Executing..." +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:2140 +msgid "Execution Time: {0} sec" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Executive" +msgstr "" + +#. 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 "" + +#: frappe/public/js/frappe/form/controls/code.js:185 +msgctxt "Enlarge code field." +msgid "Expand" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:2121 +#: frappe/public/js/frappe/views/treeview.js:133 +msgid "Expand All" +msgstr "" + +#: frappe/database/query.py:354 +msgid "Expected 'and' or 'or' operator, found: {0}" +msgstr "" + +#: frappe/public/js/frappe/form/templates/form_sidebar.html:23 +msgid "Experimental" +msgstr "" + +#. 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' +#. Option for the 'Status' (Select) field in DocType 'User Invitation' +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/user_invitation/user_invitation.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 "" + +#. 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:1828 +#: frappe/public/js/frappe/views/reports/report_view.js:1629 +#: frappe/public/js/frappe/widgets/chart_widget.js:315 +msgid "Export" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:2282 +msgctxt "Button in list view actions menu" +msgid "Export" +msgstr "" + +#: frappe/public/js/frappe/data_import/data_exporter.js:245 +msgid "Export 1 record" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:262 +msgid "Export Custom Permissions" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:242 +msgid "Export Customizations" +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 "" + +#: frappe/core/doctype/data_import/data_import.js:86 +#: frappe/public/js/frappe/data_import/import_preview.js:199 +msgid "Export Errored Rows" +msgstr "" + +#. Label of the export_from (Data) field in DocType 'Access Log' +#: frappe/core/doctype/access_log/access_log.json +msgid "Export From" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:518 +msgid "Export Import Log" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_utils.js:245 +msgctxt "Export report" +msgid "Export Report: {0}" +msgstr "" + +#: frappe/public/js/frappe/data_import/data_exporter.js:26 +msgid "Export Type" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1640 +msgid "Export all matching rows?" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1650 +msgid "Export all {0} rows?" +msgstr "" + +#: frappe/public/js/frappe/views/file/file_view.js:154 +msgid "Export as zip" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_utils.js:184 +msgid "Export in Background" +msgstr "" + +#: frappe/public/js/frappe/utils/tools.js:11 +msgid "Export not allowed. You need {0} role to export." +msgstr "" + +#. 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 "" + +#. 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 "" + +#: frappe/public/js/frappe/data_import/data_exporter.js:247 +msgid "Export {0} records" +msgstr "" + +#: 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 "" + +#. 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 "" + +#. 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 "" + +#. Description of the 'Condition' (Data) field in DocType 'Notification +#. Recipient' +#: frappe/email/doctype/notification_recipient/notification_recipient.json +msgid "Expression, Optional" +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 "" + +#. 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' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "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' +#. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log' +#. Option for the 'Status' (Select) field in DocType '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 "" + +#. 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 "" + +#. 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:362 +msgid "Failed Transactions" +msgstr "" + +#: frappe/utils/synchronization.py:46 +msgid "Failed to aquire lock: {}. Lock may be held by another process." +msgstr "" + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:359 +msgid "Failed to change password." +msgstr "" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:232 +#: frappe/desk/page/setup_wizard/setup_wizard.py:42 +msgid "Failed to complete setup" +msgstr "" + +#: frappe/integrations/doctype/webhook/webhook.py:141 +msgid "Failed to compute request body: {}" +msgstr "" + +#: 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 "" + +#: frappe/auth.py:701 +msgid "Failed to decode token, please provide a valid base64-encoded token." +msgstr "" + +#: frappe/utils/password.py:210 +msgid "Failed to decrypt key {0}" +msgstr "" + +#: frappe/desk/reportview.py:635 +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 "" + +#: frappe/email/doctype/notification/notification.py:105 +#: frappe/integrations/doctype/webhook/webhook.py:131 +msgid "Failed to evaluate conditions: {}" +msgstr "" + +#: frappe/types/exporter.py:205 +msgid "Failed to export python type hints" +msgstr "" + +#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:249 +msgid "Failed to generate names from the series" +msgstr "" + +#: frappe/core/doctype/document_naming_settings/document_naming_settings.js:75 +msgid "Failed to generate preview of series" +msgstr "" + +#: frappe/handler.py:76 +msgid "Failed to get method for command {0} with {1}" +msgstr "" + +#: frappe/api/v2.py:46 +msgid "Failed to get method {0} with {1}" +msgstr "" + +#: 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 "" + +#: frappe/utils/image.py:75 +msgid "Failed to optimize image: {0}" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:122 +msgid "Failed to render message: {}" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:140 +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 "" + +#: frappe/desk/doctype/notification_log/notification_log.py:43 +msgid "Failed to send notification email" +msgstr "" + +#: frappe/desk/page/setup_wizard/setup_wizard.py:24 +msgid "Failed to update global settings" +msgstr "" + +#: 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 "" + +#. 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 "" + +#. Label of the fax (Data) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "Fax" +msgstr "" + +#: frappe/public/js/frappe/form/templates/form_sidebar.html:33 +msgid "Feedback" +msgstr "" + +#: frappe/desk/page/setup_wizard/install_fixtures.py:29 +msgid "Female" +msgstr "" + +#. 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 "" + +#: frappe/website/doctype/website_slideshow/website_slideshow.js:15 +msgid "Fetch Images" +msgstr "" + +#: frappe/website/doctype/website_slideshow/website_slideshow.js:13 +msgid "Fetch attached images from document" +msgstr "" + +#. 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 "" + +#: frappe/desk/doctype/global_search_settings/global_search_settings.py:61 +msgid "Fetching default Global Search documents." +msgstr "" + +#. 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:1887 +#: 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 "" + +#: frappe/core/doctype/doctype/doctype.py:418 +msgid "Field \"route\" is mandatory for Web Views" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1527 +msgid "Field \"title\" is mandatory if \"Website Search Field\" is set." +msgstr "" + +#: frappe/desk/doctype/bulk_update/bulk_update.js:17 +msgid "Field \"value\" is mandatory. Please specify value to be updated" +msgstr "" + +#. Label of the description (Text) field in DocType 'Custom Field' +#: frappe/custom/doctype/custom_field/custom_field.json +msgid "Field Description" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1078 +msgid "Field Missing" +msgstr "" + +#. 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 "" + +#: frappe/public/js/print_format_builder/PrintFormatSection.vue:141 +msgid "Field Orientation (Left-Right)" +msgstr "" + +#: frappe/public/js/print_format_builder/PrintFormatSection.vue:148 +msgid "Field Orientation (Top-Down)" +msgstr "" + +#: 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 "" + +#: frappe/desk/reportview.py:202 +msgid "Field not permitted in query" +msgstr "" + +#. Description of the 'Workflow State Field' (Data) field in DocType '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 "" + +#. Label of the track_field (Select) field in DocType 'Milestone Tracker' +#: frappe/automation/doctype/milestone_tracker/milestone_tracker.json +msgid "Field to Track" +msgstr "" + +#: frappe/custom/doctype/property_setter/property_setter.py:51 +msgid "Field type cannot be changed for {0}" +msgstr "" + +#: frappe/database/database.py:919 +msgid "Field {0} does not exist on {1}" +msgstr "" + +#: frappe/desk/form/meta.py:184 +msgid "Field {0} is referring to non-existing doctype {1}." +msgstr "" + +#: frappe/public/js/frappe/form/form.js:1756 +msgid "Field {0} not found." +msgstr "" + +#: frappe/email/doctype/notification/notification.py:547 +msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link" +msgstr "" + +#. 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:455 +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Fieldname" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:271 +msgid "Fieldname '{0}' conflicting with a {1} of the name {2} in {3}" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1077 +msgid "Fieldname called {0} must exist to enable autonaming" +msgstr "" + +#: frappe/database/schema.py:131 frappe/database/schema.py:408 +msgid "Fieldname is limited to 64 characters ({0})" +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.py:197 +msgid "Fieldname not set for Custom Field" +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.js:107 +msgid "Fieldname which will be the DocType for this link field." +msgstr "" + +#: frappe/public/js/form_builder/store.js:175 +msgid "Fieldname {0} appears multiple times" +msgstr "" + +#: frappe/database/schema.py:398 +msgid "Fieldname {0} cannot have special characters like {1}" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1921 +msgid "Fieldname {0} conflicting with meta object" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:497 +#: frappe/public/js/form_builder/utils.js:302 +msgid "Fieldname {0} is restricted" +msgstr "" + +#. 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:133 +#: 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 "" + +#. Label of the fields_multicheck (HTML) field in DocType 'Data Export' +#: frappe/core/doctype/data_export/data_export.json +msgid "Fields Multicheck" +msgstr "" + +#: frappe/core/doctype/file/file.py:431 +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:613 +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" +msgstr "" + +#. 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 "" + +#: frappe/custom/doctype/custom_field/custom_field.py:193 +msgid "Fieldtype cannot be changed from {0} to {1}" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.py:593 +msgid "Fieldtype cannot be changed from {0} to {1} in row {2}" +msgstr "" + +#. Label of a shortcut in the Tools Workspace +#. Name of a DocType +#. Option for the 'Select List View' (Select) field in DocType '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 "" + +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:498 +msgid "File \"{0}\" was skipped because of invalid file type" +msgstr "" + +#: frappe/core/doctype/file/utils.py:128 +msgid "File '{0}' not found" +msgstr "" + +#. 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 "" + +#: frappe/public/js/frappe/views/file/file_view.js:74 +msgid "File Manager" +msgstr "" + +#. Label of the file_name (Data) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "File Name" +msgstr "" + +#. Label of the file_size (Int) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "File Size" +msgstr "" + +#. 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 "" + +#. Label of the file_url (Code) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "File URL" +msgstr "" + +#: frappe/desk/page/backups/backups.py:107 +msgid "File backup is ready" +msgstr "" + +#: frappe/core/doctype/file/file.py:649 +msgid "File name cannot have {0}" +msgstr "" + +#: frappe/utils/csvutils.py:28 +msgid "File not attached" +msgstr "" + +#: frappe/core/doctype/file/file.py:759 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 "" + +#: frappe/public/js/frappe/request.js:198 +msgid "File too big" +msgstr "" + +#: frappe/core/doctype/file/file.py:390 +msgid "File type of {0} is not allowed" +msgstr "" + +#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:451 +msgid "File {0} does not exist" +msgstr "" + +#. Label of a Link in the Tools Workspace +#. 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 "" + +#: 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:208 +#: frappe/desk/doctype/number_card/number_card.js:347 +#: frappe/email/doctype/auto_email_report/auto_email_report.js:93 +#: frappe/public/js/frappe/list/base_list.js:969 +#: frappe/public/js/frappe/ui/filters/filter_list.js:134 +#: frappe/website/doctype/web_form/web_form.js:197 +msgid "Filter" +msgstr "" + +#: 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 "" + +#. Label of the filter_list (HTML) field in DocType 'Data Export' +#: frappe/core/doctype/data_export/data_export.json +msgid "Filter List" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. Label of the filter_values (HTML) field in DocType 'Prepared Report' +#: frappe/core/doctype/prepared_report/prepared_report.json +msgid "Filter Values" +msgstr "" + +#: frappe/database/query.py:360 +msgid "Filter condition missing after operator: {0}" +msgstr "" + +#: frappe/database/query.py:427 +msgid "Filter fields cannot contain backticks (`)." +msgstr "" + +#: 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 "" + +#: frappe/public/js/frappe/data_import/data_exporter.js:33 +msgid "Filtered Records" +msgstr "" + +#: frappe/website/doctype/help_article/help_article.py:91 frappe/www/list.py:45 +msgid "Filtered by \"{0}\"" +msgstr "" + +#. 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 (Code) field in DocType 'Notification' +#. Option for the 'Condition Type' (Select) field in DocType 'Notification' +#. Label of the filters_section (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 "" + +#. 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 the filters_display (HTML) field in DocType 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Filters Display" +msgstr "" + +#. Label of the filters_editor (HTML) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Filters Editor" +msgstr "" + +#. 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 "" + +#. Label of the filters_section (Section Break) field in DocType 'Number Card' +#: frappe/desk/doctype/number_card/number_card.json +msgid "Filters Section" +msgstr "" + +#: frappe/public/js/frappe/form/controls/link.js:514 +msgid "Filters applied for {0}" +msgstr "" + +#: frappe/public/js/frappe/views/kanban/kanban_view.js:202 +msgid "Filters saved" +msgstr "" + +#. Description of the 'Script' (Code) field in DocType '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 "" + +#: frappe/public/js/frappe/ui/filters/filter_list.js:133 +msgid "Filters {0}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1429 +msgid "Filters:" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:581 +msgid "Find '{0}' in ..." +msgstr "" + +#: 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:150 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:153 +msgid "Find {0} in {1}" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Submission Queue' +#: frappe/core/doctype/submission_queue/submission_queue.json +msgid "Finished" +msgstr "" + +#. 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 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 "" + +#. Label of the first_name (Data) field in DocType 'Contact' +#. Label of the first_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form +#: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:44 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:15 +msgid "First Name" +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 "" + +#: frappe/core/doctype/data_export/exporter.py:185 +msgid "First data column must be blank." +msgstr "" + +#: frappe/website/doctype/website_slideshow/website_slideshow.js:7 +msgid "First set the name and save the record." +msgstr "" + +#: 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 "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. 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' +#. Option for the 'Fieldtype' (Select) field in DocType '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 "" + +#. Label of the float_precision (Select) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Float Precision" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. 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/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 "" + +#: frappe/core/doctype/doctype/doctype.py:1451 +msgid "Fold can not be at the end of the form" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1449 +msgid "Fold must come before a Section Break" +msgstr "" + +#. Label of the folder (Link) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "Folder" +msgstr "" + +#. Label of the folder_name (Data) field in DocType 'IMAP Folder' +#: frappe/email/doctype/imap_folder/imap_folder.json +msgid "Folder Name" +msgstr "" + +#: frappe/public/js/frappe/views/file/file_view.js:100 +msgid "Folder name should not include '/' (slash)" +msgstr "" + +#: frappe/core/doctype/file/file.py:497 +msgid "Folder {0} is not empty" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Folio" +msgstr "" + +#: frappe/public/js/frappe/form/templates/form_sidebar.html:106 +#: frappe/public/js/frappe/form/toolbar.js:879 +msgid "Follow" +msgstr "" + +#: 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 "" + +#: 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 "" + +#: frappe/public/js/frappe/ui/field_group.js:139 +msgid "Following fields have invalid values:" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:358 +msgid "Following fields have missing values" +msgstr "" + +#: frappe/public/js/frappe/ui/field_group.js:126 +msgid "Following fields have missing values:" +msgstr "" + +#. Label of the font (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Font" +msgstr "" + +#. Label of the font_properties (Data) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Font Properties" +msgstr "" + +#. 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 "" + +#. Label of the section_break_8 (Section Break) field in DocType 'Print +#. Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Fonts" +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' +#. 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 "" + +#. 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 the footer_source (Select) field in DocType 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json +msgid "Footer Based On" +msgstr "" + +#. 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 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 the footer (HTML Editor) field in DocType 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json +msgid "Footer HTML" +msgstr "" + +#: frappe/printing/doctype/letter_head/letter_head.py:81 +msgid "Footer HTML set from attachment {0}" +msgstr "" + +#. 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 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 "" + +#. Label of the footer_logo (Attach Image) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Footer Logo" +msgstr "" + +#. 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 "" + +#. 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 "" + +#: frappe/printing/page/print/print.js:129 +msgid "Footer might not be visible as {0} option is disabled
" +msgstr "" + +#. Description of the 'Footer HTML' (HTML Editor) field in DocType 'Letter +#. Head' +#: frappe/printing/doctype/letter_head/letter_head.json +msgid "Footer will display correctly only in 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' +#: frappe/custom/doctype/property_setter/property_setter.json +msgid "For DocType Link / DocType Action" +msgstr "" + +#. Label of the for_document (Dynamic Link) field in DocType 'Permission Log' +#: frappe/core/doctype/permission_log/permission_log.json +msgid "For Document" +msgstr "" + +#: frappe/core/doctype/user_permission/user_permission_list.js:155 +msgid "For Document Type" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:566 +msgid "For Example: {} Open" +msgstr "" + +#. Description of the 'Options' (Small Text) field in DocType 'DocField' +#. Description of the 'Options' (Small Text) field in DocType 'Customize Form +#. Field' +#: 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 "" + +#. 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 "" + +#. Label of the for_value (Dynamic Link) field in DocType 'User Permission' +#: frappe/core/doctype/user_permission/user_permission.json +msgid "For Value" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:2137 +#: frappe/public/js/frappe/views/reports/report_view.js:108 +msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)." +msgstr "" + +#: 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 "" + +#. Description of the 'Format' (Data) field in DocType 'Workspace Shortcut' +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +msgid "For example: {} Open" +msgstr "" + +#. 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 "" + +#: frappe/integrations/doctype/google_settings/google_settings.js:7 +msgid "For more information, {0}." +msgstr "" + +#. Description of the 'Email To' (Small Text) field in DocType '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 "" + +#: frappe/core/doctype/data_export/exporter.py:197 +msgid "For updating, you can update only selective columns." +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1765 +msgid "For {0} at level {1} in {2} in row {3}" +msgstr "" + +#. Label of the force (Check) field in DocType 'Package Import' +#. Option for the 'Skip Authorization' (Select) field in DocType 'OAuth +#. Provider Settings' +#: frappe/core/doctype/package_import/package_import.json +#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json +msgid "Force" +msgstr "" + +#. 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 the force_show (Check) field in DocType 'Desktop Icon' +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +msgid "Force Show" +msgstr "" + +#: frappe/core/doctype/rq_job/rq_job.js:13 +msgid "Force Stop job" +msgstr "" + +#. 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 "" + +#. 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 "" + +#: frappe/www/login.html:37 +msgid "Forgot Password?" +msgstr "" + +#. Label of the form_builder_tab (Tab Break) field in DocType 'DocType' +#. Option for the 'Apply To' (Select) field in DocType 'Client Script' +#. Label of the form_tab (Tab Break) field in DocType 'Customize Form' +#. Option for the 'View' (Select) field in DocType '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:96 +#: frappe/website/doctype/web_form/web_form.json +msgid "Form" +msgstr "" + +#. 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 the form_dict (Code) field in DocType 'Recorder' +#: frappe/core/doctype/recorder/recorder.json +msgid "Form Dict" +msgstr "" + +#. 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 "" + +#. 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 +#: 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' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "Form URL-Encoded" +msgstr "" + +#. 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 "" + +#. Label of the format_data (Code) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Format Data" +msgstr "" + +#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Fortnightly" +msgstr "" + +#: frappe/core/doctype/communication/communication.js:70 +msgid "Forward" +msgstr "" + +#. 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 "" + +#. Label of the fraction (Data) field in DocType 'Currency' +#: frappe/geo/doctype/currency/currency.json +msgid "Fraction" +msgstr "" + +#. Label of the fraction_units (Int) field in DocType 'Currency' +#: frappe/geo/doctype/currency/currency.json +msgid "Fraction Units" +msgstr "" + +#. Option for the 'Social Login Provider' (Select) field in DocType '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 "" + +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Frappe Blog" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Frappe Forum" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/about.js:8 +msgid "Frappe Framework" +msgstr "" + +#: 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: Route +#: frappe/hooks.py +msgid "Frappe Support" +msgstr "" + +#: frappe/website/doctype/web_page/web_page.js:92 +msgid "Frappe page builder using components" +msgstr "" + +#: frappe/public/js/frappe/file_uploader/ImageCropper.vue:112 +msgctxt "Image Cropper" +msgid "Free" +msgstr "" + +#. 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 "" + +#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day' +#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day' +#. 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' +#. 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 "" + +#. 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 "" + +#: frappe/public/js/frappe/views/communication.js:197 +msgctxt "Email Sender" +msgid "From" +msgstr "" + +#. 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 "" + +#. 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 "" + +#: frappe/public/js/frappe/views/reports/query_report.js:1848 +msgid "From Document Type" +msgstr "" + +#. Label of the sender_full_name (Data) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "From Full Name" +msgstr "" + +#. Label of the from_user (Link) field in DocType 'Notification Log' +#: frappe/desk/doctype/notification_log/notification_log.json +msgid "From User" +msgstr "" + +#: frappe/public/js/frappe/utils/diffview.js:31 +msgid "From version" +msgstr "" + +#. Option for the 'Width' (Select) field in DocType 'Dashboard Chart Link' +#: frappe/desk/doctype/dashboard_chart_link/dashboard_chart_link.json +msgid "Full" +msgstr "" + +#. 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' +#: 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 +msgid "Full Name" +msgstr "" + +#: frappe/printing/page/print/print.js:80 +#: frappe/public/js/frappe/form/templates/print_layout.html:42 +msgid "Full Page" +msgstr "" + +#. Label of the full_width (Check) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Full Width" +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:246 +#: frappe/public/js/frappe/widgets/widget_dialog.js:699 +msgid "Function" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:706 +msgid "Function Based On" +msgstr "" + +#: frappe/__init__.py:466 +msgid "Function {0} is not whitelisted." +msgstr "" + +#: frappe/database/query.py:1419 +msgid "Function {0} requires arguments but none were provided" +msgstr "" + +#: frappe/public/js/frappe/views/treeview.js:419 +msgid "Further sub-groups can only be created under records marked as 'Group'" +msgstr "" + +#: frappe/core/doctype/communication/communication.js:291 +msgid "Fw: {0}" +msgstr "" + +#. Option for the 'Method' (Select) field in DocType 'Recorder' +#: frappe/core/doctype/recorder/recorder.json +msgid "GET" +msgstr "" + +#. Option for the 'Service' (Select) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "GMail" +msgstr "" + +#. Option for the 'License Type' (Select) field in DocType 'Package' +#: frappe/core/doctype/package/package.json +msgid "GNU Affero General Public License" +msgstr "" + +#. Option for the 'License Type' (Select) field in DocType 'Package' +#: frappe/core/doctype/package/package.json +msgid "GNU General Public License" +msgstr "" + +#. Option for the 'Select List View' (Select) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/public/js/frappe/views/gantt/gantt_view.js:10 +msgid "Gantt" +msgstr "" + +#: frappe/public/js/frappe/list/base_list.js:205 +msgid "Gantt View" +msgstr "" + +#. 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 "" + +#: 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:882 +msgid "Generate New Report" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:394 +msgid "Generate Random Password" +msgstr "" + +#. Label of the generate_separate_documents_for_each_assignee (Check) field in +#. DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Generate Separate Documents For Each Assignee" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:178 +#: frappe/public/js/frappe/utils/utils.js:1827 +msgid "Generate Tracking URL" +msgstr "" + +#. 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' +#. 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 "" + +#. Name of a DocType +#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json +msgid "Geolocation Settings" +msgstr "" + +#: frappe/email/doctype/notification/notification.js:226 +msgid "Get Alerts for Today" +msgstr "" + +#: frappe/desk/page/backups/backups.js:21 +msgid "Get Backup Encryption Key" +msgstr "" + +#. Label of the get_contacts (Button) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Get Contacts" +msgstr "" + +#: frappe/website/doctype/web_form/web_form.js:93 +msgid "Get Fields" +msgstr "" + +#: 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 "" + +#: frappe/integrations/doctype/connected_app/connected_app.js:6 +msgid "Get OpenID Configuration" +msgstr "" + +#: frappe/www/printview.html:22 +msgid "Get PDF" +msgstr "" + +#. Description of the 'Try a Naming Series' (Data) field in DocType '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' +#: 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' +#: frappe/core/doctype/user/user.json +msgid "Get your globally recognized avatar from Gravatar.com" +msgstr "" + +#. Label of the git_branch (Data) field in DocType 'Installed Application' +#: frappe/core/doctype/installed_application/installed_application.json +msgid "Git Branch" +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 "GitHub" +msgstr "" + +#: frappe/website/doctype/web_page/web_page.js:92 +msgid "Github flavoured markdown syntax" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/global_search_doctype/global_search_doctype.json +msgid "Global Search DocType" +msgstr "" + +#: frappe/desk/doctype/global_search_settings/global_search_settings.js:24 +msgid "Global Search Document Types Reset." +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/global_search_settings/global_search_settings.json +msgid "Global Search Settings" +msgstr "" + +#: frappe/public/js/frappe/ui/keyboard.js:122 +msgid "Global Shortcuts" +msgstr "" + +#. Label of the global_unsubscribe (Check) field in DocType 'Email Unsubscribe' +#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json +msgid "Global Unsubscribe" +msgstr "" + +#: frappe/public/js/frappe/form/toolbar.js:843 +msgid "Go" +msgstr "" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:241 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:321 +msgid "Go Back" +msgstr "" + +#: 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' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Go to Page" +msgstr "" + +#: frappe/public/js/workflow_builder/workflow_builder.bundle.js:41 +msgid "Go to Workflow" +msgstr "" + +#: frappe/desk/doctype/workspace/workspace.js:18 +msgid "Go to Workspace" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:144 +msgid "Go to next record" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:154 +msgid "Go to previous record" +msgstr "" + +#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py:53 +msgid "Go to the document" +msgstr "" + +#. Description of the 'Success URL' (Data) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Go to this URL after completing the form" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.js:54 +#: frappe/custom/doctype/client_script/client_script.js:12 +msgid "Go to {0}" +msgstr "" + +#: 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 "" + +#: frappe/core/doctype/page/page.js:11 +msgid "Go to {0} Page" +msgstr "" + +#: frappe/utils/goal.py:115 frappe/utils/goal.py:122 +msgid "Goal" +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 "Google" +msgstr "" + +#. 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 "" + +#. 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 +#. Label of the sb_00 (Section Break) field in DocType 'Google Calendar' +#. Label of a Link in the Integrations Workspace +#: frappe/desk/doctype/event/event.json +#: frappe/integrations/doctype/google_calendar/google_calendar.json +#: frappe/integrations/workspace/integrations/integrations.json +msgid "Google Calendar" +msgstr "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:266 +msgid "Google Calendar - Could not create Calendar for {0}, error code {1}." +msgstr "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:610 +msgid "Google Calendar - Could not delete Event {0} from Google Calendar, error code {1}." +msgstr "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:305 +msgid "Google Calendar - Could not fetch event from Google Calendar, error code {0}." +msgstr "" + +#: 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 "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:496 +msgid "Google Calendar - Could not insert event in Google Calendar {0}, error code {1}." +msgstr "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:580 +msgid "Google Calendar - Could not update Event {0} in Google Calendar, error code {1}." +msgstr "" + +#. Label of the google_calendar_event_id (Data) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Google Calendar Event ID" +msgstr "" + +#. 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 "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:181 +msgid "Google Calendar has been configured." +msgstr "" + +#. 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 +#. Label of the sb_00 (Section Break) field in DocType 'Google Contacts' +#. Label of a Link in the Integrations Workspace +#: frappe/contacts/doctype/contact/contact.json +#: frappe/integrations/doctype/google_contacts/google_contacts.json +#: frappe/integrations/workspace/integrations/integrations.json +msgid "Google Contacts" +msgstr "" + +#: frappe/integrations/doctype/google_contacts/google_contacts.py:137 +msgid "Google Contacts - Could not sync contacts from Google Contacts {0}, error code {1}." +msgstr "" + +#: frappe/integrations/doctype/google_contacts/google_contacts.py:294 +msgid "Google Contacts - Could not update contact in Google Contacts {0}, error code {1}." +msgstr "" + +#. Label of the google_contacts_id (Data) field in DocType 'Contact' +#: frappe/contacts/doctype/contact/contact.json +msgid "Google Contacts Id" +msgstr "" + +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:164 +msgid "Google Drive" +msgstr "" + +#. 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 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 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 "" + +#. 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 +#: frappe/integrations/workspace/integrations/integrations.json +msgid "Google Services" +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" +msgstr "" + +#: frappe/utils/csvutils.py:226 +msgid "Google Sheets URL is invalid or not publicly accessible." +msgstr "" + +#: 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 "" + +#. Label of the grant_type (Select) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Grant Type" +msgstr "" + +#: 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' +#. 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 "" + +#: 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' +#. 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 "" + +#: frappe/public/js/form_builder/components/controls/TableControl.vue:53 +msgid "Grid Empty State" +msgstr "" + +#. 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 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 "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:408 +msgid "Group By field is required to create a dashboard chart" +msgstr "" + +#: frappe/database/query.py:752 +msgid "Group By must be a string" +msgstr "" + +#. 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 "" + +#. 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' +#: 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' +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +msgid "HH:mm" +msgstr "" + +#. 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 "" + +#. 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' +#. 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' +#. Label of the html (Code) field in DocType 'Print Format' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#. Option for the 'Content Type' (Select) field in DocType '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:101 +#: frappe/public/js/print_format_builder/Field.vue:86 +#: 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 "" + +#. 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' +#: 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 "" + +#. Label of the page (HTML Editor) field in DocType 'Access Log' +#: frappe/core/doctype/access_log/access_log.json +msgid "HTML Page" +msgstr "" + +#. 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 "" + +#: 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' +#: frappe/desk/doctype/dashboard_chart_link/dashboard_chart_link.json +msgid "Half" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#. Name of a DocType +#: frappe/core/doctype/has_domain/has_domain.json +msgid "Has Domain" +msgstr "" + +#. 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 +#: frappe/core/doctype/has_role/has_role.json +msgid "Has Role" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#. Label of the content (HTML Editor) field in DocType 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json +msgid "Header HTML" +msgstr "" + +#: frappe/printing/doctype/letter_head/letter_head.py:69 +msgid "Header HTML set from attachment {0}" +msgstr "" + +#. 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 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 "" + +#: 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 "" + +#: frappe/email/email_body.py:322 +msgid "Headers must be a dictionary" +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' +#. 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 "" + +#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Heatmap" +msgstr "" + +#: frappe/templates/emails/new_user.html:2 +msgid "Hello" +msgstr "" + +#: frappe/templates/emails/user_invitation.html:2 +#: frappe/templates/emails/user_invitation_cancelled.html:2 +#: frappe/templates/emails/user_invitation_expired.html:2 +msgid "Hello," +msgstr "" + +#. 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 "" + +#. 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 "" + +#. Label of the help_articles (Int) field in DocType 'Help Category' +#: frappe/website/doctype/help_category/help_category.json +msgid "Help Articles" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:149 +msgid "Help on Search" +msgstr "" + +#. 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 "" + +#. 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' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Helvetica" +msgstr "" + +#. Option for the 'Font' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Helvetica Neue" +msgstr "" + +#: frappe/public/js/frappe/utils/utils.js:1824 +msgid "Here's your tracking URL" +msgstr "" + +#: frappe/www/qrcode.html:9 +msgid "Hi {0}" +msgstr "" + +#. 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 "" + +#. 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 "" + +#: frappe/public/js/frappe/views/reports/query_report.js:1650 +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 +#: 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 "" + +#. 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 "" + +#. 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 "" + +#. 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 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 "" + +#. Label of the hide_custom (Check) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "Hide Custom DocTypes and Reports" +msgstr "" + +#. 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 "" + +#. 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 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 "" + +#: frappe/www/error.html:62 +msgid "Hide Error" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:488 +msgid "Hide Label" +msgstr "" + +#. 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' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Hide Previous, Next and Close button on highlight dialog." +msgstr "" + +#: frappe/public/js/frappe/list/list_filter.js:94 +msgid "Hide Saved" +msgstr "" + +#. 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 "" + +#. 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 the hide_standard_menu (Check) field in DocType 'Portal Settings' +#: frappe/website/doctype/portal_settings/portal_settings.json +msgid "Hide Standard Menu" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1851 +msgid "Hide Tags" +msgstr "" + +#: frappe/public/js/frappe/views/calendar/calendar.js:179 +msgid "Hide Weekends" +msgstr "" + +#. 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 "" + +#: frappe/public/js/frappe/form/layout.js:285 +msgid "Hide details" +msgstr "" + +#. 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 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 "" + +#. 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' +#: frappe/desk/doctype/todo/todo.json +#: frappe/public/js/frappe/form/sidebar/assign_to.js:225 +msgid "High" +msgstr "" + +#. 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 "" + +#. Label of the highlight (Text) field in DocType 'Company History' +#: frappe/website/doctype/company_history/company_history.json +msgid "Highlight" +msgstr "" + +#: frappe/www/update-password.html:301 +msgid "Hint: Include symbols, numbers and capital letters in the password" +msgstr "" + +#. 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:156 frappe/templates/doc.html:19 +#: frappe/templates/includes/navbar/navbar.html:9 +#: 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 "" + +#. 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 "" + +#. Label of the home_settings (Code) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Home Settings" +msgstr "" + +#: 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 "" + +#: frappe/core/doctype/file/test_file.py:376 +msgid "Home/Test Folder 1/Test Folder 3" +msgstr "" + +#: frappe/core/doctype/file/test_file.py:332 +msgid "Home/Test Folder 2" +msgstr "" + +#. 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' +#: 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 "" + +#. 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 "" + +#. 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' +#: frappe/core/doctype/system_settings/system_settings.json +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" +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: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:335 +#: frappe/public/js/frappe/list/list_view.js:386 +#: frappe/public/js/frappe/list/list_view.js:450 +#: frappe/public/js/frappe/model/meta.js:200 +#: frappe/public/js/frappe/model/model.js:122 +msgid "ID" +msgstr "" + +#: frappe/desk/reportview.py:526 +#: frappe/public/js/frappe/views/reports/report_view.js:989 +msgctxt "Label of name column in report" +msgid "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' +#: frappe/custom/doctype/property_setter/property_setter.json +msgid "ID (name) of the entity whose property is to be set" +msgstr "" + +#. 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 "" + +#. 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 +#: 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 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 "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. 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 "" + +#. 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 "" + +#. 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 "" + +#. Label of the idx (Int) field in DocType 'Desktop Icon' +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +msgid "Idx" +msgstr "" + +#. 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 "" + +#. Description of the 'Don't Override Status' (Check) field in DocType +#. 'Workflow' +#. Description of the 'Don't Override Status' (Check) field in DocType +#. '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 "" + +#: frappe/core/doctype/doctype/doctype.py:1777 +#: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45 +#: frappe/public/js/frappe/roles_editor.js:68 +msgid "If Owner" +msgstr "" + +#: 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' +#: frappe/workflow/doctype/workflow/workflow.json +msgid "If checked, all other workflows become inactive." +msgstr "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#. 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' +#: 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 "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#. 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' +#: frappe/email/doctype/email_domain/email_domain.json +msgid "If non standard port (e.g. 587)" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#: 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 "" + +#: frappe/templates/emails/user_invitation_cancelled.html:8 +msgid "If this was a mistake or you need access again, please reach out to your team." +msgstr "" + +#. Description of the 'Fetch on Save if Empty' (Check) field in DocType +#. '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 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 "" + +#: frappe/core/doctype/data_export/exporter.py:204 +msgid "If you are updating, please select \"Overwrite\" else existing rows will not be deleted." +msgstr "" + +#: frappe/core/doctype/data_export/exporter.py:188 +msgid "If you are uploading new records, \"Naming Series\" becomes mandatory, if present." +msgstr "" + +#: frappe/core/doctype/data_export/exporter.py:186 +msgid "If you are uploading new records, leave the \"name\" (ID) column blank." +msgstr "" + +#: frappe/templates/emails/user_invitation.html:19 +msgid "If you have any questions, reach out to your system administrator." +msgstr "" + +#: frappe/utils/password.py:213 +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' +#: 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 "" + +#: frappe/templates/emails/administrator_logged_in.html:3 +msgid "If you think this is unauthorized, please change the Administrator password." +msgstr "" + +#. 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' +#: frappe/core/doctype/translation/translation.json +msgid "If your data is in HTML, please copy paste the exact HTML code with the tags." +msgstr "" + +#. 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 "" + +#. 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 "" + +#. Description of the 'Attachment Limit (MB)' (Int) field in DocType 'Email +#. Account' +#. Description of the 'Attachment Limit (MB)' (Int) field in DocType '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 "" + +#. Label of the ignored_apps (Table) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Ignored Apps" +msgstr "" + +#: frappe/model/workflow.py:202 +msgid "Illegal Document Status for {0}" +msgstr "" + +#: frappe/model/db_query.py:454 frappe/model/db_query.py:457 +#: frappe/model/db_query.py:1122 +msgid "Illegal SQL Query" +msgstr "" + +#: frappe/utils/jinja.py:127 +msgid "Illegal template" +msgstr "" + +#. Label of the image (Attach Image) field in DocType 'Contact' +#. 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 'Select List View' (Select) field in DocType 'Form Tour' +#. 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 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' +#. 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 "" + +#. 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 "" + +#. 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 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 "" + +#: 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 "" + +#: frappe/core/doctype/doctype/doctype.py:1507 +msgid "Image field must be a valid fieldname" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1509 +msgid "Image field must be of type Attach Image" +msgstr "" + +#: frappe/core/doctype/file/utils.py:136 +msgid "Image link '{0}' is not valid" +msgstr "" + +#: frappe/core/doctype/file/file.js:108 +msgid "Image optimized" +msgstr "" + +#: 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 "" + +#. Option for the 'Operation' (Select) field in DocType 'Activity Log' +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/user/user.js:372 +msgid "Impersonate" +msgstr "" + +#: frappe/core/doctype/user/user.js:399 +msgid "Impersonate as {0}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:352 +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' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Implicit" +msgstr "" + +#. 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 "" + +#: frappe/public/js/frappe/list/list_view.js:1913 +msgctxt "Button in list view menu" +msgid "Import" +msgstr "" + +#. 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 "" + +#: frappe/email/doctype/email_group/email_group.js:14 +msgid "Import Email From" +msgstr "" + +#. Label of the import_file (Attach) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Import File" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#. Label of the import_preview (HTML) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Import Preview" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:41 +msgid "Import Progress" +msgstr "" + +#: frappe/email/doctype/email_group/email_group.js:8 +#: frappe/email/doctype/email_group/email_group.js:30 +msgid "Import Subscribers" +msgstr "" + +#. Label of the import_type (Select) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Import Type" +msgstr "" + +#. Label of the import_warnings (HTML) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Import Warnings" +msgstr "" + +#: frappe/public/js/frappe/views/file/file_view.js:117 +msgid "Import Zip" +msgstr "" + +#. 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 "" + +#: frappe/core/doctype/data_import/importer.py:612 +msgid "Import template should be of type .csv, .xlsx or .xls" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:482 +msgid "Import template should contain a Header and atleast one row." +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:165 +msgid "Import timed out, please re-try." +msgstr "" + +#: frappe/core/doctype/data_import/data_import.py:68 +msgid "Importing {0} is not allowed." +msgstr "" + +#: frappe/integrations/doctype/google_contacts/google_contacts.js:19 +msgid "Importing {0} of {1}" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:35 +msgid "Importing {0} of {1}, {2}" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:20 +msgid "In" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#: frappe/core/doctype/doctype/doctype.js:88 +msgid "In Grid View" +msgstr "" + +#. Label of the in_standard_filter (Check) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "In List Filter" +msgstr "" + +#. 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 "" + +#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.js:19 +msgid "In Minutes" +msgstr "" + +#. 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 "" + +#: frappe/core/doctype/data_import/data_import.js:42 +msgid "In Progress" +msgstr "" + +#: frappe/database/database.py:287 +msgid "In Read Only Mode" +msgstr "" + +#. Label of the in_reply_to (Link) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "In Reply To" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#: frappe/core/doctype/recorder/recorder_list.js:209 +msgid "Inactive" +msgstr "" + +#. 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 "" + +#. Name of a role +#: frappe/core/doctype/communication/communication.json +#: frappe/email/doctype/email_account/email_account.json +msgid "Inbox User" +msgstr "" + +#: 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 the navbar_search (Check) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Include Search in Top Bar" +msgstr "" + +#: frappe/website/doctype/website_theme/website_theme.js:61 +msgid "Include Theme from Apps" +msgstr "" + +#. 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 "" + +#: frappe/public/js/frappe/form/print_utils.js:59 +#: frappe/public/js/frappe/views/reports/query_report.js:1628 +msgid "Include filters" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:1648 +msgid "Include hidden columns" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:1620 +msgid "Include indentation" +msgstr "" + +#: frappe/public/js/frappe/form/controls/password.js:106 +msgid "Include symbols, numbers and capital letters in the password" +msgstr "" + +#. 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 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 the mailbox_settings (Section Break) field in DocType 'Email +#. Domain' +#: frappe/email/doctype/email_domain/email_domain.json +msgid "Incoming Settings" +msgstr "" + +#: frappe/email/doctype/email_domain/email_domain.py:32 +msgid "Incoming email account not correct" +msgstr "" + +#: frappe/model/virtual_doctype.py:79 frappe/model/virtual_doctype.py:92 +msgid "Incomplete Virtual Doctype Implementation" +msgstr "" + +#: frappe/auth.py:258 +msgid "Incomplete login details" +msgstr "" + +#: frappe/email/smtp.py:104 +msgid "Incorrect Configuration" +msgstr "" + +#: frappe/utils/csvutils.py:234 +msgid "Incorrect URL" +msgstr "" + +#: frappe/utils/password.py:100 +msgid "Incorrect User or Password" +msgstr "" + +#: frappe/twofactor.py:176 frappe/twofactor.py:188 +msgid "Incorrect Verification code" +msgstr "" + +#: frappe/model/document.py:1555 +msgid "Incorrect value in row {0}:" +msgstr "" + +#: frappe/model/document.py:1557 +msgid "Incorrect value:" +msgstr "" + +#. 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:1010 +msgid "Index" +msgstr "" + +#. 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 "" + +#: 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 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 the indicator (Select) field in DocType 'Kanban Board Column' +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json +msgid "Indicator" +msgstr "" + +#. Label of the indicator_color (Select) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "Indicator Color" +msgstr "" + +#: frappe/public/js/frappe/views/workspace/workspace.js:463 +msgid "Indicator color" +msgstr "" + +#. 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 "" + +#: frappe/core/doctype/data_export/exporter.py:144 +msgid "Info:" +msgstr "" + +#. 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 "" + +#. Option for the 'Database Engine' (Select) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "InnoDB" +msgstr "" + +#. 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 "" + +#: 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:1893 +msgid "Insert After" +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.py:251 +msgid "Insert After cannot be set as {0}" +msgstr "" + +#: 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 "" + +#: frappe/public/js/frappe/form/grid_row_form.js:42 +msgid "Insert Below" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:395 +msgid "Insert Column Before {0}" +msgstr "" + +#: 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' +#: frappe/core/doctype/data_import/data_import.json +msgid "Insert New Records" +msgstr "" + +#. Label of the insert_style (Check) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Insert Style" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Instagram" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:678 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:679 +msgid "Install {0} from Marketplace" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/installed_application/installed_application.json +msgid "Installed Application" +msgstr "" + +#. 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 "" + +#: frappe/core/doctype/installed_applications/installed_applications.js:18 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Installed Apps" +msgstr "" + +#. 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 "" + +#: frappe/database/query.py:808 frappe/database/query.py:1054 +msgid "Insufficient Permission for {0}" +msgstr "" + +#: frappe/desk/reportview.py:361 +msgid "Insufficient Permissions for deleting Report" +msgstr "" + +#: frappe/desk/reportview.py:332 +msgid "Insufficient Permissions for editing Report" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:446 +msgid "Insufficient attachment limit" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. 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' +#. 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/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Int" +msgstr "" + +#. Name of a DocType +#: frappe/integrations/doctype/integration_request/integration_request.json +msgid "Integration Request" +msgstr "" + +#. Group in User's connections +#. 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 "" + +#. 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 "" + +#. Option for the 'Font' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Inter" +msgstr "" + +#. Label of the interest (Small Text) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Interests" +msgstr "" + +#. Option for the 'Level' (Select) field in DocType 'Help Article' +#: frappe/website/doctype/help_article/help_article.json +msgid "Intermediate" +msgstr "" + +#: frappe/public/js/frappe/request.js:235 +msgid "Internal Server Error" +msgstr "" + +#. 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' +#: frappe/website/doctype/about_us_settings/about_us_settings.json +msgid "Introduce your company to the website visitor." +msgstr "" + +#. 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 "" + +#. 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 "" + +#. 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' +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +msgid "Invalid" +msgstr "" + +#: frappe/public/js/form_builder/utils.js:221 +#: frappe/public/js/frappe/form/grid_row.js:850 +#: frappe/public/js/frappe/form/layout.js:810 +#: frappe/public/js/frappe/views/reports/report_view.js:721 +msgid "Invalid \"depends_on\" expression" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:514 +msgid "Invalid \"depends_on\" expression set in filter {0}" +msgstr "" + +#: frappe/public/js/frappe/form/save.js:210 +msgid "Invalid \"mandatory_depends_on\" expression" +msgstr "" + +#: frappe/utils/nestedset.py:178 +msgid "Invalid Action" +msgstr "" + +#: frappe/utils/csvutils.py:37 +msgid "Invalid CSV Format" +msgstr "" + +#: frappe/integrations/frappe_providers/frappecloud_billing.py:111 +msgid "Invalid Code. Please try again." +msgstr "" + +#: frappe/integrations/doctype/webhook/webhook.py:91 +msgid "Invalid Condition: {}" +msgstr "" + +#: frappe/email/smtp.py:135 +msgid "Invalid Credentials" +msgstr "" + +#: frappe/utils/data.py:146 frappe/utils/data.py:309 +msgid "Invalid Date" +msgstr "" + +#: frappe/www/list.py:85 +msgid "Invalid DocType" +msgstr "" + +#: frappe/database/query.py:144 +msgid "Invalid DocType: {0}" +msgstr "" + +#: frappe/email/doctype/email_group/email_group.py:51 +msgid "Invalid Doctype" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1273 +msgid "Invalid Fieldname" +msgstr "" + +#: frappe/core/doctype/file/file.py:221 +msgid "Invalid File URL" +msgstr "" + +#: frappe/database/query.py:429 frappe/database/query.py:456 +#: frappe/database/query.py:466 frappe/database/query.py:489 +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 "" + +#: frappe/utils/dashboard.py:61 +msgid "Invalid Filter Value" +msgstr "" + +#: frappe/website/doctype/website_settings/website_settings.py:83 +msgid "Invalid Home Page" +msgstr "" + +#: frappe/utils/verified_command.py:48 frappe/www/update-password.html:178 +msgid "Invalid Link" +msgstr "" + +#: frappe/www/login.py:128 +msgid "Invalid Login Token" +msgstr "" + +#: 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 "" + +#: frappe/model/naming.py:109 +msgid "Invalid Naming Series: {}" +msgstr "" + +#: frappe/core/doctype/rq_job/rq_job.py:113 +#: frappe/core/doctype/rq_job/rq_job.py:122 +msgid "Invalid Operation" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1642 +#: frappe/core/doctype/doctype/doctype.py:1651 +msgid "Invalid Option" +msgstr "" + +#: frappe/email/smtp.py:103 +msgid "Invalid Outgoing Mail Server or Port: {0}" +msgstr "" + +#: frappe/email/doctype/auto_email_report/auto_email_report.py:200 +msgid "Invalid Output Format" +msgstr "" + +#: frappe/model/base_document.py:134 +msgid "Invalid Override" +msgstr "" + +#: frappe/integrations/doctype/connected_app/connected_app.py:202 +msgid "Invalid Parameters." +msgstr "" + +#: frappe/core/doctype/user/user.py:1241 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 "" + +#: frappe/utils/__init__.py:125 +msgid "Invalid Phone Number" +msgstr "" + +#: frappe/auth.py:97 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 +#: frappe/www/login.py:128 +msgid "Invalid Request" +msgstr "" + +#: frappe/desk/search.py:26 +msgid "Invalid Search Field {0}" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1215 +msgid "Invalid Table Fieldname" +msgstr "" + +#: frappe/public/js/workflow_builder/store.js:192 +msgid "Invalid Transition" +msgstr "" + +#: frappe/core/doctype/file/file.py:232 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:550 +#: frappe/public/js/frappe/widgets/widget_dialog.js:602 +#: frappe/utils/csvutils.py:226 frappe/utils/csvutils.py:247 +msgid "Invalid URL" +msgstr "" + +#: frappe/email/receive.py:157 +msgid "Invalid User Name or Support Password. Please rectify and try again." +msgstr "" + +#: frappe/public/js/frappe/ui/field_group.js:137 +msgid "Invalid Values" +msgstr "" + +#: frappe/integrations/doctype/webhook/webhook.py:120 +msgid "Invalid Webhook Secret" +msgstr "" + +#: frappe/desk/reportview.py:187 +msgid "Invalid aggregate function" +msgstr "" + +#: frappe/database/query.py:1544 +msgid "Invalid alias format: {0}. Alias must be a simple identifier." +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:195 +msgid "Invalid app" +msgstr "" + +#: frappe/database/query.py:1470 +msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed." +msgstr "" + +#: frappe/database/query.py:1446 +msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed." +msgstr "" + +#: frappe/database/query.py:462 +msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed." +msgstr "" + +#: frappe/database/query.py:577 +msgid "Invalid characters in table name: {0}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:404 +msgid "Invalid column" +msgstr "" + +#: frappe/database/query.py:383 +msgid "Invalid condition type in nested filters: {0}" +msgstr "" + +#: frappe/database/query.py:789 +msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'." +msgstr "" + +#: frappe/model/document.py:1020 frappe/model/document.py:1034 +msgid "Invalid docstatus" +msgstr "" + +#: frappe/public/js/frappe/utils/dashboard_utils.js:229 +msgid "Invalid expression set in filter {0}" +msgstr "" + +#: frappe/public/js/frappe/utils/dashboard_utils.js:219 +msgid "Invalid expression set in filter {0} ({1})" +msgstr "" + +#: frappe/database/query.py:1303 +msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'." +msgstr "" + +#: frappe/database/query.py:736 +msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'." +msgstr "" + +#: frappe/database/query.py:1622 +msgid "Invalid field name in function: {0}. Only simple field names are allowed." +msgstr "" + +#: frappe/utils/data.py:2241 +msgid "Invalid field name {0}" +msgstr "" + +#: frappe/database/query.py:670 +msgid "Invalid field type: {0}" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1086 +msgid "Invalid fieldname '{0}' in autoname" +msgstr "" + +#: frappe/deprecation_dumpster.py:283 +msgid "Invalid file path: {0}" +msgstr "" + +#: frappe/database/query.py:366 +msgid "Invalid filter condition: {0}. Expected a list or tuple." +msgstr "" + +#: frappe/database/query.py:452 +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:1424 +msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed." +msgstr "" + +#: frappe/database/query.py:1385 +msgid "Invalid function dictionary format" +msgstr "" + +#: frappe/core/api/user_invitation.py:17 +msgid "Invalid input" +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 "" + +#: frappe/core/api/user_invitation.py:115 +msgid "Invalid key" +msgstr "" + +#: frappe/model/naming.py:498 +msgid "Invalid name type (integer) for varchar name column" +msgstr "" + +#: frappe/model/naming.py:62 +msgid "Invalid naming series {}: dot (.) missing" +msgstr "" + +#: frappe/model/naming.py:76 +msgid "Invalid naming series {}: dot (.) missing before the numeric placeholders. Kindly use a format like ABCD.#####." +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:453 +msgid "Invalid or corrupted content for import" +msgstr "" + +#: frappe/website/doctype/website_settings/website_settings.py:139 +msgid "Invalid redirect regex in row #{}: {}" +msgstr "" + +#: frappe/app.py:340 +msgid "Invalid request arguments" +msgstr "" + +#: frappe/app.py:327 +msgid "Invalid request body" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:181 +msgid "Invalid role" +msgstr "" + +#: frappe/database/query.py:412 +msgid "Invalid simple filter format: {0}" +msgstr "" + +#: frappe/database/query.py:343 +msgid "Invalid start for filter condition: {0}. Expected a list or tuple." +msgstr "" + +#: frappe/database/query.py:1491 +msgid "Invalid string literal format: {0}" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:430 +msgid "Invalid template file for import" +msgstr "" + +#: frappe/integrations/doctype/connected_app/connected_app.py:208 +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 "" + +#: frappe/model/naming.py:176 +msgid "Invalid value specified for UUID: {}" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form.js:253 +msgctxt "Error message in web form" +msgid "Invalid values for fields:" +msgstr "" + +#: frappe/printing/page/print/print.js:654 +msgid "Invalid wkhtmltopdf version" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1565 +msgid "Invalid {0} condition" +msgstr "" + +#. Option for the 'Style' (Select) field in DocType 'Workflow State' +#: frappe/workflow/doctype/workflow_state/workflow_state.json +msgid "Inverse" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:95 +msgid "Invitation already accepted" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:99 +msgid "Invitation already exists" +msgstr "" + +#: frappe/core/api/user_invitation.py:84 +msgid "Invitation cannot be cancelled" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:127 +msgid "Invitation is cancelled" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:125 +msgid "Invitation is expired" +msgstr "" + +#: frappe/core/api/user_invitation.py:73 frappe/core/api/user_invitation.py:78 +msgid "Invitation not found" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:59 +msgid "Invitation to join {0} cancelled" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:76 +msgid "Invitation to join {0} expired" +msgstr "" + +#: frappe/contacts/doctype/contact/contact.js:30 +msgid "Invite as User" +msgstr "" + +#. Label of the invited_by (Link) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Invited By" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:22 +msgid "Is" +msgstr "" + +#. Label of the is_active (Check) field in DocType 'Workflow' +#: frappe/workflow/doctype/workflow/workflow.json +msgid "Is Active" +msgstr "" + +#. Label of the is_attachments_folder (Check) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "Is Attachments Folder" +msgstr "" + +#. 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 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:50 +#: frappe/core/doctype/doctype_link/doctype_link.json +msgid "Is Child Table" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. 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 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 "" + +#. 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 "" + +#. Label of the is_dynamic_url (Check) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "Is Dynamic URL?" +msgstr "" + +#. Label of the is_folder (Check) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "Is Folder" +msgstr "" + +#: frappe/public/js/frappe/list/list_filter.js:43 +msgid "Is Global" +msgstr "" + +#: frappe/public/js/frappe/views/treeview.js:418 +msgid "Is Group" +msgstr "" + +#. Label of the is_hidden (Check) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "Is Hidden" +msgstr "" + +#. Label of the is_home_folder (Check) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "Is Home Folder" +msgstr "" + +#. Label of the reqd (Check) field in DocType 'Custom Field' +#: frappe/custom/doctype/custom_field/custom_field.json +msgid "Is Mandatory Field" +msgstr "" + +#. 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 "" + +#. Label of the is_primary (Check) field in DocType 'Contact Email' +#: frappe/contacts/doctype/contact_email/contact_email.json +msgid "Is Primary" +msgstr "" + +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:43 +msgid "Is Primary Address" +msgstr "" + +#. Label of the is_primary_contact (Check) field in DocType 'Contact' +#: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:49 +msgid "Is Primary Contact" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. Label of the is_private (Check) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "Is Private" +msgstr "" + +#. 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 "" + +#. Label of the is_published_field (Data) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Is Published Field" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1516 +msgid "Is Published Field must be a valid fieldname" +msgstr "" + +#. 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 the is_remote_request (Check) field in DocType 'Integration +#. Request' +#: frappe/integrations/doctype/integration_request/integration_request.json +msgid "Is Remote Request?" +msgstr "" + +#. 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:65 +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Is Single" +msgstr "" + +#. Label of the is_skipped (Check) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Is Skipped" +msgstr "" + +#. Label of the is_spam (Check) field in DocType 'Email Rule' +#: frappe/email/doctype/email_rule/email_rule.json +msgid "Is Spam" +msgstr "" + +#. 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 "" + +#. Label of the is_submittable (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/doctype/doctype_list.js:40 +msgid "Is Submittable" +msgstr "" + +#. 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 the istable (Check) field in DocType 'Customize Form' +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Is Table" +msgstr "" + +#. 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 the is_tree (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Is Tree" +msgstr "" + +#. 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 "" + +#. 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 the is_standard (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Is standard" +msgstr "" + +#: 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 "" + +#. Label of the item_label (Data) field in DocType 'Navbar Item' +#: frappe/core/doctype/navbar_item/navbar_item.json +msgid "Item Label" +msgstr "" + +#. Label of the item_type (Select) field in DocType 'Navbar Item' +#: frappe/core/doctype/navbar_item/navbar_item.json +msgid "Item Type" +msgstr "" + +#: frappe/utils/nestedset.py:229 +msgid "Item cannot be added to its own descendants" +msgstr "" + +#. Option for the 'Print Format Type' (Select) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "JS" +msgstr "" + +#. 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 'Type' (Select) field in DocType 'DocField' +#. 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' +#: 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 "" + +#. Label of the webhook_json (Code) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "JSON Request Body" +msgstr "" + +#: frappe/templates/signup.html:5 +msgid "Jane Doe" +msgstr "" + +#. Label of the js (Code) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json +msgid "JavaScript" +msgstr "" + +#. Description of the 'Javascript' (Code) field in DocType 'Report' +#: frappe/core/doctype/report/report.json +msgid "JavaScript Format: frappe.query_reports['REPORTNAME'] = {}" +msgstr "" + +#. 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 "" + +#: frappe/www/login.html:74 +msgid "Javascript is disabled on your browser" +msgstr "" + +#. Option for the 'Print Format Type' (Select) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Jinja" +msgstr "" + +#. 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 the job_id (Link) field in DocType 'Submission Queue' +#: frappe/core/doctype/submission_queue/submission_queue.json +msgid "Job Id" +msgstr "" + +#. 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 the job_name (Data) field in DocType 'RQ Job' +#: frappe/core/doctype/rq_job/rq_job.json +msgid "Job Name" +msgstr "" + +#. 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 "" + +#: frappe/core/doctype/rq_job/rq_job.js:24 +msgid "Job Stopped Successfully" +msgstr "" + +#: 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 "" + +#: frappe/desk/doctype/event/event.js:55 +msgid "Join video conference with {0}" +msgstr "" + +#: frappe/public/js/frappe/form/toolbar.js:398 +#: frappe/public/js/frappe/form/toolbar.js:833 +msgid "Jump to field" +msgstr "" + +#: 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' +#. 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 "" + +#. Name of a DocType +#. 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 "" + +#. Name of a DocType +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json +msgid "Kanban Board Column" +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:402 +msgid "Kanban Board Name" +msgstr "" + +#: frappe/public/js/frappe/views/kanban/kanban_view.js:279 +msgctxt "Button in kanban view menu" +msgid "Kanban Settings" +msgstr "" + +#: frappe/public/js/frappe/list/base_list.js:206 +msgid "Kanban View" +msgstr "" + +#. Description of a DocType +#: frappe/core/doctype/activity_log/activity_log.json +msgid "Keep track of all update feeds" +msgstr "" + +#. Description of a DocType +#: frappe/core/doctype/communication/communication.json +msgid "Keeps track of all communications" +msgstr "" + +#. 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 'User Invitation' +#. 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/core/doctype/user_invitation/user_invitation.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 "" + +#. Label of a standard help item +#. Type: Action +#: frappe/hooks.py frappe/public/js/frappe/ui/keyboard.js:130 +msgid "Keyboard Shortcuts" +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 "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 +#: 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 "" + +#. Name of a role +#: frappe/website/doctype/help_article/help_article.json +msgid "Knowledge Base Contributor" +msgstr "" + +#. Name of a role +#: frappe/website/doctype/help_article/help_article.json +msgid "Knowledge Base Editor" +msgstr "" + +#: 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 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 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 the ldap_email_field (Data) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "LDAP Email Field" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#. Name of a DocType +#: frappe/integrations/doctype/ldap_group_mapping/ldap_group_mapping.json +msgid "LDAP Group Mapping" +msgstr "" + +#. 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 "" + +#. 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 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 "" + +#. 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 "" + +#. 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 "" + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:163 +msgid "LDAP Not Installed" +msgstr "" + +#. 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 "" + +#. 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 "" + +#: 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 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 the ldap_security (Section Break) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "LDAP Security" +msgstr "" + +#. 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 the ldap_server_url (Data) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "LDAP Server Url" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:309 +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:426 +msgid "LDAP is not enabled." +msgstr "" + +#. 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 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 "" + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:102 +msgid "LDAP settings incorrect. validation response was: {0}" +msgstr "" + +#. Option for the 'Comment Type' (Select) field in DocType '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 of the label_help (HTML) field in DocType 'Custom Field' +#: frappe/custom/doctype/custom_field/custom_field.json +msgid "Label Help" +msgstr "" + +#. 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 "" + +#: frappe/custom/doctype/custom_field/custom_field.py:145 +msgid "Label is mandatory" +msgstr "" + +#. Label of the sb0 (Section Break) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Landing Page" +msgstr "" + +#: frappe/public/js/frappe/form/print_utils.js:23 +msgid "Landscape" +msgstr "" + +#. Name of a DocType +#. 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' +#. Label of a field in the edit-profile Web Form +#: 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/core/web_form/edit_profile/edit_profile.json +#: frappe/printing/page/print/print.js:117 +#: frappe/public/js/frappe/form/templates/print_layout.html:11 +msgid "Language" +msgstr "" + +#. Label of the language_code (Data) field in DocType 'Language' +#: frappe/core/doctype/language/language.json +msgid "Language Code" +msgstr "" + +#. Label of the language_name (Data) field in DocType 'Language' +#: frappe/core/doctype/language/language.json +msgid "Language Name" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. 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 the last_ip (Read Only) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Last IP" +msgstr "" + +#. Label of the last_known_versions (Text) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Last Known Versions" +msgstr "" + +#. Label of the last_login (Read Only) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Last Login" +msgstr "" + +#: 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 "" + +#. 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 "" + +#. Label of the last_name (Data) field in DocType 'Contact' +#. Label of the last_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form +#: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:45 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:19 +msgid "Last Name" +msgstr "" + +#. Label of the last_password_reset_date (Date) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Last Password Reset Date" +msgstr "" + +#. 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:648 +msgid "Last Quarter" +msgstr "" + +#. Label of the last_received_at (Datetime) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Last Received At" +msgstr "" + +#. 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 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 "" + +#. 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 "" + +#: 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 "" + +#: 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 "" + +#. Label of the last_user (Link) field in DocType 'Assignment Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Last User" +msgstr "" + +#. 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:640 +msgid "Last Week" +msgstr "" + +#. 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:656 +msgid "Last Year" +msgstr "" + +#: frappe/public/js/frappe/widgets/chart_widget.js:753 +msgid "Last synced {0}" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:194 +msgid "Layout Reset" +msgstr "" + +#: 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 "" + +#: frappe/website/web_template/section_with_features/section_with_features.html:26 +msgid "Learn more" +msgstr "" + +#. Description of the 'Repeat Till' (Date) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Leave blank to repeat always" +msgstr "" + +#: frappe/core/doctype/communication/mixins.py:207 +#: frappe/email/doctype/email_account/email_account.py:720 +msgid "Leave this conversation" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Ledger" +msgstr "" + +#. Option for the 'Position' (Select) field in DocType 'Form Tour Step' +#. Option for the 'Align' (Select) field in DocType 'Letter Head' +#. Option for the 'Text Align' (Select) field in DocType '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 "" + +#: 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 "" + +#. 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 "" + +#. 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 "" + +#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:58 +msgid "Left this conversation" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Legal" +msgstr "" + +#. 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 "" + +#: frappe/public/js/frappe/ui/chart.js:11 +msgid "Length of passed data array is greater than value of maximum allowed label points!" +msgstr "" + +#: frappe/database/schema.py:138 +msgid "Length of {0} should be between 1 and 1000" +msgstr "" + +#: 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 "" + +#: 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 "" + +#: frappe/utils/password_strength.py:111 +msgid "Let's avoid repeated words and characters" +msgstr "" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:474 +msgid "Let's set up your account" +msgstr "" + +#: 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 "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Letter" +msgstr "" + +#. Label of the letter_head (Link) field in DocType 'Report' +#. Name of a DocType +#: frappe/core/doctype/report/report.json +#: frappe/printing/doctype/letter_head/letter_head.json +#: frappe/printing/page/print/print.js:140 +#: frappe/public/js/frappe/form/print_utils.js:50 +#: 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 "" + +#. Label of the source (Select) field in DocType 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json +msgid "Letter Head Based On" +msgstr "" + +#. 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 "" + +#. 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 "" + +#: frappe/printing/doctype/letter_head/letter_head.js:30 +msgid "Letter Head Scripts" +msgstr "" + +#: frappe/printing/doctype/letter_head/letter_head.py:49 +msgid "Letter Head cannot be both disabled and default" +msgstr "" + +#. 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 "" + +#. 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:68 +#: frappe/website/doctype/help_article/help_article.json +msgid "Level" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager.js:467 +msgid "Level 0 is for document level permissions, higher levels for field level permissions." +msgstr "" + +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:94 +msgid "Library" +msgstr "" + +#. Label of the license (Markdown Editor) field in DocType 'Package' +#: frappe/core/doctype/package/package.json frappe/www/attribution.html:36 +msgid "License" +msgstr "" + +#. 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' +#: frappe/core/doctype/user/user.json +msgid "Light" +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 "Light Blue" +msgstr "" + +#. Label of the light_color (Link) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Light Color" +msgstr "" + +#: frappe/public/js/frappe/ui/theme_switcher.js:60 +msgid "Light Theme" +msgstr "" + +#. 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 "" + +#: frappe/desk/like.py:92 +msgid "Liked" +msgstr "" + +#: 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 "" + +#. Label of the likes (Int) field in DocType 'Help Article' +#: frappe/website/doctype/help_article/help_article.json +msgid "Likes" +msgstr "" + +#. Label of the limit (Int) field in DocType 'Bulk Update' +#: frappe/desk/doctype/bulk_update/bulk_update.json +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" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. 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' +#. 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' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' +#. Label of the link (Dynamic Link) field in DocType 'Workflow Transition Task' +#: 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 +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Link" +msgstr "" + +#. Label of the tab_break_18 (Tab Break) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "Link Cards" +msgstr "" + +#. 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 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 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 "" + +#. Label of the link_doctype (Link) field in DocType 'Dynamic Link' +#: frappe/core/doctype/dynamic_link/dynamic_link.json +msgid "Link Document Type" +msgstr "" + +#: 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 "" + +#. 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 "" + +#. 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 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 "" + +#. 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 "" + +#. 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 "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:363 +msgid "Link To in Row" +msgstr "" + +#. 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 "" + +#: 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' +#: 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' +#: 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 "" + +#. 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 "" + +#: frappe/public/js/frappe/form/linked_with.js:23 +msgid "Linked With" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "LinkedIn" +msgstr "" + +#. 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 'Event' +#. 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/event/event.json +#: frappe/desk/doctype/workspace/workspace.json +msgid "Links" +msgstr "" + +#. Option for the 'Apply To' (Select) field in DocType 'Client Script' +#. Option for the 'View' (Select) field in DocType 'Form Tour' +#. Option for the 'Select List View' (Select) field in DocType 'Form Tour' +#. Option for the 'DocType View' (Select) field in DocType '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 "" + +#. 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 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 +#: frappe/desk/doctype/list_filter/list_filter.json +msgid "List Filter" +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 "" + +#: frappe/public/js/frappe/list/list_view.js:1993 +msgctxt "Button in list view menu" +msgid "List Settings" +msgstr "" + +#: frappe/public/js/frappe/list/base_list.js:202 +msgid "List View" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/list_view_settings/list_view_settings.json +msgid "List View Settings" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:161 +msgid "List a document type" +msgstr "" + +#. 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 "" + +#. 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:551 +msgid "Lists" +msgstr "" + +#. Option for the 'Rule' (Select) field in DocType 'Assignment Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Load Balancing" +msgstr "" + +#: frappe/public/js/frappe/list/base_list.js:399 +#: frappe/public/js/frappe/web_form/web_form_list.js:306 +#: frappe/website/doctype/help_article/templates/help_article_list.html:30 +msgid "Load More" +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:215 +msgctxt "Form timeline" +msgid "Load More Communications" +msgstr "" + +#: 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:526 +#: frappe/public/js/frappe/list/list_view.js:363 +#: frappe/public/js/frappe/ui/listing.html:16 +#: frappe/public/js/frappe/views/reports/query_report.js:1097 +msgid "Loading" +msgstr "" + +#: 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 "" + +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Loading versions..." +msgstr "" + +#: 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:188 +#: frappe/public/js/frappe/widgets/quick_list_widget.js:129 +msgid "Loading..." +msgstr "" + +#. Label of the location (Data) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Location" +msgstr "" + +#. Label of the log (Code) field in DocType 'Package Import' +#: frappe/core/doctype/package_import/package_import.json +msgid "Log" +msgstr "" + +#. 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 "" + +#. 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 "" + +#: frappe/templates/emails/login_with_email_link.html:27 +msgid "Log In To {0}" +msgstr "" + +#. 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 +#: frappe/core/doctype/log_setting_user/log_setting_user.json +msgid "Log Setting User" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/log_settings/log_settings.json +#: frappe/public/js/frappe/logtypes.js:20 +msgid "Log Settings" +msgstr "" + +#: frappe/www/app.py:23 +msgid "Log in to access this page." +msgstr "" + +#. Label of a standard navbar item +#. Type: Action +#: frappe/hooks.py +#: frappe/website/doctype/website_settings/website_settings.py:182 +msgid "Log out" +msgstr "" + +#: frappe/handler.py:119 +msgid "Logged Out" +msgstr "" + +#. Option for the 'Operation' (Select) field in DocType '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 "" + +#. Label of the login_after (Int) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Login After" +msgstr "" + +#. Label of the login_before (Int) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Login Before" +msgstr "" + +#: frappe/public/js/frappe/desk.js:256 +msgid "Login Failed please try again" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:144 +msgid "Login Id is required" +msgstr "" + +#. 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 the misc_section (Section Break) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Login Page" +msgstr "" + +#: frappe/www/login.py:156 +msgid "Login To {0}" +msgstr "" + +#: frappe/twofactor.py:260 +msgid "Login Verification Code from {}" +msgstr "" + +#: frappe/templates/emails/new_message.html:4 +msgid "Login and view in Browser" +msgstr "" + +#: frappe/website/doctype/web_form/web_form.js:368 +msgid "Login is required to see web form list view. Enable {0} to see list settings" +msgstr "" + +#: frappe/templates/includes/login/login.js:69 +msgid "Login link sent to your email" +msgstr "" + +#: frappe/auth.py:342 frappe/auth.py:345 +msgid "Login not allowed at this time" +msgstr "" + +#. 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 "" + +#: frappe/templates/includes/comments/comments.html:110 +msgid "Login to comment" +msgstr "" + +#: frappe/templates/includes/comments/comments.html:6 +msgid "Login to start a new discussion" +msgstr "" + +#: frappe/www/login.html:64 +msgid "Login to {0}" +msgstr "" + +#: 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 "" + +#: frappe/www/login.html:116 +msgid "Login with Frappe Cloud" +msgstr "" + +#: frappe/www/login.html:49 +msgid "Login with LDAP" +msgstr "" + +#. 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 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 "" + +#: frappe/auth.py:147 +msgid "Login with username and password is not allowed." +msgstr "" + +#: 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' +#: frappe/core/doctype/activity_log/activity_log.json frappe/www/apps.html:59 +#: frappe/www/me.html:84 +msgid "Logout" +msgstr "" + +#: frappe/core/doctype/user/user.js:190 +msgid "Logout All Sessions" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#. Name of a DocType +#: frappe/core/doctype/logs_to_clear/logs_to_clear.json +msgid "Logs To Clear" +msgstr "" + +#. 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 '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' +#: 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 "" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:317 +msgid "Looks like you didn't change the value" +msgstr "" + +#: frappe/www/third_party_apps.html:59 +msgid "Looks like you haven’t added any third party apps." +msgstr "" + +#: 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' +#: frappe/desk/doctype/todo/todo.json +#: frappe/public/js/frappe/form/sidebar/assign_to.js:217 +msgid "Low" +msgstr "" + +#: 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' +#: frappe/core/doctype/package/package.json +msgid "MIT License" +msgstr "" + +#: 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 "" + +#. 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 "" + +#. 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 "" + +#. Name of a role +#: frappe/contacts/doctype/contact/contact.json +msgid "Maintenance Manager" +msgstr "" + +#. Name of a role +#: frappe/contacts/doctype/address/address.json +#: frappe/contacts/doctype/contact/contact.json +msgid "Maintenance User" +msgstr "" + +#. Label of the major (Int) field in DocType 'Package Release' +#: frappe/core/doctype/package_release/package_release.json +msgid "Major" +msgstr "" + +#. Label of the show_name_in_global_search (Check) field in DocType 'DocType' +#. Label of the show_name_in_global_search (Check) field in DocType 'Customize +#. Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Make \"name\" searchable in Global Search" +msgstr "" + +#. 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' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Make sure to configure a Social Login Key before disabling to prevent lockout" +msgstr "" + +#: frappe/utils/password_strength.py:92 +msgid "Make use of longer keyboard patterns" +msgstr "" + +#: frappe/public/js/frappe/form/multi_select_dialog.js:87 +msgid "Make {0}" +msgstr "" + +#: frappe/website/doctype/web_page/web_page.js:77 +msgid "Makes the page public" +msgstr "" + +#: frappe/desk/page/setup_wizard/install_fixtures.py:28 +msgid "Male" +msgstr "" + +#: frappe/www/me.html:56 +msgid "Manage 3rd party apps" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. Label of the mandatory_depends_on (Code) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Mandatory Depends On (JS)" +msgstr "" + +#: frappe/website/doctype/web_form/web_form.py:536 +msgid "Mandatory Information missing:" +msgstr "" + +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:120 +msgid "Mandatory field: set role for" +msgstr "" + +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:124 +msgid "Mandatory field: {0}" +msgstr "" + +#: frappe/public/js/frappe/form/save.js:172 +msgid "Mandatory fields required in table {0}, Row {1}" +msgstr "" + +#: frappe/public/js/frappe/form/save.js:177 +msgid "Mandatory fields required in {0}" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form.js:258 +msgctxt "Error message in web form" +msgid "Mandatory fields required:" +msgstr "" + +#: frappe/core/doctype/data_export/exporter.py:142 +msgid "Mandatory:" +msgstr "" + +#. Option for the 'Select List View' (Select) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +msgid "Map" +msgstr "" + +#: frappe/public/js/frappe/data_import/import_preview.js:194 +#: frappe/public/js/frappe/data_import/import_preview.js:306 +msgid "Map Columns" +msgstr "" + +#: frappe/public/js/frappe/list/base_list.js:211 +msgid "Map View" +msgstr "" + +#: 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 "" + +#. 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 the margin_left (Float) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Margin Left" +msgstr "" + +#. 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 the margin_top (Float) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Margin Top" +msgstr "" + +#. 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 "" + +#: frappe/core/doctype/communication/communication.js:78 +#: frappe/core/doctype/communication/communication_list.js:19 +msgid "Mark as Read" +msgstr "" + +#: frappe/core/doctype/communication/communication.js:95 +msgid "Mark as Spam" +msgstr "" + +#: frappe/core/doctype/communication/communication.js:78 +#: frappe/core/doctype/communication/communication_list.js:22 +msgid "Mark as Unread" +msgstr "" + +#. Option for the 'Message Type' (Select) field in DocType 'Notification' +#. Option for the 'Content Type' (Select) field in DocType 'Web Page' +#: frappe/email/doctype/notification/notification.json +#: frappe/website/doctype/web_page/web_page.js:92 +#: frappe/website/doctype/web_page/web_page.json +msgid "Markdown" +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 "" + +#. 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 "" + +#. 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 "" + +#. 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 the max_height (Data) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Max Height" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#. Label of the max_signups_allowed_per_hour (Int) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Max signups allowed per hour" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1343 +msgid "Max width for type Currency is 100px in row {0}" +msgstr "" + +#. Option for the 'Function' (Select) field in DocType 'Number Card' +#: frappe/desk/doctype/number_card/number_card.json +msgid "Maximum" +msgstr "" + +#: frappe/core/doctype/file/file.py:332 +msgid "Maximum Attachment Limit of {0} has been reached for {1} {2}." +msgstr "" + +#: frappe/public/js/frappe/form/sidebar/attachments.js:38 +msgid "Maximum attachment limit of {0} has been reached." +msgstr "" + +#: frappe/model/rename_doc.py:689 +msgid "Maximum {0} rows allowed" +msgstr "" + +#: frappe/public/js/frappe/list/list_sidebar_group_by.js:221 +msgid "Me" +msgstr "" + +#: 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' +#. 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:1774 +#: frappe/website/doctype/web_page_view/web_page_view.json +#: frappe/website/report/website_analytics/website_analytics.js:40 +msgid "Medium" +msgstr "" + +#. 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 "" + +#: frappe/email/doctype/notification/notification.js:200 +#: frappe/integrations/doctype/webhook/webhook.js:96 +msgid "Meets Condition?" +msgstr "" + +#. Group in Email Group's connections +#: 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' +#: frappe/desk/doctype/notification_log/notification_log.json +msgid "Mention" +msgstr "" + +#. Label of the enable_email_mention (Check) field in DocType 'Notification +#. Settings' +#: frappe/desk/doctype/notification_settings/notification_settings.json +msgid "Mentions" +msgstr "" + +#: frappe/public/js/frappe/ui/page.html:41 +#: frappe/public/js/frappe/ui/page.js:162 +msgid "Menu" +msgstr "" + +#: frappe/public/js/frappe/form/toolbar.js:242 +#: frappe/public/js/frappe/model/model.js:705 +msgid "Merge with existing" +msgstr "" + +#: frappe/utils/nestedset.py:320 +msgid "Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node" +msgstr "" + +#. 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:205 +#: 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 "" + +#: frappe/public/js/frappe/ui/messages.js:274 frappe/utils/messages.py:78 +msgctxt "Default title of the message dialog" +msgid "Message" +msgstr "" + +#. Label of the message_examples (HTML) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Message Examples" +msgstr "" + +#. 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 "" + +#. Label of the message_parameter (Data) field in DocType 'SMS Settings' +#: frappe/core/doctype/sms_settings/sms_settings.json +msgid "Message Parameter" +msgstr "" + +#: frappe/templates/includes/contact.js:36 +msgid "Message Sent" +msgstr "" + +#. Label of the message_type (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Message Type" +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:956 +msgid "Message clipped" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:344 +msgid "Message from server: {0}" +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.js:104 +msgid "Message not setup" +msgstr "" + +#. 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 the message_id (Code) field in DocType 'Unhandled Email' +#: frappe/email/doctype/unhandled_email/unhandled_email.json +msgid "Message-id" +msgstr "" + +#. 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 the meta_section (Section Break) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Meta" +msgstr "" + +#: frappe/website/doctype/web_page/web_page.js:124 +msgid "Meta Description" +msgstr "" + +#: frappe/website/doctype/web_page/web_page.js:131 +msgid "Meta Image" +msgstr "" + +#. 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/web_page/web_page.json +#: frappe/website/doctype/website_route_meta/website_route_meta.json +msgid "Meta Tags" +msgstr "" + +#: frappe/website/doctype/web_page/web_page.js:117 +msgid "Meta Title" +msgstr "" + +#. 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 the meta_image (Attach Image) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Meta image" +msgstr "" + +#. 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 "" + +#. 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' +#: 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 "" + +#: frappe/__init__.py:468 +msgid "Method Not Allowed" +msgstr "" + +#: frappe/desk/doctype/number_card/number_card.py:74 +msgid "Method is required to create a number card" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Middle Name (Optional)" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. Option for the 'Function' (Select) field in DocType 'Number Card' +#: frappe/desk/doctype/number_card/number_card.json +msgid "Minimum" +msgstr "" + +#. 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 "" + +#. Label of the minor (Int) field in DocType 'Package Release' +#: frappe/core/doctype/package_release/package_release.json +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" +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 "" + +#: frappe/desk/page/setup_wizard/install_fixtures.py:49 +msgid "Miss" +msgstr "" + +#: frappe/desk/form/meta.py:194 +msgid "Missing DocType" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1527 +msgid "Missing Field" +msgstr "" + +#: frappe/public/js/frappe/form/save.js:183 +msgid "Missing Fields" +msgstr "" + +#: frappe/email/doctype/auto_email_report/auto_email_report.py:131 +msgid "Missing Filters Required" +msgstr "" + +#: frappe/desk/form/assign_to.py:110 +msgid "Missing Permission" +msgstr "" + +#: frappe/www/update-password.html:134 frappe/www/update-password.html:141 +msgid "Missing Value" +msgstr "" + +#: 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 "" + +#: frappe/www/login.py:107 +msgid "Mobile" +msgstr "" + +#. 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 "" + +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Mobile Number" +msgstr "" + +#. 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 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:31 +#: 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 "" + +#. 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 +#. Label of a Link in the Build Workspace +#. 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 "" + +#. 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 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 "" + +#. 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 "" + +#. Name of a DocType +#. Label of the module_profile (Link) field in DocType 'User' +#. Label of a Link in the Users Workspace +#: 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 the module_profile_name (Data) field in DocType 'Module Profile' +#: frappe/core/doctype/module_profile/module_profile.json +msgid "Module Profile Name" +msgstr "" + +#: frappe/desk/doctype/module_onboarding/module_onboarding.py:69 +msgid "Module onboarding progress reset" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:250 +msgid "Module to Export" +msgstr "" + +#: frappe/modules/utils.py:273 +msgid "Module {} not found" +msgstr "" + +#. 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 "" + +#. Label of the modules_html (HTML) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Modules HTML" +msgstr "" + +#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day' +#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day' +#. 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' +#. 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 "" + +#. 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' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Monospace" +msgstr "" + +#: frappe/public/js/frappe/views/calendar/calendar.js:275 +msgid "Month" +msgstr "" + +#. 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' +#: 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 "" + +#. 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 "" + +#: 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 "" + +#. 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 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' +#. Label of a field in the edit-profile Web Form +#: 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 +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "More Information" +msgstr "" + +#: 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 "" + +#. 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 "" + +#: frappe/public/js/frappe/ui/sort_selector.js:193 +msgid "Most Used" +msgstr "" + +#: frappe/utils/password.py:75 +msgid "Most probably your password is too long." +msgstr "" + +#: 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 "" + +#: frappe/public/js/frappe/form/grid_row.js:194 +msgid "Move To" +msgstr "" + +#: frappe/core/doctype/communication/communication.js:104 +msgid "Move To Trash" +msgstr "" + +#: 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 "" + +#: frappe/public/js/frappe/form/form.js:181 +msgid "Move cursor to below row" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:185 +msgid "Move cursor to next column" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:189 +msgid "Move cursor to previous column" +msgstr "" + +#: 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:169 +msgid "Move to Row Number" +msgstr "" + +#. 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 "" + +#. 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 "" + +#: 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:344 +msgid "Multiple root nodes not allowed." +msgstr "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#: frappe/desk/query_report.py:210 +msgid "Must have report permission to access this report." +msgstr "" + +#: frappe/core/doctype/report/report.py:151 +msgid "Must specify a Query to run" +msgstr "" + +#. Label of the mute_sounds (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Mute Sounds" +msgstr "" + +#: 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:525 +#: 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 "" + +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:57 +msgid "My Device" +msgstr "" + +#: frappe/public/js/frappe/ui/apps_switcher.js:71 +msgid "My Workspaces" +msgstr "" + +#. Option for the 'Database Engine' (Select) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "MyISAM" +msgstr "" + +#: 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' +#: 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 "" + +#. 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:76 +#: frappe/public/js/frappe/form/multi_select_dialog.js:240 +#: frappe/public/js/frappe/form/save.js:159 +#: frappe/public/js/frappe/views/file/file_view.js:97 +#: frappe/website/doctype/website_slideshow/website_slideshow.js:25 +msgid "Name" +msgstr "" + +#: frappe/integrations/doctype/webhook/webhook.js:29 +msgid "Name (Doc Name)" +msgstr "" + +#: frappe/desk/utils.py:24 +msgid "Name already taken, please set a new name" +msgstr "" + +#: frappe/model/naming.py:512 +msgid "Name cannot contain special characters like {0}" +msgstr "" + +#: 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 "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:117 +msgid "Name of the new Print Format" +msgstr "" + +#: frappe/model/naming.py:507 +msgid "Name of {0} cannot be {1}" +msgstr "" + +#: frappe/utils/password_strength.py:174 +msgid "Names and surnames by themselves are easy to guess." +msgstr "" + +#. 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 "" + +#. Description of the 'Auto Name' (Data) field in DocType 'Customize Form' +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Naming Options:\n" +"
  1. field:[fieldname] - By Field
  2. naming_series: - By Naming Series (field called naming_series must be present)
  3. Prompt - Prompt user for a name
  4. [series] - Series by prefix (separated by a dot); for example PRE.#####
  5. \n" +"
  6. 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 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 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 "" + +#: frappe/model/naming.py:268 +msgid "Naming Series mandatory" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType '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 "" + +#. Name of a DocType +#: frappe/core/doctype/navbar_item/navbar_item.json +msgid "Navbar Item" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#: frappe/public/js/frappe/list/list_view.js:1380 +msgctxt "Description of a list view shortcut" +msgid "Navigate list down" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1387 +msgctxt "Description of a list view shortcut" +msgid "Navigate list up" +msgstr "" + +#: frappe/public/js/frappe/ui/page.js:175 +msgid "Navigate to main content" +msgstr "" + +#. Label of the navigation_settings_section (Section Break) field in DocType +#. 'User' +#: frappe/core/doctype/user/user.json +msgid "Navigation Settings" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:485 +msgid "Need Help?" +msgstr "" + +#: frappe/desk/doctype/workspace/workspace.py:322 +msgid "Need Workspace Manager role to edit private workspace of other users" +msgstr "" + +#: frappe/model/document.py:794 +msgid "Negative Value" +msgstr "" + +#: frappe/database/query.py:335 +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 "" + +#. Name of a DocType +#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json +msgid "Network Printer Settings" +msgstr "" + +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Never" +msgstr "" + +#. Option for the 'DocType View' (Select) field in DocType '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:473 +#: 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 "" + +#: frappe/public/js/frappe/views/interaction.js:15 +msgid "New Activity" +msgstr "" + +#: 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/public/js/frappe/form/templates/contact_list.html:3 +msgid "New Contact" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:70 +msgid "New Custom Block" +msgstr "" + +#: frappe/printing/page/print/print.js:308 +#: frappe/printing/page/print/print.js:355 +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 "" + +#: frappe/desk/doctype/notification_log/notification_log.py:154 +msgid "New Document Shared {0}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:27 +#: frappe/public/js/frappe/views/communication.js:23 +msgid "New Email" +msgstr "" + +#: 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 "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:47 +msgid "New Event" +msgstr "" + +#: frappe/public/js/frappe/views/file/file_view.js:94 +msgid "New Folder" +msgstr "" + +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 +msgid "New Kanban Board" +msgstr "" + +#: 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 "" + +#: frappe/www/contact.py:61 +msgid "New Message from Website Contact Page" +msgstr "" + +#. 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 "" + +#: frappe/desk/doctype/notification_log/notification_log.py:151 +msgid "New Notification" +msgstr "" + +#: 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:178 frappe/www/update-password.html:43 +msgid "New Password" +msgstr "" + +#: frappe/printing/page/print/print.js:280 +#: frappe/printing/page/print/print.js:334 +#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:61 +msgid "New Print Format Name" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:68 +msgid "New Quick List" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1386 +msgid "New Report name" +msgstr "" + +#. 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:15 +#: frappe/core/doctype/version/version_view.html:77 +msgid "New Value" +msgstr "" + +#: frappe/workflow/page/workflow_builder/workflow_builder.js:61 +msgid "New Workflow Name" +msgstr "" + +#: frappe/public/js/frappe/views/workspace/workspace.js:390 +msgid "New Workspace" +msgstr "" + +#. 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 "" + +#: frappe/utils/change_log.py:389 +msgid "New updates are available" +msgstr "" + +#. 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 "" + +#. 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 "" + +#: 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:176 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:177 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:226 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:227 +#: 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:438 +msgid "New {0}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:393 +msgid "New {0} Created" +msgstr "" + +#: 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:390 +msgid "New {0} {1} created" +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:416 +msgid "New {0}: {1}" +msgstr "" + +#: frappe/utils/change_log.py:375 +msgid "New {} releases for the following apps are available" +msgstr "" + +#: frappe/core/doctype/user/user.py:815 +msgid "Newly created user {0} has no roles enabled." +msgstr "" + +#. 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 "" + +#: 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:93 +#: 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 "" + +#: frappe/public/js/frappe/ui/slides.js:359 +msgctxt "Go to next slide" +msgid "Next" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:684 +msgid "Next 14 Days" +msgstr "" + +#: 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 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 "" + +#: 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 "" + +#: 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 "" + +#. 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 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 "" + +#: frappe/public/js/frappe/ui/filters/filter.js:692 +msgid "Next Week" +msgstr "" + +#: 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 "" + +#. 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:100 +#: frappe/email/doctype/notification/notification.py:102 +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +#: frappe/integrations/doctype/webhook/webhook.py:132 +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/public/js/form_builder/utils.js:341 +#: frappe/public/js/frappe/form/controls/link.js:498 +#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 +#: frappe/website/doctype/help_article/templates/help_article.html:26 +msgid "No" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:546 +msgctxt "Checkbox is not checked" +msgid "No" +msgstr "" + +#: 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 "" + +#. 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 "" + +#: 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 "" + +#: 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 "" + +#: frappe/public/js/frappe/views/inbox/inbox_view.js:196 +msgid "No Email Accounts Assigned" +msgstr "" + +#: frappe/email/doctype/email_group/email_group.py:50 +msgid "No Email field found in {0}" +msgstr "" + +#: frappe/public/js/frappe/views/inbox/inbox_view.js:183 +msgid "No Emails" +msgstr "" + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:361 +msgid "No Entry for the User {0} found within LDAP!" +msgstr "" + +#: frappe/public/js/frappe/widgets/chart_widget.js:407 +msgid "No Filters Set" +msgstr "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:372 +msgid "No Google Calendar Event to sync." +msgstr "" + +#: frappe/public/js/frappe/ui/capture.js:262 +msgid "No Images" +msgstr "" + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:363 +msgid "No LDAP User found for email: {0}" +msgstr "" + +#: 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:743 +#: frappe/printing/page/print/print.js:824 +#: 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 "" + +#: frappe/model/naming.py:489 +msgid "No Name Specified for {0}" +msgstr "" + +#: frappe/public/js/frappe/ui/notifications/notifications.js:315 +msgid "No New notifications" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1757 +msgid "No Permissions Specified" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager.js:199 +msgid "No Permissions set for this criteria." +msgstr "" + +#: frappe/core/page/dashboard_view/dashboard_view.js:93 +msgid "No Permitted Charts" +msgstr "" + +#: frappe/core/page/dashboard_view/dashboard_view.js:92 +msgid "No Permitted Charts on this Dashboard" +msgstr "" + +#: frappe/printing/doctype/print_settings/print_settings.js:13 +msgid "No Preview" +msgstr "" + +#: frappe/printing/page/print/print.js:747 +msgid "No Preview Available" +msgstr "" + +#: frappe/printing/page/print/print.js:902 +msgid "No Printer is Available." +msgstr "" + +#: frappe/core/doctype/rq_worker/rq_worker_list.js:3 +msgid "No RQ Workers connected. Try restarting the bench." +msgstr "" + +#: 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 "" + +#: frappe/core/doctype/user/user.py:816 +msgid "No Roles Specified" +msgstr "" + +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 +msgid "No Select Field Found" +msgstr "" + +#: frappe/core/doctype/recorder/recorder.py:179 +msgid "No Suggestions" +msgstr "" + +#: frappe/desk/reportview.py:707 +msgid "No Tags" +msgstr "" + +#: 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:236 +msgid "No alerts for today" +msgstr "" + +#: frappe/core/doctype/recorder/recorder.py:178 +msgid "No automatic optimization suggestions available." +msgstr "" + +#: frappe/public/js/frappe/form/save.js:36 +msgid "No changes in document" +msgstr "" + +#: 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 "" + +#: frappe/custom/doctype/doctype_layout/doctype_layout.js:59 +msgid "No changes to sync" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:298 +msgid "No changes to update" +msgstr "" + +#: frappe/templates/includes/comments/comments.html:4 +msgid "No comments yet." +msgstr "" + +#: frappe/public/js/frappe/form/templates/contact_list.html:91 +msgid "No contacts added yet." +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:469 +msgid "No contacts linked to document" +msgstr "" + +#: frappe/desk/query_report.py:381 +msgid "No data to export" +msgstr "" + +#: 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 "" + +#: frappe/public/js/frappe/ui/toolbar/search.js:71 +msgid "No documents found tagged with {0}" +msgstr "" + +#: 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 "" + +#: frappe/core/api/user_invitation.py:17 +msgid "No email addresses to invite" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:478 +msgid "No failed logs" +msgstr "" + +#: frappe/public/js/frappe/views/kanban/kanban_view.js:385 +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 "" + +#: 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 "" + +#: frappe/templates/includes/search_template.html:49 +msgid "No matching records. Search something new" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form_list.js:162 +msgid "No more items to display" +msgstr "" + +#: frappe/utils/password_strength.py:45 +msgid "No need for symbols, digits, or uppercase letters." +msgstr "" + +#: frappe/integrations/doctype/google_contacts/google_contacts.py:195 +msgid "No new Google Contacts synced." +msgstr "" + +#: 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 "" + +#. 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 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 "" + +#. 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 "" + +#: frappe/__init__.py:623 frappe/client.py:109 frappe/client.py:151 +msgid "No permission for {0}" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:1142 +msgctxt "{0} = verb, {1} = object" +msgid "No permission to '{0}' {1}" +msgstr "" + +#: frappe/model/db_query.py:949 +msgid "No permission to read {0}" +msgstr "" + +#: frappe/share.py:220 +msgid "No permission to {0} {1} {2}" +msgstr "" + +#: frappe/core/doctype/user_permission/user_permission_list.js:175 +msgid "No records deleted" +msgstr "" + +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:115 +msgid "No records present in {0}" +msgstr "" + +#: 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 "" + +#: frappe/public/js/frappe/form/grid.js:66 +msgid "No rows" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:135 +msgid "No subject" +msgstr "" + +#: frappe/www/printview.py:472 +msgid "No template found at path: {0}" +msgstr "" + +#: 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 "" + +#: 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:234 +msgid "No {0} found" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:499 +msgid "No {0} found with matching filters. Clear filters to see all {0}." +msgstr "" + +#: frappe/public/js/frappe/views/inbox/inbox_view.js:171 +msgid "No {0} mail" +msgstr "" + +#: frappe/public/js/form_builder/utils.js:117 +#: frappe/public/js/frappe/form/grid_row.js:257 +msgctxt "Title of the 'row number' column" +msgid "No." +msgstr "" + +#. Option for the 'Provider' (Select) field in DocType 'Geolocation Settings' +#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json +msgid "Nomatim" +msgstr "" + +#. 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 "" + +#: frappe/desk/page/setup_wizard/install_fixtures.py:33 +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 "" + +#. 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 the normalized_query (Data) field in DocType 'Recorder Query' +#: frappe/core/doctype/recorder_query/recorder_query.json +msgid "Normalized Query" +msgstr "" + +#: frappe/core/doctype/user/user.py:1029 +#: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269 +msgid "Not Allowed" +msgstr "" + +#: 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 "" + +#: frappe/public/js/frappe/ui/filters/filter.js:34 +msgid "Not Descendants Of" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:17 +msgid "Not Equals" +msgstr "" + +#: frappe/app.py:390 frappe/www/404.html:3 +msgid "Not Found" +msgstr "" + +#. Label of the not_helpful (Int) field in DocType 'Help Article' +#: frappe/website/doctype/help_article/help_article.json +msgid "Not Helpful" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:21 +msgid "Not In" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:19 +msgid "Not Like" +msgstr "" + +#: frappe/public/js/frappe/form/linked_with.js:45 +msgid "Not Linked to any record" +msgstr "" + +#. Label of the not_nullable (Check) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Not Nullable" +msgstr "" + +#: frappe/__init__.py:550 frappe/app.py:383 frappe/desk/calendar.py:26 +#: frappe/public/js/frappe/web_form/webform_script.js:15 +#: frappe/website/doctype/web_form/web_form.py:774 +#: 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 "" + +#: frappe/desk/query_report.py:596 +msgid "Not Permitted to read {0}" +msgstr "" + +#: frappe/website/doctype/web_form/web_form_list.js:7 +#: frappe/website/doctype/web_page/web_page_list.js:7 +msgid "Not Published" +msgstr "" + +#: 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:183 +#: frappe/public/js/frappe/views/reports/report_view.js:209 +#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39 +#: frappe/website/doctype/web_form/templates/web_form.html:85 +msgid "Not Saved" +msgstr "" + +#: frappe/core/doctype/error_log/error_log_list.js:7 +msgid "Not Seen" +msgstr "" + +#. 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 "" + +#: frappe/public/js/frappe/list/list_sidebar_group_by.js:219 +msgid "Not Set" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:608 +msgctxt "Field value is not set" +msgid "Not Set" +msgstr "" + +#: frappe/utils/csvutils.py:102 +msgid "Not a valid Comma Separated Value (CSV File)" +msgstr "" + +#: frappe/core/doctype/user/user.py:266 +msgid "Not a valid User Image." +msgstr "" + +#: frappe/model/workflow.py:117 +msgid "Not a valid Workflow Action" +msgstr "" + +#: 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 "" + +#: frappe/permissions.py:383 +msgid "Not allowed for {0}: {1}" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:639 +msgid "Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:336 +msgid "Not allowed to create custom Virtual DocType." +msgstr "" + +#: frappe/www/printview.py:165 +msgid "Not allowed to print cancelled documents" +msgstr "" + +#: frappe/www/printview.py:162 +msgid "Not allowed to print draft documents" +msgstr "" + +#: frappe/permissions.py:213 +msgid "Not allowed via controller permission check" +msgstr "" + +#: frappe/public/js/frappe/request.js:147 frappe/website/js/website.js:94 +msgid "Not found" +msgstr "" + +#: frappe/core/doctype/page/page.py:62 +msgid "Not in Developer Mode" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:331 +msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType." +msgstr "" + +#: frappe/core/doctype/system_settings/system_settings.py:217 +#: 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:787 +#: frappe/website/js/website.js:97 +msgid "Not permitted" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:53 +msgid "Not permitted to view {0}" +msgstr "" + +#. Label of a Link in the Tools Workspace +#. Name of a DocType +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:438 +#: frappe/automation/workspace/tools/tools.json +#: frappe/desk/doctype/note/note.json +msgid "Note" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/note_seen_by/note_seen_by.json +msgid "Note Seen By" +msgstr "" + +#: frappe/www/confirm_workflow_action.html:8 +msgid "Note:" +msgstr "" + +#: frappe/public/js/frappe/utils/utils.js:775 +msgid "Note: Changing the Page Name will break previous URL to this page." +msgstr "" + +#: 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' +#: 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 "" + +#. 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 "" + +#: frappe/core/doctype/user/user.js:387 +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 "" + +#: frappe/core/doctype/data_export/exporter.py:183 +msgid "Notes:" +msgstr "" + +#: 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 "" + +#: frappe/public/js/frappe/form/undo_manager.js:33 +msgid "Nothing left to undo" +msgstr "" + +#: frappe/public/js/frappe/list/base_list.js:383 +#: frappe/public/js/frappe/views/reports/query_report.js:105 +#: frappe/templates/includes/list/list.html:9 +#: frappe/website/doctype/help_article/templates/help_article_list.html:21 +msgid "Nothing to show" +msgstr "" + +#: frappe/core/doctype/user_permission/user_permission_list.js:129 +msgid "Nothing to update" +msgstr "" + +#. Label of the notification (Tab Break) field in DocType 'Auto Repeat' +#. Label of a Link in the Tools Workspace +#. 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 "" + +#. Name of a DocType +#: frappe/desk/doctype/notification_log/notification_log.json +msgid "Notification Log" +msgstr "" + +#. Name of a DocType +#: frappe/email/doctype/notification_recipient/notification_recipient.json +msgid "Notification Recipient" +msgstr "" + +#. Label of a Link in the Tools Workspace +#. 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 "" + +#. Name of a DocType +#: frappe/desk/doctype/notification_subscribed_document/notification_subscribed_document.json +msgid "Notification Subscribed Document" +msgstr "" + +#: frappe/public/js/frappe/form/templates/timeline_message_box.html:8 +msgid "Notification sent to" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:544 +msgid "Notification: customer {0} has no Mobile number set" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:530 +msgid "Notification: document {0} has no {1} number set (field: {2})" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:539 +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 "" + +#: frappe/public/js/frappe/ui/notifications/notifications.js:299 +msgid "Notifications Disabled" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#. Label of the notify_by_email (Check) field in DocType 'DocShare' +#: frappe/core/doctype/docshare/docshare.json +msgid "Notify by email" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#: frappe/public/js/frappe/form/controls/datetime.js:41 +#: frappe/public/js/frappe/form/controls/time.js:37 +msgid "Now" +msgstr "" + +#. Label of the phone (Data) field in DocType 'Contact Phone' +#: frappe/contacts/doctype/contact_phone/contact_phone.json +msgid "Number" +msgstr "" + +#. 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 "" + +#. Name of a DocType +#: frappe/desk/doctype/number_card_link/number_card_link.json +msgid "Number Card Link" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#. Label of the backup_limit (Int) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Number of Backups" +msgstr "" + +#. 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 "" + +#. Label of the number_of_queries (Int) field in DocType 'Recorder' +#: frappe/core/doctype/recorder/recorder.json +msgid "Number of Queries" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:443 +#: frappe/public/js/frappe/doctype/index.js:59 +msgid "Number of attachment fields are more than {}, limit updated to {}." +msgstr "" + +#: frappe/core/doctype/system_settings/system_settings.py:172 +msgid "Number of backups must be greater than zero." +msgstr "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#. 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' +#: frappe/email/doctype/email_account/email_account.json +msgid "OAuth" +msgstr "" + +#. Name of a DocType +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +msgid "OAuth Authorization Code" +msgstr "" + +#. Name of a DocType +#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json +msgid "OAuth Bearer Token" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. 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 +#. 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 "" + +#. Name of a DocType +#: frappe/integrations/doctype/oauth_scope/oauth_scope.json +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 "" + +#. Option for the 'Method' (Select) field in DocType 'Recorder' +#: frappe/core/doctype/recorder/recorder.json +msgid "OPTIONS" +msgstr "" + +#: 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' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "OTP App" +msgstr "" + +#. 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 "" + +#: frappe/twofactor.py:450 +msgid "OTP Secret Reset - {0}" +msgstr "" + +#: frappe/twofactor.py:469 +msgid "OTP Secret has been reset. Re-registration will be required on next login." +msgstr "" + +#: 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' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "Off" +msgstr "" + +#. Option for the 'Address Type' (Select) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "Office" +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 "Office 365" +msgstr "" + +#: 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 the offset_y (Int) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +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 "" + +#: 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' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Older backups will be automatically deleted" +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' +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +msgid "On Hold" +msgstr "" + +#. Option for the 'DocType Event' (Select) field in DocType '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' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "On checking this option, URL will be treated like a jinja template string" +msgstr "" + +#: 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:966 +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 +#: frappe/desk/doctype/onboarding_permission/onboarding_permission.json +msgid "Onboarding Permission" +msgstr "" + +#. 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 +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Onboarding Step" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/onboarding_step_map/onboarding_step_map.json +msgid "Onboarding Step Map" +msgstr "" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:264 +msgid "Onboarding complete" +msgstr "" + +#. Description of the 'Is Submittable' (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/doctype/doctype_list.js:43 +msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended." +msgstr "" + +#: 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 "" + +#: frappe/twofactor.py:278 +msgid "One Time Password (OTP) Registration Code from {}" +msgstr "" + +#: frappe/core/doctype/data_export/exporter.py:331 +msgid "One of" +msgstr "" + +#: frappe/client.py:213 +msgid "Only 200 inserts allowed in one request" +msgstr "" + +#: frappe/email/doctype/email_queue/email_queue.py:87 +msgid "Only Administrator can delete Email Queue" +msgstr "" + +#: frappe/core/doctype/page/page.py:66 +msgid "Only Administrator can edit" +msgstr "" + +#: frappe/core/doctype/report/report.py:75 +msgid "Only Administrator can save a standard report. Please rename and save." +msgstr "" + +#: frappe/recorder.py:314 +msgid "Only Administrator is allowed to use Recorder" +msgstr "" + +#. 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 "" + +#: frappe/core/doctype/doctype/doctype.py:1621 +msgid "Only Options allowed for Data field are:" +msgstr "" + +#. 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 "" + +#: frappe/desk/doctype/workspace/workspace.js:32 +msgid "Only Workspace Manager can edit public workspaces" +msgstr "" + +#: frappe/modules/utils.py:65 +msgid "Only allowed to export customizations in developer mode" +msgstr "" + +#: frappe/model/document.py:1239 +msgid "Only draft documents can be discarded" +msgstr "" + +#. 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 "" + +#: 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 "" + +#: frappe/contacts/doctype/contact/contact.py:131 +#: frappe/contacts/doctype/contact/contact.py:158 +msgid "Only one {0} can be set as primary." +msgstr "" + +#: frappe/desk/reportview.py:358 +msgid "Only reports of type Report Builder can be deleted" +msgstr "" + +#: frappe/desk/reportview.py:329 +msgid "Only reports of type Report Builder can be edited" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.py:131 +msgid "Only standard DocTypes are allowed to be customized from Customize Form." +msgstr "" + +#: frappe/model/delete_doc.py:281 +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 "" + +#: frappe/email/doctype/auto_email_report/auto_email_report.py:108 +msgid "Only {0} emailed reports are allowed per user." +msgstr "" + +#: 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 "" + +#: frappe/desk/doctype/todo/todo_list.js:14 +msgctxt "Access" +msgid "Open" +msgstr "" + +#: frappe/public/js/frappe/ui/keyboard.js:207 +#: frappe/public/js/frappe/ui/keyboard.js:217 +msgid "Open Awesomebar" +msgstr "" + +#: 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 "" + +#. Label of the subscribed_documents (Table MultiSelect) field in DocType +#. 'Notification Settings' +#: frappe/desk/doctype/notification_settings/notification_settings.json +msgid "Open Documents" +msgstr "" + +#: frappe/public/js/frappe/ui/keyboard.js:243 +msgid "Open Help" +msgstr "" + +#. 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 "" + +#: frappe/public/js/frappe/ui/keyboard.js:226 +msgid "Open Settings" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +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 "" + +#. 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 "" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:176 +msgid "Open a module or tool" +msgstr "" + +#: frappe/public/js/frappe/ui/keyboard.js:367 +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:1433 +msgctxt "Description of a list view shortcut" +msgid "Open list item" +msgstr "" + +#: 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 "" + +#: 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:286 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:287 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:298 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:308 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:317 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:335 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:336 +msgid "Open {0}" +msgstr "" + +#. Label of the openid_configuration (Data) field in DocType 'Connected App' +#: frappe/integrations/doctype/connected_app/connected_app.json +msgid "OpenID Configuration" +msgstr "" + +#: frappe/integrations/doctype/connected_app/connected_app.js:15 +msgid "OpenID Configuration fetched successfully!" +msgstr "" + +#. Option for the 'Directory Server' (Select) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "OpenLDAP" +msgstr "" + +#. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Opened" +msgstr "" + +#. Label of the operation (Select) field in DocType 'Activity Log' +#: frappe/core/doctype/activity_log/activity_log.json +msgid "Operation" +msgstr "" + +#: frappe/utils/data.py:2172 +msgid "Operator must be one of {0}" +msgstr "" + +#: 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 "" + +#: frappe/core/doctype/file/file.js:106 +msgid "Optimizing image..." +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.js:100 +msgid "Option 1" +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.js:102 +msgid "Option 2" +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.js:104 +msgid "Option 3" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1639 +msgid "Option {0} for field {1} is not a child table" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. 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 (Text) field in DocType 'Web Form List Column' +#. 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_form_list_column/web_form_list_column.json +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Options" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1367 +msgid "Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType'" +msgstr "" + +#. Label of the options_help (HTML) field in DocType 'Custom Field' +#: frappe/custom/doctype/custom_field/custom_field.json +msgid "Options Help" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1661 +msgid "Options for Rating field can range from 3 to 10" +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.js:96 +msgid "Options for select. Each option on a new line." +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1384 +msgid "Options for {0} must be set before setting the default value." +msgstr "" + +#: frappe/public/js/form_builder/store.js:182 +msgid "Options is required for field {0} of type {1}" +msgstr "" + +#: frappe/model/base_document.py:928 +msgid "Options not set for link field {0}" +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 "Orange" +msgstr "" + +#. Label of the order (Code) field in DocType 'Kanban Board Column' +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json +msgid "Order" +msgstr "" + +#: frappe/database/query.py:769 +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 "" + +#. 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 "" + +#: frappe/public/js/frappe/form/print_utils.js:21 +msgid "Orientation" +msgstr "" + +#: frappe/core/doctype/version/version_view.html:14 +#: frappe/core/doctype/version/version_view.html:76 +msgid "Original Value" +msgstr "" + +#. Option for the 'Address Type' (Select) field in DocType 'Address' +#. Option for the 'Type' (Select) field in DocType 'Communication' +#. Option for the 'Show in Module Section' (Select) field in DocType 'DocType' +#. Option for the 'Event Category' (Select) field in DocType '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 "" + +#. Label of the outgoing_tab (Tab Break) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Outgoing" +msgstr "" + +#. 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 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 the outgoing_mail_settings (Section Break) field in DocType 'Email +#. Domain' +#: frappe/email/doctype/email_domain/email_domain.json +msgid "Outgoing Settings" +msgstr "" + +#: frappe/email/doctype/email_domain/email_domain.py:33 +msgid "Outgoing email account not correct" +msgstr "" + +#. Option for the 'Service' (Select) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Outlook.com" +msgstr "" + +#. 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 "" + +#: frappe/public/js/frappe/form/templates/form_dashboard.html:5 +msgid "Overview" +msgstr "" + +#. Option for the 'Method' (Select) field in DocType 'Recorder' +#: frappe/core/doctype/recorder/recorder.json +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:84 +#: frappe/public/js/frappe/form/templates/print_layout.html:44 +#: frappe/public/js/frappe/views/reports/query_report.js:1812 +msgid "PDF" +msgstr "" + +#: 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 the pdf_page_size (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "PDF Page Size" +msgstr "" + +#. 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 the pdf_settings (Section Break) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "PDF Settings" +msgstr "" + +#: frappe/utils/print_format.py:289 +msgid "PDF generation failed" +msgstr "" + +#: frappe/utils/pdf.py:106 +msgid "PDF generation failed because of broken image links" +msgstr "" + +#: frappe/printing/page/print/print.js:656 +msgid "PDF generation may not work as expected." +msgstr "" + +#: frappe/printing/page/print/print.js:574 +msgid "PDF printing via \"Raw Print\" is not supported." +msgstr "" + +#. 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' +#. 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 "" + +#. 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 "" + +#. Label of the package (Link) field in DocType 'Module Def' +#. Name of a DocType +#. Label of the package (Link) field in DocType 'Package Release' +#. Label of a Link in the Build Workspace +#: 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 +#. 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 "" + +#. Label of the package_name (Data) field in DocType 'Package' +#: frappe/core/doctype/package/package.json +msgid "Package Name" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/package_release/package_release.json +msgid "Package Release" +msgstr "" + +#. Label of a Card Break in the Build Workspace +#: 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 +#. Option for the 'Set Role For' (Select) field in DocType 'Role Permission for +#. Page and Report' +#. 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' +#. Option for the 'Type' (Select) field in DocType '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 "" + +#. 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 "" + +#. 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 "" + +#. Label of the page_blocks (Table) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Page Building Blocks" +msgstr "" + +#. Label of the page_html (Section Break) field in DocType 'Page' +#: frappe/core/doctype/page/page.json +msgid "Page HTML" +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:73 +msgid "Page Height (in mm)" +msgstr "" + +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:5 +msgid "Page Margins" +msgstr "" + +#. 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 the page_route (Small Text) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +msgid "Page Route" +msgstr "" + +#. 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 "" + +#: frappe/public/js/frappe/ui/keyboard.js:125 +msgid "Page Shortcuts" +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:66 +msgid "Page Size" +msgstr "" + +#. 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 "" + +#: frappe/public/js/frappe/list/bulk_operations.js:80 +msgid "Page Width (in mm)" +msgstr "" + +#: frappe/www/qrcode.py:35 +msgid "Page has expired!" +msgstr "" + +#: 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 "" + +#: frappe/public/js/frappe/views/container.js:52 frappe/www/404.html:23 +msgid "Page not found" +msgstr "" + +#. Description of a DocType +#: frappe/website/doctype/web_page/web_page.json +msgid "Page to show on the website\n" +msgstr "" + +#: 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:288 +#: frappe/templates/print_formats/standard.html:34 +msgid "Page {0} of {1}" +msgstr "" + +#. Label of the parameter (Data) field in DocType 'SMS Parameter' +#: frappe/core/doctype/sms_parameter/sms_parameter.json +msgid "Parameter" +msgstr "" + +#: frappe/public/js/frappe/model/model.js:142 +#: frappe/public/js/frappe/views/workspace/workspace.js:434 +msgid "Parent" +msgstr "" + +#. 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 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 "" + +#: frappe/desk/doctype/number_card/number_card.py:66 +msgid "Parent Document Type is required to create a number card" +msgstr "" + +#. 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 the parent_fieldname (Select) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Parent Field" +msgstr "" + +#. Label of the nsm_parent_field (Data) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/doctype/doctype.py:934 +msgid "Parent Field (Tree)" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:940 +msgid "Parent Field must be a valid fieldname" +msgstr "" + +#. 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 "" + +#: frappe/core/doctype/doctype/doctype.py:1198 +msgid "Parent Missing" +msgstr "" + +#. Label of the parent_page (Link) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "Parent Page" +msgstr "" + +#: frappe/core/doctype/data_export/exporter.py:24 +msgid "Parent Table" +msgstr "" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:404 +msgid "Parent document type is required to create a dashboard chart" +msgstr "" + +#: 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 "" + +#: 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 "" + +#: frappe/client.py:467 +msgid "Parenttype, Parent and Parentfield are required to insert a child record" +msgstr "" + +#. 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' +#: frappe/core/doctype/data_import/data_import.json +msgid "Partial Success" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Email Queue' +#: frappe/email/doctype/email_queue/email_queue.json +msgid "Partially Sent" +msgstr "" + +#. 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 "" + +#. 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' +#: frappe/contacts/doctype/contact/contact.json +msgid "Passive" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. 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' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/core/doctype/user/user.js:165 frappe/core/doctype/user/user.js:212 +#: frappe/core/doctype/user/user.js:232 +#: 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 "" + +#: frappe/core/doctype/user/user.py:1094 +msgid "Password Email Sent" +msgstr "" + +#: frappe/core/doctype/user/user.py:459 +msgid "Password Reset" +msgstr "" + +#. 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 "" + +#: frappe/public/js/frappe/form/grid_row.js:897 +msgid "Password cannot be filtered" +msgstr "" + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:357 +msgid "Password changed successfully." +msgstr "" + +#. Label of the password (Password) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "Password for Base DN" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:189 +msgid "Password is required or select Awaiting Password" +msgstr "" + +#: frappe/www/update-password.html:94 +msgid "Password is valid. 👍" +msgstr "" + +#: frappe/public/js/frappe/desk.js:212 +msgid "Password missing in Email Account" +msgstr "" + +#: frappe/utils/password.py:47 +msgid "Password not found for {0} {1} {2}" +msgstr "" + +#: frappe/core/doctype/user/user.py:1093 +msgid "Password reset instructions have been sent to {}'s email" +msgstr "" + +#: frappe/www/update-password.html:191 +msgid "Password set" +msgstr "" + +#: frappe/auth.py:261 +msgid "Password size exceeded the maximum allowed size" +msgstr "" + +#: frappe/core/doctype/user/user.py:882 +msgid "Password size exceeded the maximum allowed size." +msgstr "" + +#: frappe/www/update-password.html:93 +msgid "Passwords do not match" +msgstr "" + +#: frappe/core/doctype/user/user.js:198 +msgid "Passwords do not match!" +msgstr "" + +#: frappe/public/js/frappe/views/file/file_view.js:151 +msgid "Paste" +msgstr "" + +#. 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 "" + +#. Name of a DocType +#: frappe/core/doctype/patch_log/patch_log.json +msgid "Patch Log" +msgstr "" + +#: frappe/modules/patch_handler.py:136 +msgid "Patch type {} not found in patches.txt" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#: 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 "" + +#. 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 'User Invitation' +#. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion +#. Step' +#: frappe/core/doctype/data_import/data_import.json +#: frappe/core/doctype/translation/translation.json +#: frappe/core/doctype/user_invitation/user_invitation.json +#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json +msgid "Pending" +msgstr "" + +#. 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 "" + +#. 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' +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +msgid "Pending Verification" +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' +#: 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 "" + +#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Percentage" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. Option for the 'Address Type' (Select) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "Permanent" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:1028 +msgid "Permanently Cancel {0}?" +msgstr "" + +#: 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 "" + +#: frappe/public/js/frappe/model/model.js:684 +msgid "Permanently delete {0}?" +msgstr "" + +#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:535 +msgid "Permission Error" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "Permission Inspector" +msgstr "" + +#. 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 "" + +#: 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 +#: frappe/core/workspace/users/users.json +msgid "Permission Manager" +msgstr "" + +#. Option for the 'Script Type' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Permission Query" +msgstr "" + +#. Label of the permission_rules (Section Break) field in DocType 'Custom Role' +#: frappe/core/doctype/custom_role/custom_role.json +msgid "Permission Rules" +msgstr "" + +#. Label of the permission_type (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "Permission Type" +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 +#. 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:131 frappe/core/doctype/user/user.js:140 +#: frappe/core/doctype/user/user.js:149 +#: 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 "" + +#: frappe/core/doctype/doctype/doctype.py:1848 +#: frappe/core/doctype/doctype/doctype.py:1858 +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 +#: frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.json +#: frappe/core/workspace/users/users.json +msgid "Permitted Documents For User" +msgstr "" + +#. 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' +#: frappe/contacts/doctype/address/address.json +msgid "Personal" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +msgid "Personal Data Deletion Request" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json +msgid "Personal Data Deletion Step" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json +msgid "Personal Data Download Request" +msgstr "" + +#. 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' +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Label of the phone (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form +#. 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' +#: frappe/contacts/doctype/address/address.json +#: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:47 +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.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 "" + +#. Label of the phone_no (Data) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Phone No." +msgstr "" + +#: frappe/utils/__init__.py:124 +msgid "Phone Number {0} set in field {1} is not valid." +msgstr "" + +#: frappe/public/js/frappe/form/print_utils.js:68 +#: frappe/public/js/frappe/views/reports/report_view.js:1581 +#: frappe/public/js/frappe/views/reports/report_view.js:1584 +msgid "Pick Columns" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Pie" +msgstr "" + +#. Label of the pincode (Data) field in DocType 'Contact Us Settings' +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +msgid "Pincode" +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 "Pink" +msgstr "" + +#. 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' +#: frappe/email/doctype/notification/notification.json +msgid "Plain Text" +msgstr "" + +#. Option for the 'Address Type' (Select) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "Plant" +msgstr "" + +#: 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 "" + +#: frappe/website/doctype/website_theme/website_theme.py:77 +msgid "Please Duplicate this Website Theme to customize." +msgstr "" + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:162 +msgid "Please Install the ldap3 library via pip to use ldap functionality." +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:308 +msgid "Please Set Chart" +msgstr "" + +#: frappe/core/doctype/sms_settings/sms_settings.py:88 +msgid "Please Update SMS Settings" +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:613 +msgid "Please add a subject to your email" +msgstr "" + +#: frappe/templates/includes/comments/comments.html:168 +msgid "Please add a valid comment." +msgstr "" + +#: frappe/core/doctype/user/user.py:1076 +msgid "Please ask your administrator to verify your sign-up" +msgstr "" + +#: frappe/public/js/frappe/form/controls/select.js:101 +msgid "Please attach a file first." +msgstr "" + +#: frappe/printing/doctype/letter_head/letter_head.py:82 +msgid "Please attach an image file to set HTML for Footer." +msgstr "" + +#: frappe/printing/doctype/letter_head/letter_head.py:70 +msgid "Please attach an image file to set HTML for Letter Head." +msgstr "" + +#: frappe/core/doctype/package_import/package_import.py:39 +msgid "Please attach the package" +msgstr "" + +#: frappe/utils/dashboard.py:58 +msgid "Please check the filter values set for Dashboard Chart: {}" +msgstr "" + +#: frappe/model/base_document.py:1008 +msgid "Please check the value of \"Fetch From\" set for field {0}" +msgstr "" + +#: frappe/core/doctype/user/user.py:1074 +msgid "Please check your email for verification" +msgstr "" + +#: frappe/email/smtp.py:134 +msgid "Please check your email login credentials." +msgstr "" + +#: 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 "" + +#: 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 "" + +#: frappe/templates/emails/password_reset.html:2 +msgid "Please click on the following link to set your new password" +msgstr "" + +#: frappe/www/confirm_workflow_action.html:4 +msgid "Please confirm your action to {0} this document." +msgstr "" + +#: frappe/printing/page/print/print.js:658 +msgid "Please contact your system manager to install correct version." +msgstr "" + +#: frappe/desk/doctype/number_card/number_card.js:45 +msgid "Please create Card first" +msgstr "" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:42 +msgid "Please create chart first" +msgstr "" + +#: frappe/desk/form/meta.py:190 +msgid "Please delete the field from {0} or add the required doctype." +msgstr "" + +#: frappe/core/doctype/data_export/exporter.py:184 +msgid "Please do not change the template headings." +msgstr "" + +#: frappe/printing/doctype/print_format/print_format.js:19 +msgid "Please duplicate this to make changes" +msgstr "" + +#: frappe/core/doctype/system_settings/system_settings.py:165 +msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login." +msgstr "" + +#: 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:678 +#: frappe/printing/page/print/print.js:708 +#: frappe/public/js/frappe/list/bulk_operations.js:161 +#: frappe/public/js/frappe/utils/utils.js:1471 +msgid "Please enable pop-ups" +msgstr "" + +#: frappe/public/js/frappe/microtemplate.js:162 +#: frappe/public/js/frappe/microtemplate.js:177 +msgid "Please enable pop-ups in your browser" +msgstr "" + +#: frappe/integrations/google_oauth.py:55 +msgid "Please enable {} before continuing." +msgstr "" + +#: frappe/utils/oauth.py:191 +msgid "Please ensure that your profile has an email address" +msgstr "" + +#: 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:81 +msgid "Please enter Authorize URL" +msgstr "" + +#: 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:87 +msgid "Please enter Client ID before social login is enabled" +msgstr "" + +#: frappe/integrations/doctype/social_login_key/social_login_key.py:90 +msgid "Please enter Client Secret before social login is enabled" +msgstr "" + +#: frappe/integrations/doctype/connected_app/connected_app.py:54 +msgid "Please enter OpenID Configuration URL" +msgstr "" + +#: frappe/integrations/doctype/social_login_key/social_login_key.py:85 +msgid "Please enter Redirect URL" +msgstr "" + +#: frappe/templates/includes/comments/comments.html:163 +msgid "Please enter a valid email address." +msgstr "" + +#: 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 "" + +#: frappe/public/js/frappe/desk.js:217 +msgctxt "Email Account" +msgid "Please enter the password for: {0}" +msgstr "" + +#: frappe/core/doctype/sms_settings/sms_settings.py:43 +msgid "Please enter valid mobile nos" +msgstr "" + +#: frappe/www/update-password.html:142 +msgid "Please enter your new password." +msgstr "" + +#: frappe/www/update-password.html:135 +msgid "Please enter your old password." +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:444 +msgid "Please find attached {0}: {1}" +msgstr "" + +#: frappe/templates/includes/comments/comments.py:42 +#: frappe/templates/includes/comments/comments.py:45 +msgid "Please login to post a comment." +msgstr "" + +#: frappe/core/doctype/communication/communication.py:186 +msgid "Please make sure the Reference Communication Docs are not circularly linked." +msgstr "" + +#: frappe/model/document.py:992 +msgid "Please refresh to get the latest document." +msgstr "" + +#: frappe/printing/page/print/print.js:575 +msgid "Please remove the printer mapping in Printer Settings and try again." +msgstr "" + +#: frappe/public/js/frappe/form/form.js:358 +msgid "Please save before attaching." +msgstr "" + +#: frappe/public/js/frappe/form/sidebar/assign_to.js:52 +msgid "Please save the document before assignment" +msgstr "" + +#: frappe/public/js/frappe/form/sidebar/assign_to.js:72 +msgid "Please save the document before removing assignment" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1718 +msgid "Please save the report first" +msgstr "" + +#: frappe/website/doctype/web_template/web_template.js:22 +msgid "Please save to edit the template." +msgstr "" + +#: frappe/printing/doctype/print_format/print_format.js:31 +msgid "Please select DocType first" +msgstr "" + +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js:27 +msgid "Please select Entity Type first" +msgstr "" + +#: frappe/core/doctype/system_settings/system_settings.py:116 +msgid "Please select Minimum Password Score" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:1193 +msgid "Please select X and Y fields" +msgstr "" + +#: frappe/utils/__init__.py:131 +msgid "Please select a country code for field {1}." +msgstr "" + +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:526 +msgid "Please select a file first." +msgstr "" + +#: frappe/utils/file_manager.py:50 +msgid "Please select a file or url" +msgstr "" + +#: frappe/model/rename_doc.py:684 +msgid "Please select a valid csv file with data" +msgstr "" + +#: frappe/utils/data.py:309 +msgid "Please select a valid date filter" +msgstr "" + +#: frappe/core/doctype/user_permission/user_permission_list.js:203 +msgid "Please select applicable Doctypes" +msgstr "" + +#: frappe/model/db_query.py:1163 +msgid "Please select atleast 1 column from {0} to sort/group" +msgstr "" + +#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:214 +msgid "Please select prefix first" +msgstr "" + +#: frappe/core/doctype/data_export/data_export.js:42 +msgid "Please select the Document Type." +msgstr "" + +#. 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 "" + +#: frappe/website/doctype/website_settings/website_settings.js:100 +msgid "Please select {0}" +msgstr "" + +#: frappe/contacts/doctype/contact/contact.py:298 +msgid "Please set Email Address" +msgstr "" + +#: frappe/printing/page/print/print.js:589 +msgid "Please set a printer mapping for this print format in the Printer Settings" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:1416 +msgid "Please set filters" +msgstr "" + +#: frappe/email/doctype/auto_email_report/auto_email_report.py:263 +msgid "Please set filters value in Report Filter table." +msgstr "" + +#: frappe/model/naming.py:580 +msgid "Please set the document name" +msgstr "" + +#: frappe/desk/doctype/dashboard/dashboard.py:120 +msgid "Please set the following documents in this Dashboard as standard first." +msgstr "" + +#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:120 +msgid "Please set the series to be used." +msgstr "" + +#: frappe/core/doctype/system_settings/system_settings.py:129 +msgid "Please setup SMS before setting it as an authentication method, via SMS Settings" +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.js:104 +msgid "Please setup a message first" +msgstr "" + +#: frappe/core/doctype/user/user.py:424 +msgid "Please setup default outgoing Email Account from Settings > Email Account" +msgstr "" + +#: 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 "" + +#: frappe/permissions.py:796 +msgid "Please specify a valid parent DocType for {0}" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:163 +msgid "Please specify at least 10 minutes due to the trigger cadence of the scheduler" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:160 +msgid "Please specify the minutes offset" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:154 +msgid "Please specify which date field must be checked" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:158 +msgid "Please specify which datetime field must be checked" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:167 +msgid "Please specify which value field must be checked" +msgstr "" + +#: frappe/public/js/frappe/request.js:187 +#: frappe/public/js/frappe/views/translation_manager.js:102 +msgid "Please try again" +msgstr "" + +#: frappe/integrations/google_oauth.py:58 +msgid "Please update {} before continuing." +msgstr "" + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:333 +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:217 +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 +msgid "Polling" +msgstr "" + +#. 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 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 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 "" + +#. Label of the menu (Table) field in DocType 'Portal Settings' +#: frappe/website/doctype/portal_settings/portal_settings.json +msgid "Portal Menu" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/portal_menu_item/portal_menu_item.json +msgid "Portal Menu Item" +msgstr "" + +#. 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 "" + +#: frappe/public/js/frappe/form/print_utils.js:24 +msgid "Portrait" +msgstr "" + +#. Label of the position (Select) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Position" +msgstr "" + +#: 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 "" + +#: 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' +#: frappe/contacts/doctype/address/address.json +msgid "Postal" +msgstr "" + +#. Label of the pincode (Data) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:41 +msgid "Postal Code" +msgstr "" + +#. Label of the posting_timestamp (Datetime) field in DocType 'Changelog Feed' +#: frappe/desk/doctype/changelog_feed/changelog_feed.json +msgid "Posting Timestamp" +msgstr "" + +#: frappe/database/query.py:1520 +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' +#. 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 "" + +#: frappe/core/doctype/doctype/doctype.py:1670 +msgid "Precision ({0}) for {1} cannot be greater than its length ({2})." +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1401 +msgid "Precision should be between 1 and 6" +msgstr "" + +#: frappe/utils/password_strength.py:187 +msgid "Predictable substitutions like '@' instead of 'a' don't help very much." +msgstr "" + +#: 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 "" + +#. Label of the is_shipping_address (Check) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "Preferred Shipping Address" +msgstr "" + +#. 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 "" + +#. Name of a DocType +#. 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 "" + +#. Name of a report +#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.json +msgid "Prepared Report Analytics" +msgstr "" + +#. Name of a role +#: frappe/core/doctype/prepared_report/prepared_report.json +msgid "Prepared Report User" +msgstr "" + +#: frappe/desk/query_report.py:308 +msgid "Prepared report render failed" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:473 +msgid "Preparing Report" +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:434 +msgid "Prepend the template to the email message" +msgstr "" + +#: 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 "" + +#. 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:194 +#: 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 "" + +#. Label of the preview_html (HTML) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "Preview HTML" +msgstr "" + +#. Label of the preview_message (Button) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Preview Message" +msgstr "" + +#: frappe/public/js/form_builder/form_builder.bundle.js:83 +msgid "Preview Mode" +msgstr "" + +#. 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 "" + +#: 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:97 +#: 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 "" + +#: frappe/public/js/frappe/ui/slides.js:351 +msgctxt "Go to previous slide" +msgid "Previous" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:2216 +msgid "Previous Submission" +msgstr "" + +#. Option for the 'Style' (Select) field in DocType 'Workflow State' +#: frappe/workflow/doctype/workflow_state/workflow_state.json +msgid "Primary" +msgstr "" + +#: 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 "" + +#: 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:78 +#: 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:1797 +#: frappe/public/js/frappe/views/reports/report_view.js:1539 +#: frappe/public/js/frappe/views/treeview.js:492 frappe/www/printview.html:18 +msgid "Print" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:2166 +msgctxt "Button in list view actions menu" +msgid "Print" +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:48 +msgid "Print Documents" +msgstr "" + +#. Label of the print_format (Link) field in DocType 'Auto Repeat' +#. Label of a Link in the Build Workspace +#. 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:107 +#: frappe/printing/page/print/print.js:861 +#: frappe/public/js/frappe/list/bulk_operations.js:59 +#: frappe/website/doctype/web_form/web_form.json +msgid "Print Format" +msgstr "" + +#. Label of a Link in the Tools Workspace +#. 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 "" + +#. Label of a Link in the Tools Workspace +#: frappe/automation/workspace/tools/tools.json +msgid "Print Format Builder (New)" +msgstr "" + +#. 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 "" + +#: frappe/utils/pdf.py:63 +msgid "Print Format Error" +msgstr "" + +#. Name of a DocType +#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json +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" +msgstr "" + +#. 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 "" + +#: frappe/public/js/frappe/views/reports/query_report.js:1586 +msgid "Print Format not found" +msgstr "" + +#: frappe/www/printview.py:451 +msgid "Print Format {0} is disabled" +msgstr "" + +#. Label of a Link in the Tools Workspace +#. 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 "" + +#. 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 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 "" + +#: frappe/public/js/frappe/views/communication.js:168 +msgid "Print Language" +msgstr "" + +#: frappe/public/js/frappe/form/print_utils.js:225 +msgid "Print Sent to the printer!" +msgstr "" + +#. Label of the server_printer (Section Break) field in DocType 'Print +#. Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Print Server" +msgstr "" + +#. Label of a Link in the Tools Workspace +#. 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:173 +#: frappe/public/js/frappe/form/print_utils.js:99 +#: frappe/public/js/frappe/form/templates/print_layout.html:35 +msgid "Print Settings" +msgstr "" + +#. 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 +#: frappe/printing/doctype/print_settings/print_settings.json +#: frappe/printing/doctype/print_style/print_style.json +msgid "Print Style" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#: frappe/public/js/frappe/form/form.js:170 +msgid "Print document" +msgstr "" + +#. Label of the with_letterhead (Check) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Print with letterhead" +msgstr "" + +#: frappe/printing/page/print/print.js:870 +msgid "Printer" +msgstr "" + +#: frappe/printing/page/print/print.js:847 +msgid "Printer Mapping" +msgstr "" + +#. 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 "" + +#: frappe/printing/page/print/print.js:839 +msgid "Printer Settings" +msgstr "" + +#: frappe/printing/page/print/print.js:588 +msgid "Printer mapping not set." +msgstr "" + +#. Label of a Card Break in the Tools Workspace +#: frappe/automation/workspace/tools/tools.json +msgid "Printing" +msgstr "" + +#: frappe/utils/print_format.py:291 +msgid "Printing failed" +msgstr "" + +#. 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 "" + +#. Label of the private (Check) field in DocType 'Custom HTML Block' +#. Option for the 'Event Type' (Select) field in DocType '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 "" + +#. 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' +#: frappe/email/doctype/email_account/email_account.json +msgid "ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference" +msgstr "" + +#: frappe/core/doctype/document_naming_rule/document_naming_rule.js:22 +msgid "Proceed" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:940 +msgid "Proceed Anyway" +msgstr "" + +#: frappe/public/js/frappe/form/controls/table.js:104 +msgid "Processing" +msgstr "" + +#: frappe/email/doctype/email_queue/email_queue_list.js:52 +msgid "Processing..." +msgstr "" + +#: frappe/desk/page/setup_wizard/install_fixtures.py:51 +msgid "Prof" +msgstr "" + +#. Group in User's connections +#: frappe/core/doctype/user/user.json +msgid "Profile" +msgstr "" + +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile Picture" +msgstr "" + +#. Success message of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile updated successfully." +msgstr "" + +#: frappe/public/js/frappe/socketio_client.js:82 +msgid "Progress" +msgstr "" + +#: frappe/public/js/frappe/views/kanban/kanban_view.js:422 +msgid "Project" +msgstr "" + +#. Label of the property (Data) field in DocType 'Property Setter' +#: frappe/core/doctype/version/version_view.html:13 +#: frappe/core/doctype/version/version_view.html:38 +#: frappe/core/doctype/version/version_view.html:75 +#: frappe/custom/doctype/property_setter/property_setter.json +msgid "Property" +msgstr "" + +#. 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 "" + +#. Name of a DocType +#: frappe/custom/doctype/property_setter/property_setter.json +msgid "Property Setter" +msgstr "" + +#. 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 the property_type (Data) field in DocType 'Property Setter' +#: frappe/custom/doctype/property_setter/property_setter.json +msgid "Property Type" +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:526 +msgid "Protected File" +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 "" + +#. 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 "" + +#. 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 "" + +#. 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:633 +#: frappe/website/doctype/web_form/web_form.js:86 +msgid "Publish" +msgstr "" + +#. Label of the published (Check) field in DocType 'Comment' +#. 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/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 "" + +#. 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 "" + +#: frappe/email/doctype/email_account/email_account.js:208 +msgid "Pull Emails" +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 "" + +#. 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 "" + +#. Label of the pulled_from_google_calendar (Check) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Pulled from Google Calendar" +msgstr "" + +#. Label of the pulled_from_google_contacts (Check) field in DocType 'Contact' +#: frappe/contacts/doctype/contact/contact.json +msgid "Pulled from Google Contacts" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.js:209 +msgid "Pulling emails..." +msgstr "" + +#. Name of a role +#: frappe/contacts/doctype/contact/contact.json +msgid "Purchase Manager" +msgstr "" + +#. Name of a role +#: frappe/contacts/doctype/contact/contact.json +msgid "Purchase Master Manager" +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 "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#: 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' +#. Option for the 'Condition Type' (Select) field in DocType 'Notification' +#: frappe/desk/doctype/system_console/system_console.json +#: frappe/email/doctype/notification/notification.json +msgid "Python" +msgstr "" + +#: frappe/www/qrcode.html:3 +msgid "QR Code" +msgstr "" + +#: frappe/www/qrcode.html:6 +msgid "QR Code for Login Verification" +msgstr "" + +#: frappe/public/js/frappe/form/print_utils.js:234 +msgid "QZ Tray Failed:" +msgstr "" + +#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' +#. Option for the 'Time Interval' (Select) field in DocType '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 "" + +#. 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 "" + +#. Label of the section_break_6 (Section Break) field in DocType 'Report' +#: frappe/core/doctype/report/report.json +msgid "Query / Script" +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 "" + +#. 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 "" + +#. 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 "" + +#: frappe/core/doctype/recorder/recorder.py:188 +msgid "Query analysis complete. Check suggested indexes." +msgstr "" + +#: frappe/utils/safe_exec.py:497 +msgid "Query must be of SELECT or read-only WITH type." +msgstr "" + +#. 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 "" + +#: 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 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 "" + +#: frappe/utils/background_jobs.py:556 +msgid "Queue should be one of {0}" +msgstr "" + +#. Label of the queue (Data) field in DocType 'RQ Worker' +#: frappe/core/doctype/rq_worker/rq_worker.json +msgid "Queue(s)" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Prepared Report' +#. Option for the 'Status' (Select) field in DocType '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 "" + +#. 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 the queued_by (Data) field in DocType 'Prepared Report' +#: frappe/core/doctype/prepared_report/prepared_report.json +msgid "Queued By" +msgstr "" + +#: frappe/core/doctype/submission_queue/submission_queue.py:174 +msgid "Queued for Submission. You can track the progress over {0}." +msgstr "" + +#: frappe/desk/page/backups/backups.py:96 +msgid "Queued for backup. You will receive an email with the download link" +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/desk/doctype/bulk_update/bulk_update.py:85 +msgid "Queuing {0} for Submission" +msgstr "" + +#. 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 "" + +#: frappe/core/page/permission_manager/permission_manager_help.html:3 +msgid "Quick Help for Setting Permissions" +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 "" + +#. 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 "" + +#: frappe/public/js/frappe/views/reports/report_utils.js:314 +msgid "Quoting must be between 0 and 3" +msgstr "" + +#. 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 "" + +#. Name of a DocType +#: frappe/core/doctype/rq_job/rq_job.json +msgid "RQ Job" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/rq_worker/rq_worker.json +msgid "RQ Worker" +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 "Random" +msgstr "" + +#: frappe/website/report/website_analytics/website_analytics.js:20 +msgid "Range" +msgstr "" + +#. 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 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' +#. 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' +#: 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 "" + +#. 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:98 +msgid "Raw Commands" +msgstr "" + +#. Label of the raw (Code) field in DocType 'Unhandled Email' +#: frappe/email/doctype/unhandled_email/unhandled_email.json +msgid "Raw Email" +msgstr "" + +#. 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 "" + +#: frappe/printing/page/print/print.js:178 +msgid "Raw Printing Setting" +msgstr "" + +#: 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 "" + +#: frappe/email/doctype/email_account/email_account.py:726 +msgid "Re:" +msgstr "" + +#: frappe/core/doctype/communication/communication.js:268 +#: frappe/public/js/frappe/form/footer/form_timeline.js:601 +#: frappe/public/js/frappe/views/communication.js:370 +msgid "Re: {0}" +msgstr "" + +#. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#. 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' +#: 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 "" + +#. Option for the 'Type' (Select) field in DocType '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 "" + +#. 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 "" + +#. 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 "" + +#: frappe/public/js/frappe/ui/toolbar/navbar.html:16 +#: frappe/templates/includes/navbar/navbar_items.html:97 +msgid "Read Only Mode" +msgstr "" + +#. Label of the read_by_recipient (Check) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Read by Recipient" +msgstr "" + +#. Label of the read_by_recipient_on (Datetime) field in DocType +#. 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Read by Recipient On" +msgstr "" + +#: frappe/desk/doctype/note/note.js:10 +msgid "Read mode" +msgstr "" + +#: frappe/utils/safe_exec.py:99 +msgid "Read the documentation to know more" +msgstr "" + +#. Label of the readme (Markdown Editor) field in DocType 'Package' +#: frappe/core/doctype/package/package.json +msgid "Readme" +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 "" + +#. Label of the reason (Long Text) field in DocType 'Unhandled Email' +#: frappe/email/doctype/unhandled_email/unhandled_email.json +msgid "Reason" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:894 +msgid "Rebuild" +msgstr "" + +#: frappe/public/js/frappe/views/treeview.js:511 +msgid "Rebuild Tree" +msgstr "" + +#: frappe/utils/nestedset.py:177 +msgid "Rebuilding of tree is not supported for {}" +msgstr "" + +#. Option for the 'Sent or Received' (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Received" +msgstr "" + +#: frappe/integrations/doctype/token_cache/token_cache.py:49 +msgid "Received an invalid token type." +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 "" + +#. 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 "" + +#. Label of the receiver_parameter (Data) field in DocType 'SMS Settings' +#: frappe/core/doctype/sms_settings/sms_settings.json +msgid "Receiver Parameter" +msgstr "" + +#: frappe/utils/password_strength.py:123 +msgid "Recent years are easy to guess." +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:541 +msgid "Recents" +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 "" + +#. Label of the recipient_account_field (Data) field in DocType 'DocType' +#. Label of the recipient_account_field (Data) field in DocType 'Customize +#. Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Recipient Account Field" +msgstr "" + +#. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Recipient Unsubscribed" +msgstr "" + +#. 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 "" + +#. Name of a DocType +#: frappe/core/doctype/recorder/recorder.json +msgid "Recorder" +msgstr "" + +#. Name of a DocType +#: 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:1609 +msgid "Recursive Fetch From" +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 "" + +#. 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 the redirect_to_path (Data) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Redirect To Path" +msgstr "" + +#. 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 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 "" + +#. Label of the redirect_uris (Text) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Redirect URIs" +msgstr "" + +#. 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 "" + +#. 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' +#: frappe/email/doctype/email_group/email_group.json +msgid "Redirect to this URL after successful confirmation." +msgstr "" + +#. Label of the redirects_tab (Tab Break) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Redirects" +msgstr "" + +#: frappe/sessions.py:149 +msgid "Redis cache server not running. Please contact Administrator / Tech support" +msgstr "" + +#: 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:538 +msgid "Redo last action" +msgstr "" + +#. Label of the ref_doctype (Link) field in DocType 'Report' +#: frappe/core/doctype/report/report.json +msgid "Ref DocType" +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 "" + +#. 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 "" + +#. Label of the date_changed (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Reference Date" +msgstr "" + +#. Label of the datetime_changed (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Reference Datetime" +msgstr "" + +#. Label of the reference_docname (Dynamic Link) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Reference Doc" +msgstr "" + +#. Label of the reference_name (Data) field in DocType 'Email Queue' +#: frappe/email/doctype/email_queue/email_queue.json +msgid "Reference DocName" +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 "" + +#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:26 +msgid "Reference DocType and Reference Name are required" +msgstr "" + +#. 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 "" + +#. 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/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 "" + +#. 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 "" + +#. 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 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 (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' +#. 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/view_log/view_log.json +#: frappe/desk/doctype/calendar_view/calendar_view.json +#: frappe/desk/doctype/event/event.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 "" + +#. 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/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 "" + +#. 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 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 "" + +#. 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 "" + +#. Label of the reference_name (Dynamic Link) field in DocType 'View Log' +#: frappe/core/doctype/view_log/view_log.json +msgid "Reference name" +msgstr "" + +#: frappe/templates/emails/auto_reply.html:3 +msgid "Reference: {0} {1}" +msgstr "" + +#. 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 "" + +#: frappe/printing/page/print/print.js:86 frappe/public/js/frappe/desk.js:168 +#: frappe/public/js/frappe/desk.js:552 +#: 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:1786 +#: frappe/public/js/frappe/views/treeview.js:498 +#: frappe/public/js/frappe/widgets/chart_widget.js:291 +#: frappe/public/js/frappe/widgets/number_card_widget.js:352 +#: frappe/public/js/print_format_builder/Preview.vue:24 +msgid "Refresh" +msgstr "" + +#: frappe/core/page/dashboard_view/dashboard_view.js:177 +msgid "Refresh All" +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 "" + +#: frappe/printing/page/print/print.js:371 +msgid "Refresh Print Preview" +msgstr "" + +#. 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 "" + +#: frappe/public/js/frappe/list/list_view.js:536 +msgctxt "Document count in list view" +msgid "Refreshing" +msgstr "" + +#: frappe/core/doctype/system_settings/system_settings.js:57 +#: frappe/core/doctype/user/user.js:362 +#: frappe/desk/page/setup_wizard/setup_wizard.js:211 +msgid "Refreshing..." +msgstr "" + +#: frappe/core/doctype/user/user.py:1036 +msgid "Registered but disabled" +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 "" + +#: 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 +#: frappe/core/doctype/package/package.json +msgid "Release" +msgstr "" + +#. Label of the release_notes (Markdown Editor) field in DocType 'Package +#. Release' +#: frappe/core/doctype/package_release/package_release.json +msgid "Release Notes" +msgstr "" + +#: frappe/core/doctype/communication/communication.js:48 +#: frappe/core/doctype/communication/communication.js:159 +msgid "Relink" +msgstr "" + +#: frappe/core/doctype/communication/communication.js:138 +msgid "Relink Communication" +msgstr "" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#: frappe/core/doctype/comment/comment.json +msgid "Relinked" +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:447 +msgid "Reload" +msgstr "" + +#: 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 "" + +#: frappe/public/js/frappe/views/reports/query_report.js:100 +msgid "Reload Report" +msgstr "" + +#. 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 "" + +#. 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 "" + +#: frappe/public/js/frappe/form/toolbar.js:479 +msgid "Remind Me" +msgstr "" + +#: frappe/public/js/frappe/form/reminders.js:13 +msgid "Remind Me In" +msgstr "" + +#. Name of a DocType +#: frappe/automation/doctype/reminder/reminder.json +msgid "Reminder" +msgstr "" + +#: frappe/automation/doctype/reminder/reminder.py:39 +msgid "Reminder cannot be created in past." +msgstr "" + +#: frappe/public/js/frappe/form/reminders.js:96 +msgid "Reminder set at {0}" +msgstr "" + +#: 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 "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:493 +msgid "Remove Field" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:427 +msgid "Remove Section" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:138 +msgid "Remove all customizations?" +msgstr "" + +#: 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 "" + +#: frappe/public/js/form_builder/components/Field.vue:260 +msgid "Remove field" +msgstr "" + +#: 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 "" + +#: frappe/custom/doctype/custom_field/custom_field.js:116 +#: frappe/custom/doctype/custom_field/custom_field.js:136 +msgid "Rename Fieldname" +msgstr "" + +#: frappe/public/js/frappe/model/model.js:710 +msgid "Rename {0}" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:699 +msgid "Renamed files and replaced code in controllers, please check!" +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 "" + +#: frappe/core/doctype/communication/communication.js:43 +#: frappe/desk/doctype/todo/todo.js:36 +msgid "Reopen" +msgstr "" + +#: frappe/public/js/frappe/form/toolbar.js:547 +msgid "Repeat" +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 "" + +#. Label of the repeat_on (Select) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Repeat On" +msgstr "" + +#. Label of the repeat_till (Date) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Repeat Till" +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 "" + +#. 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 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 "" + +#. Label of the repeat_this_event (Check) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Repeat this Event" +msgstr "" + +#: frappe/utils/password_strength.py:110 +msgid "Repeats like \"aaa\" are easy to guess" +msgstr "" + +#: frappe/utils/password_strength.py:105 +msgid "Repeats like \"abcabcabc\" are only slightly harder to guess than \"abc\"" +msgstr "" + +#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:151 +msgid "Repeats {0}" +msgstr "" + +#: 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' +#. Option for the 'Status' (Select) field in DocType 'Communication' +#: frappe/contacts/doctype/contact/contact.json +#: frappe/core/doctype/communication/communication.json +msgid "Replied" +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 "" + +#: frappe/core/doctype/communication/communication.js:62 +msgid "Reply All" +msgstr "" + +#. 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 +#. Option for the 'Set Role For' (Select) field in DocType 'Role Permission for +#. Page and Report' +#. 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' +#. 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 +#: 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:104 +#: frappe/public/js/frappe/form/print_utils.js:31 +#: frappe/public/js/frappe/request.js:616 +#: frappe/public/js/frappe/utils/utils.js:923 +msgid "Report" +msgstr "" + +#. Option for the 'Report Type' (Select) field in DocType 'Report' +#. Option for the 'DocType View' (Select) field in DocType '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 "" + +#. Name of a DocType +#: frappe/core/doctype/report_column/report_column.json +msgid "Report Column" +msgstr "" + +#. Label of the report_description (Data) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Report Description" +msgstr "" + +#: frappe/core/doctype/report/report.py:151 +msgid "Report Document Error" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/report_filter/report_filter.json +msgid "Report Filter" +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 "" + +#. 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 "" + +#. 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 "" + +#. Name of a role +#: frappe/core/doctype/report/report.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Report Manager" +msgstr "" + +#. 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:1973 +msgid "Report Name" +msgstr "" + +#: frappe/desk/doctype/number_card/number_card.py:70 +msgid "Report Name, Report Field and Fucntion are required to create a number card" +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 "" + +#. 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 "" + +#. 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 "" + +#: frappe/public/js/frappe/list/base_list.js:203 +msgid "Report View" +msgstr "" + +#: frappe/public/js/frappe/form/templates/form_sidebar.html:26 +msgid "Report bug" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1823 +msgid "Report cannot be set for Single types" +msgstr "" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:208 +#: frappe/desk/doctype/number_card/number_card.js:194 +msgid "Report has no data, please modify the filters or change the Report Name" +msgstr "" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:196 +#: frappe/desk/doctype/number_card/number_card.js:189 +msgid "Report has no numeric fields, please change the Report Name" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:1021 +msgid "Report initiated, click to view status" +msgstr "" + +#: frappe/email/doctype/auto_email_report/auto_email_report.py:110 +msgid "Report limit reached" +msgstr "" + +#: frappe/core/doctype/prepared_report/prepared_report.py:223 +msgid "Report timed out." +msgstr "" + +#: frappe/desk/query_report.py:651 +msgid "Report updated successfully" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1359 +msgid "Report was not saved (there were errors)" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:2011 +msgid "Report with more than 10 columns looks better in Landscape mode." +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:260 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:261 +msgid "Report {0}" +msgstr "" + +#: frappe/desk/reportview.py:365 +msgid "Report {0} deleted" +msgstr "" + +#: frappe/desk/query_report.py:54 +msgid "Report {0} is disabled" +msgstr "" + +#: frappe/desk/reportview.py:342 +msgid "Report {0} saved" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:20 +msgid "Report:" +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:556 +msgid "Reports" +msgstr "" + +#: frappe/patches/v14_0/update_workspace2.py:50 +msgid "Reports & Masters" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:937 +msgid "Reports already in Queue" +msgstr "" + +#. Description of a DocType +#: frappe/core/doctype/user/user.json +msgid "Represents a User in the system." +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 "" + +#: frappe/integrations/doctype/webhook/webhook.js:101 +msgid "Request Body" +msgstr "" + +#. Label of the data (Code) field in DocType 'Integration Request' +#. Title of the request-data Web Form +#. Button label of the request-data Web Form +#: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/website/web_form/request_data/request_data.json +msgid "Request Data" +msgstr "" + +#. 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 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 the request_id (Data) field in DocType 'Integration Request' +#: frappe/integrations/doctype/integration_request/integration_request.json +msgid "Request ID" +msgstr "" + +#. 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 the request_method (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "Request Method" +msgstr "" + +#. Label of the request_structure (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "Request Structure" +msgstr "" + +#: frappe/public/js/frappe/request.js:231 +msgid "Request Timed Out" +msgstr "" + +#. 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 the request_url (Small Text) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "Request URL" +msgstr "" + +#. Title of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "Request for Account Deletion" +msgstr "" + +#. 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 the require_trusted_certificate (Select) field in DocType 'LDAP +#. Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "Require Trusted Certificate" +msgstr "" + +#. 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 "" + +#. 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 "" + +#: frappe/core/doctype/communication/communication.js:279 +msgid "Res: {0}" +msgstr "" + +#: 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 "" + +#: frappe/custom/doctype/customize_form/customize_form.js:136 +msgid "Reset All Customizations" +msgstr "" + +#: 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 "" + +#: frappe/public/js/frappe/widgets/chart_widget.js:306 +msgid "Reset Chart" +msgstr "" + +#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:39 +msgid "Reset Dashboard Customizations" +msgstr "" + +#: frappe/public/js/frappe/list/list_settings.js:228 +msgid "Reset Fields" +msgstr "" + +#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:175 +msgid "Reset LDAP Password" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:128 +msgid "Reset Layout" +msgstr "" + +#: frappe/core/doctype/user/user.js:223 +msgid "Reset OTP Secret" +msgstr "" + +#: frappe/core/doctype/user/user.js:156 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 "" + +#. Label of the reset_password_key (Data) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Reset Password Key" +msgstr "" + +#. 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 the reset_password_template (Link) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Reset Password Template" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager.js:116 +msgid "Reset Permissions for {0}?" +msgstr "" + +#: 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 "" + +#: frappe/public/js/frappe/form/grid_row.js:434 +msgid "Reset to default" +msgstr "" + +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:19 +msgid "Reset to defaults" +msgstr "" + +#: frappe/templates/emails/password_reset.html:3 +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_html (Code) 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_type (Select) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Response Type" +msgstr "" + +#: frappe/public/js/frappe/ui/notifications/notifications.js:414 +msgid "Rest of the day" +msgstr "" + +#: frappe/core/doctype/deleted_document/deleted_document.js:11 +#: frappe/core/doctype/deleted_document/deleted_document_list.js:48 +msgid "Restore" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager.js:509 +msgid "Restore Original Permissions" +msgstr "" + +#: frappe/website/doctype/portal_settings/portal_settings.js:20 +msgid "Restore to default settings?" +msgstr "" + +#. Label of the restored (Check) field in DocType 'Deleted Document' +#: frappe/core/doctype/deleted_document/deleted_document.json +msgid "Restored" +msgstr "" + +#: frappe/core/doctype/deleted_document/deleted_document.py:74 +msgid "Restoring Deleted Document" +msgstr "" + +#. Label of the restrict_ip (Small Text) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Restrict IP" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#: frappe/public/js/frappe/list/list_view.js:199 +msgctxt "Title of message showing restrictions in list view" +msgid "Restrictions" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:382 +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:397 +msgid "Result" +msgstr "" + +#: frappe/email/doctype/email_queue/email_queue_list.js:27 +msgid "Resume Sending" +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 "" + +#: frappe/email/doctype/email_queue/email_queue_list.js:47 +msgid "Retry Sending" +msgstr "" + +#: frappe/www/qrcode.html:15 +msgid "Return to the Verification screen and enter the code displayed by your authentication app" +msgstr "" + +#. Label of the reverse (Check) field in DocType 'Desktop Icon' +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +msgid "Reverse Icon Color" +msgstr "" + +#: frappe/database/schema.py:165 +msgid "Reverting length to {0} for '{1}' in '{2}'. Setting the length as {3} will cause truncation of data." +msgstr "" + +#. Label of the revocation_uri (Data) field in DocType 'Connected App' +#: frappe/integrations/doctype/connected_app/connected_app.json +msgid "Revocation URI" +msgstr "" + +#: frappe/www/third_party_apps.html:47 +msgid "Revoke" +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 "" + +#. 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 "Rich Text" +msgstr "" + +#. Option for the 'Position' (Select) field in DocType 'Form Tour Step' +#. Option for the 'Align' (Select) field in DocType 'Letter Head' +#. Option for the 'Text Align' (Select) field in DocType '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 "" + +#: 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 "" + +#. 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 "" + +#. 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 "" + +#. Label of the robots_txt (Code) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "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 +#. Label of the role (Link) field in DocType 'User Role' +#. 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 +#. 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_role/user_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 "" + +#: frappe/core/doctype/role/role.js:8 +msgid "Role 'All' will be given to all system + website users." +msgstr "" + +#: frappe/core/doctype/role/role.js:13 +msgid "Role 'Desk User' will be given to all system users." +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 "" + +#. 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 "" + +#. 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:114 +msgid "Role Permissions" +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 "" + +#: frappe/public/js/frappe/list/list_view.js:1935 +msgctxt "Button in list view menu" +msgid "Role Permissions Manager" +msgstr "" + +#. Name of a DocType +#. 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 +#: 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 "" + +#. Label of the role_profiles (Table MultiSelect) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Role Profiles" +msgstr "" + +#. 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 "" + +#: frappe/core/doctype/user/user.py:365 +msgid "Role has been set as per the user type {0}" +msgstr "" + +#. 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 (Table MultiSelect) field in DocType 'User Invitation' +#. 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/doctype/user_invitation/user_invitation.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 "" + +#. Label of the roles_permissions_tab (Tab Break) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Roles & Permissions" +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 "" + +#. 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 "" + +#. 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 "" + +#: 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:293 +msgid "Root {0} cannot be deleted" +msgstr "" + +#. Option for the 'Rule' (Select) field in DocType 'Assignment Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Round Robin" +msgstr "" + +#. 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 the route (Data) field in DocType 'DocType' +#. Option for the 'Action Type' (Select) field in DocType 'DocType Action' +#. Option for the 'Item Type' (Select) field in DocType '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 '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/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 "" + +#. Name of a DocType +#: frappe/desk/doctype/route_history/route_history.json +msgid "Route History" +msgstr "" + +#. Label of the route_redirects (Table) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Route Redirects" +msgstr "" + +#. Description of the 'Home Page' (Data) field in DocType 'Role' +#: frappe/core/doctype/role/role.json +msgid "Route: Example \"/app\"" +msgstr "" + +#: frappe/model/base_document.py:909 frappe/model/document.py:779 +msgid "Row" +msgstr "" + +#: frappe/core/doctype/version/version_view.html:74 +msgid "Row #" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1845 +#: frappe/core/doctype/doctype/doctype.py:1855 +msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype" +msgstr "" + +#: frappe/model/base_document.py:1039 +msgid "Row #{0}:" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:492 +msgid "Row #{}: Fieldname is required" +msgstr "" + +#. Label of the row_format (Select) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Row Format" +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 the row_name (Data) field in DocType 'Property Setter' +#: frappe/custom/doctype/property_setter/property_setter.json +msgid "Row Name" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:483 +msgid "Row Number" +msgstr "" + +#: frappe/core/doctype/version/version_view.html:69 +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:357 +msgid "Row {0}: Not allowed to disable Mandatory for standard fields" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.py:346 +msgid "Row {0}: Not allowed to enable Allow on Submit for standard fields" +msgstr "" + +#. 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:33 +msgid "Rows Added" +msgstr "" + +#. 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:33 +msgid "Rows Removed" +msgstr "" + +#. Label of the rows_threshold_for_grid_search (Int) field in DocType 'DocType' +#. Label of the rows_threshold_for_grid_search (Int) field in DocType +#. 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.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 "" + +#. 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 "" + +#: frappe/permissions.py:675 +msgid "Rule for this doctype, role, permlevel and if-owner combination already exists." +msgstr "" + +#. Group in DocType's connections +#: frappe/core/doctype/doctype/doctype.json +msgid "Rules" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:57 +msgid "Runtime in Minutes" +msgstr "" + +#: 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' +#. Option for the 'Two Factor Authentication method' (Select) field in DocType +#. '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 "" + +#. 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 "" + +#. Name of a DocType +#: frappe/core/doctype/sms_log/sms_log.json +msgid "SMS Log" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/sms_parameter/sms_parameter.json +msgid "SMS Parameter" +msgstr "" + +#. 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 "" + +#: frappe/core/doctype/sms_settings/sms_settings.py:114 +msgid "SMS sent successfully" +msgstr "" + +#: 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 "" + +#. Option for the 'Type' (Select) field in DocType 'System Console' +#: frappe/desk/doctype/system_console/system_console.json +msgid "SQL" +msgstr "" + +#. 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 "" + +#. 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 the sql_output (HTML) field in DocType 'System Console' +#: frappe/desk/doctype/system_console/system_console.json +msgid "SQL Output" +msgstr "" + +#. Label of the sql_queries (Table) field in DocType 'Recorder' +#: frappe/core/doctype/recorder/recorder.json +msgid "SQL Queries" +msgstr "" + +#. 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 "" + +#: frappe/public/js/frappe/color_picker/color_picker.js:20 +msgid "SWATCHES" +msgstr "" + +#. Name of a role +#: frappe/contacts/doctype/contact/contact.json +msgid "Sales Manager" +msgstr "" + +#. Name of a role +#: frappe/contacts/doctype/contact/contact.json +msgid "Sales Master Manager" +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 "" + +#. 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 "" + +#. Label of the salutation (Link) field in DocType 'Contact' +#. Name of a DocType +#. Label of the salutation (Data) field in DocType 'Salutation' +#: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/doctype/salutation/salutation.json +msgid "Salutation" +msgstr "" + +#: frappe/integrations/doctype/webhook/webhook.py:113 +msgid "Same Field is entered more than once" +msgstr "" + +#. Label of the sample (HTML) field in DocType 'Client Script' +#: frappe/custom/doctype/client_script/client_script.json +msgid "Sample" +msgstr "" + +#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day' +#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day' +#. 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' +#. 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 "" + +#. Option for the 'Send Alert On' (Select) field in DocType 'Notification' +#: frappe/core/doctype/data_import/data_import.js:113 +#: frappe/email/doctype/notification/notification.json +#: frappe/printing/page/print/print.js:898 +#: frappe/printing/page/print_format_builder/print_format_builder.js:160 +#: frappe/public/js/frappe/form/footer/form_timeline.js:678 +#: frappe/public/js/frappe/form/quick_entry.js:185 +#: frappe/public/js/frappe/list/list_settings.js:37 +#: frappe/public/js/frappe/list/list_settings.js:245 +#: 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:357 +#: frappe/public/js/frappe/views/reports/query_report.js:1965 +#: frappe/public/js/frappe/views/reports/report_view.js:1735 +#: 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 "" + +#: frappe/workflow/doctype/workflow/workflow.js:143 +msgid "Save Anyway" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1390 +#: frappe/public/js/frappe/views/reports/report_view.js:1742 +msgid "Save As" +msgstr "" + +#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:63 +msgid "Save Customizations" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:1968 +msgid "Save Report" +msgstr "" + +#: frappe/public/js/frappe/views/kanban/kanban_view.js:107 +msgid "Save filters" +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 "" + +#: frappe/public/js/frappe/form/form_tour.js:295 +msgid "Save the document." +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:286 +#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:917 +#: frappe/public/js/frappe/views/workspace/workspace.js:684 +msgid "Saved" +msgstr "" + +#: frappe/public/js/frappe/list/list_sidebar.html:88 +msgid "Saved Filters" +msgstr "" + +#: frappe/public/js/frappe/list/list_settings.js:41 +#: frappe/public/js/frappe/views/kanban/kanban_settings.js:47 +#: frappe/public/js/frappe/views/workspace/workspace.js:348 +msgid "Saving" +msgstr "" + +#: frappe/public/js/frappe/form/save.js:9 +msgctxt "Freeze message while saving a document" +msgid "Saving" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:411 +msgid "Saving Customization..." +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 "" + +#: 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 "" + +#: frappe/public/js/frappe/scanner/index.js:72 +msgid "Scan QRCode" +msgstr "" + +#: frappe/www/qrcode.html:14 +msgid "Scan the QR Code and enter the resulting code displayed." +msgstr "" + +#. Label of the section_break_10 (Tab Break) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Schedule" +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:97 +msgid "Schedule Send At" +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 +msgid "Scheduled" +msgstr "" + +#. 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 "" + +#. Name of a DocType +#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json +msgid "Scheduled Job Log" +msgstr "" + +#. Name of a DocType +#. 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 "" + +#. Label of a Link in the Build Workspace +#: frappe/core/workspace/build/build.json +msgid "Scheduled Jobs Logs" +msgstr "" + +#: frappe/core/doctype/server_script/server_script.py:150 +msgid "Scheduled execution for script {0} has updated" +msgstr "" + +#: frappe/email/doctype/auto_email_report/auto_email_report.js:26 +msgid "Scheduled to send" +msgstr "" + +#. 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 "" + +#. 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:107 +msgid "Scheduler Inactive" +msgstr "" + +#. 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 "" + +#: frappe/core/doctype/data_import/data_import.py:107 +msgid "Scheduler is inactive. Cannot import data." +msgstr "" + +#: frappe/core/doctype/rq_job/rq_job_list.js:19 +msgid "Scheduler: Active" +msgstr "" + +#: frappe/core/doctype/rq_job/rq_job_list.js:21 +msgid "Scheduler: Inactive" +msgstr "" + +#. Label of the scope (Data) field in DocType 'OAuth Scope' +#: frappe/integrations/doctype/oauth_scope/oauth_scope.json +msgid "Scope" +msgstr "" + +#. 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 "" + +#. 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' +#. 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 "" + +#. Name of a role +#: frappe/core/doctype/server_script/server_script.json +msgid "Script Manager" +msgstr "" + +#. Option for the 'Report Type' (Select) field in DocType 'Report' +#: frappe/core/doctype/report/report.json +msgid "Script Report" +msgstr "" + +#. Label of the script_type (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "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 +#. 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 the section_break_6 (Section Break) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Scripting / Style" +msgstr "" + +#. 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 "" + +#. Label of the search_bar (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Search Bar" +msgstr "" + +#. 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 "" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:186 +msgid "Search Help" +msgstr "" + +#. 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 "" + +#: 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:1468 +msgid "Search field {0} is not valid" +msgstr "" + +#: 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 "" + +#: 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 "" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:166 +msgid "Search in a document type" +msgstr "" + +#: 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 "" + +#: 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 "" + +#: frappe/public/js/frappe/ui/toolbar/search.js:210 +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 +msgid "Section" +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 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_form_field/web_form_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Section Break" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:421 +msgid "Section Heading" +msgstr "" + +#. 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 "" + +#: frappe/public/js/form_builder/components/Section.vue:28 +#: frappe/public/js/print_format_builder/PrintFormatSection.vue:8 +msgid "Section Title" +msgstr "" + +#: 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:863 +msgid "See all past reports." +msgstr "" + +#: frappe/public/js/frappe/form/form.js:1235 +#: frappe/website/doctype/contact_us_settings/contact_us_settings.js:4 +msgid "See on Website" +msgstr "" + +#: frappe/website/doctype/web_form/templates/web_form.html:160 +msgctxt "Button in web form" +msgid "See previous responses" +msgstr "" + +#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py:49 +msgid "See the document at {0}" +msgstr "" + +#. 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 "" + +#. Label of the seen_by_section (Section Break) field in DocType 'Note' +#: frappe/desk/doctype/note/note.json +msgid "Seen By" +msgstr "" + +#. Label of the seen_by (Table) field in DocType 'Note' +#: frappe/desk/doctype/note/note.json +msgid "Seen By Table" +msgstr "" + +#. Label of the select (Check) field in DocType 'Custom DocPerm' +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Label of the select (Check) field in DocType 'DocPerm' +#. 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' +#. 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/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:642 +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Select" +msgstr "" + +#: 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:498 +msgid "Select All" +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:177 +#: frappe/public/js/frappe/views/communication.js:601 +#: frappe/public/js/frappe/views/interaction.js:93 +#: frappe/public/js/frappe/views/interaction.js:155 +msgid "Select Attachments" +msgstr "" + +#: frappe/custom/doctype/client_script/client_script.js:27 +#: frappe/custom/doctype/client_script/client_script.js:30 +msgid "Select Child Table" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:388 +msgid "Select Column" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder_field.html:42 +#: frappe/public/js/frappe/form/print_utils.js:73 +msgid "Select Columns" +msgstr "" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:399 +msgid "Select Country" +msgstr "" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:415 +msgid "Select Currency" +msgstr "" + +#. 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 "" + +#. Option for the 'Timespan' (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Select Date Range" +msgstr "" + +#. 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 "" + +#. 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 "" + +#: frappe/core/page/permission_manager/permission_manager.js:179 +msgid "Select Document Type or Role to start." +msgstr "" + +#: 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 "" + +#: 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:490 +#: frappe/public/js/frappe/views/kanban/kanban_settings.js:181 +msgid "Select Fields" +msgstr "" + +#: frappe/public/js/frappe/list/list_settings.js:234 +msgid "Select Fields (Up to {0})" +msgstr "" + +#: frappe/public/js/frappe/data_import/data_exporter.js:147 +msgid "Select Fields To Insert" +msgstr "" + +#: frappe/public/js/frappe/data_import/data_exporter.js:148 +msgid "Select Fields To Update" +msgstr "" + +#: frappe/public/js/frappe/list/list_sidebar_group_by.js:21 +msgid "Select Filters" +msgstr "" + +#: frappe/desk/doctype/event/event.py:107 +msgid "Select Google Calendar to which event should be synced." +msgstr "" + +#: frappe/contacts/doctype/contact/contact.py:77 +msgid "Select Google Contacts to which contact should be synced." +msgstr "" + +#: 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 "" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:391 +msgid "Select Language" +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 "" + +#: frappe/public/js/frappe/data_import/data_exporter.js:158 +msgid "Select Mandatory" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:280 +msgid "Select Module" +msgstr "" + +#: frappe/printing/page/print/print.js:188 +#: frappe/printing/page/print/print.js:625 +msgid "Select Network Printer" +msgstr "" + +#. Label of the page_name (Link) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +msgid "Select Page" +msgstr "" + +#: 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 "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:82 +msgid "Select Print Format to Edit" +msgstr "" + +#. Label of the report_name (Link) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +msgid "Select Report" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:631 +msgid "Select Table Columns for {0}" +msgstr "" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:408 +msgid "Select Time Zone" +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 "" + +#: frappe/workflow/page/workflow_builder/workflow_builder.js:68 +msgid "Select Workflow" +msgstr "" + +#. Label of the workspace_name (Link) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +msgid "Select Workspace" +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 "" + +#: frappe/website/doctype/website_settings/website_settings.js:23 +msgid "Select a Brand Image first." +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:108 +msgid "Select a DocType to make a new format" +msgstr "" + +#: frappe/public/js/form_builder/components/Sidebar.vue:56 +msgid "Select a field to edit its properties." +msgstr "" + +#: frappe/public/js/frappe/views/treeview.js:358 +msgid "Select a group {0} first." +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1956 +msgid "Select a valid Sender Field for creating documents from Email" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1940 +msgid "Select a valid Subject field for creating documents from Email" +msgstr "" + +#: 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' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Select an image of approx width 150px with a transparent background for best results." +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:36 +msgid "Select atleast 1 record for printing" +msgstr "" + +#: frappe/core/doctype/success_action/success_action.js:18 +msgid "Select atleast 2 actions" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1447 +msgctxt "Description of a list view shortcut" +msgid "Select list item" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1399 +#: frappe/public/js/frappe/list/list_view.js:1415 +msgctxt "Description of a list view shortcut" +msgid "Select multiple list items" +msgstr "" + +#: frappe/public/js/frappe/views/calendar/calendar.js:167 +msgid "Select or drag across time slots to create a new event." +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:239 +msgid "Select records for assignment" +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:260 +msgid "Select records for removing assignment" +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 "" + +#: frappe/public/js/frappe/utils/diffview.js:102 +msgid "Select two versions to view the diff." +msgstr "" + +#: 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 "" + +#: frappe/model/workflow.py:120 +msgid "Self approval is not allowed" +msgstr "" + +#: frappe/www/contact.html:41 +msgid "Send" +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:26 +msgctxt "Send Email" +msgid "Send" +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 "" + +#. 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 "" + +#. Label of the send_email_alert (Check) field in DocType 'Workflow' +#: frappe/workflow/doctype/workflow/workflow.json +msgid "Send Email Alert" +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 "" + +#. 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 "" + +#. 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 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 "" + +#. 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 "" + +#. 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 "" + +#. Label of the thread_notify (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Send Notifications For Email Threads" +msgstr "" + +#: frappe/email/doctype/auto_email_report/auto_email_report.js:21 +msgid "Send Now" +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 "" + +#: frappe/public/js/frappe/views/communication.js:150 +msgid "Send Read Receipt" +msgstr "" + +#. Label of the send_system_notification (Check) field in DocType +#. 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Send System Notification" +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_welcome_email (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Send Welcome Email" +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 "" + +#. 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' +#: frappe/email/doctype/notification/notification.json +msgid "Send alert if this field's value changes" +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 "" + +#. 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 "" + +#. 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' +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +msgid "Send enquiries to this email address" +msgstr "" + +#: frappe/templates/includes/login/login.js:72 frappe/www/login.html:230 +msgid "Send login link" +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:144 +msgid "Send me a copy" +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 "" + +#. 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 "" + +#. 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 "" + +#. Label of the sender_email (Data) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Sender Email" +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 "" + +#: frappe/core/doctype/doctype/doctype.py:1959 +msgid "Sender Field should have Email in options" +msgstr "" + +#. 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 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' +#: frappe/email/doctype/email_account/email_account.json +msgid "Sendgrid" +msgstr "" + +#. 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 "" + +#. 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' +#. Option for the 'Status' (Select) field in DocType '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 "" + +#. 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 the read_receipt (Check) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Sent Read Receipt" +msgstr "" + +#. 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 the sent_or_received (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Sent or Received" +msgstr "" + +#. Option for the 'Event Category' (Select) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Sent/Received Email" +msgstr "" + +#. 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 "" + +#. 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 "" + +#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:223 +msgid "Series counter for {} updated to {} successfully" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1110 +#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:170 +msgid "Series {0} already used in {1}" +msgstr "" + +#. Option for the 'Action Type' (Select) field in DocType 'DocType Action' +#: frappe/core/doctype/doctype_action/doctype_action.json +msgid "Server Action" +msgstr "" + +#: frappe/app.py:399 frappe/public/js/frappe/request.js:611 +#: frappe/www/error.html:36 frappe/www/error.py:15 +msgid "Server Error" +msgstr "" + +#. 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 "" + +#. Label of the server_script (Link) field in DocType 'Scheduled Job Type' +#. Name of a DocType +#. Label of a Link in the Build Workspace +#: 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 "" + +#: frappe/utils/safe_exec.py:98 +msgid "Server Scripts are disabled. Please enable server scripts from bench configuration." +msgstr "" + +#: frappe/core/doctype/server_script/server_script.js:39 +msgid "Server Scripts feature is not available on this site." +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 "" + +#: frappe/public/js/frappe/request.js:246 +msgid "Server was too busy to process this request. Please try again." +msgstr "" + +#. 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 "" + +#. Name of a DocType +#: frappe/core/doctype/session_default/session_default.json +msgid "Session Default" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/session_default_settings/session_default_settings.json +msgid "Session Default Settings" +msgstr "" + +#. Label of a standard navbar item +#. Type: Action +#. 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 "" + +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:348 +msgid "Session Defaults Saved" +msgstr "" + +#: frappe/app.py:376 +msgid "Session Expired" +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 "" + +#: frappe/core/doctype/system_settings/system_settings.py:123 +msgid "Session Expiry must be in format {0}" +msgstr "" + +#: 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:307 +#: frappe/desk/doctype/number_card/number_card.js:404 +#: frappe/public/js/frappe/widgets/chart_widget.js:447 +msgid "Set" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:607 +msgctxt "Field value is set" +msgid "Set" +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 "" + +#: frappe/public/js/frappe/views/reports/query_report.js:200 +msgid "Set Chart" +msgstr "" + +#. 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 "" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:467 +#: frappe/desk/doctype/number_card/number_card.js:384 +msgid "Set Dynamic Filters" +msgstr "" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:381 +#: frappe/desk/doctype/number_card/number_card.js:292 +#: frappe/public/js/form_builder/components/Field.vue:80 +#: frappe/website/doctype/web_form/web_form.js:269 +msgid "Set Filters" +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 "" + +#: frappe/public/js/frappe/views/reports/query_report.js:2121 +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' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Set Naming Series options on your transactions." +msgstr "" + +#. Label of the new_password (Password) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Set New Password" +msgstr "" + +#: frappe/desk/page/backups/backups.js:8 +msgid "Set Number of Backups" +msgstr "" + +#: frappe/www/update-password.html:32 +msgid "Set Password" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:112 +msgid "Set Permissions" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:471 +msgid "Set Properties" +msgstr "" + +#. 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 "" + +#: frappe/public/js/frappe/form/link_selector.js:207 +#: frappe/public/js/frappe/form/link_selector.js:208 +msgid "Set Quantity" +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 "" + +#: frappe/core/doctype/user/user.js:124 +#: frappe/core/page/permission_manager/permission_manager.js:72 +msgid "Set User Permissions" +msgstr "" + +#. Label of the value (Small Text) field in DocType 'Property Setter' +#: frappe/custom/doctype/property_setter/property_setter.json +msgid "Set Value" +msgstr "" + +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:94 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:146 +msgid "Set all private" +msgstr "" + +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:94 +msgid "Set all public" +msgstr "" + +#: frappe/printing/doctype/print_format/print_format.js:50 +msgid "Set as Default" +msgstr "" + +#: frappe/website/doctype/website_theme/website_theme.js:33 +msgid "Set as Default Theme" +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 "" + +#: 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 'Custom Field' +#. Description of the 'Precision' (Select) field in DocType 'Customize Form +#. Field' +#. Description of the 'Precision' (Select) 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 "Set non-standard precision for a Float or Currency field" +msgstr "" + +#. Description of the 'Precision' (Select) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Set non-standard precision for a Float, Currency or Percent field" +msgstr "" + +#. 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' +#: frappe/desk/doctype/number_card/number_card.json +msgid "Set the filters here. For example:\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"
+"
" +msgstr "" + +#. Description of the 'Method' (Data) field in DocType 'Number Card' +#: 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"
+"\t\"fieldtype\": \"Currency\",\n"
+"\t\"route_options\": {\"from_date\": \"2023-05-23\"},\n"
+"\t\"route\": [\"query-report\", \"Permitted Documents For User\"]\n"
+"}
" +msgstr "" + +#: frappe/contacts/doctype/address_template/address_template.py:33 +msgid "Setting this Address Template as default as there is no other default" +msgstr "" + +#: frappe/desk/doctype/global_search_settings/global_search_settings.py:86 +msgid "Setting up Global Search documents." +msgstr "" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:285 +msgid "Setting up your system" +msgstr "" + +#. 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 +#. 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 +#: 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 "" + +#. Label of the settings_dropdown (Table) field in DocType 'Navbar Settings' +#: frappe/core/doctype/navbar_settings/navbar_settings.json +msgid "Settings Dropdown" +msgstr "" + +#. 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 "" + +#. 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:576 +msgid "Setup" +msgstr "" + +#: 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:1834 +#: frappe/public/js/frappe/views/reports/report_view.js:1713 +msgid "Setup Auto Email" +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 "" + +#. 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 "" + +#: 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' +#: 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 "" + +#: frappe/public/js/frappe/form/sidebar/share.js:107 +msgid "Share With" +msgstr "" + +#: 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 "" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#: frappe/core/doctype/comment/comment.json +msgid "Shared" +msgstr "" + +#: frappe/desk/form/assign_to.py:132 +msgid "Shared with the following Users with Read access:{0}" +msgstr "" + +#. Option for the 'Address Type' (Select) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "Shipping" +msgstr "" + +#: frappe/public/js/frappe/form/templates/address_list.html:31 +msgid "Shipping Address" +msgstr "" + +#. Option for the 'Address Type' (Select) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "Shop" +msgstr "" + +#: frappe/utils/password_strength.py:91 +msgid "Short keyboard patterns are easy to guess" +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 "" + +#: 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 "" + +#. 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 "" + +#: frappe/public/js/frappe/form/templates/form_sidebar.html:73 +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 "" + +#. 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 "" + +#. 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 "" + +#. Label of the show_document (Button) field in DocType 'Access Log' +#: frappe/core/doctype/access_log/access_log.json +msgid "Show Document" +msgstr "" + +#: frappe/www/error.html:42 frappe/www/error.html:65 +msgid "Show Error" +msgstr "" + +#. Label of the show_external_link_warning (Select) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Show External Link Warning" +msgstr "" + +#: frappe/public/js/frappe/form/layout.js:578 +msgid "Show Fieldname (click to copy on clipboard)" +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 "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#. 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 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 the line_breaks (Check) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Show Line Breaks after Sections" +msgstr "" + +#: frappe/public/js/frappe/form/toolbar.js:410 +msgid "Show Links" +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 "" + +#. 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 "" + +#: 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 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 "" + +#. Label of the show_processlist (Check) field in DocType 'System Console' +#: frappe/desk/doctype/system_console/system_console.json +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 "" + +#. 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 "" + +#: frappe/public/js/frappe/list/list_filter.js:15 +#: frappe/public/js/frappe/list/list_filter.js:94 +msgid "Show Saved" +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 "" + +#. Label of the show_sidebar (Check) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +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:1851 +msgid "Show Tags" +msgstr "" + +#. Label of the show_title (Check) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Show Title" +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 +#. Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Show Title in Link Fields" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1529 +msgid "Show Totals" +msgstr "" + +#: frappe/desk/doctype/form_tour/form_tour.js:116 +msgid "Show Tour" +msgstr "" + +#: 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 "" + +#: frappe/public/js/frappe/views/calendar/calendar.js:179 +msgid "Show Weekends" +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 "" + +#: frappe/core/doctype/version/version.js:6 +msgid "Show all Versions" +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:69 +msgid "Show all activity" +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 "" + +#. 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' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Show full form instead of a quick entry modal" +msgstr "" + +#. Label of the document_type (Select) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +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" +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 "" + +#. 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:272 +#: frappe/public/js/frappe/form/layout.js:290 +msgid "Show more details" +msgstr "" + +#. 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' +#: frappe/desk/doctype/number_card/number_card.json +msgid "Show percentage difference according to this time interval" +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' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Show title in browser window as \"Prefix - title\"" +msgstr "" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:148 +msgid "Show {0} List" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:506 +msgid "Showing only Numeric fields from Report" +msgstr "" + +#: 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 the sidebar_items (Table) field in DocType 'Website Sidebar' +#: frappe/website/doctype/website_sidebar/website_sidebar.json +msgid "Sidebar Items" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#: frappe/core/doctype/user/user.py:1029 +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:71 +msgid "Sign up" +msgstr "" + +#. 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 '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' +#. 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' +#: 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 "" + +#: frappe/www/login.html:168 +msgid "Signup Disabled" +msgstr "" + +#: frappe/www/login.html:169 +msgid "Signups have been disabled for this website." +msgstr "" + +#. 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 == \"Invalid\"" +msgstr "" + +#. 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 issue_type == 'Bug'" +msgstr "" + +#. 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 "" + +#. Label of the simultaneous_sessions (Int) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Simultaneous Sessions" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.py:128 +msgid "Single DocTypes cannot be customized." +msgstr "" + +#. Description of the 'Is Single' (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/doctype/doctype_list.js:68 +msgid "Single Types have only one record no tables associated. Values are stored in tabSingles" +msgstr "" + +#: 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 "" + +#: frappe/public/js/frappe/views/file/file_view.js:370 +msgid "Size" +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 "" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:82 +#: frappe/public/js/onboarding_tours/onboarding_tours.js:18 +msgid "Skip" +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 "" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:332 +msgid "Skip Step" +msgstr "" + +#. Label of the skipped (Check) field in DocType 'Patch Log' +#: frappe/core/doctype/patch_log/patch_log.json +msgid "Skipped" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:952 +msgid "Skipping Duplicate Column {0}" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:977 +msgid "Skipping Untitled Column" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:963 +msgid "Skipping column {0}" +msgstr "" + +#: frappe/modules/utils.py:176 +msgid "Skipping fixture syncing for doctype {0} from file {1}" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:39 +msgid "Skipping {0} of {1}, {2}" +msgstr "" + +#. Label of the skype (Data) field in DocType 'Contact Us Settings' +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +msgid "Skype" +msgstr "" + +#. Option for the 'Channel' (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Slack" +msgstr "" + +#. Label of the slack_webhook_url (Link) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Slack Channel" +msgstr "" + +#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py:65 +msgid "Slack Webhook Error" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. Label of the slideshow_items (Table) field in DocType 'Website Slideshow' +#: frappe/website/doctype/website_slideshow/website_slideshow.json +msgid "Slideshow Items" +msgstr "" + +#. Label of the slideshow_name (Data) field in DocType 'Website Slideshow' +#: frappe/website/doctype/website_slideshow/website_slideshow.json +msgid "Slideshow Name" +msgstr "" + +#. Description of a DocType +#: frappe/website/doctype/website_slideshow/website_slideshow.json +msgid "Slideshow like display for the website" +msgstr "" + +#. 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' +#. 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' +#. 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_form_field/web_form_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Small Text" +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 "" + +#. 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 "" + +#: frappe/printing/doctype/letter_head/letter_head.js:32 +msgid "Snippet and more variables: {0}" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/social_link_settings/social_link_settings.json +msgid "Social Link Settings" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#. Label of the social_logins (Table) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Social Logins" +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' +#: frappe/core/doctype/communication/communication.json +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 "" + +#. 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 "" + +#: frappe/public/js/frappe/views/translation_manager.js:101 +msgid "Something went wrong" +msgstr "" + +#: 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 "" + +#: frappe/templates/includes/login/login.js:293 +msgid "Something went wrong." +msgstr "" + +#: frappe/public/js/frappe/views/pageview.js:117 +msgid "Sorry! I could not find what you were looking for." +msgstr "" + +#: frappe/public/js/frappe/views/pageview.js:125 +msgid "Sorry! You are not permitted to view this page." +msgstr "" + +#: frappe/public/js/frappe/utils/datatable.js:6 +msgid "Sort Ascending" +msgstr "" + +#: frappe/public/js/frappe/utils/datatable.js:7 +msgid "Sort Descending" +msgstr "" + +#. Label of the sort_field (Select) field in DocType 'Customize Form' +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Sort Field" +msgstr "" + +#. 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 the sort_order (Select) field in DocType 'Customize Form' +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Sort Order" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1551 +msgid "Sort field {0} must be a valid fieldname" +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/utils/utils.js:1757 +#: 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 "" + +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Source Code" +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 "" + +#. 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 "" + +#: 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' +#: frappe/core/doctype/communication/communication.json +msgid "Spam" +msgstr "" + +#. Option for the 'Service' (Select) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "SparkPost" +msgstr "" + +#. Description of the 'Asynchronous' (Check) field in DocType 'Workflow +#. Transition Task' +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Spawns actions in a background job" +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.js:83 +msgid "Special Characters are not allowed" +msgstr "" + +#: frappe/model/naming.py:68 +msgid "Special Characters except '-', '#', '.', '/', '{{' and '}}' not allowed in naming series {0}" +msgstr "" + +#. 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 "" + +#: frappe/desk/reportview.py:455 +#: frappe/public/js/frappe/web_form/web_form_list.js:176 +#: frappe/templates/print_formats/standard_macros.html:44 +msgid "Sr" +msgstr "" + +#: 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 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 "" + +#: frappe/model/delete_doc.py:119 +msgid "Standard DocType can not be deleted." +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:229 +msgid "Standard DocType cannot have default print format, use Customize Form" +msgstr "" + +#: frappe/desk/doctype/dashboard/dashboard.py:58 +msgid "Standard Not Set" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager.js:132 +msgid "Standard Permissions" +msgstr "" + +#: frappe/printing/doctype/print_format/print_format.py:82 +msgid "Standard Print Format cannot be updated" +msgstr "" + +#: frappe/printing/doctype/print_style/print_style.py:31 +msgid "Standard Print Style cannot be changed. Please duplicate to edit." +msgstr "" + +#: frappe/desk/reportview.py:355 +msgid "Standard Reports cannot be deleted" +msgstr "" + +#: frappe/desk/reportview.py:326 +msgid "Standard Reports cannot be edited" +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 "" + +#: 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 "" + +#: frappe/core/doctype/role/role.py:32 +msgid "Standard roles cannot be renamed" +msgstr "" + +#: frappe/core/doctype/user_type/user_type.py:61 +msgid "Standard user type {0} can not be deleted." +msgstr "" + +#: 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:309 +#: frappe/printing/page/print/print.js:356 +msgid "Start" +msgstr "" + +#. 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:150 +#: 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 "" + +#. 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 "" + +#: frappe/core/doctype/data_import/data_import.js:110 +msgid "Start Import" +msgstr "" + +#: frappe/core/doctype/recorder/recorder_list.js:201 +msgid "Start Recording" +msgstr "" + +#. 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 "" + +#: frappe/core/doctype/data_export/exporter.py:22 +msgid "Start entering data below this line" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:165 +msgid "Start new Format" +msgstr "" + +#. Option for the 'SSL/TLS Mode' (Select) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "StartTLS" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Prepared Report' +#: frappe/core/doctype/prepared_report/prepared_report.json +msgid "Started" +msgstr "" + +#. Label of the started_at (Datetime) field in DocType 'RQ Job' +#: frappe/core/doctype/rq_job/rq_job.json +msgid "Started At" +msgstr "" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:286 +msgid "Starting Frappe ..." +msgstr "" + +#. Label of the starts_on (Datetime) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Starts on" +msgstr "" + +#. 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/contacts/report/addresses_and_contacts/addresses_and_contacts.py:40 +#: 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 "" + +#: frappe/public/js/workflow_builder/components/Properties.vue:26 +msgid "State Properties" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. Label of the parameters (Table) field in DocType 'SMS Settings' +#: frappe/core/doctype/sms_settings/sms_settings.json +msgid "Static Parameters" +msgstr "" + +#. Label of the statistics_section (Section Break) field in DocType 'RQ Worker' +#: frappe/core/doctype/rq_worker/rq_worker.json +msgid "Statistics" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. 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 'User Invitation' +#. 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/core/doctype/user_invitation/user_invitation.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:357 +#: frappe/public/js/frappe/views/reports/report_view.js:980 +#: 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 "" + +#: frappe/www/update-password.html:188 +msgid "Status Updated" +msgstr "" + +#: 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 "" + +#. Label of the step (Link) field in DocType 'Onboarding Step Map' +#: frappe/desk/doctype/onboarding_step_map/onboarding_step_map.json +msgid "Step" +msgstr "" + +#. 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 "" + +#: frappe/www/qrcode.html:11 +msgid "Steps to verify your login" +msgstr "" + +#. Label of the sticky (Check) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/public/js/frappe/form/grid_row.js:455 +msgid "Sticky" +msgstr "" + +#: frappe/core/doctype/recorder/recorder_list.js:87 +msgid "Stop" +msgstr "" + +#. Label of the stopped (Check) field in DocType 'Scheduled Job Type' +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +msgid "Stopped" +msgstr "" + +#. 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 "" + +#: frappe/core/doctype/user/user.js:497 +msgid "Store the API secret securely. It won't be displayed again." +msgstr "" + +#. 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 "" + +#. 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 "" + +#: frappe/utils/password_strength.py:97 +msgid "Straight rows of keys are easy to guess" +msgstr "" + +#. 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 "" + +#: frappe/public/js/frappe/form/controls/password.js:89 +msgid "Strong" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#. Label of the stylesheet_section (Tab Break) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Stylesheet" +msgstr "" + +#. Description of the 'Fraction' (Data) field in DocType 'Currency' +#: frappe/geo/doctype/currency/currency.json +msgid "Sub-currency. For e.g. \"Cent\"" +msgstr "" + +#. 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 "" + +#. Label of the subdomain (Small Text) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Subdomain" +msgstr "" + +#. 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:204 +#: 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 "" + +#. 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 "" + +#: frappe/core/doctype/doctype/doctype.py:1949 +msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/submission_queue/submission_queue.json +msgid "Submission Queue" +msgstr "" + +#. 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' +#. Button label of the request-to-delete-data Web Form +#: 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 +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "Submit" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:2233 +msgctxt "Button in list view actions menu" +msgid "Submit" +msgstr "" + +#: frappe/website/doctype/web_form/templates/web_form.html:47 +msgctxt "Button in web form" +msgid "Submit" +msgstr "" + +#: frappe/public/js/frappe/ui/dialog.js:64 +msgctxt "Primary action in dialog" +msgid "Submit" +msgstr "" + +#: frappe/public/js/frappe/ui/messages.js:97 +msgctxt "Primary action of prompt dialog" +msgid "Submit" +msgstr "" + +#: frappe/public/js/frappe/desk.js:227 +msgctxt "Submit password for Email Account" +msgid "Submit" +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 "" + +#: frappe/core/page/permission_manager/permission_manager_help.html:39 +msgid "Submit an Issue" +msgstr "" + +#: frappe/website/doctype/web_form/templates/web_form.html:163 +msgctxt "Button in web form" +msgid "Submit another response" +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 "" + +#. 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:132 +msgid "Submit on Creation" +msgstr "" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:395 +msgid "Submit this document to complete this step." +msgstr "" + +#: frappe/public/js/frappe/form/form.js:1221 +msgid "Submit this document to confirm" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:2238 +msgctxt "Title of confirmation dialog" +msgid "Submit {0} documents?" +msgstr "" + +#. Option for the 'Comment Type' (Select) field in DocType '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:143 +msgid "Submitted" +msgstr "" + +#: frappe/workflow/doctype/workflow/workflow.py:104 +msgid "Submitted Document cannot be converted back to draft. Transition row {0}" +msgstr "" + +#: 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 "" + +#: frappe/public/js/frappe/form/save.js:10 +msgctxt "Freeze message while submitting a document" +msgid "Submitting" +msgstr "" + +#: frappe/desk/doctype/bulk_update/bulk_update.py:88 +msgid "Submitting {0}" +msgstr "" + +#. Option for the 'Address Type' (Select) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "Subsidiary" +msgstr "" + +#. Label of the subtitle (Data) field in DocType 'Module Onboarding' +#: frappe/desk/doctype/module_onboarding/module_onboarding.json +msgid "Subtitle" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Activity Log' +#. Option for the 'Status' (Select) field in DocType 'Data Import' +#. Label of the success (Check) field in DocType 'Data Import Log' +#. Option for the 'Style' (Select) field in DocType '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:1172 +#: 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 "" + +#. Name of a DocType +#: frappe/core/doctype/success_action/success_action.json +msgid "Success Action" +msgstr "" + +#. Label of the success_message (Data) field in DocType 'Module Onboarding' +#: frappe/desk/doctype/module_onboarding/module_onboarding.json +msgid "Success Message" +msgstr "" + +#. 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 the success_url (Data) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Success URL" +msgstr "" + +#. 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 "" + +#. 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 "" + +#: frappe/model/workflow.py:363 +msgid "Successful Transactions" +msgstr "" + +#: frappe/model/rename_doc.py:698 +msgid "Successful: {0} to {1}" +msgstr "" + +#: 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 "" + +#: frappe/core/doctype/data_import/data_import.js:423 +msgid "Successfully imported {0}" +msgstr "" + +#: 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 "" + +#: frappe/public/js/frappe/views/translation_manager.js:22 +msgid "Successfully updated translations" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:431 +msgid "Successfully updated {0}" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:149 +msgid "Successfully updated {0} out of {1} records." +msgstr "" + +#: frappe/core/doctype/recorder/recorder.js:15 +msgid "Suggest Optimizations" +msgstr "" + +#. Label of the suggested_indexes (Table) field in DocType 'Recorder' +#: frappe/core/doctype/recorder/recorder.json +msgid "Suggested Indexes" +msgstr "" + +#: frappe/core/doctype/user/user.py:733 +msgid "Suggested Username: {0}" +msgstr "" + +#. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart' +#. Option for the 'Group By Type' (Select) field in DocType 'Dashboard Chart' +#. Option for the 'Function' (Select) field in DocType '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 "" + +#: frappe/public/js/frappe/ui/group_by/group_by.js:340 +msgid "Sum of {0}" +msgstr "" + +#: frappe/public/js/frappe/views/interaction.js:88 +msgid "Summary" +msgstr "" + +#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day' +#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day' +#. 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' +#. 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 "" + +#: frappe/email/doctype/email_queue/email_queue_list.js:27 +msgid "Suspend Sending" +msgstr "" + +#: frappe/public/js/frappe/ui/capture.js:276 +msgid "Switch Camera" +msgstr "" + +#: frappe/public/js/frappe/desk.js:96 +#: frappe/public/js/frappe/ui/theme_switcher.js:11 +msgid "Switch Theme" +msgstr "" + +#: frappe/templates/includes/navbar/navbar_login.html:17 +msgid "Switch To Desk" +msgstr "" + +#: 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 the symbol (Data) field in DocType 'Currency' +#: frappe/geo/doctype/currency/currency.json +msgid "Symbol" +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 "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.js:28 +msgid "Sync Calendar" +msgstr "" + +#: frappe/integrations/doctype/google_contacts/google_contacts.js:28 +msgid "Sync Contacts" +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 "" + +#: frappe/custom/doctype/customize_form/customize_form.js:256 +msgid "Sync on Migrate" +msgstr "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:312 +msgid "Sync token was invalid and has been reset, Retry syncing." +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 "" + +#. Label of the sync_with_google_contacts (Check) field in DocType 'Contact' +#: frappe/contacts/doctype/contact/contact.json +msgid "Sync with Google Contacts" +msgstr "" + +#: frappe/custom/doctype/doctype_layout/doctype_layout.js:46 +msgid "Sync {0} Fields" +msgstr "" + +#: frappe/custom/doctype/doctype_layout/doctype_layout.js:100 +msgid "Synced Fields" +msgstr "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.js:31 +#: frappe/integrations/doctype/google_contacts/google_contacts.js:31 +msgid "Syncing" +msgstr "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.js:19 +msgid "Syncing {0} of {1}" +msgstr "" + +#: frappe/utils/data.py:2573 +msgid "Syntax Error" +msgstr "" + +#. Option for the 'Show in Module Section' (Select) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "System" +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 "" + +#: 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 +#: frappe/core/workspace/build/build.json +msgid "System Logs" +msgstr "" + +#. Name of a role +#: 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_invitation/user_invitation.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 +#: frappe/workflow/doctype/workflow_transition_tasks/workflow_transition_tasks.json +msgid "System Manager" +msgstr "" + +#: frappe/desk/page/backups/backups.js:38 +msgid "System Manager privileges required." +msgstr "" + +#. Option for the 'Channel' (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "System Notification" +msgstr "" + +#. Label of the system_page (Check) field in DocType 'Page' +#: frappe/core/doctype/page/page.json +msgid "System Page" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/system_settings/system_settings.json +msgid "System Settings" +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 "" + +#: frappe/public/js/frappe/utils/number_systems.js:5 +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' +#: 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 "" + +#: frappe/public/js/form_builder/components/Tabs.vue:135 +msgid "Tab Label" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. 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' +#: 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 "" + +#. 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 "" + +#: frappe/core/doctype/version/version_view.html:73 +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 "" + +#: frappe/core/doctype/doctype/doctype.py:1204 +msgid "Table Fieldname Missing" +msgstr "" + +#. Label of the table_html (HTML) field in DocType 'Version' +#: frappe/core/doctype/version/version.json +msgid "Table HTML" +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' +#: 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 "" + +#: frappe/custom/doctype/customize_form/customize_form.js:229 +msgid "Table Trimmed" +msgstr "" + +#: frappe/public/js/frappe/form/grid.js:1171 +msgid "Table updated" +msgstr "" + +#: frappe/model/document.py:1578 +msgid "Table {0} cannot be empty" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Tabloid" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/tag/tag.json +msgid "Tag" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/tag_link/tag_link.json +msgid "Tag Link" +msgstr "" + +#: 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 "" + +#: frappe/public/js/frappe/ui/capture.js:220 +msgid "Take Photo" +msgstr "" + +#. 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 "" + +#. Label of the task (Select) field in DocType 'Workflow Transition Task' +#: frappe/desk/doctype/todo/todo_calendar.js:19 +#: frappe/desk/doctype/todo/todo_calendar.js:25 +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Task" +msgstr "" + +#. Label of the tasks (Table) field in DocType 'Workflow Transition Tasks' +#: frappe/workflow/doctype/workflow_transition_tasks/workflow_transition_tasks.json +msgid "Tasks" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. 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 the telemetry_section (Section Break) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Telemetry" +msgstr "" + +#. 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 "" + +#: frappe/core/doctype/data_import/importer.py:483 +#: frappe/core/doctype/data_import/importer.py:610 +msgid "Template Error" +msgstr "" + +#. 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 the template_options (Code) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Template Options" +msgstr "" + +#. Label of the template_warnings (Code) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Template Warnings" +msgstr "" + +#: frappe/public/js/frappe/views/workspace/blocks/paragraph.js:78 +msgid "Templates" +msgstr "" + +#: frappe/core/doctype/user/user.py:1042 +msgid "Temporarily Disabled" +msgstr "" + +#: frappe/core/doctype/translation/test_translation.py:47 +#: frappe/core/doctype/translation/test_translation.py:54 +msgid "Test Data" +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 "" + +#: 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 "" + +#. 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 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_form_field/web_form_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Text" +msgstr "" + +#. Label of the text_align (Select) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Text Align" +msgstr "" + +#. Label of the text_color (Link) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Text Color" +msgstr "" + +#. Label of the text_content (Code) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Text Content" +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 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 "" + +#: frappe/templates/emails/password_reset.html:5 +msgid "Thank you" +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" +"Your query:\n\n" +"{0}" +msgstr "" + +#: frappe/website/doctype/web_form/templates/web_form.html:147 +msgid "Thank you for spending your valuable time to fill this form" +msgstr "" + +#: frappe/templates/emails/auto_reply.html:1 +msgid "Thank you for your email" +msgstr "" + +#: frappe/website/doctype/help_article/templates/help_article.html:27 +msgid "Thank you for your feedback!" +msgstr "" + +#: frappe/templates/includes/contact.js:36 +msgid "Thank you for your message" +msgstr "" + +#: frappe/templates/emails/new_user.html:16 +msgid "Thanks" +msgstr "" + +#: frappe/templates/emails/auto_repeat_fail.html:3 +msgid "The Auto Repeat for this document has been disabled." +msgstr "" + +#: frappe/public/js/frappe/form/grid.js:1194 +msgid "The CSV format is case sensitive" +msgstr "" + +#. 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 "" + +#: frappe/email/doctype/notification/notification.py:219 +msgid "The Condition '{0}' is invalid" +msgstr "" + +#: frappe/core/doctype/file/file.py:220 +msgid "The File URL you've entered is incorrect" +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:112 +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 "" + +#: frappe/public/js/frappe/desk.js:162 +msgid "The application has been updated to a new version, please refresh this page" +msgstr "" + +#. 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 "" + +#: frappe/public/js/frappe/views/interaction.js:323 +msgid "The attachments could not be correctly linked to the new document" +msgstr "" + +#. 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 "" + +#: frappe/database/database.py:474 +msgid "The changes have been reverted." +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 "" + +#: frappe/templates/includes/comments/comments.py:48 +msgid "The comment cannot be empty" +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 "" + +#: frappe/public/js/frappe/list/list_view.js:687 +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 "" + +#: frappe/public/js/frappe/views/interaction.js:295 +msgid "The document has been assigned to {0}" +msgstr "" + +#. Description of the 'Parent Document Type' (Link) field in DocType 'Dashboard +#. Chart' +#. Description 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 "The document type selected is a child table, so the parent document type is required." +msgstr "" + +#: frappe/core/doctype/user_type/user_type.py:110 +msgid "The field {0} is mandatory" +msgstr "" + +#: frappe/core/doctype/file/file.py:157 +msgid "The fieldname you've specified in Attached To Field is invalid" +msgstr "" + +#: 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 "" + +#: frappe/core/doctype/data_import/importer.py:1046 +msgid "The following values do not exist for {0}: {1}" +msgstr "" + +#: 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 "" + +#: frappe/templates/emails/login_with_email_link.html:21 +msgid "The link will expire in {0} minutes" +msgstr "" + +#: frappe/www/login.py:194 +msgid "The link you trying to login is invalid or expired." +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 "" + +#: 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 "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#: frappe/www/update-password.html:101 +msgid "The password of your account has expired." +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 "" + +#. 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 "" + +#: frappe/desk/utils.py:106 +msgid "The report you requested has been generated.

Click here to download:
{0}

This link will expire in {1} hours." +msgstr "" + +#: frappe/core/doctype/user/user.py:1000 +msgid "The reset password link has been expired" +msgstr "" + +#: frappe/core/doctype/user/user.py:1002 +msgid "The reset password link has either been used before or is invalid" +msgstr "" + +#: frappe/app.py:391 frappe/public/js/frappe/request.js:149 +msgid "The resource you are looking for is not available" +msgstr "" + +#: frappe/core/doctype/user_type/user_type.py:114 +msgid "The role {0} should be a custom role." +msgstr "" + +#: frappe/core/doctype/audit_trail/audit_trail.py:46 +msgid "The selected document {0} is not a {1}." +msgstr "" + +#: frappe/utils/response.py:336 +msgid "The system is being updated. Please refresh again after a few moments." +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 "" + +#: frappe/core/doctype/user_type/user_type.py:97 +msgid "The total number of user document types limit has been crossed." +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 "" + +#. 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 "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:183 +msgid "The {0} is already on auto repeat {1}" +msgstr "" + +#. 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 "" + +#: frappe/public/js/frappe/ui/theme_switcher.js:130 +msgid "Theme Changed" +msgstr "" + +#. 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 "" + +#. Label of the theme_url (Data) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Theme URL" +msgstr "" + +#: 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 "" + +#: frappe/public/js/frappe/views/reports/query_report.js:973 +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:318 +msgid "There can be only 9 Page Break fields in a Web Form" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1444 +msgid "There can be only one Fold in a form" +msgstr "" + +#: frappe/contacts/doctype/address/address.py:183 +msgid "There is an error in your Address Template {0}" +msgstr "" + +#: frappe/core/doctype/data_export/exporter.py:162 +msgid "There is no data to be exported" +msgstr "" + +#: frappe/model/workflow.py:170 +msgid "There is no task called \"{}\"" +msgstr "" + +#: 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:643 frappe/utils/file_manager.py:372 +msgid "There is some problem with the file url: {0}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:970 +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 "" + +#: frappe/www/error.py:17 +msgid "There was an error building this page" +msgstr "" + +#: frappe/public/js/frappe/views/kanban/kanban_view.js:196 +msgid "There was an error saving filters" +msgstr "" + +#: frappe/public/js/frappe/form/sidebar/attachments.js:216 +msgid "There were errors" +msgstr "" + +#: frappe/public/js/frappe/views/interaction.js:277 +msgid "There were errors while creating the document. Please try again." +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:843 +msgid "There were errors while sending email. Please try again." +msgstr "" + +#: frappe/model/naming.py:502 +msgid "There were some errors setting the name, please contact the administrator" +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 "" + +#. 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 +msgid "These settings are required if 'Custom' LDAP Directory is used" +msgstr "" + +#. 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 "" + +#: frappe/www/third_party_apps.html:3 frappe/www/third_party_apps.html:14 +msgid "Third Party Apps" +msgstr "" + +#. Label of the third_party_authentication (Section Break) field in DocType +#. 'User' +#: frappe/core/doctype/user/user.json +msgid "Third Party Authentication" +msgstr "" + +#: frappe/geo/doctype/currency/currency.js:8 +msgid "This Currency is disabled. Enable to use in transactions" +msgstr "" + +#: frappe/public/js/frappe/views/kanban/kanban_view.js:405 +msgid "This Kanban Board will be private" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:666 +msgid "This Month" +msgstr "" + +#: frappe/core/doctype/file/file.py:396 +msgid "This PDF cannot be uploaded as it contains unsafe content." +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 "" + +#: frappe/public/js/frappe/form/toolbar.js:117 +#: frappe/public/js/frappe/model/model.js:706 +msgid "This cannot be undone" +msgstr "" + +#: frappe/desk/doctype/number_card/number_card.js:484 +msgctxt "Number Card" +msgid "This card is visible only to Administrator and System Managers by default. Set a DocType to share with users who have read access." +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 "" + +#. 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 "" + +#: 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:1055 +msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes." +msgstr "" + +#: frappe/model/delete_doc.py:153 +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 "" + +#: 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 "" + +#: frappe/public/js/frappe/form/form.js:1102 +msgid "This document is already amended, you cannot ammend it again" +msgstr "" + +#: frappe/model/document.py:475 +msgid "This document is currently locked and queued for execution. Please try again after some time." +msgstr "" + +#: frappe/templates/emails/auto_repeat_fail.html:7 +msgid "This email is autogenerated" +msgstr "" + +#: 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' +#: 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 "" + +#: frappe/core/doctype/file/file.py:525 +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 "" + +#: frappe/public/js/frappe/form/form.js:1199 +msgid "This form has been modified after you have loaded it" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:2259 +msgid "This form is not editable due to a Workflow." +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 "" + +#: 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' +#: frappe/website/doctype/website_slideshow/website_slideshow.json +msgid "This goes above the slideshow." +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:2197 +msgid "This is a background report. Please set the appropriate filters and then generate a new one." +msgstr "" + +#: frappe/utils/password_strength.py:158 +msgid "This is a top-10 common password." +msgstr "" + +#: frappe/utils/password_strength.py:160 +msgid "This is a top-100 common password." +msgstr "" + +#: frappe/utils/password_strength.py:162 +msgid "This is a very common password." +msgstr "" + +#: frappe/core/doctype/rq_job/rq_job.js:9 +msgid "This is a virtual doctype and data is cleared periodically." +msgstr "" + +#: frappe/templates/emails/auto_reply.html:5 +msgid "This is an automatically generated reply" +msgstr "" + +#: frappe/utils/password_strength.py:164 +msgid "This is similar to a commonly used password." +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 "" + +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:407 +msgid "This link has already been activated for verification." +msgstr "" + +#: frappe/utils/verified_command.py:49 +msgid "This link is invalid or expired. Please make sure you have pasted correctly." +msgstr "" + +#: frappe/printing/page/print/print.js:431 +msgid "This may get printed on multiple pages" +msgstr "" + +#: frappe/utils/goal.py:109 +msgid "This month" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:1045 +msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead." +msgstr "" + +#: frappe/templates/emails/auto_email_report.html:57 +msgid "This report was generated on {0}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:861 +msgid "This report was generated {0}." +msgstr "" + +#: 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 "" + +#: frappe/templates/includes/navbar/navbar_items.html:95 +msgid "This site is in read only mode, full functionality will be restored soon." +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 "" + +#: 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 "" + +#: frappe/public/js/frappe/form/controls/base_input.js:129 +msgid "This value is fetched from {0}'s {1} field" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#: frappe/www/third_party_apps.html:23 +msgid "This will log out {0} from all other devices" +msgstr "" + +#: frappe/templates/emails/delete_data_confirmation.html:3 +msgid "This will permanently remove your data." +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 "" + +#: frappe/core/doctype/rq_job/rq_job.js:15 +msgid "This will terminate the job immediately and might be dangerous, are you sure?" +msgstr "" + +#: frappe/core/doctype/user/user.py:1255 +msgid "Throttled" +msgstr "" + +#. Label of the thumbnail_url (Small Text) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "Thumbnail URL" +msgstr "" + +#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day' +#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day' +#. 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' +#. 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 "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Label of the time (Datetime) field in DocType 'Recorder' +#. 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' +#. Option for the 'Fieldtype' (Select) field in DocType '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 "" + +#. 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 "" + +#. Label of the time_interval (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Time Interval" +msgstr "" + +#. Label of the timeseries (Check) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Time Series" +msgstr "" + +#. 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 "" + +#. 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 the rate_limit_seconds (Int) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Time Window (Seconds)" +msgstr "" + +#. Label of the time_zone (Select) field in DocType 'System Settings' +#. Label of the time_zone (Autocomplete) field in DocType 'User' +#. Label of a field in the edit-profile Web Form +#. 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/core/web_form/edit_profile/edit_profile.json +#: frappe/desk/page/setup_wizard/setup_wizard.js:407 +#: frappe/website/doctype/web_page_view/web_page_view.json +msgid "Time Zone" +msgstr "" + +#. Label of the time_zones (Text) field in DocType 'Country' +#: frappe/geo/doctype/country/country.json +msgid "Time Zones" +msgstr "" + +#. Label of the time_format (Data) field in DocType 'Country' +#: frappe/geo/doctype/country/country.json +msgid "Time format" +msgstr "" + +#. 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' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Time in seconds to retain QR code image on server. Min:240" +msgstr "" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:413 +msgid "Time series based on is required to create a dashboard chart" +msgstr "" + +#: frappe/public/js/frappe/form/controls/time.js:124 +msgid "Time {0} must be in format: {1}" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Timed Out" +msgstr "" + +#: frappe/public/js/frappe/ui/theme_switcher.js:64 +msgid "Timeless Night" +msgstr "" + +#. Label of the timeline (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Timeline" +msgstr "" + +#. Label of the timeline_doctype (Link) field in DocType 'Activity Log' +#: frappe/core/doctype/activity_log/activity_log.json +msgid "Timeline DocType" +msgstr "" + +#. Label of the timeline_field (Data) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Timeline Field" +msgstr "" + +#. 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 "" + +#. Label of the timeline_name (Dynamic Link) field in DocType 'Activity Log' +#: frappe/core/doctype/activity_log/activity_log.json +msgid "Timeline Name" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1539 +msgid "Timeline field must be a Link or Dynamic Link" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1535 +msgid "Timeline field must be a valid fieldname" +msgstr "" + +#. Label of the timeout (Duration) field in DocType 'RQ Job' +#: frappe/core/doctype/rq_job/rq_job.json +msgid "Timeout" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. Label of the timestamp (Datetime) field in DocType 'Access Log' +#: frappe/core/doctype/access_log/access_log.json +msgid "Timestamp" +msgstr "" + +#: frappe/desk/doctype/system_console/system_console.js:41 +msgid "Tip: Try the new dropdown console using" +msgstr "" + +#. 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 '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/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 "" + +#. 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 "" + +#. Label of the title_prefix (Data) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Title Prefix" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1476 +msgid "Title field must be a valid fieldname" +msgstr "" + +#: frappe/website/doctype/web_page/web_page.js:70 +msgid "Title of the page" +msgstr "" + +#. 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 "" + +#: frappe/public/js/frappe/views/communication.js:53 +msgctxt "Email Recipients" +msgid "To" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#. 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 }}
" +msgstr "" + +#. Description of the 'Subject' (Data) field in DocType 'Notification' +#: 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' +#: 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 "" + +#: frappe/email/doctype/auto_email_report/auto_email_report.py:109 +msgid "To allow more reports update limit in System Settings." +msgstr "" + +#. Label of the section_break_10 (Section Break) field in DocType +#. 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "To and CC" +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 "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.js:35 +msgid "To configure Auto Repeat, enable \"Allow Auto Repeat\" from {0}." +msgstr "" + +#: frappe/www/login.html:76 +msgid "To enable it follow the instructions in the following link: {0}" +msgstr "" + +#: 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 "" + +#: 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:862 +msgid "To get the updated report, click on {0}." +msgstr "" + +#: 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' +#: frappe/desk/doctype/system_console/system_console.json +msgid "To print output use print(text)" +msgstr "" + +#: 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 "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.js:8 +msgid "To use Google Calendar, enable {0}." +msgstr "" + +#: frappe/integrations/doctype/google_contacts/google_contacts.js:8 +msgid "To use Google Contacts, enable {0}." +msgstr "" + +#. 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 "" + +#. 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 "" + +#: 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 +#: 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 "" + +#: 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 "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1572 +msgid "Toggle Chart" +msgstr "" + +#. Label of a standard navbar item +#. Type: Action +#: frappe/hooks.py +msgid "Toggle Full Width" +msgstr "" + +#: frappe/public/js/frappe/views/file/file_view.js:33 +msgid "Toggle Grid View" +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:1576 +msgid "Toggle Sidebar" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1966 +msgctxt "Button in list view menu" +msgid "Toggle Sidebar" +msgstr "" + +#. Label of a standard navbar item +#. Type: Action +#: frappe/hooks.py +msgid "Toggle Theme" +msgstr "" + +#. Option for the 'Response Type' (Select) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Token" +msgstr "" + +#. Name of a DocType +#: frappe/integrations/doctype/token_cache/token_cache.json +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" +msgstr "" + +#. Label of the token_uri (Data) field in DocType 'Connected App' +#: frappe/integrations/doctype/connected_app/connected_app.json +msgid "Token URI" +msgstr "" + +#: frappe/utils/oauth.py:184 +msgid "Token is missing" +msgstr "" + +#: 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:310 +msgid "Too Many Documents" +msgstr "" + +#: frappe/rate_limiter.py:101 +msgid "Too Many Requests" +msgstr "" + +#: frappe/database/database.py:473 +msgid "Too many changes to database in single action." +msgstr "" + +#: 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:1043 +msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour" +msgstr "" + +#. Name of a Workspace +#. Label of a Card Break in the Tools Workspace +#: frappe/automation/workspace/tools/tools.json +msgid "Tools" +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 "" + +#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.js:13 +msgid "Top 10" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/top_bar_item/top_bar_item.json +msgid "Top Bar Item" +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 "" + +#. Option for the 'Position' (Select) field in DocType '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 "" + +#. 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' +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:244 +msgid "Top Left" +msgstr "" + +#. Option for the 'Position' (Select) field in DocType '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:246 +msgid "Top Right" +msgstr "" + +#. Label of the topic (Link) field in DocType 'Discussion Reply' +#: frappe/website/doctype/discussion_reply/discussion_reply.json +msgid "Topic" +msgstr "" + +#: frappe/desk/query_report.py:587 +#: frappe/public/js/frappe/views/reports/print_grid.html:45 +#: frappe/public/js/frappe/views/reports/query_report.js:1332 +#: frappe/public/js/frappe/views/reports/report_view.js:1553 +msgid "Total" +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 "" + +#. 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' +#: frappe/email/doctype/email_account/email_account.json +msgid "Total number of emails to sync in initial sync process" +msgstr "" + +#: frappe/public/js/print_format_builder/ConfigureColumns.vue:12 +msgid "Total:" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1258 +msgid "Totals" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1233 +msgid "Totals Row" +msgstr "" + +#. 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 the traceback (Code) field in DocType 'Patch Log' +#: frappe/core/doctype/patch_log/patch_log.json +msgid "Traceback" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. Label of the track_field (Data) field in DocType 'Milestone' +#: frappe/automation/doctype/milestone/milestone.json +msgid "Track Field" +msgstr "" + +#. Label of the track_seen (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Track Seen" +msgstr "" + +#. 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 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 "" + +#. Description of the 'Track Email Status' (Check) field in DocType 'Email +#. Account' +#: 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 "" + +#. 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:1821 +msgid "Tracking URL generated and copied to clipboard" +msgstr "" + +#: 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 "" + +#. Label of the transition_tasks (Link) field in DocType 'Workflow Transition' +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +msgid "Transition Tasks" +msgstr "" + +#. Label of the transitions (Table) field in DocType 'Workflow' +#: frappe/workflow/doctype/workflow/workflow.json +msgid "Transitions" +msgstr "" + +#. 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 "" + +#: frappe/public/js/frappe/views/reports/query_report.js:2252 +msgid "Translate Data" +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 "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1658 +msgid "Translate values" +msgstr "" + +#: frappe/public/js/frappe/views/translation_manager.js:11 +msgid "Translate {0}" +msgstr "" + +#. Label of the translated_text (Code) field in DocType 'Translation' +#: frappe/core/doctype/translation/translation.json +msgid "Translated Text" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/translation/translation.json +msgid "Translation" +msgstr "" + +#: frappe/public/js/frappe/views/translation_manager.js:46 +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" +msgstr "" + +#. 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 "" + +#: frappe/public/js/frappe/list/base_list.js:210 +msgid "Tree View" +msgstr "" + +#. 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 "" + +#: frappe/public/js/frappe/views/treeview.js:19 +msgid "Tree view is not available for {0}" +msgstr "" + +#. Label of the method (Data) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Trigger Method" +msgstr "" + +#: frappe/public/js/frappe/ui/keyboard.js:196 +msgid "Trigger Primary Action" +msgstr "" + +#: frappe/tests/test_translate.py:55 +msgid "Trigger caching" +msgstr "" + +#. 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 "" + +#: 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 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 "" + +#: frappe/printing/page/print/print.js:202 +#: frappe/printing/page/print/print.js:208 +msgid "Try the new Print Designer" +msgstr "" + +#: frappe/utils/password_strength.py:106 +msgid "Try to avoid repeated words and characters" +msgstr "" + +#: frappe/utils/password_strength.py:98 +msgid "Try to use a longer keyboard pattern with more turns" +msgstr "" + +#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day' +#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day' +#. 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' +#. 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 "" + +#. 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 "" + +#. 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 "" + +#. 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:370 +#: 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 "" + +#: frappe/public/js/frappe/form/controls/comment.js:90 +msgid "Type a reply / comment" +msgstr "" + +#: frappe/templates/includes/search_template.html:51 +msgid "Type something in the search box to search" +msgstr "" + +#: 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 "" + +#: frappe/templates/discussions/discussions.js:341 +msgid "Type your reply here..." +msgstr "" + +#: frappe/core/doctype/data_export/exporter.py:143 +msgid "Type:" +msgstr "" + +#. 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 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 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 "" + +#. 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 "" + +#. Option for the 'Email Sync Option' (Select) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "UNSEEN" +msgstr "" + +#. 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 "" + +#. Option for the 'Type' (Select) field in DocType 'Workspace' +#. Option for the 'Type' (Select) field in DocType '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 "" + +#. Description of the 'Documentation Link' (Data) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "URL for documentation or help" +msgstr "" + +#: frappe/core/doctype/file/file.py:231 +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" +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 "" + +#: frappe/public/js/frappe/ui/capture.js:338 +msgid "Unable to load camera." +msgstr "" + +#: frappe/public/js/frappe/model/model.js:230 +msgid "Unable to load: {0}" +msgstr "" + +#: frappe/utils/csvutils.py:37 +msgid "Unable to open attached file. Did you export it as CSV?" +msgstr "" + +#: frappe/core/doctype/file/utils.py:98 frappe/core/doctype/file/utils.py:130 +msgid "Unable to read file format for {0}" +msgstr "" + +#: 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 "" + +#: frappe/public/js/frappe/views/calendar/calendar.js:450 +msgid "Unable to update event" +msgstr "" + +#: frappe/core/doctype/file/file.py:489 +msgid "Unable to write file format for {0}" +msgstr "" + +#. Label of the unassign_condition (Code) field in DocType 'Assignment Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Unassign Condition" +msgstr "" + +#: frappe/app.py:399 +msgid "Uncaught Exception" +msgstr "" + +#: frappe/public/js/frappe/form/toolbar.js:103 +msgid "Unchanged" +msgstr "" + +#: frappe/public/js/frappe/form/toolbar.js:518 +msgid "Undo" +msgstr "" + +#: frappe/public/js/frappe/form/toolbar.js:526 +msgid "Undo last action" +msgstr "" + +#: frappe/database/query.py:1497 +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 "" + +#. Name of a DocType +#: frappe/email/doctype/unhandled_email/unhandled_email.json +msgid "Unhandled Email" +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 "" + +#. 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 "" + +#. 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 "" + +#: frappe/public/js/frappe/model/model.js:209 +msgid "Unknown Column: {0}" +msgstr "" + +#: frappe/utils/data.py:1256 +msgid "Unknown Rounding Method: {}" +msgstr "" + +#: frappe/auth.py:319 +msgid "Unknown User" +msgstr "" + +#: frappe/utils/csvutils.py:54 +msgid "Unknown file encoding. Tried to use: {0}" +msgstr "" + +#: frappe/core/doctype/submission_queue/submission_queue.js:7 +msgid "Unlock Reference Document" +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:633 +#: frappe/website/doctype/web_form/web_form.js:86 +msgid "Unpublish" +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 "" + +#. Label of the unread_notification_sent (Check) field in DocType +#. 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Unread Notification Sent" +msgstr "" + +#: frappe/utils/safe_exec.py:498 +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' +#: frappe/core/doctype/comment/comment.json +msgid "Unshared" +msgstr "" + +#: frappe/email/queue.py:67 +msgid "Unsubscribe" +msgstr "" + +#. Label of the unsubscribe_method (Data) field in DocType 'Email Queue' +#: frappe/email/doctype/email_queue/email_queue.json +msgid "Unsubscribe Method" +msgstr "" + +#. Label of the unsubscribe_params (Code) field in DocType 'Email Queue' +#: frappe/email/doctype/email_queue/email_queue.json +msgid "Unsubscribe Params" +msgstr "" + +#. 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 "" + +#: frappe/database/query.py:655 frappe/database/query.py:1389 +#: frappe/database/query.py:1399 +msgid "Unsupported function or invalid field name: {0}" +msgstr "" + +#: frappe/public/js/frappe/data_import/import_preview.js:72 +msgid "Untitled Column" +msgstr "" + +#: frappe/core/doctype/file/file.js:38 +msgid "Unzip" +msgstr "" + +#: frappe/public/js/frappe/views/file/file_view.js:132 +msgid "Unzipped {0} files" +msgstr "" + +#: frappe/public/js/frappe/views/file/file_view.js:125 +msgid "Unzipping files..." +msgstr "" + +#: frappe/desk/doctype/event/event.py:273 +msgid "Upcoming Events for Today" +msgstr "" + +#. 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:428 +msgid "Update" +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 "" + +#. Option for the 'Import Type' (Select) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Update Existing Records" +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 "" + +#: frappe/core/doctype/installed_applications/installed_applications.js:6 +#: frappe/core/doctype/installed_applications/installed_applications.js:13 +msgid "Update Hooks Resolution Order" +msgstr "" + +#: frappe/core/doctype/installed_applications/installed_applications.js:45 +msgid "Update Order" +msgstr "" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:494 +msgid "Update Password" +msgstr "" + +#. Title of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Update Profile" +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 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 "" + +#. Option for the 'Action' (Select) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Update Settings" +msgstr "" + +#: frappe/public/js/frappe/views/translation_manager.js:13 +msgid "Update Translations" +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 "" + +#: frappe/utils/change_log.py:381 +msgid "Update from Frappe Cloud" +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:375 +msgid "Update {0} records" +msgstr "" + +#. Option for the 'Comment Type' (Select) field in DocType '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:451 +msgid "Updated" +msgstr "" + +#: frappe/desk/doctype/bulk_update/bulk_update.js:32 +msgid "Updated Successfully" +msgstr "" + +#: frappe/public/js/frappe/desk.js:446 +msgid "Updated To A New Version 🎉" +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:372 +msgid "Updated successfully" +msgstr "" + +#: frappe/utils/response.py:335 +msgid "Updating" +msgstr "" + +#: frappe/public/js/frappe/form/save.js:11 +msgctxt "Freeze message while updating a document" +msgid "Updating" +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 "" + +#: 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 "" + +#: frappe/desk/page/setup_wizard/setup_wizard.py:23 +msgid "Updating global settings" +msgstr "" + +#: frappe/core/doctype/document_naming_settings/document_naming_settings.js:59 +msgid "Updating naming series options" +msgstr "" + +#: frappe/public/js/frappe/form/toolbar.js:136 +msgid "Updating related fields..." +msgstr "" + +#: frappe/desk/doctype/bulk_update/bulk_update.py:95 +msgid "Updating {0}" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:36 +msgid "Updating {0} of {1}, {2}" +msgstr "" + +#: 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:143 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:144 +#: frappe/public/js/frappe/form/grid.js:66 +#: frappe/public/js/frappe/form/templates/form_sidebar.html:13 +msgid "Upload" +msgstr "" + +#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:93 +msgid "Upload Image" +msgstr "" + +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:215 +msgid "Upload file" +msgstr "" + +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:218 +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 "" + +#. 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 "" + +#. 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 "" + +#. 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 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 "" + +#. 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 the use_post (Check) field in DocType 'SMS Settings' +#: frappe/core/doctype/sms_settings/sms_settings.json +msgid "Use POST" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. 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 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 "" + +#: frappe/utils/password_strength.py:44 +msgid "Use a few words, avoid common phrases." +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 "" + +#. 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:411 +msgid "Use of sub-query or function is restricted" +msgstr "" + +#: frappe/printing/page/print/print.js:292 +msgid "Use the new Print Format Builder" +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 "" + +#. 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 'Auto Repeat User' +#. Label of the user (Link) field in DocType 'Reminder' +#. Label of the user (Link) field in DocType 'Access Log' +#. 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 +#. Label of the user (Link) field in DocType 'User Group Member' +#. Label of the user (Link) field in DocType 'User Invitation' +#. 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 +#. 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 '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/auto_repeat_user/auto_repeat_user.json +#: frappe/automation/doctype/reminder/reminder.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/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_invitation/user_invitation.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/personal_data_download_request/personal_data_download_request.json +#: frappe/workflow/doctype/workflow_action/workflow_action.json +msgid "User" +msgstr "" + +#: frappe/core/doctype/has_role/has_role.py:25 +msgid "User '{0}' already has the role '{1}'" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/report/user_activity_report.json +msgid "User Activity Report" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/report/user_activity_report_without_sort.json +msgid "User Activity Report Without Sort" +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 "" + +#. Label of the in_create (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "User Cannot Create" +msgstr "" + +#. Label of the read_only (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "User Cannot Search" +msgstr "" + +#: frappe/public/js/frappe/desk.js:550 +msgid "User Changed" +msgstr "" + +#. Label of the defaults (Table) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "User Defaults" +msgstr "" + +#. 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 +#: frappe/core/doctype/user_document_type/user_document_type.json +msgid "User Document Type" +msgstr "" + +#: frappe/core/doctype/user_type/user_type.py:98 +msgid "User Document Types Limit Exceeded" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/user_email/user_email.json +msgid "User Email" +msgstr "" + +#. Label of the user_emails (Table) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "User Emails" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/user_group/user_group.json +msgid "User Group" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/user_group_member/user_group_member.json +msgid "User Group Member" +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 "" + +#. 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 "" + +#. 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 "" + +#. Label of the user (Link) field in DocType 'Contact' +#: frappe/contacts/doctype/contact/contact.json +msgid "User Id" +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 "" + +#: frappe/core/doctype/user_type/user_type.py:283 +msgid "User Id Field is mandatory in the user type {0}" +msgstr "" + +#. Label of the user_image (Attach Image) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "User Image" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "User Invitation" +msgstr "" + +#: 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 "" + +#. Name of a DocType +#: frappe/core/doctype/user_permission/user_permission.json +msgid "User Permission" +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:1952 +#: frappe/public/js/frappe/views/reports/report_view.js:1761 +msgid "User Permissions" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1924 +msgctxt "Button in list view menu" +msgid "User Permissions" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager_help.html:32 +msgid "User Permissions are used to limit users to specific records." +msgstr "" + +#: frappe/core/doctype/user_permission/user_permission_list.js:124 +msgid "User Permissions created successfully" +msgstr "" + +#. Name of a DocType +#. Label of the erpnext_role (Link) field in DocType 'LDAP Group Mapping' +#: frappe/core/doctype/user_role/user_role.json +#: frappe/integrations/doctype/ldap_group_mapping/ldap_group_mapping.json +msgid "User Role" +msgstr "" + +#. Name of a DocType +#: 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 +#: frappe/core/doctype/user_social_login/user_social_login.json +msgid "User Social Login" +msgstr "" + +#. Label of the _user_tags (Data) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "User Tags" +msgstr "" + +#. 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 "" + +#. 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' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "User can login using Email id or Mobile number" +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 "" + +#: frappe/templates/includes/login/login.js:292 +msgid "User does not exist." +msgstr "" + +#: frappe/core/doctype/user_type/user_type.py:83 +msgid "User does not have permission to create the new {0}" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:102 +msgid "User is disabled" +msgstr "" + +#: frappe/core/doctype/docshare/docshare.py:56 +msgid "User is mandatory for Share" +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 "" + +#: frappe/core/doctype/user_permission/user_permission.py:60 +msgid "User permission already exists" +msgstr "" + +#: frappe/www/login.py:171 +msgid "User with email address {0} does not exist" +msgstr "" + +#: 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 "" + +#: frappe/core/doctype/user/user.py:538 +msgid "User {0} cannot be deleted" +msgstr "" + +#: frappe/core/doctype/user/user.py:328 +msgid "User {0} cannot be disabled" +msgstr "" + +#: frappe/core/doctype/user/user.py:611 +msgid "User {0} cannot be renamed" +msgstr "" + +#: frappe/permissions.py:139 +msgid "User {0} does not have access to this document" +msgstr "" + +#: frappe/permissions.py:162 +msgid "User {0} does not have doctype access via role permission for document {1}" +msgstr "" + +#: 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 "" + +#: frappe/core/doctype/user/user.py:1384 +msgid "User {0} impersonated as {1}" +msgstr "" + +#: frappe/utils/oauth.py:269 +msgid "User {0} is disabled" +msgstr "" + +#: frappe/sessions.py:243 +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 the userinfo_uri (Data) field in DocType 'Connected App' +#: frappe/integrations/doctype/connected_app/connected_app.json +msgid "Userinfo URI" +msgstr "" + +#. 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 "" + +#: frappe/core/doctype/user/user.py:700 +msgid "Username {0} already exists" +msgstr "" + +#. Label of the users (Table MultiSelect) field in DocType 'Assignment Rule' +#. Name of a Workspace +#. Label of a Card Break in the Users Workspace +#. 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 "" + +#. 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 "" + +#: frappe/core/page/permission_manager/permission_manager.js:355 +msgid "Users with role {0}:" +msgstr "" + +#: frappe/public/js/frappe/ui/theme_switcher.js:70 +msgid "Uses system's theme to switch between light and dark mode" +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 "" + +#. 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' +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +msgid "Valid" +msgstr "" + +#: 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 "" + +#. 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:384 +msgid "Validation Error" +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 "" + +#. 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:208 +#: frappe/desk/doctype/number_card/number_card.js:347 +#: 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 "" + +#. 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 "" + +#. Option for the 'Send Alert On' (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Value Change" +msgstr "" + +#. Label of the value_changed (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Value Changed" +msgstr "" + +#. Label of the property_value (Data) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Value To Be Set" +msgstr "" + +#: frappe/model/base_document.py:1115 frappe/model/document.py:835 +msgid "Value cannot be changed for {0}" +msgstr "" + +#: frappe/model/document.py:781 +msgid "Value cannot be negative for" +msgstr "" + +#: frappe/model/document.py:785 +msgid "Value cannot be negative for {0}: {1}" +msgstr "" + +#: frappe/custom/doctype/property_setter/property_setter.js:7 +msgid "Value for a check field can be either 0 or 1" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.py:616 +msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters" +msgstr "" + +#: frappe/model/base_document.py:502 +msgid "Value for {0} cannot be a list" +msgstr "" + +#. 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 "" + +#: frappe/core/doctype/data_import/importer.py:714 +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" +msgstr "" + +#: frappe/model/base_document.py:1185 +msgid "Value too big" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:727 +msgid "Value {0} missing for {1}" +msgstr "" + +#: 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 "" + +#: frappe/core/doctype/data_import/importer.py:745 +#: frappe/core/doctype/data_import/importer.py:760 +msgid "Value {0} must in {1} format" +msgstr "" + +#: frappe/core/doctype/version/version_view.html:9 +msgid "Values Changed" +msgstr "" + +#. Option for the 'Font' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Verdana" +msgstr "" + +#: frappe/templates/includes/login/login.js:333 +msgid "Verification" +msgstr "" + +#: frappe/templates/includes/login/login.js:336 frappe/twofactor.py:357 +msgid "Verification Code" +msgstr "" + +#: frappe/templates/emails/delete_data_confirmation.html:10 +msgid "Verification Link" +msgstr "" + +#: 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 "" + +#. Option for the 'Contribution Status' (Select) field in DocType 'Translation' +#: frappe/core/doctype/translation/translation.json +msgid "Verified" +msgstr "" + +#: frappe/public/js/frappe/ui/messages.js:359 +#: frappe/templates/includes/login/login.js:337 +msgid "Verify" +msgstr "" + +#: frappe/public/js/frappe/ui/messages.js:358 +msgid "Verify Password" +msgstr "" + +#: frappe/templates/includes/login/login.js:171 +msgid "Verifying..." +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/version/version.json +msgid "Version" +msgstr "" + +#: frappe/public/js/frappe/desk.js:166 +msgid "Version Updated" +msgstr "" + +#. Label of the video_url (Data) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Video URL" +msgstr "" + +#. Label of the view_name (Select) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +msgid "View" +msgstr "" + +#: frappe/core/doctype/success_action/success_action.js:60 +#: frappe/public/js/frappe/form/success_action.js:89 +msgid "View All" +msgstr "" + +#: frappe/public/js/frappe/form/toolbar.js:580 +msgid "View Audit Trail" +msgstr "" + +#: frappe/core/doctype/user/user.js:144 +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:486 +#: frappe/public/js/frappe/widgets/quick_list_widget.js:258 +msgid "View List" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/view_log/view_log.json +msgid "View Log" +msgstr "" + +#: frappe/core/doctype/user/user.js:135 +#: frappe/core/doctype/user_permission/user_permission.js:24 +msgid "View Permitted Documents" +msgstr "" + +#. Label of the view_properties (Button) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "View Properties (via Customize Form)" +msgstr "" + +#. Option for the 'Action' (Select) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "View Report" +msgstr "" + +#. 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 "" + +#. 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 +#: frappe/hooks.py +#: frappe/website/doctype/website_settings/website_settings.js:16 +msgid "View Website" +msgstr "" + +#: frappe/www/confirm_workflow_action.html:12 +msgid "View document" +msgstr "" + +#: frappe/templates/emails/auto_email_report.html:60 +msgid "View report in your browser" +msgstr "" + +#: frappe/templates/emails/print_link.html:2 +msgid "View this in your browser" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form.js:478 +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 "" + +#. Label of the viewed_by (Data) field in DocType 'View Log' +#: frappe/core/doctype/view_log/view_log.json +msgid "Viewed By" +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 "" + +#. Label of the is_virtual (Check) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Virtual" +msgstr "" + +#: frappe/model/virtual_doctype.py:76 +msgid "Virtual DocType {} requires a static method called {} found {}" +msgstr "" + +#: frappe/model/virtual_doctype.py:89 +msgid "Virtual DocType {} requires overriding an instance method called {} found {}" +msgstr "" + +#. Label of the visibility_section (Section Break) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Visibility" +msgstr "" + +#: frappe/public/js/frappe/form/templates/timeline_message_box.html:41 +msgid "Visible to website/portal users." +msgstr "" + +#. 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 "" + +#. 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 "" + +#: frappe/templates/discussions/reply_section.html:39 +msgid "Want to discuss?" +msgstr "" + +#. Option for the 'Address Type' (Select) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "Warehouse" +msgstr "" + +#. Option for the 'Style' (Select) field in DocType 'Workflow State' +#: frappe/public/js/frappe/router.js:613 +#: frappe/workflow/doctype/workflow_state/workflow_state.json +msgid "Warning" +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 "" + +#: frappe/core/doctype/doctype/doctype.py:1126 +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 "" + +#. 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 "" + +#: frappe/website/doctype/help_article/templates/help_article.html:24 +msgid "Was this article helpful?" +msgstr "" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:127 +msgid "Watch Tutorial" +msgstr "" + +#. 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 "" + +#: frappe/templates/emails/delete_data_confirmation.html:2 +msgid "We have received a request for deletion of {0} data associated with: {1}" +msgstr "" + +#: frappe/templates/emails/download_data.html:2 +msgid "We have received a request from you to download your {0} data associated with: {1}" +msgstr "" + +#: 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 +#. Label of a Link in the Website Workspace +#. Label of a shortcut in the Website Workspace +#: frappe/website/doctype/web_form/web_form.json +#: frappe/website/workspace/website/website.json +msgid "Web Form" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Web Form Field" +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 "" + +#. Name of a DocType +#: frappe/website/doctype/web_form_list_column/web_form_list_column.json +msgid "Web Form List Column" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Website Workspace +#. Label of a shortcut in the Website Workspace +#: frappe/website/doctype/web_page/web_page.json +#: frappe/website/workspace/website/website.json +msgid "Web Page" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/web_page_block/web_page_block.json +msgid "Web Page Block" +msgstr "" + +#: frappe/public/js/frappe/utils/utils.js:1749 +msgid "Web Page URL" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/web_page_view/web_page_view.json +msgid "Web Page View" +msgstr "" + +#. Label of a Card Break in the Website Workspace +#: frappe/website/workspace/website/website.json +msgid "Web Site" +msgstr "" + +#. 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 "" + +#. Name of a DocType +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Web Template Field" +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 "" + +#: frappe/utils/jinja_globals.py:48 +msgid "Web Template is not specified" +msgstr "" + +#. Label of the web_view (Tab Break) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Web View" +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 +msgid "Webhook" +msgstr "" + +#. 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 "" + +#. Name of a DocType +#: frappe/integrations/doctype/webhook_header/webhook_header.json +msgid "Webhook Header" +msgstr "" + +#. Label of the sb_webhook_headers (Section Break) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "Webhook Headers" +msgstr "" + +#. Label of the sb_webhook (Section Break) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "Webhook Request" +msgstr "" + +#. 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 "" + +#. Label of the webhook_secret (Password) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "Webhook Secret" +msgstr "" + +#. Label of the sb_security (Section Break) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "Webhook Security" +msgstr "" + +#. Label of the sb_condition (Section Break) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "Webhook Trigger" +msgstr "" + +#. 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 "" + +#. Group in Module Def's connections +#. 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:11 +#: frappe/website/workspace/website/website.json +msgid "Website" +msgstr "" + +#. Name of a report +#: frappe/website/report/website_analytics/website_analytics.json +msgid "Website Analytics" +msgstr "" + +#. Name of a role +#: frappe/core/doctype/comment/comment.json +#: frappe/website/doctype/about_us_settings/about_us_settings.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 "" + +#. Name of a DocType +#: frappe/website/doctype/website_meta_tag/website_meta_tag.json +msgid "Website Meta Tag" +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 "" + +#. Name of a DocType +#: frappe/website/doctype/website_route_redirect/website_route_redirect.json +msgid "Website Route Redirect" +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 "" + +#. Label of the website_search_field (Data) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Website Search Field" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1523 +msgid "Website Search Field must be a valid fieldname" +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 "" + +#. 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 +#. Label of a Link in the Website Workspace +#: 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 "" + +#. Name of a DocType +#: frappe/website/doctype/website_sidebar_item/website_sidebar_item.json +msgid "Website Sidebar Item" +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 "" + +#. Name of a DocType +#: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json +msgid "Website Slideshow Item" +msgstr "" + +#. Label of the website_theme (Link) field in DocType 'Website Settings' +#. Name of a DocType +#. Label of a Link in the Website Workspace +#: 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 "" + +#. Name of a DocType +#: frappe/website/doctype/website_theme_ignore_app/website_theme_ignore_app.json +msgid "Website Theme Ignore App" +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 "" + +#. 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' +#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day' +#. 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' +#. 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 "" + +#: frappe/public/js/frappe/views/calendar/calendar.js:276 +msgid "Week" +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 "" + +#. 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' +#: 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 "" + +#. 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 "" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:384 +msgid "Welcome" +msgstr "" + +#. 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 "" + +#. 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 +#: frappe/core/workspace/welcome_workspace/welcome_workspace.json +msgid "Welcome Workspace" +msgstr "" + +#: frappe/core/doctype/user/user.py:416 +msgid "Welcome email sent" +msgstr "" + +#: frappe/core/doctype/user/user.py:477 +msgid "Welcome to {0}" +msgstr "" + +#: 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' +#: 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 "" + +#. 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' +#: 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 "" + +#: 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' +#: 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 "" + +#. 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 "" + +#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:2 +msgid "Widths can be set in px or %." +msgstr "" + +#. Label of the wildcard_filter (Check) field in DocType 'Report Filter' +#: frappe/core/doctype/report_filter/report_filter.json +msgid "Wildcard Filter" +msgstr "" + +#. 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 "" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:485 +msgid "Will be your login ID" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:424 +msgid "Will only be shown if section headings are enabled" +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 "" + +#: frappe/public/js/frappe/form/print_utils.js:45 +msgid "With Letter head" +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 "" + +#. Label of the worker_name (Data) field in DocType 'RQ Worker' +#: frappe/core/doctype/rq_worker/rq_worker.json +msgid "Worker Name" +msgstr "" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#. Group in DocType's connections +#. 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 "" + +#. 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 "" + +#. Name of a DocType +#. Description of a DocType +#: frappe/workflow/doctype/workflow_action_master/workflow_action_master.json +msgid "Workflow Action Master" +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 "" + +#. Name of a DocType +#: 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' +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json +msgid "Workflow Action is not created for optional states" +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 "" + +#. 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 "" + +#: 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 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:44 +msgid "Workflow Details" +msgstr "" + +#. Name of a DocType +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json +msgid "Workflow Document State" +msgstr "" + +#. Label of the workflow_name (Data) field in DocType 'Workflow' +#: frappe/workflow/doctype/workflow/workflow.json +msgid "Workflow Name" +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 "" + +#. Label of the workflow_state_field (Data) field in DocType 'Workflow' +#: frappe/workflow/doctype/workflow/workflow.json +msgid "Workflow State Field" +msgstr "" + +#: frappe/model/workflow.py:64 +msgid "Workflow State not set" +msgstr "" + +#: frappe/model/workflow.py:260 frappe/model/workflow.py:268 +msgid "Workflow State transition not allowed from {0} to {1}" +msgstr "" + +#: frappe/workflow/doctype/workflow/workflow.js:140 +msgid "Workflow States Don't Exist" +msgstr "" + +#: frappe/model/workflow.py:384 +msgid "Workflow Status" +msgstr "" + +#. Option for the 'Script Type' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Workflow Task" +msgstr "" + +#. Name of a DocType +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +msgid "Workflow Transition" +msgstr "" + +#. Name of a DocType +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Workflow Transition Task" +msgstr "" + +#. Name of a DocType +#: frappe/workflow/doctype/workflow_transition_tasks/workflow_transition_tasks.json +msgid "Workflow Transition Tasks" +msgstr "" + +#. Description of a DocType +#: frappe/workflow/doctype/workflow_state/workflow_state.json +msgid "Workflow state represents the current state of a document." +msgstr "" + +#: 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 +#. 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:566 +#: frappe/public/js/frappe/utils/utils.js:932 +#: frappe/public/js/frappe/views/workspace/workspace.js:10 +msgid "Workspace" +msgstr "" + +#: frappe/public/js/frappe/router.js:180 +msgid "Workspace {0} does not exist" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/workspace_chart/workspace_chart.json +msgid "Workspace Chart" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/workspace_custom_block/workspace_custom_block.json +msgid "Workspace Custom Block" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/workspace_link/workspace_link.json +msgid "Workspace Link" +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 "" + +#. Name of a DocType +#: frappe/desk/doctype/workspace_number_card/workspace_number_card.json +msgid "Workspace Number Card" +msgstr "" + +#. Name of a DocType +#: 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 +#: 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 "" + +#. Label of the workspace_visibility_json (JSON) field in DocType 'Workspace +#. Settings' +#: frappe/desk/doctype/workspace_settings/workspace_settings.json +msgid "Workspace Visibility" +msgstr "" + +#: frappe/public/js/frappe/views/workspace/workspace.js:538 +msgid "Workspace {0} created" +msgstr "" + +#. Option for the 'View' (Select) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +msgid "Workspaces" +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:757 +msgid "Would you like to publish this comment? This means it will become visible to website/portal users." +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:761 +msgid "Would you like to unpublish this comment? This means it will no longer be visible to website/portal users." +msgstr "" + +#: frappe/desk/page/setup_wizard/setup_wizard.py:41 +msgid "Wrapping up" +msgstr "" + +#. 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 "" + +#: frappe/model/base_document.py:1011 +msgid "Wrong Fetch From value" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:495 +msgid "X Axis Field" +msgstr "" + +#. Label of the x_field (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "X Field" +msgstr "" + +#. Option for the 'Format' (Select) field in DocType 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "XLSX" +msgstr "" + +#. Label of the y_axis (Table) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Y Axis" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:502 +msgid "Y Axis Fields" +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:1233 +msgid "Y Field" +msgstr "" + +#. Option for the 'Service' (Select) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Yahoo Mail" +msgstr "" + +#. Option for the 'Service' (Select) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Yandex.Mail" +msgstr "" + +#. 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 "" + +#. 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' +#: 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 "" + +#. 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 "" + +#. 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:95 +#: frappe/email/doctype/notification/notification.py:100 +#: frappe/email/doctype/notification/notification.py:102 +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +#: frappe/integrations/doctype/webhook/webhook.py:125 +#: frappe/integrations/doctype/webhook/webhook.py:132 +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/public/js/form_builder/utils.js:336 +#: frappe/public/js/frappe/form/controls/link.js:498 +#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 +#: frappe/website/doctype/help_article/templates/help_article.html:25 +msgid "Yes" +msgstr "" + +#: frappe/public/js/frappe/ui/messages.js:32 +msgctxt "Approve confirmation dialog" +msgid "Yes" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:545 +msgctxt "Checkbox is checked" +msgid "Yes" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:727 +msgid "Yesterday" +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 "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:463 +msgid "You Liked" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:266 +msgid "You added 1 row to {0}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:244 +msgid "You added {0} rows to {1}" +msgstr "" + +#: frappe/public/js/frappe/router.js:642 +msgid "You are about to open an external link. To confirm, click the link again." +msgstr "" + +#: frappe/public/js/frappe/dom.js:438 +msgid "You are connected to internet." +msgstr "" + +#: 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 "" + +#: 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 "" + +#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:68 +msgid "You are not allowed to create columns" +msgstr "" + +#: frappe/core/doctype/report/report.py:97 +msgid "You are not allowed to delete Standard Report" +msgstr "" + +#: frappe/website/doctype/website_theme/website_theme.py:73 +msgid "You are not allowed to delete a standard Website Theme" +msgstr "" + +#: frappe/core/doctype/report/report.py:391 +msgid "You are not allowed to edit the report." +msgstr "" + +#: frappe/core/doctype/data_import/exporter.py:121 +#: frappe/core/doctype/data_import/exporter.py:125 +#: frappe/desk/reportview.py:444 frappe/desk/reportview.py:447 +#: frappe/permissions.py:626 +msgid "You are not allowed to export {} doctype" +msgstr "" + +#: frappe/public/js/frappe/views/treeview.js:450 +msgid "You are not allowed to print this report" +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:787 +msgid "You are not allowed to send emails related to this document" +msgstr "" + +#: frappe/website/doctype/web_form/web_form.py:632 +msgid "You are not allowed to update this Web Form Document" +msgstr "" + +#: frappe/public/js/frappe/request.js:37 +msgid "You are not connected to Internet. Retry after sometime." +msgstr "" + +#: frappe/public/js/frappe/web_form/webform_script.js:22 +msgid "You are not permitted to access this page without login." +msgstr "" + +#: frappe/www/app.py:27 +msgid "You are not permitted to access this page." +msgstr "" + +#: frappe/__init__.py:465 +msgid "You are not permitted to access this resource. Login to access" +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 "" + +#: frappe/core/doctype/installed_applications/installed_applications.py:117 +msgid "You are only allowed to update order, do not remove or add apps." +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 "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:414 +msgctxt "Form timeline" +msgid "You attached {0}" +msgstr "" + +#: 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 "" + +#: 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 "" + +#: frappe/templates/emails/download_data.html:9 +msgid "You can also copy-paste this" +msgstr "" + +#: frappe/templates/emails/delete_data_confirmation.html:11 +msgid "You can also copy-paste this {0} to your browser" +msgstr "" + +#: frappe/templates/emails/user_invitation_expired.html:8 +msgid "You can ask your team to resend the invitation if you'd still like to join." +msgstr "" + +#: 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 "" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:194 +msgid "You can continue with the onboarding after exploring this page" +msgstr "" + +#: frappe/model/delete_doc.py:177 +msgid "You can disable this {0} instead of deleting it." +msgstr "" + +#: frappe/core/doctype/file/file.py:761 +msgid "You can increase the limit from System Settings." +msgstr "" + +#: frappe/utils/synchronization.py:48 +msgid "You can manually remove the lock if you think it's safe: {}" +msgstr "" + +#: frappe/public/js/frappe/form/controls/markdown_editor.js:75 +msgid "You can only insert images in Markdown fields" +msgstr "" + +#: 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 "" + +#: frappe/handler.py:183 +msgid "You can only upload JPG, PNG, PDF, TXT, CSV or Microsoft documents." +msgstr "" + +#: 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 "" + +#: 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:382 +msgid "You can try changing the filters of your report." +msgstr "" + +#: 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 "" + +#: frappe/custom/doctype/customize_form/customize_form.py:394 +msgid "You can't set 'Options' for field {0}" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.py:398 +msgid "You can't set 'Translatable' for field {0}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:74 +msgctxt "Form timeline" +msgid "You cancelled this document" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:61 +msgctxt "Form timeline" +msgid "You cancelled this document {1}" +msgstr "" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:417 +msgid "You cannot create a dashboard chart from single DocTypes" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.py:390 +msgid "You cannot unset 'Read Only' for field {0}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:125 +msgid "You changed the value of {0}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:114 +msgid "You changed the value of {0} {1}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:191 +msgid "You changed the values for {0}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:180 +msgid "You changed the values for {0} {1}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:443 +msgctxt "Form timeline" +msgid "You changed {0} to {1}" +msgstr "" + +#: 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 "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:340 +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 "" + +#: 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 "" + +#: frappe/app.py:384 +msgid "You do not have enough permissions to complete the action" +msgstr "" + +#: frappe/database/query.py:531 +msgid "You do not have permission to access field: {0}" +msgstr "" + +#: frappe/desk/query_report.py:923 +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 "" + +#: frappe/desk/query_report.py:43 +msgid "You don't have access to Report: {0}" +msgstr "" + +#: frappe/website/doctype/web_form/web_form.py:835 +msgid "You don't have permission to access the {0} DocType." +msgstr "" + +#: frappe/utils/response.py:289 frappe/utils/response.py:293 +msgid "You don't have permission to access this file" +msgstr "" + +#: frappe/desk/query_report.py:49 +msgid "You don't have permission to get a report on: {0}" +msgstr "" + +#: frappe/website/doctype/web_form/web_form.py:175 +msgid "You don't have the permissions to access this document" +msgstr "" + +#: frappe/templates/emails/new_message.html:1 +msgid "You have a new message from:" +msgstr "" + +#: frappe/handler.py:119 +msgid "You have been successfully logged out" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.py:247 +msgid "You have hit the row size limit on database table: {0}" +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:412 +msgid "You have not entered a value. The field will be set to empty." +msgstr "" + +#: frappe/twofactor.py:437 +msgid "You have to enable Two Factor Auth from System Settings." +msgstr "" + +#: frappe/public/js/frappe/model/create_new.js:328 +msgid "You have unsaved changes in this form. Please save before you continue." +msgstr "" + +#: 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 "" + +#: 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:503 +msgid "You haven't created a {0} yet" +msgstr "" + +#: frappe/rate_limiter.py:166 +msgid "You hit the rate limit because of too many requests. Please try after sometime." +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 "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:352 +msgid "You must add atleast one link." +msgstr "" + +#: frappe/website/doctype/web_form/web_form.py:831 +msgid "You must be logged in to use this form." +msgstr "" + +#: frappe/website/doctype/web_form/web_form.py:672 +msgid "You must login to submit this form" +msgstr "" + +#: 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 "" + +#: 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 "" + +#: frappe/utils/response.py:278 +msgid "You need to be logged in and have System Manager Role to be able to access backups." +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 "" + +#: frappe/website/doctype/web_form/web_form.py:164 +msgid "You need to be logged in to access this {0}." +msgstr "" + +#: 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 "" + +#: frappe/core/doctype/docshare/docshare.py:62 +msgid "You need to have \"Share\" permission" +msgstr "" + +#: frappe/utils/print_format.py:268 +msgid "You need to install pycups to use this feature!" +msgstr "" + +#: 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 "" + +#: frappe/model/rename_doc.py:391 +msgid "You need write permission on {0} {1} to merge" +msgstr "" + +#: 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 "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:311 +msgid "You removed 1 row from {0}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:419 +msgctxt "Form timeline" +msgid "You removed attachment {0}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:289 +msgid "You removed {0} rows from {1}" +msgstr "" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:520 +msgid "You seem good to go!" +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 "" + +#: frappe/public/js/frappe/list/bulk_operations.js:31 +msgid "You selected Draft or Cancelled documents" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:48 +msgctxt "Form timeline" +msgid "You submitted this document" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:35 +msgctxt "Form timeline" +msgid "You submitted this document {0}" +msgstr "" + +#: frappe/public/js/frappe/form/sidebar/document_follow.js:144 +msgid "You unfollowed this document" +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:183 +msgid "You viewed this" +msgstr "" + +#: frappe/public/js/frappe/router.js:653 +msgid "You will be redirected to:" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:113 +msgid "You've been invited to join {0}" +msgstr "" + +#: frappe/templates/emails/user_invitation.html:5 +msgid "You've been invited to join {0}." +msgstr "" + +#: frappe/public/js/frappe/desk.js:547 +msgid "You've logged in as another user from another tab. Refresh this page to continue using system." +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "YouTube" +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 "" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:389 +msgid "Your Language" +msgstr "" + +#: frappe/templates/includes/comments/comments.html:21 +msgid "Your Name" +msgstr "" + +#: 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 "" + +#: 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 "" + +#: frappe/auth.py:517 +msgid "Your account has been locked and will resume after {0} seconds" +msgstr "" + +#: frappe/desk/form/assign_to.py:279 +msgid "Your assignment on {0} {1} has been removed by {2}" +msgstr "" + +#: 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 "" + +#: frappe/www/contact.html:35 +msgid "Your email address" +msgstr "" + +#: frappe/desk/utils.py:105 +msgid "Your exported report: {0}" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form.js:452 +msgid "Your form has been successfully updated" +msgstr "" + +#: frappe/templates/emails/user_invitation_cancelled.html:5 +msgid "Your invitation to join {0} has been cancelled by the site administrator." +msgstr "" + +#: frappe/templates/emails/user_invitation_expired.html:5 +msgid "Your invitation to join {0} has expired." +msgstr "" + +#: frappe/templates/emails/new_user.html:6 +msgid "Your login id is" +msgstr "" + +#: frappe/www/update-password.html:192 +msgid "Your new password has been set successfully." +msgstr "" + +#: 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' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Your organization name and address for the email footer." +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 "" + +#: frappe/desk/query_report.py:342 frappe/desk/reportview.py:396 +msgid "Your report is being generated in the background. You will receive an email on {0} with a download link once it is ready." +msgstr "" + +#: frappe/app.py:377 +msgid "Your session has expired, please login again to continue." +msgstr "" + +#: 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 "" + +#: frappe/utils/data.py:1558 +msgid "Zero" +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 "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:358 +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 "" + +#. Label of the _report (Link) field in DocType 'Desktop Icon' +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +msgid "_report" +msgstr "" + +#: 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 "" + +#. Option for the 'Doc Event' (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "after_insert" +msgstr "" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "amend" +msgstr "" + +#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1564 +msgid "and" +msgstr "" + +#: frappe/public/js/frappe/ui/sort_selector.html:5 +#: frappe/public/js/frappe/ui/sort_selector.js:48 +msgid "ascending" +msgstr "" + +#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "blue" +msgstr "" + +#: frappe/public/js/frappe/form/workflow.js:35 +msgid "by Role" +msgstr "" + +#. Label of the profile (Code) field in DocType 'Recorder' +#: frappe/core/doctype/recorder/recorder.json +msgid "cProfile Output" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:295 +msgid "calendar" +msgstr "" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "cancel" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'RQ Job' +#: frappe/core/doctype/rq_job/rq_job.json +msgid "canceled" +msgstr "" + +#: frappe/templates/includes/list/filters.html:19 +msgid "clear" +msgstr "" + +#: 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' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "create" +msgstr "" + +#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "cyan" +msgstr "" + +#: frappe/public/js/frappe/form/controls/duration.js:218 +#: frappe/public/js/frappe/utils/utils.js:1119 +msgctxt "Days (Field: Duration)" +msgid "d" +msgstr "" + +#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "darkgrey" +msgstr "" + +#: frappe/core/page/dashboard_view/dashboard_view.js:65 +msgid "dashboard" +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 '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' +#: 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' +#: frappe/core/doctype/rq_job/rq_job.json +msgid "deferred" +msgstr "" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "delete" +msgstr "" + +#: frappe/public/js/frappe/ui/sort_selector.html:5 +#: frappe/public/js/frappe/ui/sort_selector.js:48 +msgid "descending" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:163 +msgid "document type..., e.g. customer" +msgstr "" + +#. 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 "" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:183 +msgid "e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)..." +msgstr "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#: frappe/custom/doctype/custom_field/custom_field.js:98 +msgid "e.g.:" +msgstr "" + +#. 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' +#. Option for the 'Social Link Type' (Select) field in DocType 'Social Link +#. Settings' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +#: frappe/website/doctype/social_link_settings/social_link_settings.json +msgid "email" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:314 +msgid "email inbox" +msgstr "" + +#: frappe/permissions.py:425 frappe/permissions.py:436 +#: frappe/public/js/frappe/form/controls/link.js:507 +msgid "empty" +msgstr "" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "export" +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 "" + +#. Option for the 'Status' (Select) field in DocType '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' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "fairlogin" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'RQ Job' +#: frappe/core/doctype/rq_job/rq_job.json +msgid "finished" +msgstr "" + +#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "gray" +msgstr "" + +#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "green" +msgstr "" + +#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "grey" +msgstr "" + +#: frappe/utils/backups.py:399 +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:1123 +msgctxt "Hours (Field: Duration)" +msgid "h" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:305 +msgid "hub" +msgstr "" + +#. Label of the icon (Data) field in DocType 'Page' +#: frappe/core/doctype/page/page.json +msgid "icon" +msgstr "" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "import" +msgstr "" + +#: frappe/templates/signup.html:11 frappe/www/login.html:11 +msgid "jane@example.com" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:46 +msgid "just now" +msgstr "" + +#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:291 +msgid "label" +msgstr "" + +#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "light-blue" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Desktop Icon' +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +msgid "link" +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 "" + +#. Option for the 'Type' (Select) field in DocType 'Desktop Icon' +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +msgid "list" +msgstr "" + +#: frappe/www/third_party_apps.html:43 +msgid "logged in" +msgstr "" + +#: frappe/website/doctype/web_form/web_form.js:363 +msgid "login_required" +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 "" + +#: frappe/public/js/frappe/form/controls/duration.js:220 +#: frappe/public/js/frappe/utils/utils.js:1127 +msgctxt "Minutes (Field: Duration)" +msgid "m" +msgstr "" + +#: frappe/model/rename_doc.py:215 +msgid "merged {0} into {1}" +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 "" + +#. 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 "" + +#. Option for the 'Type' (Select) field in DocType 'Desktop Icon' +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +msgid "module" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:178 +msgid "module name..." +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:169 +msgid "new" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:158 +msgid "new type of document" +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 "" + +#. Label of the nonce (Data) field in DocType 'OAuth Authorization Code' +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +msgid "nonce" +msgstr "" + +#. Label of the notified (Check) field in DocType 'Reminder' +#: frappe/automation/doctype/reminder/reminder.json +msgid "notified" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:25 +msgid "now" +msgstr "" + +#: frappe/public/js/frappe/form/grid_pagination.js:116 +msgid "of" +msgstr "" + +#. Label of the old_parent (Data) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "old_parent" +msgstr "" + +#. Option for the 'Doc Event' (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "on_cancel" +msgstr "" + +#. Option for the 'Doc Event' (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "on_change" +msgstr "" + +#. Option for the 'Doc Event' (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "on_submit" +msgstr "" + +#. Option for the 'Doc Event' (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "on_trash" +msgstr "" + +#. Option for the 'Doc Event' (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "on_update" +msgstr "" + +#. Option for the 'Doc Event' (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "on_update_after_submit" +msgstr "" + +#: frappe/public/js/frappe/utils/utils.js:392 frappe/www/login.html:90 +#: frappe/www/login.py:112 +msgid "or" +msgstr "" + +#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "orange" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Desktop Icon' +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +msgid "page" +msgstr "" + +#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "pink" +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 "" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "print" +msgstr "" + +#. 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' +#: frappe/desk/doctype/workspace/workspace.json +msgid "purple" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Desktop Icon' +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +msgid "query-report" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'RQ Job' +#: frappe/core/doctype/rq_job/rq_job.json +msgid "queued" +msgstr "" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "read" +msgstr "" + +#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "red" +msgstr "" + +#: frappe/model/rename_doc.py:217 +msgid "renamed from {0} to {1}" +msgstr "" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "report" +msgstr "" + +#. Label of the response (HTML) field in DocType 'Custom Role' +#: frappe/core/doctype/custom_role/custom_role.json +msgid "response" +msgstr "" + +#: frappe/core/doctype/deleted_document/deleted_document.py:61 +msgid "restored {0} as {1}" +msgstr "" + +#: frappe/public/js/frappe/form/controls/duration.js:221 +#: frappe/public/js/frappe/utils/utils.js:1131 +msgctxt "Seconds (Field: Duration)" +msgid "s" +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 "s256" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'RQ Job' +#: frappe/core/doctype/rq_job/rq_job.json +msgid "scheduled" +msgstr "" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "select" +msgstr "" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "share" +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 "" + +#: frappe/public/js/frappe/widgets/number_card_widget.js:310 +msgid "since last month" +msgstr "" + +#: frappe/public/js/frappe/widgets/number_card_widget.js:309 +msgid "since last week" +msgstr "" + +#: frappe/public/js/frappe/widgets/number_card_widget.js:311 +msgid "since last year" +msgstr "" + +#: frappe/public/js/frappe/widgets/number_card_widget.js:308 +msgid "since yesterday" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'RQ Job' +#: frappe/core/doctype/rq_job/rq_job.json +msgid "started" +msgstr "" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:201 +msgid "starting the setup..." +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 "" + +#. 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 "" + +#. 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 "" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "submit" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:173 +msgid "tag name..., e.g. #tag" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:168 +msgid "text in document type" +msgstr "" + +#: frappe/public/js/frappe/form/controls/data.js:36 +msgid "this form" +msgstr "" + +#: frappe/tests/test_translate.py:174 +msgid "this shouldn't break" +msgstr "" + +#: frappe/templates/emails/download_data.html:9 +msgid "to your browser" +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 "" + +#: frappe/public/js/frappe/change_log.html:7 +msgid "updated to {0}" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:361 +msgid "use % as wildcard" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:360 +msgid "values separated by commas" +msgstr "" + +#. Label of the version_table (HTML) field in DocType 'Audit Trail' +#: frappe/core/doctype/audit_trail/audit_trail.json +msgid "version_table" +msgstr "" + +#: frappe/automation/doctype/assignment_rule/assignment_rule.py:382 +msgid "via Assignment Rule" +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:264 +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 "" + +#. Description of the 'Add Video Conferencing' (Check) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "via Google Meet" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:405 +msgid "via Notification" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:17 +msgid "via {0}" +msgstr "" + +#. Option for the 'Code Editor Type' (Select) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "vim" +msgstr "" + +#. Option for the 'Code Editor Type' (Select) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "vscode" +msgstr "" + +#: frappe/templates/includes/oauth_confirmation.html:5 +msgid "wants to access the following details from your account" +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 "" + +#. 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:662 +msgid "wkhtmltopdf 0.12.x (with patched qt)." +msgstr "" + +#. Option for the 'Doc Event' (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "workflow_transition" +msgstr "" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "write" +msgstr "" + +#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "yellow" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:58 +msgid "yesterday" +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 "" + +#: frappe/desk/doctype/event/event.js:87 +#: frappe/public/js/frappe/form/footer/form_timeline.js:547 +msgid "{0}" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:202 +msgid "{0} ${skip_list ? \"\" : type}" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:207 +msgid "{0} ${type}" +msgstr "" + +#: frappe/public/js/frappe/data_import/data_exporter.js:80 +#: frappe/public/js/frappe/views/gantt/gantt_view.js:54 +msgid "{0} ({1})" +msgstr "" + +#: frappe/public/js/frappe/data_import/data_exporter.js:77 +msgid "{0} ({1}) (1 row mandatory)" +msgstr "" + +#: frappe/public/js/frappe/views/gantt/gantt_view.js:53 +msgid "{0} ({1}) - {2}%" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:374 +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:377 +msgid "{0} = {1}" +msgstr "" + +#: frappe/public/js/frappe/views/calendar/calendar.js:30 +msgid "{0} Calendar" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:575 +msgid "{0} Chart" +msgstr "" + +#: frappe/core/page/dashboard_view/dashboard_view.js:67 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:356 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:357 +#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:12 +msgid "{0} Dashboard" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row.js:487 +#: frappe/public/js/frappe/list/list_settings.js:225 +#: frappe/public/js/frappe/views/kanban/kanban_settings.js:178 +msgid "{0} Fields" +msgstr "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:376 +msgid "{0} Google Calendar Events synced." +msgstr "" + +#: frappe/integrations/doctype/google_contacts/google_contacts.py:193 +msgid "{0} Google Contacts synced." +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:464 +msgid "{0} Liked" +msgstr "" + +#: 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 "" + +#: frappe/public/js/frappe/list/list_settings.js:33 +msgid "{0} List View Settings" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:37 +msgid "{0} M" +msgstr "" + +#: frappe/public/js/frappe/views/map/map_view.js:14 +msgid "{0} Map" +msgstr "" + +#: frappe/public/js/frappe/form/quick_entry.js:122 +msgid "{0} Name" +msgstr "" + +#: frappe/model/base_document.py:1215 +msgid "{0} Not allowed to change {1} after submission from {2} to {3}" +msgstr "" + +#: 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 "" + +#: frappe/public/js/frappe/views/reports/query_report.js:964 +msgid "{0} Reports" +msgstr "" + +#: frappe/public/js/frappe/views/kanban/kanban_settings.js:26 +msgid "{0} Settings" +msgstr "" + +#: 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 "" + +#: 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 "" + +#: 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 "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:268 +msgid "{0} added 1 row to {1}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:246 +msgid "{0} added {1} rows to {2}" +msgstr "" + +#: frappe/public/js/frappe/form/controls/data.js:215 +msgid "{0} already exists. Select another name" +msgstr "" + +#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:36 +msgid "{0} already unsubscribed" +msgstr "" + +#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:49 +msgid "{0} already unsubscribed for {1} {2}" +msgstr "" + +#: frappe/utils/data.py:1765 +msgid "{0} and {1}" +msgstr "" + +#: frappe/public/js/frappe/form/sidebar/form_sidebar_users.js:72 +msgid "{0} are currently {1}" +msgstr "" + +#: frappe/printing/doctype/print_format/print_format.py:98 +msgid "{0} are required" +msgstr "" + +#: frappe/desk/form/assign_to.py:286 +msgid "{0} assigned a new task {1} {2} to you" +msgstr "" + +#: frappe/desk/doctype/todo/todo.py:48 +msgid "{0} assigned {1}: {2}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:415 +msgctxt "Form timeline" +msgid "{0} attached {1}" +msgstr "" + +#: frappe/core/doctype/system_settings/system_settings.py:153 +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 "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:68 +msgctxt "Form timeline" +msgid "{0} cancelled this document {1}" +msgstr "" + +#: 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 "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:128 +msgid "{0} changed the value of {1}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:119 +msgid "{0} changed the value of {1} {2}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:194 +msgid "{0} changed the values for {1}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:185 +msgid "{0} changed the values for {1} {2}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:444 +msgctxt "Form timeline" +msgid "{0} changed {1} to {2}" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1606 +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 "" + +#: 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 "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:343 +msgctxt "Form timeline" +msgid "{0} created this document {1}" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:33 +msgid "{0} d" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:60 +msgid "{0} days ago" +msgstr "" + +#: 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 "" + +#: 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 "" + +#: frappe/database/query.py:710 +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 "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:101 +msgid "{0} from {1} to {2}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:165 +msgid "{0} from {1} to {2} in row #{3}" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:29 +msgid "{0} h" +msgstr "" + +#: frappe/core/doctype/user_permission/user_permission.py:77 +msgid "{0} has already assigned default value for {1}." +msgstr "" + +#: frappe/email/queue.py:124 +msgid "{0} has left the conversation in {1} {2}" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:54 +msgid "{0} hours ago" +msgstr "" + +#: frappe/website/doctype/web_form/templates/web_form.html:155 +msgid "{0} if you are not redirected within {1} seconds" +msgstr "" + +#: 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 "" + +#: frappe/core/doctype/doctype/doctype.py:935 +msgid "{0} is a mandatory field" +msgstr "" + +#: frappe/core/doctype/file/file.py:569 +msgid "{0} is a not a valid zip file" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1619 +msgid "{0} is an invalid Data field." +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:162 +msgid "{0} is an invalid email address in 'Recipients'" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1470 +msgid "{0} is between {1} and {2}" +msgstr "" + +#: 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 "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1439 +msgid "{0} is equal to {1}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1459 +msgid "{0} is greater than or equal to {1}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1449 +msgid "{0} is greater than {1}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1464 +msgid "{0} is less than or equal to {1}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1454 +msgid "{0} is less than {1}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1489 +msgid "{0} is like {1}" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:193 +msgid "{0} is mandatory" +msgstr "" + +#: frappe/database/query.py:487 +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 "" + +#: frappe/www/printview.py:384 +msgid "{0} is not a raw printing format." +msgstr "" + +#: frappe/public/js/frappe/views/calendar/calendar.js:82 +msgid "{0} is not a valid Calendar. Redirecting to default Calendar." +msgstr "" + +#: 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:23 +msgid "{0} is not a valid DocType for Dynamic Link" +msgstr "" + +#: frappe/email/doctype/email_group/email_group.py:140 +#: frappe/utils/__init__.py:208 +msgid "{0} is not a valid Email Address" +msgstr "" + +#: frappe/geo/doctype/country/country.py:30 +msgid "{0} is not a valid ISO 3166 ALPHA-2 code." +msgstr "" + +#: frappe/utils/__init__.py:176 +msgid "{0} is not a valid Name" +msgstr "" + +#: frappe/utils/__init__.py:155 +msgid "{0} is not a valid Phone Number" +msgstr "" + +#: frappe/model/workflow.py:245 +msgid "{0} is not a valid Workflow State. Please update your Workflow and try again." +msgstr "" + +#: frappe/permissions.py:809 +msgid "{0} is not a valid parent DocType for {1}" +msgstr "" + +#: frappe/permissions.py:829 +msgid "{0} is not a valid parentfield for {1}" +msgstr "" + +#: 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 "" + +#: frappe/core/doctype/file/file.py:549 +msgid "{0} is not a zip file" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:182 +msgid "{0} is not an allowed role for {1}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1444 +msgid "{0} is not equal to {1}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1491 +msgid "{0} is not like {1}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1485 +msgid "{0} is not one of {1}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1495 +msgid "{0} is not set" +msgstr "" + +#: frappe/printing/doctype/print_format/print_format.py:176 +msgid "{0} is now default print format for {1} doctype" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1478 +msgid "{0} is one of {1}" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:304 +#: frappe/model/naming.py:226 +#: frappe/printing/doctype/print_format/print_format.py:101 +#: frappe/printing/doctype/print_format/print_format.py:104 +#: frappe/utils/csvutils.py:156 +msgid "{0} is required" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1494 +msgid "{0} is set" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1473 +msgid "{0} is within {1}" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1841 +msgid "{0} items selected" +msgstr "" + +#: frappe/core/doctype/user/user.py:1393 +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 "" + +#: frappe/core/doctype/activity_log/feed.py:13 +msgid "{0} logged in" +msgstr "" + +#: frappe/core/doctype/activity_log/feed.py:19 +msgid "{0} logged out: {1}" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:27 +msgid "{0} m" +msgstr "" + +#: frappe/desk/notifications.py:408 +msgid "{0} mentioned you in a comment in {1} {2}" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:50 +msgid "{0} minutes ago" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:68 +msgid "{0} months ago" +msgstr "" + +#: frappe/model/document.py:1808 +msgid "{0} must be after {1}" +msgstr "" + +#: frappe/model/document.py:1564 +msgid "{0} must be beginning with '{1}'" +msgstr "" + +#: frappe/model/document.py:1566 +msgid "{0} must be equal to '{1}'" +msgstr "" + +#: frappe/model/document.py:1562 +msgid "{0} must be none of {1}" +msgstr "" + +#: frappe/model/document.py:1560 frappe/utils/csvutils.py:161 +msgid "{0} must be one of {1}" +msgstr "" + +#: frappe/model/base_document.py:933 +msgid "{0} must be set first" +msgstr "" + +#: frappe/model/base_document.py:786 +msgid "{0} must be unique" +msgstr "" + +#: frappe/model/document.py:1568 +msgid "{0} must be {1} {2}" +msgstr "" + +#: 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:91 +msgid "{0} not a valid State" +msgstr "" + +#: frappe/model/rename_doc.py:394 +msgid "{0} not allowed to be renamed" +msgstr "" + +#: frappe/desk/doctype/desktop_icon/desktop_icon.py:365 +msgid "{0} not found" +msgstr "" + +#: frappe/core/doctype/report/report.py:427 +#: frappe/public/js/frappe/list/list_view.js:1213 +msgid "{0} of {1}" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1215 +msgid "{0} of {1} ({2} rows with children)" +msgstr "" + +#: frappe/utils/data.py:1566 +msgctxt "Money in words" +msgid "{0} only." +msgstr "" + +#: frappe/utils/data.py:1747 +msgid "{0} or {1}" +msgstr "" + +#: frappe/core/doctype/user_permission/user_permission_list.js:177 +msgid "{0} record deleted" +msgstr "" + +#: frappe/public/js/frappe/logtypes.js:22 +msgid "{0} records are not automatically deleted." +msgstr "" + +#: frappe/public/js/frappe/logtypes.js:29 +msgid "{0} records are retained for {1} days." +msgstr "" + +#: frappe/core/doctype/user_permission/user_permission_list.js:179 +msgid "{0} records deleted" +msgstr "" + +#: frappe/public/js/frappe/data_import/data_exporter.js:229 +msgid "{0} records will be exported" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:313 +msgid "{0} removed 1 row from {1}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:420 +msgctxt "Form timeline" +msgid "{0} removed attachment {1}" +msgstr "" + +#: frappe/desk/doctype/todo/todo.py:58 +msgid "{0} removed their assignment." +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:291 +msgid "{0} removed {1} rows from {2}" +msgstr "" + +#: frappe/public/js/frappe/roles_editor.js:64 +msgid "{0} role does not have permission on any doctype" +msgstr "" + +#: frappe/model/document.py:1799 +msgid "{0} row #{1}:" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:299 +msgctxt "User removed rows from child table" +msgid "{0} rows from {1}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:254 +msgctxt "User added rows to child table" +msgid "{0} rows to {1}" +msgstr "" + +#: frappe/desk/query_report.py:666 +msgid "{0} saved successfully" +msgstr "" + +#: frappe/desk/doctype/todo/todo.py:44 +msgid "{0} self assigned this task: {1}" +msgstr "" + +#: frappe/share.py:233 +msgid "{0} shared a document {1} {2} with you" +msgstr "" + +#: frappe/core/doctype/docshare/docshare.py:77 +msgid "{0} shared this document with everyone" +msgstr "" + +#: frappe/core/doctype/docshare/docshare.py:80 +msgid "{0} shared this document with {1}" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:317 +msgid "{0} should be indexed because it's referred in dashboard connections" +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:149 +msgid "{0} should not be same as {1}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:51 +msgid "{0} submitted this document" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:42 +msgctxt "Form timeline" +msgid "{0} submitted this document {1}" +msgstr "" + +#: frappe/email/doctype/email_group/email_group.py:71 +#: frappe/email/doctype/email_group/email_group.py:142 +msgid "{0} subscribers added" +msgstr "" + +#: frappe/email/queue.py:69 +msgid "{0} to stop receiving emails of this type" +msgstr "" + +#: 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:238 +msgid "{0} to {1}" +msgstr "" + +#: frappe/core/doctype/docshare/docshare.py:89 +msgid "{0} un-shared this document with {1}" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.py:256 +msgid "{0} updated" +msgstr "" + +#: frappe/public/js/frappe/form/controls/multiselect_list.js:198 +msgid "{0} values selected" +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:184 +msgid "{0} viewed this" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:35 +msgid "{0} w" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:64 +msgid "{0} weeks ago" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:39 +msgid "{0} y" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:72 +msgid "{0} years ago" +msgstr "" + +#: frappe/public/js/frappe/form/link_selector.js:219 +msgid "{0} {1} added" +msgstr "" + +#: frappe/public/js/frappe/utils/dashboard_utils.js:270 +msgid "{0} {1} added to Dashboard {2}" +msgstr "" + +#: frappe/model/base_document.py:719 frappe/model/rename_doc.py:110 +msgid "{0} {1} already exists" +msgstr "" + +#: frappe/model/base_document.py:1044 +msgid "{0} {1} cannot be \"{2}\". It should be one of \"{3}\"" +msgstr "" + +#: frappe/utils/nestedset.py:353 +msgid "{0} {1} cannot be a leaf node as it has children" +msgstr "" + +#: frappe/model/rename_doc.py:376 +msgid "{0} {1} does not exist, select a new target to merge" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:951 +msgid "{0} {1} is linked with the following submitted documents: {2}" +msgstr "" + +#: frappe/model/document.py:258 frappe/permissions.py:580 +msgid "{0} {1} not found" +msgstr "" + +#: frappe/model/delete_doc.py:288 +msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first." +msgstr "" + +#: frappe/model/base_document.py:1176 +msgid "{0}, Row {1}" +msgstr "" + +#: 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:1181 +msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1814 +msgid "{0}: Cannot set Amend without Cancel" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1832 +msgid "{0}: Cannot set Assign Amend if not Submittable" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1830 +msgid "{0}: Cannot set Assign Submit if not Submittable" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1809 +msgid "{0}: Cannot set Cancel without Submit" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1816 +msgid "{0}: Cannot set Import without Create" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1812 +msgid "{0}: Cannot set Submit, Cancel, Amend without Write" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1836 +msgid "{0}: Cannot set import as {1} is not importable" +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:436 +msgid "{0}: Failed to attach new recurring document. To enable attaching document in the auto repeat notification email, enable {1} in Print Settings" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1427 +msgid "{0}: Field '{1}' cannot be set as Unique as it has non-unique values" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1335 +msgid "{0}: Field {1} in row {2} cannot be hidden and mandatory without default" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1294 +msgid "{0}: Field {1} of type {2} cannot be mandatory" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1282 +msgid "{0}: Fieldname {1} appears multiple times in rows {2}" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1414 +msgid "{0}: Fieldtype {1} for {2} cannot be unique" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1769 +msgid "{0}: No basic permissions set" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1783 +msgid "{0}: Only one rule allowed with the same Role, Level and {1}" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1316 +msgid "{0}: Options must be a valid DocType for field {1} in row {2}" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1305 +msgid "{0}: Options required for Link or Table type field {1} in row {2}" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1323 +msgid "{0}: Options {1} must be the same as doctype name {2} for the field {3}" +msgstr "" + +#: frappe/public/js/frappe/form/workflow.js:45 +msgid "{0}: Other permission rules may also apply" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1798 +msgid "{0}: Permission at level 0 must be set before higher levels are set" +msgstr "" + +#: frappe/public/js/frappe/form/controls/data.js:51 +msgid "{0}: You can increase the limit for the field if required via {1}" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1269 +msgid "{0}: fieldname cannot be set to reserved keyword {1}" +msgstr "" + +#: frappe/contacts/doctype/address/address.js:35 +#: frappe/contacts/doctype/contact/contact.js:88 +msgid "{0}: {1}" +msgstr "" + +#: frappe/workflow/doctype/workflow_action/workflow_action.py:172 +msgid "{0}: {1} is set to state {2}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:1291 +msgid "{0}: {1} vs {2}" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1435 +msgid "{0}:Fieldtype {1} for {2} cannot be indexed" +msgstr "" + +#: 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 "" + +#: frappe/public/js/frappe/utils/datatable.js:13 +msgid "{count} cells copied" +msgstr "" + +#: frappe/public/js/frappe/utils/datatable.js:16 +msgid "{count} row selected" +msgstr "" + +#: frappe/public/js/frappe/utils/datatable.js:17 +msgid "{count} rows selected" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1489 +msgid "{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}." +msgstr "" + +#: frappe/public/js/frappe/form/form.js:521 +msgid "{} Complete" +msgstr "" + +#: frappe/utils/data.py:2567 +msgid "{} Invalid python code on line {}" +msgstr "" + +#: frappe/utils/data.py:2576 +msgid "{} Possibly invalid python code.
{}" +msgstr "" + +#. 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 "" + +#: frappe/core/doctype/audit_trail/audit_trail.py:41 +msgid "{} field cannot be empty." +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 "" + +#: frappe/utils/data.py:145 +msgid "{} is not a valid date string." +msgstr "" + +#: frappe/commands/utils.py:561 +msgid "{} not found in PATH! This is required to access the console." +msgstr "" + +#: frappe/database/db_manager.py:99 +msgid "{} not found in PATH! This is required to restore the database." +msgstr "" + +#: 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/nb.po b/frappe/locale/nb.po index eb26d49a46..7815399e30 100644 --- a/frappe/locale/nb.po +++ b/frappe/locale/nb.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: developers@frappe.io\n" -"POT-Creation-Date: 2025-09-21 09:33+0000\n" -"PO-Revision-Date: 2025-09-22 20:25\n" +"POT-Creation-Date: 2025-10-05 09:33+0000\n" +"PO-Revision-Date: 2025-10-06 22:59\n" "Last-Translator: developers@frappe.io\n" "Language-Team: Norwegian Bokmal\n" "MIME-Version: 1.0\n" @@ -78,7 +78,7 @@ msgstr "«I globalt søk» er ikke tillatt for typen {0} i rad {1}" msgid "'In List View' is not allowed for field {0} of type {1}" msgstr "\"I listevisning\" er ikke tillatt for feltet {0} av typen {1}" -#: frappe/custom/doctype/customize_form/customize_form.py:363 +#: frappe/custom/doctype/customize_form/customize_form.py:367 msgid "'In List View' not allowed for type {0} in row {1}" msgstr "'I listevisning' ikke tillatt for typen {0} i rad {1}" @@ -122,7 +122,7 @@ msgstr "0 – Utkast; 1 – Registrert; 2 – Avbrutt" msgid "0 is highest" msgstr "0 er høyeste" -#: frappe/public/js/frappe/form/grid_row.js:892 +#: frappe/public/js/frappe/form/grid_row.js:893 msgid "1 = True & 0 = False" msgstr "1 = Sant og 0 = Usant" @@ -141,11 +141,11 @@ msgstr "1 dag" msgid "1 Google Calendar Event synced." msgstr "1 Google Kalender-hendelse synkronisert." -#: frappe/public/js/frappe/views/reports/query_report.js:955 +#: frappe/public/js/frappe/views/reports/query_report.js:963 msgid "1 Report" msgstr "1 Rapport" -#: frappe/tests/test_utils.py:739 +#: frappe/tests/test_utils.py:845 msgid "1 day ago" msgstr "1 dag siden" @@ -154,17 +154,17 @@ msgid "1 hour" msgstr "1 time" #: frappe/public/js/frappe/utils/pretty_date.js:52 -#: frappe/tests/test_utils.py:737 +#: frappe/tests/test_utils.py:843 msgid "1 hour ago" msgstr "1 time siden" #: frappe/public/js/frappe/utils/pretty_date.js:48 -#: frappe/tests/test_utils.py:735 +#: frappe/tests/test_utils.py:841 msgid "1 minute ago" msgstr "1 minutt siden" #: frappe/public/js/frappe/utils/pretty_date.js:66 -#: frappe/tests/test_utils.py:743 +#: frappe/tests/test_utils.py:849 msgid "1 month ago" msgstr "1 måned siden" @@ -186,37 +186,37 @@ msgctxt "User added row to child table" msgid "1 row to {0}" msgstr "1 rad til {0}" -#: frappe/tests/test_utils.py:734 +#: frappe/tests/test_utils.py:840 msgid "1 second ago" msgstr "1 sekund siden" #: frappe/public/js/frappe/utils/pretty_date.js:62 -#: frappe/tests/test_utils.py:741 +#: frappe/tests/test_utils.py:847 msgid "1 week ago" msgstr "1 uke siden" #: frappe/public/js/frappe/utils/pretty_date.js:70 -#: frappe/tests/test_utils.py:745 +#: frappe/tests/test_utils.py:851 msgid "1 year ago" msgstr "1 år siden" -#: frappe/tests/test_utils.py:738 +#: frappe/tests/test_utils.py:844 msgid "2 hours ago" msgstr "2 timer siden" -#: frappe/tests/test_utils.py:744 +#: frappe/tests/test_utils.py:850 msgid "2 months ago" msgstr "2 måneder siden" -#: frappe/tests/test_utils.py:742 +#: frappe/tests/test_utils.py:848 msgid "2 weeks ago" msgstr "2 uker siden" -#: frappe/tests/test_utils.py:746 +#: frappe/tests/test_utils.py:852 msgid "2 years ago" msgstr "2 år siden" -#: frappe/tests/test_utils.py:736 +#: frappe/tests/test_utils.py:842 msgid "3 minutes ago" msgstr "3 minutter siden" @@ -232,7 +232,7 @@ msgstr "4 timer" msgid "5 Records" msgstr "5 oppføringer" -#: frappe/tests/test_utils.py:740 +#: frappe/tests/test_utils.py:846 msgid "5 days ago" msgstr "5 dager siden" @@ -270,6 +270,16 @@ msgstr "{0} er ikke en gyldig URL" 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 "
Ikke oppdater den, da det kan ødelegge skjemaet ditt. Bruk Tilpass skjemavisning og Tilpassede felt for å angi egenskaper!
" +#. Introduction text of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "

Request a file containing your personally identifiable information (PII) that is saved on our system. The file will be in JSON format and is sent to you by email. If you would like to have your PII deleted from our system, please make a request to delete data.

" +msgstr "" + +#. Introduction text of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "

Send a request to delete your account and personally identifiable information (PII) that is stored on our system. You will receive an email to verify your request. Once the request is verified we will take care of deleting your PII. If you just want to check what PII we have stored, you can request your data.

" +msgstr "" + #. Content of the 'Help HTML' (HTML) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -755,6 +765,11 @@ msgstr "Navnet på en dokumenttype (DocType) skal starte med en bokstav og kan b msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three." msgstr "En Frappe Framework-instans kan fungere som en OAuth-klient, ressurs eller autorisasjonsserver. Denne dokumenttypen (DocType) inneholder innstillinger relatert til alle tre." +#. Success message of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "A download link with your data will be sent to the email address associated with your account." +msgstr "" + #: frappe/custom/doctype/custom_field/custom_field.py:175 msgid "A field with the name {0} already exists in {1}" msgstr "Et felt med navnet {0} finnes allerede i {1}" @@ -883,7 +898,7 @@ msgstr "Parametre for API-endepunkt må være gyldig JSON" #. 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.js:452 frappe/core/doctype/user/user.json +#: frappe/core/doctype/user/user.js:459 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 @@ -902,7 +917,7 @@ msgstr "API-nøkkel og -hemmelighet for å samhandle med reléserveren. Disse ge msgid "API Key cannot be regenerated" msgstr "API-nøkkelen kan ikke regenereres" -#: frappe/core/doctype/user/user.js:449 +#: frappe/core/doctype/user/user.js:456 msgid "API Keys" msgstr "API-nøkler" @@ -926,7 +941,7 @@ msgstr "API-forespørselslogg" #. 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.js:459 frappe/core/doctype/user/user.json +#: frappe/core/doctype/user/user.js:466 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" @@ -1012,7 +1027,7 @@ msgstr "Adgangstoken" msgid "Access Token URL" msgstr "Adgangstoken URL" -#: frappe/auth.py:491 +#: frappe/auth.py:494 msgid "Access not allowed from this IP Address" msgstr "Tilgang er ikke tillatt fra denne IP-adressen" @@ -1128,7 +1143,7 @@ msgstr "Handlingen {0} mislyktes på {1} {2}. Se den på {3}" #: 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:842 +#: frappe/public/js/frappe/views/reports/query_report.js:850 msgid "Actions" msgstr "Handlinger" @@ -1185,7 +1200,7 @@ msgstr "Aktivitetslogg" #: 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:501 +#: frappe/public/js/frappe/form/grid_row.js:502 #: 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 @@ -1196,7 +1211,7 @@ msgstr "Aktivitetslogg" msgid "Add" msgstr "Legg til" -#: frappe/public/js/frappe/form/grid_row.js:454 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Add / Remove Columns" msgstr "Legg til / Fjern kolonner" @@ -1241,8 +1256,8 @@ msgid "Add Child" msgstr "Legg til underordnet" #: frappe/public/js/frappe/views/kanban/kanban_board.html:4 -#: frappe/public/js/frappe/views/reports/query_report.js:1832 -#: frappe/public/js/frappe/views/reports/query_report.js:1835 +#: frappe/public/js/frappe/views/reports/query_report.js:1840 +#: frappe/public/js/frappe/views/reports/query_report.js:1843 #: frappe/public/js/frappe/views/reports/report_view.js:360 #: frappe/public/js/frappe/views/reports/report_view.js:385 #: frappe/public/js/print_format_builder/Field.vue:112 @@ -1336,7 +1351,7 @@ msgstr "Legg til abonnenter" msgid "Add Tags" msgstr "Legg til stikkord" -#: frappe/public/js/frappe/list/list_view.js:2149 +#: frappe/public/js/frappe/list/list_view.js:2151 msgctxt "Button in list view actions menu" msgid "Add Tags" msgstr "Legg til stikkord" @@ -1717,11 +1732,11 @@ msgstr "Alarm" msgid "Alerts and Notifications" msgstr "Alarmer og Varsler" -#: frappe/database/query.py:1608 +#: frappe/database/query.py:1610 msgid "Alias cannot be a SQL keyword: {0}" msgstr "Alias kan ikke være et SQL-nøkkelord: {0}" -#: frappe/database/query.py:1533 +#: frappe/database/query.py:1535 msgid "Alias must be a string" msgstr "Aliaset må være en streng" @@ -1810,7 +1825,7 @@ msgstr "Bare store bokstaver er nesten like enkle å gjette som bare små boksta #. Label of the allocated_to (Link) field in DocType 'ToDo' #: frappe/desk/doctype/todo/todo.json msgid "Allocated To" -msgstr "Allokalisert til" +msgstr "Fordelt til" #. Label of the allow (Link) field in DocType 'User Permission' #. Option for the 'Sign ups' (Select) field in DocType 'Social Login Key' @@ -2169,6 +2184,12 @@ msgstr "Legger også til feltet for statusavhengighet {0}" msgid "Alternative Email ID" msgstr "Alternativ e-post-ID" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Always" +msgstr "" + #. Label of the always_bcc (Data) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Always BCC Address" @@ -2245,6 +2266,11 @@ msgstr "Korrigering ikke tillatt" msgid "Amendment naming rules updated." msgstr "Regler for navngivning av korrigeringer oppdatert." +#. Success message of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "An email to verify your request has been sent to your email address. Please verify your request to complete the process." +msgstr "" + #: frappe/public/js/frappe/ui/toolbar/toolbar.js:354 msgid "An error occurred while setting Session Defaults" msgstr "Det oppstod en feil under innstilling av øktstandarder" @@ -2427,10 +2453,10 @@ msgstr "Anvendt på" msgid "Apply" msgstr "Bruk" -#: frappe/public/js/frappe/list/list_view.js:2134 +#: frappe/public/js/frappe/list/list_view.js:2136 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" -msgstr "Bruk tilordningsregel" +msgstr "Bruk tildelingsregel" #: frappe/public/js/frappe/ui/filters/filter_list.js:318 msgid "Apply Filters" @@ -2512,9 +2538,9 @@ msgstr "Arkiverte kolonner" msgid "Are you sure you want to cancel the invitation?" msgstr "Er du sikker på at du vil avbryte invitasjonen?" -#: frappe/public/js/frappe/list/list_view.js:2113 +#: frappe/public/js/frappe/list/list_view.js:2115 msgid "Are you sure you want to clear the assignments?" -msgstr "Er du sikker på at du vil slette oppgavene?" +msgstr "Er du sikker på at du vil slette de tildelte oppgavene?" #: frappe/public/js/frappe/form/grid.js:294 msgid "Are you sure you want to delete all rows?" @@ -2548,7 +2574,7 @@ msgstr "Er du sikker på at du vil slette denne oppføringen?" msgid "Are you sure you want to discard the changes?" msgstr "Er du sikker på at du vil forkaste endringene?" -#: frappe/public/js/frappe/views/reports/query_report.js:969 +#: frappe/public/js/frappe/views/reports/query_report.js:977 msgid "Are you sure you want to generate a new report?" msgstr "Er du sikker på at du vil generere en ny rapport?" @@ -2556,7 +2582,7 @@ msgstr "Er du sikker på at du vil generere en ny rapport?" msgid "Are you sure you want to merge {0} with {1}?" msgstr "Er du sikker på at du vil slå sammen {0} med {1}?" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:108 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:118 msgid "Are you sure you want to proceed?" msgstr "Er du sikker på at du vil fortsette?" @@ -2611,6 +2637,12 @@ msgstr "Siden dokumentdeling er deaktivert, må du gi dem de nødvendige tillate msgid "As per your request, your account and data on {0} associated with email {1} has been permanently deleted" msgstr "I henhold til forespørselen din er kontoen din og dataene på {0} knyttet til e-postadressen {1} slettet permanent" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Ask" +msgstr "" + #. Label of the assign_condition (Code) field in DocType 'Assignment Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Assign Condition" @@ -2620,7 +2652,7 @@ msgstr "Tilordne betingelse" msgid "Assign To" msgstr "Tilordne til" -#: frappe/public/js/frappe/list/list_view.js:2095 +#: frappe/public/js/frappe/list/list_view.js:2097 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "Tilordne til" @@ -2649,7 +2681,7 @@ msgstr "Tilordne til meg" #: frappe/automation/doctype/assignment_rule/assignment_rule.js:53 msgid "Assign to the one who has the least assignments" -msgstr "Tilordne til den som har færrest oppdrag" +msgstr "Tildel til den som har færrest oppgaver" #: frappe/automation/doctype/assignment_rule/assignment_rule.js:54 msgid "Assign to the user set in this field" @@ -2695,18 +2727,18 @@ msgstr "Tilordner..." #. Option for the 'Type' (Select) field in DocType 'Notification Log' #: frappe/desk/doctype/notification_log/notification_log.json msgid "Assignment" -msgstr "Oppdrag" +msgstr "Oppgave" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' #: frappe/core/doctype/comment/comment.json msgid "Assignment Completed" -msgstr "Oppdrag fullført" +msgstr "Oppgave fullført" #. 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 "Antall tilordnede dager" +msgstr "Antall tildelingsdager" #. Name of a DocType #. Label of a Link in the Tools Workspace @@ -2716,31 +2748,31 @@ msgstr "Antall tilordnede dager" #: frappe/automation/workspace/tools/tools.json #: frappe/desk/doctype/todo/todo.json msgid "Assignment Rule" -msgstr "Tilordningsregel" +msgstr "Tildelingsregel" #. Name of a DocType #: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json msgid "Assignment Rule Day" -msgstr "Dag for tilordningsregel" +msgstr "Dag for tildelingsregel" #. Name of a DocType #: frappe/automation/doctype/assignment_rule_user/assignment_rule_user.json msgid "Assignment Rule User" -msgstr "Bruker for tilordningsregel" +msgstr "Bruker av tildelingsregel" #: frappe/automation/doctype/assignment_rule/assignment_rule.py:55 msgid "Assignment Rule is not allowed on document type {0}" -msgstr "Tildelingsregelen er ikke tillatt på dokumenttypen (DocType) {0}" +msgstr "Tildelingsregel er ikke tillatt på dokumenttypen (DocType) {0}" #. 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 "Regler for tilordning" +msgstr "Regler for tildeling" #: frappe/desk/doctype/notification_log/notification_log.py:153 msgid "Assignment Update on {0}" -msgstr "Oppdatering av tilordnet oppgave på {0}" +msgstr "Oppdatering av tildelt oppgave på {0}" #: frappe/desk/form/assign_to.py:78 msgid "Assignment for {0} {1}" @@ -2748,14 +2780,14 @@ msgstr "Oppgave for {0} {1}" #: frappe/desk/doctype/todo/todo.py:62 msgid "Assignment of {0} removed by {1}" -msgstr "Tilordning av {0} fjernet av {1}" +msgstr "Tildeling av {0} fjernet av {1}" #. 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 "Tilordninger" +msgstr "Tildelinger" #. Label of the asynchronous (Check) field in DocType 'Workflow Transition #. Task' @@ -2763,7 +2795,7 @@ msgstr "Tilordninger" msgid "Asynchronous" msgstr "Asynkron" -#: frappe/public/js/frappe/form/grid_row.js:696 +#: frappe/public/js/frappe/form/grid_row.js:697 msgid "At least one column is required to show in the grid." msgstr "Minst én kolonne må vises i rutenettet." @@ -3081,7 +3113,7 @@ msgstr "Melding for automatisk svar" #: frappe/automation/doctype/assignment_rule/assignment_rule.py:177 msgid "Auto assignment failed: {0}" -msgstr "Automatisk tilordning mislyktes: {0}" +msgstr "Automatisk tildeling mislyktes: {0}" #. Label of the follow_assigned_documents (Check) field in DocType 'User' #: frappe/core/doctype/user/user.json @@ -3743,7 +3775,7 @@ msgstr "Massesletting" msgid "Bulk Edit" msgstr "Masseredigering" -#: frappe/public/js/frappe/form/grid.js:1189 +#: frappe/public/js/frappe/form/grid.js:1190 msgid "Bulk Edit {0}" msgstr "Masseredigering {0}" @@ -3811,7 +3843,7 @@ msgstr "Skygger for knapp" #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "By \"Naming Series\" field" -msgstr "Via feltet \"Navngiving av serier\"" +msgstr "Via feltet \"Nummerserie\"" #: frappe/website/doctype/web_page/web_page.js:111 #: frappe/website/doctype/web_page/web_page.js:118 @@ -4035,7 +4067,7 @@ msgstr "Kan ikke endre navn på {0} til {1} fordi {0} ikke finnes." #. 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/doctype/doctype_list.js:131 #: frappe/core/doctype/user_document_type/user_document_type.json #: frappe/core/doctype/user_invitation/user_invitation.js:17 #: frappe/email/doctype/notification/notification.json @@ -4043,7 +4075,7 @@ msgstr "Kan ikke endre navn på {0} til {1} fordi {0} ikke finnes." msgid "Cancel" msgstr "Avbryt" -#: frappe/public/js/frappe/list/list_view.js:2204 +#: frappe/public/js/frappe/list/list_view.js:2206 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "Avbryt" @@ -4061,7 +4093,7 @@ msgstr "Avbryt alt" msgid "Cancel All Documents" msgstr "Avbryt alle dokumenter" -#: frappe/public/js/frappe/list/list_view.js:2209 +#: frappe/public/js/frappe/list/list_view.js:2211 msgctxt "Title of confirmation dialog" msgid "Cancel {0} documents?" msgstr "Avbryt {0} dokumenter?" @@ -4114,7 +4146,7 @@ msgstr "Kan ikke fjerne" msgid "Cannot Update After Submit" msgstr "Kan ikke oppdatere etter registrering" -#: frappe/core/doctype/file/file.py:643 +#: frappe/core/doctype/file/file.py:646 msgid "Cannot access file path {0}" msgstr "Får ikke tilgang til filbanen {0}" @@ -4162,7 +4194,7 @@ msgstr "Kan ikke opprette privat arbeidsområde for andre brukere" msgid "Cannot delete Home and Attachments folders" msgstr "Kan ikke slette Hjem- og Vedlegg-mappene" -#: frappe/model/delete_doc.py:379 +#: frappe/model/delete_doc.py:419 msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}" msgstr "Kan ikke slette eller avbryte fordi {0} {1} er koblet til {2} {3} {4}" @@ -4242,7 +4274,7 @@ msgstr "Kan ikke aktivere {0} for en dokumenttype (DocType) som ikke kan registr msgid "Cannot find file {} on disk" msgstr "Kan ikke finne filen {} på disken" -#: frappe/core/doctype/file/file.py:583 +#: frappe/core/doctype/file/file.py:586 msgid "Cannot get file contents of a Folder" msgstr "Kan ikke hente filinnholdet i en mappe" @@ -4250,7 +4282,7 @@ msgstr "Kan ikke hente filinnholdet i en mappe" msgid "Cannot have multiple printers mapped to a single print format." msgstr "Kan ikke ha flere skrivere tilordnet til ett og samme utskriftsformat." -#: frappe/public/js/frappe/form/grid.js:1133 +#: frappe/public/js/frappe/form/grid.js:1134 msgid "Cannot import table with more than 5000 rows." msgstr "Kan ikke importere tabell med mer enn 5000 rader." @@ -4266,7 +4298,7 @@ msgstr "Kan ikke mappe fordi følgende betingelse mislykkes:" msgid "Cannot match column {0} with any field" msgstr "Kan ikke matche kolonnen {0} med noe felt" -#: frappe/public/js/frappe/form/grid_row.js:175 +#: frappe/public/js/frappe/form/grid_row.js:176 msgid "Cannot move row" msgstr "Kan ikke flytte rad" @@ -4295,11 +4327,11 @@ msgstr "Kan ikke registrere {0}." msgid "Cannot update {0}" msgstr "Kan ikke oppdatere {0}" -#: frappe/model/db_query.py:1130 +#: frappe/model/db_query.py:1136 msgid "Cannot use sub-query here." msgstr "Kan ikke bruke underspørsmål her." -#: frappe/model/db_query.py:1162 +#: frappe/model/db_query.py:1168 msgid "Cannot use {0} in order/group by" msgstr "Kan ikke bruke {0} i rekkefølge/gruppe etter" @@ -4572,11 +4604,11 @@ msgstr "Underordnet tabell {0} for feltet {1}" #. Description of the 'Is Child Table' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:52 +#: frappe/core/doctype/doctype/doctype_list.js:53 msgid "Child Tables are shown as a Grid in other DocTypes" msgstr "Underordnede tabeller vises som et rutenett i andre dokumenttyper (DocType)" -#: frappe/database/query.py:660 +#: frappe/database/query.py:662 msgid "Child query fields for '{0}' must be a list or tuple." msgstr "Underordnede spørringsfelt for '{0}' må være en liste eller en tupel." @@ -4608,7 +4640,7 @@ msgstr "Velg autentiseringsmetode som skal brukes av alle brukere" #: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:39 #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "City" -msgstr "By" +msgstr "Poststed" #. Label of the city (Data) field in DocType 'Address' #: frappe/contacts/doctype/address/address.json @@ -4632,7 +4664,7 @@ msgstr "Fjern og legg til mal" msgid "Clear All" msgstr "Fjern alt" -#: frappe/public/js/frappe/list/list_view.js:2110 +#: frappe/public/js/frappe/list/list_view.js:2112 msgctxt "Button in list view actions menu" msgid "Clear Assignment" msgstr "Slett oppgave" @@ -4726,7 +4758,7 @@ msgstr "Klikk for å angi dynamiske filtre" msgid "Click to Set Filters" msgstr "Klikk for å angi filtre" -#: frappe/public/js/frappe/list/list_view.js:739 +#: frappe/public/js/frappe/list/list_view.js:741 msgid "Click to sort by {0}" msgstr "Klikk for å sortere etter {0}" @@ -4745,7 +4777,7 @@ msgstr "Klient" #. Label of the client_code_section (Section Break) field in DocType 'Report' #: frappe/core/doctype/report/report.json msgid "Client Code" -msgstr "" +msgstr "Klientkode" #. Label of the sb_client_credentials_section (Section Break) field in DocType #. 'Connected App' @@ -4790,7 +4822,7 @@ msgstr "Klientmetadata" #: frappe/custom/doctype/doctype_layout/doctype_layout.json #: frappe/website/doctype/web_page/web_page.js:103 msgid "Client Script" -msgstr "" +msgstr "Klientskript" #. Label of the client_secret (Password) field in DocType 'Connected App' #. Label of the client_secret (Password) field in DocType 'Google Settings' @@ -4828,7 +4860,7 @@ msgstr "Klient-URLer" #. Label of the client_script (Code) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "Client script" -msgstr "" +msgstr "Klientskript" #: frappe/core/doctype/communication/communication.js:39 #: frappe/desk/doctype/todo/todo.js:23 @@ -4861,7 +4893,7 @@ msgstr "Lukket" #: frappe/templates/discussions/reply_section.html:53 #: frappe/templates/discussions/topic_modal.html:11 msgid "Cmd+Enter to add comment" -msgstr "" +msgstr "Cmd+Enter for å legge til kommentar" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' @@ -4904,7 +4936,7 @@ msgctxt "Shrink code field." msgid "Collapse" msgstr "Fold sammen kodefeltet" -#: frappe/public/js/frappe/views/reports/query_report.js:2113 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 #: frappe/public/js/frappe/views/treeview.js:123 msgid "Collapse All" msgstr "Fold sammen alle" @@ -4959,7 +4991,7 @@ msgstr "Sammenfoldbarhet avhenger av (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:1233 +#: frappe/public/js/frappe/views/reports/query_report.js:1241 #: frappe/public/js/frappe/widgets/widget_dialog.js:546 #: frappe/public/js/frappe/widgets/widget_dialog.js:694 #: frappe/website/doctype/color/color.json @@ -5015,17 +5047,17 @@ msgstr "Kolonnenavn" msgid "Column Name cannot be empty" msgstr "Kolonnenavnet kan ikke være tomt" -#: frappe/public/js/frappe/form/grid_row.js:454 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Column Width" msgstr "Kolonnebredde" -#: frappe/public/js/frappe/form/grid_row.js:661 +#: frappe/public/js/frappe/form/grid_row.js:662 msgid "Column width cannot be zero." msgstr "Kolonnebredden kan ikke være null." #: frappe/core/doctype/data_import/data_import.js:380 msgid "Column {0}" -msgstr "" +msgstr "Kolonne {0}" #. Label of the columns (Int) field in DocType 'DocField' #. Label of the columns_section (Section Break) field in DocType 'Report' @@ -5039,16 +5071,16 @@ msgstr "" #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/desk/doctype/kanban_board/kanban_board.json msgid "Columns" -msgstr "" +msgstr "Kolonner" #. Label of the columns (HTML Editor) field in DocType 'Access Log' #: frappe/core/doctype/access_log/access_log.json msgid "Columns / Fields" msgstr "Kolonner / Felt" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:397 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:411 msgid "Columns based on" -msgstr "" +msgstr "Kolonner basert på" #: frappe/integrations/doctype/oauth_client/oauth_client.py:57 msgid "Combination of Grant Type ({0}) and Response Type ({1}) not allowed" @@ -5072,12 +5104,12 @@ msgstr "Kommentar" #. Label of the comment_by (Data) field in DocType 'Comment' #: frappe/core/doctype/comment/comment.json msgid "Comment By" -msgstr "" +msgstr "Kommentar av" #. Label of the comment_email (Data) field in DocType 'Comment' #: frappe/core/doctype/comment/comment.json msgid "Comment Email" -msgstr "" +msgstr "Kommentar e-post" #. Label of the comment_type (Select) field in DocType 'Comment' #: frappe/core/doctype/comment/comment.json @@ -5116,16 +5148,16 @@ msgstr "Kommersiell avrunding" #. Label of the commit (Check) field in DocType 'System Console' #: frappe/desk/doctype/system_console/system_console.json msgid "Commit" -msgstr "" +msgstr "Commit" #. Label of the committed (Check) field in DocType 'Console Log' #: frappe/desk/doctype/console_log/console_log.json msgid "Committed" -msgstr "" +msgstr "Committed" #: frappe/utils/password_strength.py:176 msgid "Common names and surnames are easy to guess." -msgstr "" +msgstr "Vanlige navn og etternavn er lette å gjette." #. Name of a DocType #. Option for the 'Communication Type' (Select) field in DocType @@ -5142,12 +5174,12 @@ msgstr "Kommunikasjon" #. Name of a DocType #: frappe/core/doctype/communication_link/communication_link.json msgid "Communication Link" -msgstr "" +msgstr "Kommunikasjonslenke" #. Label of a Link in the Build Workspace #: frappe/core/workspace/build/build.json msgid "Communication Logs" -msgstr "" +msgstr "Kommunikasjonslogger" #. Label of the communication_type (Select) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json @@ -5162,7 +5194,7 @@ msgstr "Kommunikasjonshemmelighet er ikke angitt" #: frappe/website/doctype/company_history/company_history.json #: frappe/www/about.html:29 msgid "Company History" -msgstr "" +msgstr "Selskapets historie" #. Label of the company_introduction (Text Editor) field in DocType 'About Us #. Settings' @@ -5173,13 +5205,13 @@ msgstr "Selskapets introduksjon" #. Label of the company_name (Data) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json msgid "Company Name" -msgstr "" +msgstr "Selskapets navn" #: frappe/core/doctype/server_script/server_script.js:14 #: frappe/custom/doctype/client_script/client_script.js:56 #: frappe/public/js/frappe/utils/diffview.js:28 msgid "Compare Versions" -msgstr "" +msgstr "Sammenlign versjoner" #: frappe/core/doctype/server_script/server_script.py:159 msgid "Compilation warning" @@ -5187,7 +5219,7 @@ msgstr "Advarsel om kompilering" #: frappe/website/doctype/website_theme/website_theme.py:123 msgid "Compiled Successfully" -msgstr "" +msgstr "Kompileringen var vellykket" #. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log' #: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json @@ -5310,7 +5342,7 @@ msgstr "Konfigurasjon" msgid "Configure Chart" msgstr "Konfigurer diagram" -#: frappe/public/js/frappe/form/grid_row.js:406 +#: frappe/public/js/frappe/form/grid_row.js:407 msgid "Configure Columns" msgstr "Konfigurer kolonner" @@ -5335,17 +5367,17 @@ msgstr "Konfigurer hvordan endrede dokumenter skal navngis.
\n\n" #. 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 "Konfigurer ulike aspekter av hvordan dokumentnavngivning fungerer, for eksempel navngivning av serier, gjeldende teller." +msgstr "Konfigurer ulike aspekter av hvordan dokumentnavngivning fungerer, for eksempel nummerserie, gjeldende teller." -#: frappe/core/doctype/user/user.js:412 frappe/public/js/frappe/dom.js:345 +#: frappe/core/doctype/user/user.js:400 frappe/public/js/frappe/dom.js:345 #: frappe/www/update-password.html:66 msgid "Confirm" -msgstr "" +msgstr "Bekreft" #: frappe/public/js/frappe/ui/messages.js:31 msgctxt "Title of confirmation dialog" msgid "Confirm" -msgstr "" +msgstr "Bekreft" #: frappe/integrations/oauth2.py:138 msgid "Confirm Access" @@ -5354,30 +5386,30 @@ msgstr "Bekreft tilgang" #: 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 "" +msgstr "Bekreft sletting av konto" -#: frappe/core/doctype/user/user.js:196 +#: frappe/core/doctype/user/user.js:184 msgid "Confirm New Password" msgstr "Bekreft nytt passord" #: frappe/www/update-password.html:55 msgid "Confirm Password" -msgstr "" +msgstr "Bekreft passord" #: frappe/templates/emails/data_deletion_approval.html:6 #: frappe/templates/emails/delete_data_confirmation.html:7 msgid "Confirm Request" -msgstr "" +msgstr "Bekreft forespørsel" #. 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 "" +msgstr "Mal for bekreftelses-e-post" #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:397 msgid "Confirmed" -msgstr "" +msgstr "Bekreftet" #: 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." @@ -5399,7 +5431,7 @@ msgstr "Tilkoblet app" #. Label of the connected_user (Link) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Connected User" -msgstr "" +msgstr "Tilkoblet bruker" #: frappe/public/js/frappe/form/print_utils.js:125 #: frappe/public/js/frappe/form/print_utils.js:149 @@ -5408,7 +5440,7 @@ msgstr "Koblet til QZ Tray!" #: frappe/public/js/frappe/request.js:36 msgid "Connection Lost" -msgstr "" +msgstr "Tilkoblingen er brutt" #: frappe/templates/pages/integrations/gcalendar-success.html:3 msgid "Connection Success" @@ -5416,7 +5448,7 @@ msgstr "Tilkobling vellykket" #: frappe/public/js/frappe/dom.js:446 msgid "Connection lost. Some features might not work." -msgstr "" +msgstr "Forbindelsen ble brutt. Enkelte funksjoner fungerer kanskje ikke." #. Label of the connections_tab (Tab Break) field in DocType 'DocType' #. Label of the connections_tab (Tab Break) field in DocType 'Module Def' @@ -5431,27 +5463,27 @@ msgstr "Koblinger" #. Label of the console (Code) field in DocType 'System Console' #: frappe/desk/doctype/system_console/system_console.json msgid "Console" -msgstr "" +msgstr "Konsoll" #. Name of a DocType #: frappe/desk/doctype/console_log/console_log.json msgid "Console Log" -msgstr "" +msgstr "Konsoll-logg" #: frappe/desk/doctype/console_log/console_log.py:24 msgid "Console Logs can not be deleted" -msgstr "" +msgstr "Konsoll-logger kan ikke slettes" #. Label of the constraints_section (Section Break) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json msgid "Constraints" -msgstr "" +msgstr "Begrensninger" #. Name of a DocType #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/communication/communication.js:113 msgid "Contact" -msgstr "" +msgstr "Kontakt" #: frappe/integrations/doctype/google_calendar/google_calendar.py:812 msgid "Contact / email not found. Did not add attendee for -
{0}" @@ -5460,12 +5492,12 @@ msgstr "Google Kalender – Kontakt/e-post ikke funnet. Deltaker ble ikke lagt t #. Label of the sb_01 (Section Break) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json msgid "Contact Details" -msgstr "" +msgstr "Kontaktdetaljer" #. Name of a DocType #: frappe/contacts/doctype/contact_email/contact_email.json msgid "Contact Email" -msgstr "" +msgstr "E-postadresse for kontakt" #. Label of the phone_nos (Table) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json @@ -5609,7 +5641,7 @@ msgstr "Kopier feil til utklippstavlen" msgid "Copy to Clipboard" msgstr "Kopier til utklippstavlen" -#: frappe/core/doctype/user/user.js:480 +#: frappe/core/doctype/user/user.js:487 msgid "Copy token to clipboard" msgstr "Kopier token til utklippstavle" @@ -5618,7 +5650,7 @@ msgstr "Kopier token til utklippstavle" msgid "Copyright" msgstr "Opphavsrett" -#: frappe/custom/doctype/customize_form/customize_form.py:123 +#: frappe/custom/doctype/customize_form/customize_form.py:125 msgid "Core DocTypes cannot be customized." msgstr "Kjerne-dokumenttyper (DocType) kan ikke tilpasses." @@ -5642,7 +5674,7 @@ msgstr "Kunne ikke finne {0}" msgid "Could not map column {0} to field {1}" msgstr "Kunne ikke tilordne kolonne {0} til felt {1}" -#: frappe/database/query.py:564 +#: frappe/database/query.py:566 msgid "Could not parse field: {0}" msgstr "Kunne ikke analysere feltet: {0}" @@ -5720,7 +5752,7 @@ msgstr "Fylke" #: frappe/public/js/frappe/utils/number_systems.js:45 msgctxt "Number system" msgid "Cr" -msgstr "" +msgstr "Kredit" #. Label of the create (Check) field in DocType 'Custom DocPerm' #. Label of the create (Check) field in DocType 'DocPerm' @@ -5734,15 +5766,15 @@ 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:1265 +#: frappe/public/js/frappe/views/reports/query_report.js:1273 #: frappe/public/js/frappe/views/workspace/workspace.js:469 #: frappe/workflow/page/workflow_builder/workflow_builder.js:46 msgid "Create" msgstr "Opprett" -#: frappe/core/doctype/doctype/doctype_list.js:102 +#: frappe/core/doctype/doctype/doctype_list.js:103 msgid "Create & Continue" -msgstr "" +msgstr "Opprett og fortsett" #: frappe/public/js/frappe/ui/address_autocomplete/autocomplete_dialog.js:49 msgid "Create Address" @@ -5751,12 +5783,12 @@ msgstr "Opprett adresse" #: frappe/public/js/frappe/views/reports/query_report.js:187 #: frappe/public/js/frappe/views/reports/query_report.js:232 msgid "Create Card" -msgstr "" +msgstr "Opprett kort" #: frappe/public/js/frappe/views/reports/query_report.js:285 -#: frappe/public/js/frappe/views/reports/query_report.js:1192 +#: frappe/public/js/frappe/views/reports/query_report.js:1200 msgid "Create Chart" -msgstr "" +msgstr "Opprett diagram" #: frappe/public/js/form_builder/components/controls/TableControl.vue:62 msgid "Create Child Doctype" @@ -5788,12 +5820,12 @@ msgstr "Opprett logg" msgid "Create New" msgstr "Opprett ny" -#: frappe/public/js/frappe/list/list_view.js:512 +#: frappe/public/js/frappe/list/list_view.js:514 msgctxt "Create a new document from list view" msgid "Create New" msgstr "Opprett ny" -#: frappe/core/doctype/doctype/doctype_list.js:100 +#: frappe/core/doctype/doctype/doctype_list.js:101 msgid "Create New DocType" msgstr "Opprett ny dokumenttype (DocType)" @@ -5801,7 +5833,7 @@ msgstr "Opprett ny dokumenttype (DocType)" msgid "Create New Kanban Board" msgstr "Opprett nytt Kanban-board" -#: frappe/core/doctype/user/user.js:276 +#: frappe/core/doctype/user/user.js:264 msgid "Create User Email" msgstr "Opprett bruker-e-post" @@ -5824,8 +5856,8 @@ msgstr "Opprett en ny post" #: frappe/public/js/frappe/form/controls/link.js:315 #: frappe/public/js/frappe/form/controls/link.js:317 #: frappe/public/js/frappe/form/link_selector.js:139 -#: frappe/public/js/frappe/list/list_view.js:504 -#: frappe/public/js/frappe/web_form/web_form_list.js:225 +#: frappe/public/js/frappe/list/list_view.js:506 +#: frappe/public/js/frappe/web_form/web_form_list.js:226 msgid "Create a new {0}" msgstr "Opprett en ny {0}" @@ -5841,7 +5873,7 @@ msgstr "Opprett eller rediger utskriftsformat" msgid "Create or Edit Workflow" msgstr "Opprett eller rediger arbeidsflyt" -#: frappe/public/js/frappe/list/list_view.js:507 +#: frappe/public/js/frappe/list/list_view.js:509 msgid "Create your first {0}" msgstr "Opprett din første {0}" @@ -5858,18 +5890,18 @@ msgstr "Opprettet" #. Label of the created_at (Datetime) field in DocType 'Submission Queue' #: frappe/core/doctype/submission_queue/submission_queue.json msgid "Created At" -msgstr "" +msgstr "Opprettet den" #: 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 "" +msgstr "Opprettet av" #: frappe/workflow/doctype/workflow/workflow.py:65 msgid "Created Custom Field {0} in {1}" -msgstr "" +msgstr "Opprettet egendefinert felt {0} i {1}" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:241 #: frappe/email/doctype/notification/notification.js:31 frappe/model/meta.py:53 @@ -5882,7 +5914,7 @@ msgstr "Opprettet den" #: frappe/public/js/frappe/desk.js:517 #: frappe/public/js/frappe/views/treeview.js:393 msgid "Creating {0}" -msgstr "" +msgstr "Oppretter {0}" #: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py:41 msgid "Creation of this document is only permitted in developer mode." @@ -5900,7 +5932,7 @@ msgstr "Cron" #: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json #: frappe/core/doctype/server_script/server_script.json msgid "Cron Format" -msgstr "" +msgstr "Cron-format" #: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:62 msgid "Cron format is required for job types with Cron frequency." @@ -5912,15 +5944,15 @@ msgstr "Beskjær" #: frappe/public/js/frappe/form/grid_row_form.js:42 msgid "Ctrl + Down" -msgstr "" +msgstr "Ctrl + ned" #: frappe/public/js/frappe/form/grid_row_form.js:42 msgid "Ctrl + Up" -msgstr "" +msgstr "Ctrl + opp" #: frappe/templates/includes/comments/comments.html:32 msgid "Ctrl+Enter to add comment" -msgstr "" +msgstr "Ctrl+Enter for å legge til kommentar" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' @@ -5949,7 +5981,7 @@ msgstr "Valuta" #. Label of the currency_name (Data) field in DocType 'Currency' #: frappe/geo/doctype/currency/currency.json msgid "Currency Name" -msgstr "" +msgstr "Valutanavn" #. Label of the currency_precision (Select) field in DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json @@ -5959,7 +5991,7 @@ msgstr "Valutapresisjon" #. Description of a DocType #: frappe/geo/doctype/currency/currency.json msgid "Currency list stores the currency value, its symbol and fraction unit" -msgstr "" +msgstr "Valutalisten lagrer valutaverdien, dens symbol og fraksjonsenhet" #. Option for the 'Address Type' (Select) field in DocType 'Address' #: frappe/contacts/doctype/address/address.json @@ -5969,7 +6001,7 @@ msgstr "Nåværende" #. 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 "" +msgstr "Nåværende jobb-ID" #. Label of the current_value (Int) field in DocType 'Document Naming Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -5978,11 +6010,11 @@ msgstr "Nåværende verdi" #: frappe/public/js/frappe/form/workflow.js:45 msgid "Current status" -msgstr "" +msgstr "Gjeldende tilstand" #: frappe/public/js/frappe/form/form_viewers.js:5 msgid "Currently Viewing" -msgstr "" +msgstr "Ser for øyeblikket på " #. Label of the custom (Check) field in DocType 'DocType Action' #. Label of the custom (Check) field in DocType 'DocType Link' @@ -6021,13 +6053,13 @@ msgstr "Egendefinert basis-URL" #. Block' #: frappe/desk/doctype/workspace_custom_block/workspace_custom_block.json msgid "Custom Block Name" -msgstr "" +msgstr "Egendefinert blokknavn" #. 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 "" +msgstr "Egendefinerte blokker" #. Label of the css (Code) field in DocType 'Print Format' #. Label of the custom_css (Code) field in DocType 'Web Form' @@ -6040,12 +6072,12 @@ msgstr "Egendefinert CSS" #. 'Number Card' #: frappe/desk/doctype/number_card/number_card.json msgid "Custom Configuration" -msgstr "" +msgstr "Egendefinert konfigurasjon" #. Label of the custom_delimiters (Check) field in DocType 'Data Import' #: frappe/core/doctype/data_import/data_import.json msgid "Custom Delimiters" -msgstr "" +msgstr "Egendefinerte skilletegn" #. Name of a DocType #: frappe/core/doctype/custom_docperm/custom_docperm.json @@ -6145,7 +6177,7 @@ msgstr "Egendefinerte alternativer" #. Label of the custom_overrides (Code) field in DocType 'Website Theme' #: frappe/website/doctype/website_theme/website_theme.json msgid "Custom Overrides" -msgstr "" +msgstr "Egendefinerte overstyringer" #. Option for the 'Report Type' (Select) field in DocType 'Report' #: frappe/core/doctype/report/report.json @@ -6154,17 +6186,17 @@ msgstr "Egendefinerte rapporter" #: frappe/desk/desktop.py:525 msgid "Custom Reports" -msgstr "" +msgstr "Egendefinerte rapporter" #. Name of a DocType #: frappe/core/doctype/custom_role/custom_role.json msgid "Custom Role" -msgstr "" +msgstr "Egendefinert rolle" #. Label of the custom_scss (Code) field in DocType 'Website Theme' #: frappe/website/doctype/website_theme/website_theme.json msgid "Custom SCSS" -msgstr "" +msgstr "Egendefinert SCSS" #. Label of the custom_sidebar_menu (Section Break) field in DocType 'Portal #. Settings' @@ -6175,11 +6207,11 @@ msgstr "Egendefinert sidepanelmeny" #. Label of a Link in the Build Workspace #: frappe/core/workspace/build/build.json msgid "Custom Translation" -msgstr "" +msgstr "Egendefinert oversettelse" #: frappe/custom/doctype/custom_field/custom_field.py:423 msgid "Custom field renamed to {0} successfully." -msgstr "" +msgstr "Egendefinert felt har endret navn til {0}." #: frappe/api/v2.py:148 msgid "Custom get_list method for {0} must return a QueryBuilder object or None, got {1}" @@ -6188,10 +6220,10 @@ msgstr "Tilpasset get_list-metode for {0} må returnere et QueryBuilder-objekt e #. 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/core/doctype/doctype/doctype_list.js:83 #: frappe/website/doctype/website_theme/website_theme.json msgid "Custom?" -msgstr "" +msgstr "Egendefinert?" #. Group in DocType's connections #. Group in Module Def's connections @@ -6202,19 +6234,19 @@ msgstr "" #: frappe/core/workspace/build/build.json #: frappe/website/doctype/web_form/web_form.json msgid "Customization" -msgstr "" +msgstr "Egendefinering" #: frappe/public/js/frappe/views/workspace/workspace.js:358 msgid "Customizations Discarded" -msgstr "" +msgstr "Forkastet egendefineringer" #: frappe/custom/doctype/customize_form/customize_form.js:465 msgid "Customizations Reset" -msgstr "" +msgstr "Nullstilling av egendefineringer" #: frappe/modules/utils.py:96 msgid "Customizations for {0} exported to:
{1}" -msgstr "" +msgstr "Egendefinering for {0} eksportert til:
{1}" #: frappe/printing/page/print/print.js:184 #: frappe/public/js/frappe/form/templates/print_layout.html:39 @@ -6223,14 +6255,14 @@ msgstr "" msgid "Customize" msgstr "Egendefiner" -#: frappe/public/js/frappe/list/list_view.js:1947 +#: frappe/public/js/frappe/list/list_view.js:1949 msgctxt "Button in list view menu" msgid "Customize" msgstr "Egendefiner" #: frappe/custom/doctype/customize_form/customize_form.js:89 msgid "Customize Child Table" -msgstr "" +msgstr "Egendefine undertabell" #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:38 msgid "Customize Dashboard" @@ -6242,7 +6274,7 @@ msgstr "Egendefiner oversiktspanelet" #: 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 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 msgid "Customize Form" msgstr "Tilpass skjema" @@ -6262,7 +6294,7 @@ msgstr "Tilpass egenskaper, navngivning, felt og mer for standard dokumenttyper #: frappe/public/js/frappe/views/file/file_view.js:144 msgid "Cut" -msgstr "" +msgstr "Klipp ut" #. Option for the 'Color' (Select) field in DocType 'DocType State' #. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' @@ -6473,7 +6505,7 @@ msgstr "Logg for dataimport" msgid "Data Import Template" msgstr "Mal for dataimport" -#: frappe/custom/doctype/customize_form/customize_form.py:615 +#: frappe/custom/doctype/customize_form/customize_form.py:619 msgid "Data Too Long" msgstr "Dataene er for lange" @@ -6504,7 +6536,7 @@ msgstr "Utnyttelse av radstørrelse i databasen" msgid "Database Storage Usage By Tables" msgstr "Bruk av databaselagring etter tabeller" -#: frappe/custom/doctype/customize_form/customize_form.py:249 +#: frappe/custom/doctype/customize_form/customize_form.py:251 msgid "Database Table Row Size Limit" msgstr "Grense for radstørrelse i databasetabellen" @@ -6874,13 +6906,13 @@ msgstr "Forsinket" #: frappe/public/js/frappe/form/toolbar.js:464 #: frappe/public/js/frappe/views/reports/report_view.js:1749 #: frappe/public/js/frappe/views/treeview.js:329 -#: frappe/public/js/frappe/web_form/web_form_list.js:282 +#: frappe/public/js/frappe/web_form/web_form_list.js:283 #: frappe/templates/discussions/reply_card.html:35 #: frappe/templates/discussions/reply_section.html:29 msgid "Delete" msgstr "Slett" -#: frappe/public/js/frappe/list/list_view.js:2172 +#: frappe/public/js/frappe/list/list_view.js:2174 msgctxt "Button in list view actions menu" msgid "Delete" msgstr "Slett" @@ -6913,7 +6945,7 @@ msgstr "Slett kolonne" msgid "Delete Data" msgstr "Slett data" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:106 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:116 msgid "Delete Kanban Board" msgstr "Slett Kanban-board" @@ -6927,7 +6959,7 @@ msgctxt "Title of confirmation dialog" msgid "Delete Tab" msgstr "Slett fane" -#: frappe/public/js/frappe/views/reports/query_report.js:936 +#: frappe/public/js/frappe/views/reports/query_report.js:944 msgid "Delete and Generate New" msgstr "Slett og generer ny" @@ -6969,12 +7001,12 @@ msgstr "Slett fane" msgid "Delete this record to allow sending to this email address" msgstr "Slett denne oppføringen for å tillate sending til denne e-postadressen" -#: frappe/public/js/frappe/list/list_view.js:2177 +#: frappe/public/js/frappe/list/list_view.js:2179 msgctxt "Title of confirmation dialog" msgid "Delete {0} item permanently?" msgstr "Slette {0} element permanent?" -#: frappe/public/js/frappe/list/list_view.js:2183 +#: frappe/public/js/frappe/list/list_view.js:2185 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "Slette {0} elementer permanent?" @@ -7471,10 +7503,14 @@ msgstr "Ikke opprett ny bruker" msgid "Do not create new user if user with email does not exist in the system" msgstr "Ikke opprett ny bruker hvis bruker med e-postadresse ikke finnes i systemet." -#: frappe/public/js/frappe/form/grid.js:1194 +#: frappe/public/js/frappe/form/grid.js:1195 msgid "Do not edit headers which are preset in the template" msgstr "Ikke rediger overskrifter som er forhåndsinnstilte i malen" +#: frappe/public/js/frappe/router.js:624 +msgid "Do not warn me again about {0}" +msgstr "" + #: frappe/core/doctype/system_settings/system_settings.js:71 msgid "Do you still want to proceed?" msgstr "Vil du fortsatt fortsette?" @@ -7901,7 +7937,7 @@ msgstr "Dokumenttittel" #: 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/public/js/frappe/roles_editor.js:68 #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json #: frappe/workflow/doctype/workflow/workflow.json msgid "Document Type" @@ -7952,15 +7988,15 @@ msgstr "Dokument ulåst" msgid "Document follow is not enabled for this user." msgstr "Dokumentfølging er ikke aktivert for denne brukeren." -#: frappe/public/js/frappe/list/list_view.js:1300 +#: frappe/public/js/frappe/list/list_view.js:1302 msgid "Document has been cancelled" msgstr "Dokumentet er blitt avbrutt" -#: frappe/public/js/frappe/list/list_view.js:1299 +#: frappe/public/js/frappe/list/list_view.js:1301 msgid "Document has been submitted" msgstr "Dokumentet er registrert" -#: frappe/public/js/frappe/list/list_view.js:1298 +#: frappe/public/js/frappe/list/list_view.js:1300 msgid "Document is in draft state" msgstr "Dokumentet er i utkastmodus" @@ -8102,7 +8138,7 @@ msgstr "Donut" msgid "Double click to edit label" msgstr "Dobbeltklikk for å redigere etiketten" -#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:467 +#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:474 #: frappe/email/doctype/auto_email_report/auto_email_report.js:8 #: frappe/public/js/frappe/form/grid.js:66 msgid "Download" @@ -8135,7 +8171,7 @@ msgstr "Last ned lenke" msgid "Download PDF" msgstr "Last ned PDF" -#: frappe/public/js/frappe/views/reports/query_report.js:832 +#: frappe/public/js/frappe/views/reports/query_report.js:840 msgid "Download Report" msgstr "Last ned rapport" @@ -8335,8 +8371,8 @@ msgstr "ESC" #: 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:880 -#: frappe/public/js/frappe/views/reports/query_report.js:1783 +#: frappe/public/js/frappe/views/reports/query_report.js:888 +#: frappe/public/js/frappe/views/reports/query_report.js:1791 #: 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 @@ -8348,7 +8384,7 @@ msgstr "ESC" msgid "Edit" msgstr "Rediger" -#: frappe/public/js/frappe/list/list_view.js:2258 +#: frappe/public/js/frappe/list/list_view.js:2260 msgctxt "Button in list view actions menu" msgid "Edit" msgstr "Rediger" @@ -8358,7 +8394,7 @@ msgctxt "Button in web form" msgid "Edit" msgstr "Rediger" -#: frappe/public/js/frappe/form/grid_row.js:349 +#: frappe/public/js/frappe/form/grid_row.js:350 msgctxt "Edit grid row" msgid "Edit" msgstr "Rediger" @@ -8387,7 +8423,7 @@ msgstr "Rediger egendefinert HTML" msgid "Edit DocType" msgstr "Rediger dokumenttype (DocType)" -#: frappe/public/js/frappe/list/list_view.js:1974 +#: frappe/public/js/frappe/list/list_view.js:1976 msgctxt "Button in list view menu" msgid "Edit DocType" msgstr "Rediger dokumenttype (DocType)" @@ -8507,7 +8543,7 @@ msgstr "Rediger {0}" #. 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/core/doctype/doctype/doctype_list.js:58 #: frappe/custom/doctype/customize_form/customize_form.json msgid "Editable Grid" msgstr "Redigerbart rutenett" @@ -8552,6 +8588,8 @@ msgstr "Elementvelger" #. 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' +#. Label of a field in the request-data Web Form +#. Label of a field in the request-to-delete-data Web Form #: frappe/automation/workspace/tools/tools.json #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/custom_docperm/custom_docperm.json @@ -8570,6 +8608,8 @@ msgstr "Elementvelger" #: 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/website/web_form/request_data/request_data.json +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json #: frappe/www/login.html:8 frappe/www/login.py:104 msgid "Email" msgstr "E-post" @@ -8801,7 +8841,7 @@ msgstr "E-posten er blitt merket som søppelpost" msgid "Email has been moved to trash" msgstr "E-posten er flyttet til papirkurven" -#: frappe/core/doctype/user/user.js:278 +#: frappe/core/doctype/user/user.js:266 msgid "Email is mandatory to create User Email" msgstr "Brukeren må ha en e-postadresse for å motta varsler." @@ -8838,13 +8878,13 @@ msgstr "Utsending av e-post er slått av." #. 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 "E-postmeldinger vil bli sendt med neste mulige handlinger i arbeidsflyten" +msgstr "Det vil bli sendt e-post med informasjon om neste mulige arbeidsflythandlinger" #: frappe/website/doctype/web_form/web_form.js:34 msgid "Embed code copied" msgstr "Den innbygde koden er kopiert" -#: frappe/database/query.py:1537 +#: frappe/database/query.py:1539 msgid "Empty alias is not allowed" msgstr "Tomt alias er ikke tillatt" @@ -8852,7 +8892,7 @@ msgstr "Tomt alias er ikke tillatt" msgid "Empty column" msgstr "Tom kolonne" -#: frappe/database/query.py:1455 +#: frappe/database/query.py:1457 msgid "Empty string arguments are not allowed" msgstr "Tomme strenger er ikke tillatt som argumenter" @@ -9309,9 +9349,9 @@ msgstr "Feil i klientskriptet." msgid "Error in Header/Footer Script" msgstr "Feil i topptekst-/bunntekstskript" -#: frappe/email/doctype/notification/notification.py:640 -#: frappe/email/doctype/notification/notification.py:780 -#: frappe/email/doctype/notification/notification.py:786 +#: frappe/email/doctype/notification/notification.py:642 +#: frappe/email/doctype/notification/notification.py:782 +#: frappe/email/doctype/notification/notification.py:788 msgid "Error in Notification" msgstr "Feil i varselet" @@ -9331,7 +9371,7 @@ msgstr "Feil ved parsing av nestede filtre: {0}" msgid "Error while connecting to email account {0}" msgstr "Feil under tilkobling til e-postkonto {0}" -#: frappe/email/doctype/notification/notification.py:777 +#: frappe/email/doctype/notification/notification.py:779 msgid "Error while evaluating Notification {0}. Please fix your template." msgstr "Feil under evaluering av varsel {0}. Vennligst rett malen din." @@ -9492,7 +9532,7 @@ msgstr "Kjør kode" msgid "Executing..." msgstr "Utfører..." -#: frappe/public/js/frappe/views/reports/query_report.js:2132 +#: frappe/public/js/frappe/views/reports/query_report.js:2140 msgid "Execution Time: {0} sec" msgstr "Utførelsestid: {0} sek" @@ -9518,12 +9558,12 @@ msgctxt "Enlarge code field." msgid "Expand" msgstr "Utvid" -#: frappe/public/js/frappe/views/reports/query_report.js:2113 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 #: frappe/public/js/frappe/views/treeview.js:133 msgid "Expand All" msgstr "Utvid alle" -#: frappe/database/query.py:352 +#: frappe/database/query.py:354 msgid "Expected 'and' or 'or' operator, found: {0}" msgstr "Forventet ‘AND’ eller ‘OR’, men fant: {0}." @@ -9581,13 +9621,13 @@ msgstr "Utløpstid for QR-kodebildesiden" #: 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:1820 +#: frappe/public/js/frappe/views/reports/query_report.js:1828 #: frappe/public/js/frappe/views/reports/report_view.js:1629 #: frappe/public/js/frappe/widgets/chart_widget.js:315 msgid "Export" msgstr "Eksporter" -#: frappe/public/js/frappe/list/list_view.js:2280 +#: frappe/public/js/frappe/list/list_view.js:2282 msgctxt "Button in list view actions menu" msgid "Export" msgstr "Eksport" @@ -9647,7 +9687,7 @@ msgstr "Eksporter som zip" #: frappe/public/js/frappe/views/reports/report_utils.js:184 msgid "Export in Background" -msgstr "" +msgstr "Eksporter i bakgrunnen" #: frappe/public/js/frappe/utils/tools.js:11 msgid "Export not allowed. You need {0} role to export." @@ -9780,7 +9820,7 @@ msgstr "Mislyktes med å beregne forespørselsteksten: {}" msgid "Failed to connect to server" msgstr "Mislyktes med å koble til serveren" -#: frappe/auth.py:698 +#: frappe/auth.py:701 msgid "Failed to decode token, please provide a valid base64-encoded token." msgstr "Mislyktes med å dekode tokenet. Vennligst oppgi et gyldig base64-kodet token." @@ -9815,7 +9855,7 @@ msgstr "Mislyktes med å generere forhåndsvisning av serien" #: frappe/handler.py:76 msgid "Failed to get method for command {0} with {1}" -msgstr "" +msgstr "Klarte ikke å hente metode for kommandoen {0} med {1}" #: frappe/api/v2.py:46 msgid "Failed to get method {0} with {1}" @@ -9831,15 +9871,15 @@ msgstr "Kunne ikke importere virtuell dokumenttype (DocType) {}. Finnes kontroll #: frappe/utils/image.py:75 msgid "Failed to optimize image: {0}" -msgstr "" +msgstr "Kunne ikke optimalisere bilde: {0}" #: frappe/email/doctype/notification/notification.py:122 msgid "Failed to render message: {}" -msgstr "" +msgstr "Kunne ikke gjengi melding: {}" #: frappe/email/doctype/notification/notification.py:140 msgid "Failed to render subject: {}" -msgstr "" +msgstr "Kunne ikke gjengi emne: {}" #: frappe/integrations/frappe_providers/frappecloud_billing.py:94 msgid "Failed to request login to Frappe Cloud" @@ -9847,11 +9887,11 @@ msgstr "Kunne ikke be om pålogging til Frappe Cloud" #: frappe/email/doctype/email_queue/email_queue.py:297 msgid "Failed to send email with subject:" -msgstr "" +msgstr "Kunne ikke sende e-post med emne:" #: frappe/desk/doctype/notification_log/notification_log.py:43 msgid "Failed to send notification email" -msgstr "" +msgstr "Kunne ikke sende e-postvarsel" #: frappe/desk/page/setup_wizard/setup_wizard.py:24 msgid "Failed to update global settings" @@ -9865,17 +9905,17 @@ msgstr "Mislyktes under kalling av API {0}" #. Report' #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Failing Scheduled Jobs (last 7 days)" -msgstr "" +msgstr "Mislykkede planlagte jobber (siste 7 dager)" #: frappe/core/doctype/data_import/data_import.js:459 msgid "Failure" -msgstr "" +msgstr "Feil" #. 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 "Feilfrekvens" #. Label of the favicon (Attach) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json @@ -9893,7 +9933,7 @@ msgstr "Tilbakemelding" #: frappe/desk/page/setup_wizard/install_fixtures.py:29 msgid "Female" -msgstr "" +msgstr "Kvinne" #. Label of the fetch_from (Small Text) field in DocType 'DocField' #. Label of the fetch_from (Small Text) field in DocType 'Custom Field' @@ -9904,11 +9944,11 @@ 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 "Hent fra" #: frappe/website/doctype/website_slideshow/website_slideshow.js:15 msgid "Fetch Images" -msgstr "" +msgstr "Hent bilder" #: frappe/website/doctype/website_slideshow/website_slideshow.js:13 msgid "Fetch attached images from document" @@ -9944,7 +9984,7 @@ msgstr "Henter standard globale søkedokumenter." #: 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:1879 +#: frappe/public/js/frappe/views/reports/query_report.js:1887 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_form_list_column/web_form_list_column.json msgid "Field" @@ -9952,7 +9992,7 @@ msgstr "Felt" #: frappe/core/doctype/doctype/doctype.py:418 msgid "Field \"route\" is mandatory for Web Views" -msgstr "" +msgstr "Feltet \"route\" er obligatorisk for webvisninger" #: frappe/core/doctype/doctype/doctype.py:1527 msgid "Field \"title\" is mandatory if \"Website Search Field\" is set." @@ -9960,16 +10000,16 @@ msgstr "Feltet «tittel» er obligatorisk hvis «Nettstedssøkefelt» er angitt. #: frappe/desk/doctype/bulk_update/bulk_update.js:17 msgid "Field \"value\" is mandatory. Please specify value to be updated" -msgstr "" +msgstr "Feltet \"verdi\" er påkrevet. Spesifiser verdien som skal oppdateres" #. Label of the description (Text) field in DocType 'Custom Field' #: frappe/custom/doctype/custom_field/custom_field.json msgid "Field Description" -msgstr "" +msgstr "Feltbeskrivelse" #: frappe/core/doctype/doctype/doctype.py:1078 msgid "Field Missing" -msgstr "" +msgstr "Felt mangler" #. Label of the field_name (Data) field in DocType 'Property Setter' #. Label of the field_name (Select) field in DocType 'Kanban Board' @@ -9999,7 +10039,7 @@ msgstr "Felttype" #: frappe/desk/reportview.py:202 msgid "Field not permitted in query" -msgstr "" +msgstr "Feltet er ikke tillatt i spørringen" #. Description of the 'Workflow State Field' (Data) field in DocType 'Workflow' #: frappe/workflow/doctype/workflow/workflow.json @@ -10013,11 +10053,11 @@ msgstr "Felt som skal spores" #: frappe/custom/doctype/property_setter/property_setter.py:51 msgid "Field type cannot be changed for {0}" -msgstr "" +msgstr "Felttypen kan ikke endres for {0}" #: frappe/database/database.py:919 msgid "Field {0} does not exist on {1}" -msgstr "" +msgstr "Feltet {0} finnes ikke på {1}" #: frappe/desk/form/meta.py:184 msgid "Field {0} is referring to non-existing doctype {1}." @@ -10025,9 +10065,9 @@ msgstr "Feltet {0} refererer til en ikke-eksisterende dokumenttype (DocType) {1} #: frappe/public/js/frappe/form/form.js:1756 msgid "Field {0} not found." -msgstr "" +msgstr "Felt {0} ble ikke funnet." -#: frappe/email/doctype/notification/notification.py:545 +#: frappe/email/doctype/notification/notification.py:547 msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link" msgstr "Feltet {0} på dokumentet {1} er verken et mobilnummerfelt eller en kunde- eller brukerlenke" @@ -10045,26 +10085,26 @@ msgstr "Feltet {0} på dokumentet {1} er verken et mobilnummerfelt eller en kund #: 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:454 +#: frappe/public/js/frappe/form/grid_row.js:455 #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Fieldname" msgstr "Feltnavn" #: frappe/core/doctype/doctype/doctype.py:271 msgid "Fieldname '{0}' conflicting with a {1} of the name {2} in {3}" -msgstr "" +msgstr "Feltnavnet '{0}' er i konflikt med et {1} med navnet {2} i {3}" #: frappe/core/doctype/doctype/doctype.py:1077 msgid "Fieldname called {0} must exist to enable autonaming" -msgstr "" +msgstr "Feltnavn kalt {0} må finnes for å aktivere automatisk navngiving" #: frappe/database/schema.py:131 frappe/database/schema.py:408 msgid "Fieldname is limited to 64 characters ({0})" -msgstr "" +msgstr "Feltnavn er begrenset til 64 tegn ({0})" #: frappe/custom/doctype/custom_field/custom_field.py:197 msgid "Fieldname not set for Custom Field" -msgstr "" +msgstr "Feltnavn ikke angitt for egendefinert felt" #: frappe/custom/doctype/custom_field/custom_field.js:107 msgid "Fieldname which will be the DocType for this link field." @@ -10072,7 +10112,7 @@ msgstr "Feltnavn som vil bli dokumenttype (DocType) for dette koblingsfeltet." #: frappe/public/js/form_builder/store.js:175 msgid "Fieldname {0} appears multiple times" -msgstr "" +msgstr "Feltnavnet {0} vises flere ganger" #: frappe/database/schema.py:398 msgid "Fieldname {0} cannot have special characters like {1}" @@ -10126,7 +10166,7 @@ msgstr "Feltene `file_name` eller `file_url` må angis for fil" msgid "Fields must be a list or tuple when as_list is enabled" msgstr "Felt må være en liste eller tuple når as_list er aktivert" -#: frappe/database/query.py:611 +#: frappe/database/query.py:613 msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function" msgstr "Feltene må være en streng, liste, tupel, pypika Field eller pypika Function" @@ -10154,7 +10194,7 @@ msgstr "Felttype" msgid "Fieldtype cannot be changed from {0} to {1}" msgstr "Felttypen kan ikke endres fra {0} til {1}" -#: frappe/custom/doctype/customize_form/customize_form.py:589 +#: frappe/custom/doctype/customize_form/customize_form.py:593 msgid "Fieldtype cannot be changed from {0} to {1} in row {2}" msgstr "Felttypen kan ikke endres fra {0} til {1} i rad {2}" @@ -10220,7 +10260,7 @@ msgstr "Filens URL" msgid "File backup is ready" msgstr "Sikkerhetskopiering av filer er klar" -#: frappe/core/doctype/file/file.py:646 +#: frappe/core/doctype/file/file.py:649 msgid "File name cannot have {0}" msgstr "Filnavnet kan ikke ha {0}" @@ -10228,7 +10268,7 @@ msgstr "Filnavnet kan ikke ha {0}" msgid "File not attached" msgstr "Fil ikke vedlagt" -#: frappe/core/doctype/file/file.py:756 frappe/public/js/frappe/request.js:200 +#: frappe/core/doctype/file/file.py:759 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 "Filstørrelsen oversteg den maksimalt tillatte størrelsen på {0} MB" @@ -10241,7 +10281,7 @@ msgstr "Filen er for stor" msgid "File type of {0} is not allowed" msgstr "Filtypen {0} er ikke tillatt" -#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:448 +#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:451 msgid "File {0} does not exist" msgstr "DocType {0} finnes ikke" @@ -10295,11 +10335,11 @@ msgstr "Navn på filter" msgid "Filter Values" msgstr "Filterverdier" -#: frappe/database/query.py:358 +#: frappe/database/query.py:360 msgid "Filter condition missing after operator: {0}" msgstr "Filterbetingelse mangler etter operatoren: {0}" -#: frappe/database/query.py:425 +#: frappe/database/query.py:427 msgid "Filter fields cannot contain backticks (`)." msgstr "Filterfelt kan ikke inneholde backticks (`)." @@ -10376,7 +10416,7 @@ msgstr "Filterseksjon" msgid "Filters applied for {0}" msgstr "Filtre brukt for {0}" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:188 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:202 msgid "Filters saved" msgstr "Filtre lagret" @@ -10424,9 +10464,12 @@ msgstr "Første dagen i uken" #. Label of the first_name (Data) field in DocType 'Contact' #. Label of the first_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json #: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:44 -#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:15 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:15 msgid "First Name" msgstr "Fornavn" @@ -10507,7 +10550,7 @@ msgstr "Mappenavn" msgid "Folder name should not include '/' (slash)" msgstr "Mappenavnet skal ikke inneholde '/' (skråstrek)" -#: frappe/core/doctype/file/file.py:494 +#: frappe/core/doctype/file/file.py:497 msgid "Folder {0} is not empty" msgstr "Mappen {0} er ikke tom" @@ -10710,7 +10753,7 @@ msgstr "For bruker" msgid "For Value" msgstr "For verdi" -#: frappe/public/js/frappe/views/reports/query_report.js:2129 +#: frappe/public/js/frappe/views/reports/query_report.js:2137 #: frappe/public/js/frappe/views/reports/report_view.js:108 msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)." msgstr "Til sammenligning, bruk >5, <10 eller =324. For områder, bruk 5:10 (for verdier mellom 5 og 10)." @@ -10995,7 +11038,7 @@ msgstr "Fra dato" msgid "From Date Field" msgstr "Felt for fradato" -#: frappe/public/js/frappe/views/reports/query_report.js:1840 +#: frappe/public/js/frappe/views/reports/query_report.js:1848 msgid "From Document Type" msgstr "Fra dokumenttype (DocType)" @@ -11057,13 +11100,13 @@ msgstr "Funksjon basert på" msgid "Function {0} is not whitelisted." msgstr "Funksjon {0} er ikke hvitelistet." -#: frappe/database/query.py:1417 +#: frappe/database/query.py:1419 msgid "Function {0} requires arguments but none were provided" msgstr "Funksjon {0} krever argumenter, men ingen ble oppgitt" #: frappe/public/js/frappe/views/treeview.js:419 -msgid "Further nodes can be only created under 'Group' type nodes" -msgstr "Ytterligere noder kan bare opprettes under noder av typen \"Gruppe\"" +msgid "Further sub-groups can only be created under records marked as 'Group'" +msgstr "" #: frappe/core/doctype/communication/communication.js:291 msgid "Fw: {0}" @@ -11122,7 +11165,7 @@ msgstr "Generell" msgid "Generate Keys" msgstr "Generer nøkler" -#: frappe/public/js/frappe/views/reports/query_report.js:874 +#: frappe/public/js/frappe/views/reports/query_report.js:882 msgid "Generate New Report" msgstr "Generer ny rapport" @@ -11538,14 +11581,10 @@ msgstr "Grupper etter type" msgid "Group By field is required to create a dashboard chart" msgstr "Feltet Grupper etter er påkrevd for å opprette et oversiktspanel-diagram" -#: frappe/database/query.py:750 +#: frappe/database/query.py:752 msgid "Group By must be a string" msgstr "\"Grupper etter\" må være en streng" -#: frappe/public/js/frappe/views/treeview.js:418 -msgid "Group Node" -msgstr "Gruppenode" - #. Label of the ldap_group_objectclass (Data) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Group Object Class" @@ -11875,7 +11914,7 @@ msgstr "Skjult" msgid "Hidden Fields" msgstr "Skjulte felt" -#: frappe/public/js/frappe/views/reports/query_report.js:1642 +#: frappe/public/js/frappe/views/reports/query_report.js:1650 msgid "Hidden columns include: {0}" msgstr "Skjulte kolonner inkluderer: {0}" @@ -11987,7 +12026,7 @@ msgstr "Skjul sidefelt, meny og kommentarer" msgid "Hide Standard Menu" msgstr "Skjul standardmeny" -#: frappe/public/js/frappe/list/list_view.js:1849 +#: frappe/public/js/frappe/list/list_view.js:1851 msgid "Hide Tags" msgstr "Skjul stikkord" @@ -12246,7 +12285,7 @@ msgstr "Hvis avmerket arbeidsflytstatus ikke overstyrer statusen i listevisninge #: frappe/core/doctype/doctype/doctype.py:1777 #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45 -#: frappe/public/js/frappe/roles_editor.js:66 +#: frappe/public/js/frappe/roles_editor.js:68 msgid "If Owner" msgstr "Hvis eier" @@ -12403,7 +12442,7 @@ msgstr "Hvis du oppdaterer, velg «Overskriv», ellers slettes ikke eksisterende #: frappe/core/doctype/data_export/exporter.py:188 msgid "If you are uploading new records, \"Naming Series\" becomes mandatory, if present." -msgstr "Hvis du laster opp nye poster, blir «Navneserie» obligatorisk, hvis den finnes." +msgstr "Hvis du laster opp nye poster, blir «Nummerserie» påkrevet, hvis den finnes." #: frappe/core/doctype/data_export/exporter.py:186 msgid "If you are uploading new records, leave the \"name\" (ID) column blank." @@ -12474,8 +12513,8 @@ msgstr "Ignorerte apper" msgid "Illegal Document Status for {0}" msgstr "Ulovlig dokumentstatus for {0}" -#: frappe/model/db_query.py:453 frappe/model/db_query.py:456 -#: frappe/model/db_query.py:1121 +#: frappe/model/db_query.py:454 frappe/model/db_query.py:457 +#: frappe/model/db_query.py:1122 msgid "Illegal SQL Query" msgstr "Ulovlig SQL-spørring" @@ -12562,11 +12601,11 @@ msgstr "Bilder" #. Option for the 'Operation' (Select) field in DocType 'Activity Log' #: frappe/core/doctype/activity_log/activity_log.json -#: frappe/core/doctype/user/user.js:384 +#: frappe/core/doctype/user/user.js:372 msgid "Impersonate" msgstr "Opptre som bruker" -#: frappe/core/doctype/user/user.js:411 +#: frappe/core/doctype/user/user.js:399 msgid "Impersonate as {0}" msgstr "Opptre som bruker {0}" @@ -12596,7 +12635,7 @@ msgstr "Implisitt" msgid "Import" msgstr "Import" -#: frappe/public/js/frappe/list/list_view.js:1911 +#: frappe/public/js/frappe/list/list_view.js:1913 msgctxt "Button in list view menu" msgid "Import" msgstr "Import" @@ -12825,15 +12864,15 @@ msgid "Include Web View Link in Email" msgstr "Inkluder lenke til nettvisning i e-post" #: frappe/public/js/frappe/form/print_utils.js:59 -#: frappe/public/js/frappe/views/reports/query_report.js:1620 +#: frappe/public/js/frappe/views/reports/query_report.js:1628 msgid "Include filters" msgstr "Inkluder filtre" -#: frappe/public/js/frappe/views/reports/query_report.js:1640 +#: frappe/public/js/frappe/views/reports/query_report.js:1648 msgid "Include hidden columns" msgstr "Inkluder skjulte kolonner" -#: frappe/public/js/frappe/views/reports/query_report.js:1612 +#: frappe/public/js/frappe/views/reports/query_report.js:1620 msgid "Include indentation" msgstr "Inkluder innrykk" @@ -12880,7 +12919,7 @@ msgstr "Konto for innkommende e-postkonto er ikke korrekt" msgid "Incomplete Virtual Doctype Implementation" msgstr "Ufullstendig implementering av virtuell dokumenttype (DocType)" -#: frappe/auth.py:255 +#: frappe/auth.py:258 msgid "Incomplete login details" msgstr "Ufullstendige innloggingsdetaljer" @@ -12991,7 +13030,7 @@ msgstr "Sett inn ovenfor" #. 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:1885 +#: frappe/public/js/frappe/views/reports/query_report.js:1893 msgid "Insert After" msgstr "Sett inn etter" @@ -13064,7 +13103,7 @@ msgstr "Instruksjoner sendt på e-post" msgid "Insufficient Permission Level for {0}" msgstr "Utilstrekkelig tillatelsesnivå for {0}" -#: frappe/database/query.py:806 frappe/database/query.py:1052 +#: frappe/database/query.py:808 frappe/database/query.py:1054 msgid "Insufficient Permission for {0}" msgstr "Utilstrekkelige rettigheter for {0}" @@ -13180,7 +13219,7 @@ msgid "Invalid" msgstr "Ugyldig" #: frappe/public/js/form_builder/utils.js:221 -#: frappe/public/js/frappe/form/grid_row.js:849 +#: frappe/public/js/frappe/form/grid_row.js:850 #: frappe/public/js/frappe/form/layout.js:810 #: frappe/public/js/frappe/views/reports/report_view.js:721 msgid "Invalid \"depends_on\" expression" @@ -13238,8 +13277,8 @@ msgstr "Ugyldig feltnavn" msgid "Invalid File URL" msgstr "Ugyldig fil-URL" -#: frappe/database/query.py:427 frappe/database/query.py:454 -#: frappe/database/query.py:464 frappe/database/query.py:487 +#: frappe/database/query.py:429 frappe/database/query.py:456 +#: frappe/database/query.py:466 frappe/database/query.py:489 msgid "Invalid Filter" msgstr "Ugyldig filter" @@ -13273,7 +13312,7 @@ msgstr "Ugyldig e-postserver. Vennligst rett opp og prøv igjen." #: frappe/model/naming.py:109 msgid "Invalid Naming Series: {}" -msgstr "Ugyldig navngivningsserie: {}" +msgstr "Ugyldig nummerserie: {}" #: frappe/core/doctype/rq_job/rq_job.py:113 #: frappe/core/doctype/rq_job/rq_job.py:122 @@ -13311,7 +13350,7 @@ msgstr "Ugyldig passord" msgid "Invalid Phone Number" msgstr "Ugyldig telefonnummer" -#: frappe/auth.py:94 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 +#: frappe/auth.py:97 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 #: frappe/www/login.py:128 msgid "Invalid Request" msgstr "Ugyldig forespørsel" @@ -13351,7 +13390,7 @@ msgstr "Ugyldig webhook-hemmelighet" msgid "Invalid aggregate function" msgstr "Ugyldig aggregatfunksjon" -#: frappe/database/query.py:1542 +#: frappe/database/query.py:1544 msgid "Invalid alias format: {0}. Alias must be a simple identifier." msgstr "Ugyldig aliasformat: {0}. Aliaset må være en enkel identifikator." @@ -13359,19 +13398,19 @@ msgstr "Ugyldig aliasformat: {0}. Aliaset må være en enkel identifikator." msgid "Invalid app" msgstr "Ugyldig app" -#: frappe/database/query.py:1468 +#: frappe/database/query.py:1470 msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed." msgstr "Ugyldig argumentformat: {0}. Bare anførselstegn eller enkle feltnavn er tillatt." -#: frappe/database/query.py:1444 +#: frappe/database/query.py:1446 msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed." msgstr "Ugyldig argumenttype: {0}. Bare strenger, tall og None er tillatt." -#: frappe/database/query.py:460 +#: frappe/database/query.py:462 msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed." msgstr "Ugyldige tegn i feltnavnet: {0}. Bare bokstaver, tall og understrekninger er tillatt." -#: frappe/database/query.py:575 +#: frappe/database/query.py:577 msgid "Invalid characters in table name: {0}" msgstr "Ugyldige tegn i tabellnavnet: {0}" @@ -13379,17 +13418,17 @@ msgstr "Ugyldige tegn i tabellnavnet: {0}" msgid "Invalid column" msgstr "Ugyldig kolonne" -#: frappe/database/query.py:381 +#: frappe/database/query.py:383 msgid "Invalid condition type in nested filters: {0}" msgstr "Ugyldig betingelsestype i nestede filtre: {0}" -#: frappe/database/query.py:787 +#: frappe/database/query.py:789 msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'." -msgstr "" +msgstr "Ugyldig retning i Sorter etter: {0}. Må være 'ASC' eller 'DESC'." #: frappe/model/document.py:1020 frappe/model/document.py:1034 msgid "Invalid docstatus" -msgstr "" +msgstr "Ugyldig dokumentstatus" #: frappe/public/js/frappe/utils/dashboard_utils.js:229 msgid "Invalid expression set in filter {0}" @@ -13399,39 +13438,39 @@ msgstr "Ugyldig uttrykk satt i filteret {0}" msgid "Invalid expression set in filter {0} ({1})" msgstr "Ugyldig uttrykk satt i filteret {0} ({1})" -#: frappe/database/query.py:1301 +#: frappe/database/query.py:1303 msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'." msgstr "Ugyldig feltformat for SELECT: {0}. Feltnavn må være enkelt, backticked (`), tabellkvalifisert, aliasert, eller inneholde '*'." -#: frappe/database/query.py:734 +#: frappe/database/query.py:736 msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'." -msgstr "" +msgstr "Ugyldig feltformat i {0}: {1}. Bruk 'field', 'link_field.field' eller 'child_table.field'." -#: frappe/database/query.py:1620 +#: frappe/database/query.py:1622 msgid "Invalid field name in function: {0}. Only simple field names are allowed." -msgstr "" +msgstr "Ugyldig feltnavn i funksjon: {0}. Bare enkle feltnavn er tillatt." -#: frappe/utils/data.py:2215 +#: frappe/utils/data.py:2241 msgid "Invalid field name {0}" -msgstr "" +msgstr "Ugyldig feltnavn {0}" -#: frappe/database/query.py:668 +#: frappe/database/query.py:670 msgid "Invalid field type: {0}" -msgstr "" +msgstr "Ugyldig felttype: {0}" #: frappe/core/doctype/doctype/doctype.py:1086 msgid "Invalid fieldname '{0}' in autoname" -msgstr "" +msgstr "Ugyldig feltnavn ‘{0}’ i automatisk navngivning" #: frappe/deprecation_dumpster.py:283 msgid "Invalid file path: {0}" -msgstr "" +msgstr "Ugyldig filsti: {0}" -#: frappe/database/query.py:364 +#: frappe/database/query.py:366 msgid "Invalid filter condition: {0}. Expected a list or tuple." msgstr "Ugyldig filterbetingelse: {0}. Forventet en liste eller tuppel." -#: frappe/database/query.py:450 +#: frappe/database/query.py:452 msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'." msgstr "Ugyldig filterfeltformat: {0}. Bruk 'fieldname' eller 'link_fieldname.target_fieldname'." @@ -13439,13 +13478,13 @@ msgstr "Ugyldig filterfeltformat: {0}. Bruk 'fieldname' eller 'link_fieldname.ta msgid "Invalid filter: {0}" msgstr "Ugyldig filter: {0}" -#: frappe/database/query.py:1422 +#: frappe/database/query.py:1424 msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed." -msgstr "" +msgstr "Ugyldig argumenttype for funksjon: {0}. Bare strenger, tall, lister og None er tillatt." -#: frappe/database/query.py:1383 +#: frappe/database/query.py:1385 msgid "Invalid function dictionary format" -msgstr "" +msgstr "Ugyldig dict-format for funksjon" #: frappe/core/api/user_invitation.py:17 msgid "Invalid input" @@ -13462,47 +13501,51 @@ msgstr "Ugyldig nøkkel" #: frappe/model/naming.py:498 msgid "Invalid name type (integer) for varchar name column" -msgstr "" +msgstr "Ugyldig navnetype (heltall) for varchar-kolonnen ‘name’" #: frappe/model/naming.py:62 msgid "Invalid naming series {}: dot (.) missing" -msgstr "Ugyldig navneserie {}: punktum (.) mangler" +msgstr "Ugyldig nummerserie {}: punktum (.) mangler" #: frappe/model/naming.py:76 msgid "Invalid naming series {}: dot (.) missing before the numeric placeholders. Kindly use a format like ABCD.#####." -msgstr "Ugyldig navngivningsserie {}: punktum (.) mangler før de numeriske plassholderne. Vennligst bruk et format som ABCD.#####." +msgstr "Ugyldig nummerserie {}: punktum (.) mangler før de numeriske plassholderne. Vennligst bruk et format som ABCD.#####.." #: frappe/core/doctype/data_import/importer.py:453 msgid "Invalid or corrupted content for import" -msgstr "" +msgstr "Ugyldig eller ødelagt innhold for import" #: frappe/website/doctype/website_settings/website_settings.py:139 msgid "Invalid redirect regex in row #{}: {}" msgstr "Ugyldig omadresseringsregeks i rad #{}: {}" -#: frappe/app.py:337 +#: frappe/app.py:340 msgid "Invalid request arguments" +msgstr "Ugyldige forespørselsargumenter" + +#: frappe/app.py:327 +msgid "Invalid request body" msgstr "" #: frappe/core/doctype/user_invitation/user_invitation.py:181 msgid "Invalid role" -msgstr "" +msgstr "Ugyldig rolle" -#: frappe/database/query.py:410 +#: frappe/database/query.py:412 msgid "Invalid simple filter format: {0}" msgstr "Ugyldig enkelt filterformat: {0}" -#: frappe/database/query.py:341 +#: frappe/database/query.py:343 msgid "Invalid start for filter condition: {0}. Expected a list or tuple." msgstr "Ugyldig start for filterbetingelse: {0}. Forventet en liste eller tuppel." -#: frappe/database/query.py:1489 +#: frappe/database/query.py:1491 msgid "Invalid string literal format: {0}" -msgstr "" +msgstr "Ugyldig format for strengliteral: {0}" #: frappe/core/doctype/data_import/importer.py:430 msgid "Invalid template file for import" -msgstr "" +msgstr "Ugyldig malfil for import" #: frappe/integrations/doctype/connected_app/connected_app.py:208 msgid "Invalid token state! Check if the token has been created by the OAuth user." @@ -13515,7 +13558,7 @@ msgstr "Ugyldig brukernavn eller passord" #: frappe/model/naming.py:176 msgid "Invalid value specified for UUID: {}" -msgstr "" +msgstr "Ugyldig verdi angitt for UUID: {}" #: frappe/public/js/frappe/web_form/web_form.js:253 msgctxt "Error message in web form" @@ -13528,7 +13571,7 @@ msgstr "Ugyldig wkhtmltopdf-versjon" #: frappe/core/doctype/doctype/doctype.py:1565 msgid "Invalid {0} condition" -msgstr "" +msgstr "Ugyldig {0} tilstand" #. Option for the 'Style' (Select) field in DocType 'Workflow State' #: frappe/workflow/doctype/workflow_state/workflow_state.json @@ -13537,11 +13580,11 @@ msgstr "Invers" #: frappe/core/doctype/user_invitation/user_invitation.py:95 msgid "Invitation already accepted" -msgstr "" +msgstr "Invitasjon allerede akseptert" #: frappe/core/doctype/user_invitation/user_invitation.py:99 msgid "Invitation already exists" -msgstr "" +msgstr "Invitasjonen finnes allerede" #: frappe/core/api/user_invitation.py:84 msgid "Invitation cannot be cancelled" @@ -13553,7 +13596,7 @@ msgstr "Invitasjonen er avbrutt" #: frappe/core/doctype/user_invitation/user_invitation.py:125 msgid "Invitation is expired" -msgstr "" +msgstr "Invitasjonen er utløpt" #: frappe/core/api/user_invitation.py:73 frappe/core/api/user_invitation.py:78 msgid "Invitation not found" @@ -13565,16 +13608,16 @@ msgstr "Invitasjon til å bli med {0} er avbrutt" #: frappe/core/doctype/user_invitation/user_invitation.py:76 msgid "Invitation to join {0} expired" -msgstr "" +msgstr "Invitasjon til å delta i {0} er utløpt" #: frappe/contacts/doctype/contact/contact.js:30 msgid "Invite as User" -msgstr "" +msgstr "Inviter som bruker" #. Label of the invited_by (Link) field in DocType 'User Invitation' #: frappe/core/doctype/user_invitation/user_invitation.json msgid "Invited By" -msgstr "" +msgstr "Invitert av" #: frappe/public/js/frappe/ui/filters/filter.js:22 msgid "Is" @@ -13583,12 +13626,12 @@ msgstr "Er" #. Label of the is_active (Check) field in DocType 'Workflow' #: frappe/workflow/doctype/workflow/workflow.json msgid "Is Active" -msgstr "" +msgstr "Er aktiv" #. Label of the is_attachments_folder (Check) field in DocType 'File' #: frappe/core/doctype/file/file.json msgid "Is Attachments Folder" -msgstr "" +msgstr "Er vedleggsmappe" #. 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' @@ -13600,7 +13643,7 @@ msgstr "Er kalender og 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/doctype_list.js:50 #: frappe/core/doctype/doctype_link/doctype_link.json msgid "Is Child Table" msgstr "Er Underordnet Tabell" @@ -13653,6 +13696,10 @@ msgstr "Er mappe" msgid "Is Global" msgstr "Er global" +#: frappe/public/js/frappe/views/treeview.js:418 +msgid "Is Group" +msgstr "Er gruppe" + #. Label of the is_hidden (Check) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "Is Hidden" @@ -13681,7 +13728,7 @@ msgstr "Er primær" #: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:43 msgid "Is Primary Address" -msgstr "" +msgstr "Er primæradresse" #. Label of the is_primary_contact (Check) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json @@ -13741,7 +13788,7 @@ msgstr "Er oppsettet fullført?" #. 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/core/doctype/doctype/doctype_list.js:65 #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Is Single" msgstr "Er alene" @@ -13777,7 +13824,7 @@ msgstr "Er 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 +#: frappe/core/doctype/doctype/doctype_list.js:40 msgid "Is Submittable" msgstr "Kan registreres" @@ -13983,11 +14030,11 @@ msgstr "Kolonne i Kanban-tavle" #. 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 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:402 msgid "Kanban Board Name" msgstr "Navn på Kanban-tavle" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:265 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:279 msgctxt "Button in kanban view menu" msgid "Kanban Settings" msgstr "Innstillinger for Kanban-tavle" @@ -14260,17 +14307,17 @@ msgstr "Etikett" #. Label of the label_help (HTML) field in DocType 'Custom Field' #: frappe/custom/doctype/custom_field/custom_field.json msgid "Label Help" -msgstr "" +msgstr "Hjelp for etikett" #. 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 "Etikett og type" #: frappe/custom/doctype/custom_field/custom_field.py:145 msgid "Label is mandatory" -msgstr "" +msgstr "Etikett er påkrevet" #. Label of the sb0 (Section Break) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json @@ -14285,10 +14332,13 @@ msgstr "Liggende" #. 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' +#. Label of a field in the edit-profile Web Form #: 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:117 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/printing/page/print/print.js:117 #: frappe/public/js/frappe/form/templates/print_layout.html:11 msgid "Language" msgstr "Språk" @@ -14296,18 +14346,18 @@ msgstr "Språk" #. Label of the language_code (Data) field in DocType 'Language' #: frappe/core/doctype/language/language.json msgid "Language Code" -msgstr "" +msgstr "Språkkode" #. Label of the language_name (Data) field in DocType 'Language' #: frappe/core/doctype/language/language.json msgid "Language Name" -msgstr "" +msgstr "Språknavn" #. 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 "Siste 10 aktive brukere" #: frappe/public/js/frappe/ui/filters/filter.js:628 msgid "Last 14 Days" @@ -14332,36 +14382,36 @@ msgstr "De siste 90 dager" #. Label of the last_active (Datetime) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Last Active" -msgstr "" +msgstr "Sist aktiv" #. 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 "Siste kjøring" #. Label of the last_heartbeat (Datetime) field in DocType 'RQ Worker' #: frappe/core/doctype/rq_worker/rq_worker.json msgid "Last Heartbeat" -msgstr "" +msgstr "Siste hjerteslag" #. Label of the last_ip (Read Only) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Last IP" -msgstr "" +msgstr "Siste IP" #. Label of the last_known_versions (Text) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Last Known Versions" -msgstr "" +msgstr "Siste kjente versjoner" #. Label of the last_login (Read Only) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Last Login" -msgstr "" +msgstr "Siste innlogging" #: frappe/email/doctype/notification/notification.js:32 msgid "Last Modified Date" -msgstr "" +msgstr "Siste endringsdato" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:242 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:480 @@ -14376,16 +14426,19 @@ msgstr "Forrige måned" #. Label of the last_name (Data) field in DocType 'Contact' #. Label of the last_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json #: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:45 -#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:19 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:19 msgid "Last Name" -msgstr "" +msgstr "Etternavn" #. 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 "Dato for siste tilbakestilling av passord" #. Option for the 'Timespan' (Select) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json @@ -14396,18 +14449,18 @@ msgstr "Siste kvartal" #. Label of the last_received_at (Datetime) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Last Received At" -msgstr "" +msgstr "Sist mottatt den" #. 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 "" +msgstr "Siste nøkkel for tilbakestilling av passord generert den" #. Label of the datetime_last_run (Datetime) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Last Run" -msgstr "" +msgstr "Siste kjøring" #. Label of the last_sync_on (Datetime) field in DocType 'Google Contacts' #: frappe/integrations/doctype/google_contacts/google_contacts.json @@ -14422,17 +14475,17 @@ msgstr "Sist synkronisert på " #: 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 "Sist oppdatert av" #: 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 "Sist oppdatert den" #. Label of the last_user (Link) field in DocType 'Assignment Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Last User" -msgstr "" +msgstr "Siste bruker" #. Option for the 'Timespan' (Select) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json @@ -14448,19 +14501,19 @@ msgstr "Forrige år" #: frappe/public/js/frappe/widgets/chart_widget.js:753 msgid "Last synced {0}" -msgstr "" +msgstr "Sist synkronisert {0}" #: frappe/custom/doctype/customize_form/customize_form.js:194 msgid "Layout Reset" -msgstr "" +msgstr "Tilbakestilling av layout" #: 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 "Layout vil bli tilbakestilt til standardlayout, er du sikker på at du vil gjøre dette?" #: frappe/website/web_template/section_with_features/section_with_features.html:26 msgid "Learn more" -msgstr "" +msgstr "Les mer" #. Description of the 'Repeat Till' (Date) field in DocType 'Event' #: frappe/desk/doctype/event/event.json @@ -14470,7 +14523,7 @@ msgstr "La stå tomt for å alltid gjenta" #: frappe/core/doctype/communication/mixins.py:207 #: frappe/email/doctype/email_account/email_account.py:720 msgid "Leave this conversation" -msgstr "" +msgstr "Forlat denne samtalen" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json @@ -14619,7 +14672,7 @@ msgstr "Brevhode i HTML" #: 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/public/js/frappe/roles_editor.js:68 #: frappe/website/doctype/help_article/help_article.json msgid "Level" msgstr "Nivå" @@ -14912,7 +14965,7 @@ msgstr "Listefilter" msgid "List Settings" msgstr "Innstillinger for lister" -#: frappe/public/js/frappe/list/list_view.js:1991 +#: frappe/public/js/frappe/list/list_view.js:1993 msgctxt "Button in list view menu" msgid "List Settings" msgstr "Innstillinger for lister" @@ -14963,7 +15016,7 @@ msgid "Load Balancing" msgstr "Belastningsfordeling" #: frappe/public/js/frappe/list/base_list.js:399 -#: frappe/public/js/frappe/web_form/web_form_list.js:305 +#: frappe/public/js/frappe/web_form/web_form_list.js:306 #: frappe/website/doctype/help_article/templates/help_article_list.html:30 msgid "Load More" msgstr "Last inn flere" @@ -14983,7 +15036,7 @@ msgstr "Last inn mer" #: frappe/public/js/frappe/list/base_list.js:526 #: frappe/public/js/frappe/list/list_view.js:363 #: frappe/public/js/frappe/ui/listing.html:16 -#: frappe/public/js/frappe/views/reports/query_report.js:1089 +#: frappe/public/js/frappe/views/reports/query_report.js:1097 msgid "Loading" msgstr "Laster inn" @@ -15126,7 +15179,7 @@ msgstr "Verifiseringskode for innlogging fra {}" msgid "Login and view in Browser" msgstr "Logg inn og se i nettleser" -#: frappe/website/doctype/web_form/web_form.js:367 +#: frappe/website/doctype/web_form/web_form.js:368 msgid "Login is required to see web form list view. Enable {0} to see list settings" msgstr "Innlogging er påkrevd for å se webskjemaets listevisning. Aktiver {0} for å se listeinnstillinger" @@ -15134,7 +15187,7 @@ msgstr "Innlogging er påkrevd for å se webskjemaets listevisning. Aktiver {0} msgid "Login link sent to your email" msgstr "Innloggingslenke er sendt til e-postkontoen din" -#: frappe/auth.py:339 frappe/auth.py:342 +#: frappe/auth.py:342 frappe/auth.py:345 msgid "Login not allowed at this time" msgstr "Innlogging er ikke tillatt for øyeblikket" @@ -15187,7 +15240,7 @@ msgstr "Logg inn med e-postlenke" msgid "Login with email link expiry (in minutes)" msgstr "Utløpstid for «Logg inn med e-postlenke» (i minutter)" -#: frappe/auth.py:144 +#: frappe/auth.py:147 msgid "Login with username and password is not allowed." msgstr "«Logg inn med brukernavn og passord» er ikke tillatt." @@ -15206,7 +15259,7 @@ msgstr "Logo URI" msgid "Logout" msgstr "Logg ut" -#: frappe/core/doctype/user/user.js:202 +#: frappe/core/doctype/user/user.js:190 msgid "Logout All Sessions" msgstr "Logg ut av alle økter" @@ -15310,7 +15363,10 @@ msgid "Major" msgstr "Hovedversjon" #. Label of the show_name_in_global_search (Check) field in DocType 'DocType' +#. Label of the show_name_in_global_search (Check) field in DocType 'Customize +#. Form' #: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Make \"name\" searchable in Global Search" msgstr "Gjør «navn» søkbart i globalt søk" @@ -15386,7 +15442,7 @@ msgstr "Betingelse for påkrevd felt" msgid "Mandatory Depends On (JS)" msgstr "Betingelse for påkrevd felt (JS)" -#: frappe/website/doctype/web_form/web_form.py:509 +#: frappe/website/doctype/web_form/web_form.py:536 msgid "Mandatory Information missing:" msgstr "Påkrevd informasjon mangler:" @@ -15843,6 +15899,11 @@ msgstr "Sentrert" msgid "Middle Name" msgstr "Mellomnavn" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Middle Name (Optional)" +msgstr "" + #. Name of a DocType #. Label of a Link in the Tools Workspace #: frappe/automation/doctype/milestone/milestone.json @@ -15949,6 +16010,11 @@ msgstr "Mobil" msgid "Mobile No" msgstr "Mobile No" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Mobile Number" +msgstr "" + #. 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" @@ -15974,7 +16040,7 @@ msgstr "Åpner modalvindu" #. 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/doctype/doctype_list.js:31 #: 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 @@ -16150,10 +16216,12 @@ msgstr "Mer info" #. Label of the additional_info (Section Break) field in DocType #. 'Communication' #. Label of the short_bio (Tab Break) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: 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 +#: frappe/core/web_form/edit_profile/edit_profile.json msgid "More Information" msgstr "Mer informasjon" @@ -16183,7 +16251,7 @@ msgstr "Mest sannsynlig er passordet for langt." msgid "Move" msgstr "Flytt" -#: frappe/public/js/frappe/form/grid_row.js:193 +#: frappe/public/js/frappe/form/grid_row.js:194 msgid "Move To" msgstr "Flytt til" @@ -16219,7 +16287,7 @@ msgstr "Flytt seksjoner til ny fane" msgid "Move the current field and the following fields to a new column" msgstr "Flytt gjeldende felt og de følgende feltene til en ny kolonne" -#: frappe/public/js/frappe/form/grid_row.js:168 +#: frappe/public/js/frappe/form/grid_row.js:169 msgid "Move to Row Number" msgstr "Flytt til radnummer" @@ -16287,7 +16355,7 @@ msgid "Mx" msgstr "Mx" #: frappe/templates/includes/web_sidebar.html:41 -#: frappe/website/doctype/web_form/web_form.py:498 +#: frappe/website/doctype/web_form/web_form.py:525 #: 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" @@ -16377,9 +16445,9 @@ msgstr "Navngivning" msgid "Naming Options:\n" "
  1. field:[fieldname] - By Field
  2. naming_series: - By Naming Series (field called naming_series must be present)
  3. Prompt - Prompt user for a name
  4. [series] - Series by prefix (separated by a dot); for example PRE.#####
  5. \n" "
  6. 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 "Alternativer for navngivning:\n" -"
  1. field:[fieldname] - Etter felt
  2. naming_series: - Etter navngivningsserie (feltet kalt naming_series må være til stede)
  3. Spørsmål - Spør brukeren om et navn
  4. [serie] - Serie etter prefiks (atskilt med punktum); for eksempel PRE.#####
  5. \n" -"
  6. format: EKSEMPEL-{MM}flere ord{fieldname1}-{fieldname2}-{#####} - Erstatt alle ord med parenteser (feltnavn, datoord (DD, MM, ÅÅ), serier) med verdien deres. Utenfor parenteser kan alle tegn brukes.
" +msgstr "Alternativer for nummerserie:\n" +"
  1. field:[fieldname] - Etter felt
  2. naming_series: - Etter nummerserie (feltet kalt naming_series må være til stede)
  3. Spørsmål - Spør brukeren om et navn
  4. [serie] - Serie etter prefiks (atskilt med punktum); for eksempel PRE.#####
  5. \n" +"
  6. format: EKSEMPEL-{MM}flere ord{fieldname1}-{fieldname2}-{#####} - Erstatt alle ord med parenteser (feltnavn, datoord (DD, MM, YY), serier) med verdien deres. Utenfor parenteser kan alle tegn brukes.
" #. Label of the naming_rule (Select) field in DocType 'DocType' #. Label of the naming_rule (Select) field in DocType 'Customize Form' @@ -16392,11 +16460,11 @@ msgstr "Navneregel" #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Naming Series" -msgstr "Navneserie" +msgstr "Nummerserie" #: frappe/model/naming.py:268 msgid "Naming Series mandatory" -msgstr "Navneserie påkrevet" +msgstr "Nummerserie påkrevet" #. Option for the 'Type' (Select) field in DocType 'Web Template' #. Label of the top_bar (Section Break) field in DocType 'Website Settings' @@ -16431,12 +16499,12 @@ msgstr "Mal for navigasjonsfelt" msgid "Navbar Template Values" msgstr "Verdier for navigasjonsfeltmal" -#: frappe/public/js/frappe/list/list_view.js:1378 +#: frappe/public/js/frappe/list/list_view.js:1380 msgctxt "Description of a list view shortcut" msgid "Navigate list down" msgstr "Naviger nedover i listen" -#: frappe/public/js/frappe/list/list_view.js:1385 +#: frappe/public/js/frappe/list/list_view.js:1387 msgctxt "Description of a list view shortcut" msgid "Navigate list up" msgstr "Naviger listen oppover" @@ -16451,6 +16519,10 @@ msgstr "Naviger til hovedinnholdet" msgid "Navigation Settings" msgstr "Navigasjonsinnstillinger" +#: frappe/public/js/frappe/list/list_view.js:485 +msgid "Need Help?" +msgstr "" + #: frappe/desk/doctype/workspace/workspace.py:322 msgid "Need Workspace Manager role to edit private workspace of other users" msgstr "Trenger rollen Administrator for arbeidsområder for å redigere andre brukeres private arbeidsområde" @@ -16459,7 +16531,7 @@ msgstr "Trenger rollen Administrator for arbeidsområder for å redigere andre b msgid "Negative Value" msgstr "Negativ verdi" -#: frappe/database/query.py:333 +#: frappe/database/query.py:335 msgid "Nested filters must be provided as a list or tuple." msgstr "Nestede filtre må angis som en liste eller tuppel." @@ -16472,6 +16544,12 @@ msgstr "Feil i nestet sett. Kontakt administratoren." msgid "Network Printer Settings" msgstr "Innstillinger for nettverksskriver" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Never" +msgstr "" + #. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/core/doctype/success_action/success_action.js:57 @@ -16480,7 +16558,7 @@ msgstr "Innstillinger for nettverksskriver" #: 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/treeview.js:473 #: frappe/public/js/frappe/views/workspace/workspace.js:64 #: frappe/website/doctype/web_form/templates/web_list.html:15 #: frappe/www/list.html:19 @@ -16541,7 +16619,7 @@ msgstr "Ny hendelse" msgid "New Folder" msgstr "Ny mappe" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 msgid "New Kanban Board" msgstr "Nytt Kanban-board" @@ -16576,7 +16654,7 @@ msgstr "Nytt nummerkort" msgid "New Onboarding" msgstr "Ny onboarding" -#: frappe/core/doctype/user/user.js:190 frappe/www/update-password.html:43 +#: frappe/core/doctype/user/user.js:178 frappe/www/update-password.html:43 msgid "New Password" msgstr "Nytt passord" @@ -16674,7 +16752,7 @@ msgstr "Ny verdi som skal angis" #: frappe/public/js/frappe/ui/toolbar/search_utils.js:227 #: 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:411 +#: frappe/website/doctype/web_form/web_form.py:438 msgid "New {0}" msgstr "Ny {0}" @@ -16826,7 +16904,7 @@ msgstr "Neste ved klikk" #: frappe/public/js/form_builder/utils.js:341 #: frappe/public/js/frappe/form/controls/link.js:498 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1665 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 #: frappe/website/doctype/help_article/templates/help_article.html:26 msgid "No" msgstr "Nei" @@ -16975,7 +17053,7 @@ msgstr "Ingen resultater funnet" msgid "No Roles Specified" msgstr "Ingen roller spesifisert" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 msgid "No Select Field Found" msgstr "Ingen valgfelt funnet" @@ -17059,7 +17137,7 @@ msgstr "Ingen e-postadresser å invitere" msgid "No failed logs" msgstr "Ingen mislykkede logger" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:371 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:385 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 "Ingen felt funnet som kan brukes som en Kanban-kolonne. Bruk Tilpass-skjemaet for å legge til et tilpasset felt av typen «Velg»." @@ -17083,7 +17161,7 @@ msgstr "Ingen flere oppføringer" msgid "No matching records. Search something new" msgstr "Ingen samsvarende oppføringer. Søk etter noe nytt" -#: frappe/public/js/frappe/web_form/web_form_list.js:161 +#: frappe/public/js/frappe/web_form/web_form_list.js:162 msgid "No more items to display" msgstr "Ingen flere elementer å vise" @@ -17127,7 +17205,7 @@ msgctxt "{0} = verb, {1} = object" msgid "No permission to '{0}' {1}" msgstr "Ingen rettigheter til '{0}' {1}" -#: frappe/model/db_query.py:948 +#: frappe/model/db_query.py:949 msgid "No permission to read {0}" msgstr "Ingen rettigheter til å lese {0}" @@ -17175,11 +17253,11 @@ msgstr "Ingen {0}" msgid "No {0} Found" msgstr "Ingen {0} funnet" -#: frappe/public/js/frappe/web_form/web_form_list.js:233 +#: frappe/public/js/frappe/web_form/web_form_list.js:234 msgid "No {0} found" msgstr "Ingen {0} funnet" -#: frappe/public/js/frappe/list/list_view.js:497 +#: frappe/public/js/frappe/list/list_view.js:499 msgid "No {0} found with matching filters. Clear filters to see all {0}." msgstr "Ingen {0} funnet med samsvarende filtre. Fjern filtrene for å se alle {0}." @@ -17188,7 +17266,7 @@ msgid "No {0} mail" msgstr "Ingen {0} e-post" #: frappe/public/js/form_builder/utils.js:117 -#: frappe/public/js/frappe/form/grid_row.js:256 +#: frappe/public/js/frappe/form/grid_row.js:257 msgctxt "Title of the 'row number' column" msgid "No." msgstr "Nr." @@ -17252,7 +17330,7 @@ msgstr "ikke underordnede av" msgid "Not Equals" msgstr "Ikke lik" -#: frappe/app.py:387 frappe/www/404.html:3 +#: frappe/app.py:390 frappe/www/404.html:3 msgid "Not Found" msgstr "Ikke funnet" @@ -17278,9 +17356,9 @@ msgstr "Ikke koblet til noen oppføring" msgid "Not Nullable" msgstr "Ikke nullbar" -#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26 +#: frappe/__init__.py:550 frappe/app.py:383 frappe/desk/calendar.py:26 #: frappe/public/js/frappe/web_form/webform_script.js:15 -#: frappe/website/doctype/web_form/web_form.py:747 +#: frappe/website/doctype/web_form/web_form.py:774 #: 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 @@ -17299,7 +17377,7 @@ msgstr "Ikke publisert" #: 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/kanban/kanban_view.js:183 #: frappe/public/js/frappe/views/reports/report_view.js:209 #: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39 #: frappe/website/doctype/web_form/templates/web_form.html:85 @@ -17350,7 +17428,7 @@ msgstr "Ikke aktiv" msgid "Not allowed for {0}: {1}" msgstr "Ikke tillatt for {0}: {1}" -#: frappe/email/doctype/notification/notification.py:637 +#: frappe/email/doctype/notification/notification.py:639 msgid "Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings" msgstr "Det er ikke tillatt å legge ved et {0} -dokument. Vennligst aktiver Tillat utskrift for {0} i utskriftsinnstillingene." @@ -17382,12 +17460,12 @@ msgstr "Ikke i utviklermodus" msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType." msgstr "Ikke i utviklermodus! Angi i site_config.json, eller opprett en egendefinert dokumenttype (DocType)." -#: frappe/core/doctype/system_settings/system_settings.py:216 +#: frappe/core/doctype/system_settings/system_settings.py:217 #: 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:760 +#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:787 #: frappe/website/js/website.js:97 msgid "Not permitted" msgstr "Ikke tillatt" @@ -17433,7 +17511,7 @@ msgstr "Merk: For best resultat må bildene ha samme størrelse, og bredden må msgid "Note: Multiple sessions will be allowed in case of mobile device" msgstr "Merk: Flere økter vil være tillatt ved bruk av mobilenhet" -#: frappe/core/doctype/user/user.js:399 +#: frappe/core/doctype/user/user.js:387 msgid "Note: This will be shared with user." msgstr "Merk: Dette vil bli delt med brukeren." @@ -17505,15 +17583,15 @@ msgstr "Dokument med abbonnert varsling" msgid "Notification sent to" msgstr "Varsel sendt til" -#: frappe/email/doctype/notification/notification.py:542 +#: frappe/email/doctype/notification/notification.py:544 msgid "Notification: customer {0} has no Mobile number set" msgstr "Varsel: kunden {0} har ikke angitt noe mobilnummer" -#: frappe/email/doctype/notification/notification.py:528 +#: frappe/email/doctype/notification/notification.py:530 msgid "Notification: document {0} has no {1} number set (field: {2})" msgstr "Varsling: dokumentet {0} har ikke angitt noe {1} -tall (felt: {2})" -#: frappe/email/doctype/notification/notification.py:537 +#: frappe/email/doctype/notification/notification.py:539 msgid "Notification: user {0} has no Mobile number set" msgstr "Varsel: bruker {0} har ikke angitt noe mobilnummer" @@ -17627,7 +17705,7 @@ msgstr "Antall spørringer" msgid "Number of attachment fields are more than {}, limit updated to {}." msgstr "Antall vedleggsfelt er større enn {}, grensen er oppdatert til {}." -#: frappe/core/doctype/system_settings/system_settings.py:171 +#: frappe/core/doctype/system_settings/system_settings.py:172 msgid "Number of backups must be greater than zero." msgstr "Antall sikkerhetskopier må være større enn null." @@ -17899,7 +17977,7 @@ msgstr "Onboarding fullført" #. Description of the 'Is Submittable' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:42 +#: frappe/core/doctype/doctype/doctype_list.js:43 msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended." msgstr "Når de først er registrert, kan ikke dokumenter endres. De kan bare annulleres eller korrigeres (ved hjelp av nytt dokument, som f.eks. kredittnota)." @@ -17988,11 +18066,11 @@ msgstr "Bare rapporter av type rapportbygger kan slettes" msgid "Only reports of type Report Builder can be edited" msgstr "Bare rapporter om type rapportbygger kan redigeres" -#: frappe/custom/doctype/customize_form/customize_form.py:129 +#: frappe/custom/doctype/customize_form/customize_form.py:131 msgid "Only standard DocTypes are allowed to be customized from Customize Form." msgstr "Bare standard dokumenttyper (DocType) kan tilpasses via Tilpass skjema." -#: frappe/model/delete_doc.py:241 +#: frappe/model/delete_doc.py:281 msgid "Only the Administrator can delete a standard DocType." msgstr "Bare administratoren kan slette en standard dokumenttype (DocType)." @@ -18088,7 +18166,7 @@ msgstr "Åpne konsollen" msgid "Open in a new tab" msgstr "Åpne i ny fane" -#: frappe/public/js/frappe/list/list_view.js:1431 +#: frappe/public/js/frappe/list/list_view.js:1433 msgctxt "Description of a list view shortcut" msgid "Open list item" msgstr "Åpne listeelement" @@ -18137,7 +18215,7 @@ msgstr "Åpnet" msgid "Operation" msgstr "Operasjon" -#: frappe/utils/data.py:2146 +#: frappe/utils/data.py:2172 msgid "Operator must be one of {0}" msgstr "Operatøren må være en av {0}" @@ -18183,6 +18261,7 @@ msgstr "Valgfritt: Varselet sendes hvis dette uttrykket er sant" #. 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 (Text) field in DocType 'Web Form List Column' #. 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 @@ -18191,6 +18270,7 @@ msgstr "Valgfritt: Varselet sendes hvis dette uttrykket er sant" #: 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_form_list_column/web_form_list_column.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Options" msgstr "Alternativer" @@ -18236,7 +18316,7 @@ msgstr "Oransje" msgid "Order" msgstr "Rekkefølge" -#: frappe/database/query.py:767 +#: frappe/database/query.py:769 msgid "Order By must be a string" msgstr "Sorter etter må være en streng" @@ -18334,7 +18414,7 @@ msgstr "PATCH" #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/printing/page/print/print.js:84 #: frappe/public/js/frappe/form/templates/print_layout.html:44 -#: frappe/public/js/frappe/views/reports/query_report.js:1804 +#: frappe/public/js/frappe/views/reports/query_report.js:1812 msgid "PDF" msgstr "PDF" @@ -18682,8 +18762,8 @@ msgstr "Passiv" #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/system_settings/system_settings.json -#: frappe/core/doctype/user/user.js:177 frappe/core/doctype/user/user.js:224 -#: frappe/core/doctype/user/user.js:244 +#: frappe/core/doctype/user/user.js:165 frappe/core/doctype/user/user.js:212 +#: frappe/core/doctype/user/user.js:232 #: 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 @@ -18706,7 +18786,7 @@ msgstr "Tilbakestilling av passord" msgid "Password Reset Link Generation Limit" msgstr "Grense for generering av lenke til tilbakestilling av passord" -#: frappe/public/js/frappe/form/grid_row.js:896 +#: frappe/public/js/frappe/form/grid_row.js:897 msgid "Password cannot be filtered" msgstr "Passordet kan ikke filtreres" @@ -18743,7 +18823,7 @@ msgstr "Instruksjoner for tilbakestilling av passord er sendt til {} via e-post" msgid "Password set" msgstr "Passordet er lagret" -#: frappe/auth.py:258 +#: frappe/auth.py:261 msgid "Password size exceeded the maximum allowed size" msgstr "Passordet er for langt" @@ -18755,7 +18835,7 @@ msgstr "Passordet er for langt" msgid "Passwords do not match" msgstr "Passordene samsvarer ikke" -#: frappe/core/doctype/user/user.js:210 +#: frappe/core/doctype/user/user.js:198 msgid "Passwords do not match!" msgstr "Passordene samsvarer ikke" @@ -18906,7 +18986,7 @@ msgstr "Permanent registrert {0}?" msgid "Permanently delete {0}?" msgstr "Slette {0} permanent ?" -#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533 +#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:535 msgid "Permission Error" msgstr "Feil i tillatelse" @@ -18966,8 +19046,8 @@ msgstr "Tillatelsestype" #: 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:143 frappe/core/doctype/user/user.js:152 -#: frappe/core/doctype/user/user.js:161 +#: frappe/core/doctype/user/user.js:131 frappe/core/doctype/user/user.js:140 +#: frappe/core/doctype/user/user.js:149 #: 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 @@ -19037,6 +19117,7 @@ msgstr "Forespørsel om nedlasting av personopplysninger" #. Option for the 'Type' (Select) field in DocType 'Communication' #. Option for the 'Type' (Select) field in DocType 'DocField' #. Label of the phone (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #. 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' @@ -19047,6 +19128,7 @@ msgstr "Forespørsel om nedlasting av personopplysninger" #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.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 @@ -19221,7 +19303,7 @@ msgstr "Ikke endre overskriftene i malen." msgid "Please duplicate this to make changes" msgstr "Dupliser dette for å gjøre endringer" -#: frappe/core/doctype/system_settings/system_settings.py:164 +#: frappe/core/doctype/system_settings/system_settings.py:165 msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login." msgstr "Aktiver minst én sosial påloggingsnøkkel eller LDAP- eller logg inn med e-postlenke før du deaktiverer brukernavn-/passordbasert pålogging." @@ -19331,11 +19413,11 @@ msgstr "Lagre før vedlegging." #: frappe/public/js/frappe/form/sidebar/assign_to.js:52 msgid "Please save the document before assignment" -msgstr "Lagre dokumentet før tildelingen" +msgstr "Lagre dokumentet før tildeling" #: frappe/public/js/frappe/form/sidebar/assign_to.js:72 msgid "Please save the document before removing assignment" -msgstr "Lagre dokumentet før du fjerner tildelingen" +msgstr "Lagre dokumentet før du fjerner tildeling" #: frappe/public/js/frappe/views/reports/report_view.js:1718 msgid "Please save the report first" @@ -19353,11 +19435,11 @@ msgstr "Velg dokumenttype (DocType) først" msgid "Please select Entity Type first" msgstr "Velg enhetstype først" -#: frappe/core/doctype/system_settings/system_settings.py:115 +#: frappe/core/doctype/system_settings/system_settings.py:116 msgid "Please select Minimum Password Score" msgstr "Velg minimum passordpoengsum" -#: frappe/public/js/frappe/views/reports/query_report.js:1185 +#: frappe/public/js/frappe/views/reports/query_report.js:1193 msgid "Please select X and Y fields" msgstr "Velg X- og Y-feltene" @@ -19385,7 +19467,7 @@ msgstr "Velg et gyldig datofilter" msgid "Please select applicable Doctypes" msgstr "Vennligst velg relevante dokumenttyper (DocType)" -#: frappe/model/db_query.py:1157 +#: frappe/model/db_query.py:1163 msgid "Please select atleast 1 column from {0} to sort/group" msgstr "Velg minst én kolonne fra {0} for å sortere/gruppere" @@ -19415,7 +19497,7 @@ msgstr "Angi e-postadresse" msgid "Please set a printer mapping for this print format in the Printer Settings" msgstr "Angi en skrivertilordning for dette utskriftsformatet i skriverinnstillingene" -#: frappe/public/js/frappe/views/reports/query_report.js:1408 +#: frappe/public/js/frappe/views/reports/query_report.js:1416 msgid "Please set filters" msgstr "Angi filtre" @@ -19435,7 +19517,7 @@ msgstr "Angi følgende dokumenter i dette oversiktspanelet som standard først." msgid "Please set the series to be used." msgstr "Angi hvilken serie som skal brukes." -#: frappe/core/doctype/system_settings/system_settings.py:128 +#: frappe/core/doctype/system_settings/system_settings.py:129 msgid "Please setup SMS before setting it as an authentication method, via SMS Settings" msgstr "Konfigurer SMS før du angir det som autentiseringsmetode, via SMS-innstillinger" @@ -19587,7 +19669,7 @@ msgstr "Postnummer" msgid "Posting Timestamp" msgstr "Tidsstempel for innlegg" -#: frappe/database/query.py:1518 +#: frappe/database/query.py:1520 msgid "Potentially dangerous content in string literal: {0}" msgstr "Potensielt farlig innhold i strengliteral: {0}" @@ -19604,7 +19686,7 @@ msgstr "Presisjon" #: frappe/core/doctype/doctype/doctype.py:1670 msgid "Precision ({0}) for {1} cannot be greater than its length ({2})." -msgstr "" +msgstr "Presisjonen ({0}) for {1} kan ikke være større enn lengden ({2})." #: frappe/core/doctype/doctype/doctype.py:1401 msgid "Precision should be between 1 and 6" @@ -19789,13 +19871,13 @@ msgstr "Primærnøkkelen til dokumenttypen (DocType) {0} kan ikke endres da det #: 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:1789 +#: frappe/public/js/frappe/views/reports/query_report.js:1797 #: frappe/public/js/frappe/views/reports/report_view.js:1539 -#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18 +#: frappe/public/js/frappe/views/treeview.js:492 frappe/www/printview.html:18 msgid "Print" msgstr "Skriv ut" -#: frappe/public/js/frappe/list/list_view.js:2164 +#: frappe/public/js/frappe/list/list_view.js:2166 msgctxt "Button in list view actions menu" msgid "Print" msgstr "Skriv ut" @@ -19865,7 +19947,7 @@ msgstr "Hjelp med utskriftsformat" msgid "Print Format Type" msgstr "Type utskriftsformat" -#: frappe/public/js/frappe/views/reports/query_report.js:1578 +#: frappe/public/js/frappe/views/reports/query_report.js:1586 msgid "Print Format not found" msgstr "Utskriftsformat ikke funnet" @@ -20046,11 +20128,11 @@ msgstr "ProTips: Legg til Referanse: {{ reference_doctype }} {{ reference_ msgid "Proceed" msgstr "Fortsett" -#: frappe/public/js/frappe/views/reports/query_report.js:932 +#: frappe/public/js/frappe/views/reports/query_report.js:940 msgid "Proceed Anyway" msgstr "Fortsett uansett" -#: frappe/public/js/frappe/form/controls/table.js:123 +#: frappe/public/js/frappe/form/controls/table.js:104 msgid "Processing" msgstr "Behandler" @@ -20067,11 +20149,21 @@ msgstr "Prof." msgid "Profile" msgstr "Profil" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile Picture" +msgstr "" + +#. Success message of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile updated successfully." +msgstr "" + #: frappe/public/js/frappe/socketio_client.js:82 msgid "Progress" msgstr "Fremgang" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:408 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:422 msgid "Project" msgstr "Prosjekt" @@ -20115,7 +20207,7 @@ msgstr "Egenskapstype" msgid "Protect Attached Files" msgstr "Beskytt vedlagte filer" -#: frappe/core/doctype/file/file.py:523 +#: frappe/core/doctype/file/file.py:526 msgid "Protected File" msgstr "Beskyttet fil" @@ -20621,11 +20713,11 @@ msgstr "Sanntid (SocketIO)" msgid "Reason" msgstr "Årsak" -#: frappe/public/js/frappe/views/reports/query_report.js:886 +#: frappe/public/js/frappe/views/reports/query_report.js:894 msgid "Rebuild" msgstr "Gjenoppbygg" -#: frappe/public/js/frappe/views/treeview.js:509 +#: frappe/public/js/frappe/views/treeview.js:511 msgid "Rebuild Tree" msgstr "Gjenoppbygg trestruktur" @@ -21006,8 +21098,8 @@ msgstr "Henviser" #: 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:1778 -#: frappe/public/js/frappe/views/treeview.js:496 +#: frappe/public/js/frappe/views/reports/query_report.js:1786 +#: frappe/public/js/frappe/views/treeview.js:498 #: frappe/public/js/frappe/widgets/chart_widget.js:291 #: frappe/public/js/frappe/widgets/number_card_widget.js:352 #: frappe/public/js/print_format_builder/Preview.vue:24 @@ -21038,13 +21130,13 @@ msgstr "Oppdater forhåndsvisning av utskrift" msgid "Refresh Token" msgstr "Oppdater token" -#: frappe/public/js/frappe/list/list_view.js:534 +#: frappe/public/js/frappe/list/list_view.js:536 msgctxt "Document count in list view" msgid "Refreshing" msgstr "Oppdaterer" #: frappe/core/doctype/system_settings/system_settings.js:57 -#: frappe/core/doctype/user/user.js:374 +#: frappe/core/doctype/user/user.js:362 #: frappe/desk/page/setup_wizard/setup_wizard.js:211 msgid "Refreshing..." msgstr "Oppdaterer..." @@ -21073,22 +21165,22 @@ msgstr "Reléinnstillinger" #. Group in Package's connections #: frappe/core/doctype/package/package.json msgid "Release" -msgstr "" +msgstr "Utgivelse" #. 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 "Utgivelseskommentarer" #: frappe/core/doctype/communication/communication.js:48 #: frappe/core/doctype/communication/communication.js:159 msgid "Relink" -msgstr "" +msgstr "Koble på nytt" #: frappe/core/doctype/communication/communication.js:138 msgid "Relink Communication" -msgstr "" +msgstr "Koble kommunikasjon på nytt" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' #: frappe/core/doctype/comment/comment.json @@ -21104,15 +21196,15 @@ msgstr "Last inn på nytt" #: frappe/public/js/frappe/form/controls/attach.js:16 msgid "Reload File" -msgstr "" +msgstr "Last inn fil på nytt" #: frappe/public/js/frappe/list/base_list.js:249 msgid "Reload List" -msgstr "" +msgstr "Last inn liste på nytt" #: frappe/public/js/frappe/views/reports/query_report.js:100 msgid "Reload Report" -msgstr "" +msgstr "Last inn rapporten på nytt" #. Label of the remember_last_selected_value (Check) field in DocType #. 'DocField' @@ -21127,28 +21219,28 @@ msgstr "Husk sist valgte verdi" #: frappe/automation/doctype/reminder/reminder.json #: frappe/public/js/frappe/form/reminders.js:33 msgid "Remind At" -msgstr "" +msgstr "Påminn på" #: frappe/public/js/frappe/form/toolbar.js:479 msgid "Remind Me" -msgstr "" +msgstr "Påminn meg" #: frappe/public/js/frappe/form/reminders.js:13 msgid "Remind Me In" -msgstr "" +msgstr "Påminn meg om" #. Name of a DocType #: frappe/automation/doctype/reminder/reminder.json msgid "Reminder" -msgstr "" +msgstr "Påminnelse" #: frappe/automation/doctype/reminder/reminder.py:39 msgid "Reminder cannot be created in past." -msgstr "" +msgstr "Påminnelse kan ikke opprettes tilbake i tid." #: frappe/public/js/frappe/form/reminders.js:96 msgid "Reminder set at {0}" -msgstr "" +msgstr "Påminnelse angitt på {0}" #: frappe/public/js/frappe/form/templates/form_sidebar.html:14 #: frappe/public/js/frappe/ui/filters/edit_filter.html:4 @@ -21158,7 +21250,7 @@ msgstr "Fjern" #: frappe/core/doctype/rq_job/rq_job_list.js:8 msgid "Remove Failed Jobs" -msgstr "" +msgstr "Fjern mislykkede jobber" #: frappe/printing/page/print_format_builder/print_format_builder.js:493 msgid "Remove Field" @@ -21170,11 +21262,11 @@ msgstr "Fjern seksjon" #: frappe/custom/doctype/customize_form/customize_form.js:138 msgid "Remove all customizations?" -msgstr "" +msgstr "Fjerne alle egentilpasninger?" #: frappe/public/js/form_builder/components/Section.vue:286 msgid "Remove all fields in the column" -msgstr "" +msgstr "Fjern alle felter i kolonnen" #: frappe/public/js/form_builder/components/Section.vue:278 #: frappe/public/js/frappe/utils/datatable.js:9 @@ -21184,11 +21276,11 @@ msgstr "Fjern kolonne" #: frappe/public/js/form_builder/components/Field.vue:260 msgid "Remove field" -msgstr "" +msgstr "Fjern felt" #: frappe/public/js/form_builder/components/Section.vue:279 msgid "Remove last column" -msgstr "" +msgstr "Fjern siste kolonne" #: frappe/public/js/print_format_builder/PrintFormatSection.vue:130 msgid "Remove page break" @@ -21201,7 +21293,7 @@ msgstr "Fjernet seksjon" #: frappe/public/js/form_builder/components/Tabs.vue:140 msgid "Remove tab" -msgstr "" +msgstr "Fjern fane" #. Option for the 'Status' (Select) field in DocType 'Permission Log' #: frappe/core/doctype/permission_log/permission_log.json @@ -21215,20 +21307,20 @@ msgstr "Fjernet" #: frappe/public/js/frappe/model/model.js:723 #: frappe/public/js/frappe/views/treeview.js:311 msgid "Rename" -msgstr "" +msgstr "Endre navn" #: frappe/custom/doctype/custom_field/custom_field.js:116 #: frappe/custom/doctype/custom_field/custom_field.js:136 msgid "Rename Fieldname" -msgstr "" +msgstr "Endre feltnavn" #: frappe/public/js/frappe/model/model.js:710 msgid "Rename {0}" -msgstr "" +msgstr "Endre navn på {0}" #: frappe/core/doctype/doctype/doctype.py:699 msgid "Renamed files and replaced code in controllers, please check!" -msgstr "" +msgstr "Endrede navn på filer og erstattet kode i kontrollere, vennligst sjekk!" #: frappe/public/js/print_format_builder/PrintFormatSection.vue:17 msgid "Render labels to the left and values to the right in this section" @@ -21241,7 +21333,7 @@ msgstr "Gjenåpne" #: frappe/public/js/frappe/form/toolbar.js:547 msgid "Repeat" -msgstr "" +msgstr "Gjenta" #. Label of the repeat_header_footer (Check) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json @@ -21429,7 +21521,7 @@ msgstr "Rapportansvarlig" #: 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:1965 +#: frappe/public/js/frappe/views/reports/query_report.js:1973 msgid "Report Name" msgstr "Rapportnavn" @@ -21481,7 +21573,7 @@ msgstr "Rapporten inneholder ingen data. Vennligst endre filtrene eller rapportn msgid "Report has no numeric fields, please change the Report Name" msgstr "Rapporten har ingen numeriske felt. Vennligst endre rapportnavnet." -#: frappe/public/js/frappe/views/reports/query_report.js:1013 +#: frappe/public/js/frappe/views/reports/query_report.js:1021 msgid "Report initiated, click to view status" msgstr "Rapport påbegynt, klikk for å se status" @@ -21501,7 +21593,7 @@ msgstr "Arbeidsflyten ble vellykket oppdatert" msgid "Report was not saved (there were errors)" msgstr "Rapporten ble ikke lagret (det oppstod feil)" -#: frappe/public/js/frappe/views/reports/query_report.js:2003 +#: frappe/public/js/frappe/views/reports/query_report.js:2011 msgid "Report with more than 10 columns looks better in Landscape mode." msgstr "Rapporten med mer enn 10 kolonner ser bedre ut i landskapsmodus." @@ -21537,7 +21629,7 @@ msgstr "Rapporter" msgid "Reports & Masters" msgstr "Rapporter og stamdata" -#: frappe/public/js/frappe/views/reports/query_report.js:929 +#: frappe/public/js/frappe/views/reports/query_report.js:937 msgid "Reports already in Queue" msgstr "Det ligger allerede rapporter i køen" @@ -21556,7 +21648,10 @@ msgid "Request Body" msgstr "Request Body" #. Label of the data (Code) field in DocType 'Integration Request' +#. Title of the request-data Web Form +#. Button label of the request-data Web Form #: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/website/web_form/request_data/request_data.json msgid "Request Data" msgstr "Forespørselsdata" @@ -21608,6 +21703,11 @@ msgstr "Tidsavbrudd for forespørsel" msgid "Request URL" msgstr "Forespørsels-URL" +#. Title of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "Request for Account Deletion" +msgstr "" + #. Label of the requested_numbers (Code) field in DocType 'SMS Log' #: frappe/core/doctype/sms_log/sms_log.json msgid "Requested Numbers" @@ -21663,7 +21763,7 @@ msgstr "Tilbakestill tilpasninger av oversiktspanelet" msgid "Reset Fields" msgstr "Tilbakestill felt" -#: frappe/core/doctype/user/user.js:184 frappe/core/doctype/user/user.js:187 +#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:175 msgid "Reset LDAP Password" msgstr "Tilbakestill LDAP-passord" @@ -21671,11 +21771,11 @@ msgstr "Tilbakestill LDAP-passord" msgid "Reset Layout" msgstr "Tilbakestill oppsett" -#: frappe/core/doctype/user/user.js:235 +#: frappe/core/doctype/user/user.js:223 msgid "Reset OTP Secret" msgstr "Tilbakestill OTP-hemmelighet" -#: frappe/core/doctype/user/user.js:168 frappe/www/login.html:199 +#: frappe/core/doctype/user/user.js:156 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" @@ -21710,7 +21810,7 @@ msgstr "Tilbakestill til standard" msgid "Reset sorting" msgstr "Tilbakestill sortering" -#: frappe/public/js/frappe/form/grid_row.js:433 +#: frappe/public/js/frappe/form/grid_row.js:434 msgid "Reset to default" msgstr "Tilbakestill til standardinnstilling" @@ -21962,7 +22062,7 @@ msgstr "Rolletillatelse for side og rapport" #. 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 +#: frappe/public/js/frappe/roles_editor.js:114 msgid "Role Permissions" msgstr "Rolletillatelser" @@ -21972,7 +22072,7 @@ msgstr "Rolletillatelser" msgid "Role Permissions Manager" msgstr "Ansvarlig for rolletillatelser" -#: frappe/public/js/frappe/list/list_view.js:1933 +#: frappe/public/js/frappe/list/list_view.js:1935 msgctxt "Button in list view menu" msgid "Role Permissions Manager" msgstr "Ansvarlig for rolletillatelser" @@ -22165,11 +22265,11 @@ msgstr "Radverdier endret" msgid "Row {0}" msgstr "Rad {0}" -#: frappe/custom/doctype/customize_form/customize_form.py:353 +#: frappe/custom/doctype/customize_form/customize_form.py:357 msgid "Row {0}: Not allowed to disable Mandatory for standard fields" msgstr "Rad {0}: Å deaktivere \"Obligatorisk\" er sperret for standardfelt" -#: frappe/custom/doctype/customize_form/customize_form.py:342 +#: frappe/custom/doctype/customize_form/customize_form.py:346 msgid "Row {0}: Not allowed to enable Allow on Submit for standard fields" msgstr "Rad {0}: Å aktivere \"Tillat ved registrering\" er sperret for standardfelt" @@ -22188,7 +22288,10 @@ msgid "Rows Removed" msgstr "Rader fjernet" #. Label of the rows_threshold_for_grid_search (Int) field in DocType 'DocType' +#. Label of the rows_threshold_for_grid_search (Int) field in DocType +#. 'Customize Form' #: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Rows Threshold for Grid Search" msgstr "Radterskel for rutenettsøk" @@ -22396,8 +22499,8 @@ msgstr "Lørdag" #: 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:1957 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 +#: frappe/public/js/frappe/views/reports/query_report.js:1965 #: frappe/public/js/frappe/views/reports/report_view.js:1735 #: frappe/public/js/frappe/views/workspace/workspace.js:335 #: frappe/public/js/frappe/widgets/base_widget.js:142 @@ -22420,11 +22523,11 @@ msgstr "Lagre som" msgid "Save Customizations" msgstr "Lagre tilpasninger" -#: frappe/public/js/frappe/views/reports/query_report.js:1960 +#: frappe/public/js/frappe/views/reports/query_report.js:1968 msgid "Save Report" msgstr "Lagre rapport" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:97 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:107 msgid "Save filters" msgstr "Lagre filtre" @@ -22796,7 +22899,7 @@ msgstr "Sikkerhetsinnstillinger" msgid "See all Activity" msgstr "Se all aktivitet" -#: frappe/public/js/frappe/views/reports/query_report.js:855 +#: frappe/public/js/frappe/views/reports/query_report.js:863 msgid "See all past reports." msgstr "Se alle tidligere rapporter." @@ -22860,7 +22963,7 @@ msgstr "Velg" #: 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:497 +#: frappe/public/js/frappe/form/grid_row.js:498 msgid "Select All" msgstr "Velg alle" @@ -22940,7 +23043,7 @@ msgstr "Velg felt" msgid "Select Field..." msgstr "Velg felt..." -#: frappe/public/js/frappe/form/grid_row.js:489 +#: frappe/public/js/frappe/form/grid_row.js:490 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:181 msgid "Select Fields" msgstr "Velg felter" @@ -23060,8 +23163,8 @@ msgid "Select a field to edit its properties." msgstr "Velg et felt for å redigere egenskapene." #: frappe/public/js/frappe/views/treeview.js:358 -msgid "Select a group node first." -msgstr "Velg en gruppenode først." +msgid "Select a group {0} first." +msgstr "" #: frappe/core/doctype/doctype/doctype.py:1956 msgid "Select a valid Sender Field for creating documents from Email" @@ -23097,13 +23200,13 @@ msgstr "Velg minst én oppføring for utskrift" msgid "Select atleast 2 actions" msgstr "Velg minst 2 handlinger" -#: frappe/public/js/frappe/list/list_view.js:1445 +#: frappe/public/js/frappe/list/list_view.js:1447 msgctxt "Description of a list view shortcut" msgid "Select list item" msgstr "Velg listeelement" -#: frappe/public/js/frappe/list/list_view.js:1397 -#: frappe/public/js/frappe/list/list_view.js:1413 +#: frappe/public/js/frappe/list/list_view.js:1399 +#: frappe/public/js/frappe/list/list_view.js:1415 msgctxt "Description of a list view shortcut" msgid "Select multiple list items" msgstr "Velg flere listeelementer" @@ -23425,7 +23528,7 @@ msgstr "Løpenummerserien {0} er allerede brukt i {1}" msgid "Server Action" msgstr "Serverhandling" -#: frappe/app.py:396 frappe/public/js/frappe/request.js:611 +#: frappe/app.py:399 frappe/public/js/frappe/request.js:611 #: frappe/www/error.html:36 frappe/www/error.py:15 msgid "Server Error" msgstr "Serverfeil" @@ -23491,7 +23594,7 @@ msgstr "Øktstandarder" msgid "Session Defaults Saved" msgstr "Standardinnstillinger for økt er lagret" -#: frappe/app.py:373 +#: frappe/app.py:376 msgid "Session Expired" msgstr "Økten er utløpt på grunn av inaktivitet" @@ -23500,7 +23603,7 @@ msgstr "Økten er utløpt på grunn av inaktivitet" msgid "Session Expiry (idle timeout)" msgstr "Utløpstid for økter (ved inaktivitet)" -#: frappe/core/doctype/system_settings/system_settings.py:122 +#: frappe/core/doctype/system_settings/system_settings.py:123 msgid "Session Expiry must be in format {0}" msgstr "Utløpstid for økter må være på format {0}" @@ -23549,7 +23652,7 @@ msgstr "Angi filtere" msgid "Set Filters for {0}" msgstr "Angi filtre for {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:2113 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 msgid "Set Level" msgstr "Angi nivå" @@ -23561,7 +23664,7 @@ msgstr "Angi begrensning" #. DocType 'Document Naming Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Set Naming Series options on your transactions." -msgstr "Angi alternativer for navneserier på transaksjoner" +msgstr "Angi alternativer for nummerserier på transaksjoner." #. Label of the new_password (Password) field in DocType 'User' #: frappe/core/doctype/user/user.json @@ -23603,7 +23706,7 @@ msgstr "Angi antall" msgid "Set Role For" msgstr "Angi rolle for" -#: frappe/core/doctype/user/user.js:136 +#: frappe/core/doctype/user/user.js:124 #: frappe/core/page/permission_manager/permission_manager.js:72 msgid "Set User Permissions" msgstr "Legg til brukerrettigheter" @@ -23654,7 +23757,7 @@ msgstr "Angi ikke-standard presisjon for et flyt- eller valutafelt" #. Description of the 'Precision' (Select) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json msgid "Set non-standard precision for a Float, Currency or Percent field" -msgstr "" +msgstr "Angi ikke-standard presisjon for et desimal-, valuta- eller prosentfelt" #. Label of the set_only_once (Check) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json @@ -23789,7 +23892,7 @@ msgstr "Oppsett > Bruker" msgid "Setup > User Permissions" msgstr "Oppsett > Brukertillatelser" -#: frappe/public/js/frappe/views/reports/query_report.js:1826 +#: frappe/public/js/frappe/views/reports/query_report.js:1834 #: frappe/public/js/frappe/views/reports/report_view.js:1713 msgid "Setup Auto Email" msgstr "Konfigurer automatisk e-post" @@ -23930,6 +24033,12 @@ msgstr "Vis dokument" msgid "Show Error" msgstr "Vis feil" +#. Label of the show_external_link_warning (Select) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Show External Link Warning" +msgstr "" + #: frappe/public/js/frappe/form/layout.js:578 msgid "Show Fieldname (click to copy on clipboard)" msgstr "Vis feltnavn (klikk for å kopiere til utklippstavlen)" @@ -24058,7 +24167,7 @@ msgid "Show Social Login Key as Authorization Server" msgstr "Vis sosial påloggingsnøkkel som autorisasjonsserver" #: frappe/public/js/frappe/list/list_sidebar.html:77 -#: frappe/public/js/frappe/list/list_view.js:1849 +#: frappe/public/js/frappe/list/list_view.js:1851 msgid "Show Tags" msgstr "Vis stikkord" @@ -24265,36 +24374,36 @@ msgstr "Påmelding deaktivert" msgid "Signups have been disabled for this website." msgstr "Påmelding er deaktivert for dette nettstedet." -#. 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 "Enkelt Python-uttrykk, eksempel: Status i (\"Lukket\", \"Avbrutt\")" - #. 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 "Enkelt Python-uttrykk, eksempel: Status i (\"Lukket\", \"Avbrutt\")" +msgid "Simple Python Expression, Example: status == \"Invalid\"" +msgstr "" #. 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 "Enkelt Python-uttrykk, eksempel: status == 'Åpen' og type == 'Feil'" +msgid "Simple Python Expression, Example: status == 'Open' and issue_type == 'Bug'" +msgstr "" + +#. 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 "" #. Label of the simultaneous_sessions (Int) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Simultaneous Sessions" msgstr "Samtidige økter" -#: frappe/custom/doctype/customize_form/customize_form.py:126 +#: frappe/custom/doctype/customize_form/customize_form.py:128 msgid "Single DocTypes cannot be customized." msgstr "Enkeltstående dokumenttyper (DocType) kan ikke tilpasses." #. Description of the 'Is Single' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:67 +#: frappe/core/doctype/doctype/doctype_list.js:68 msgid "Single Types have only one record no tables associated. Values are stored in tabSingles" msgstr "Enkelttyper har bare én post, ingen tilknyttede tabeller. Verdier lagres i tabSingles." @@ -24611,7 +24720,7 @@ msgstr "Spesialtegn er ikke tillatt" #: frappe/model/naming.py:68 msgid "Special Characters except '-', '#', '.', '/', '{{' and '}}' not allowed in naming series {0}" -msgstr "Spesialtegn unntatt '-', '#', '.', '/', '{{' and '}}' er ikke tillatt i navneserier {0}" +msgstr "Spesialtegn unntatt '-', '#', '.', '/', '{{' and '}}' er ikke tillatt i nummerserier {0}" #. Description of the 'Timeout (In Seconds)' (Int) field in DocType 'Report' #: frappe/core/doctype/report/report.json @@ -24630,7 +24739,7 @@ msgid "Splash Image" msgstr "Velkomstbilde" #: frappe/desk/reportview.py:455 -#: frappe/public/js/frappe/web_form/web_form_list.js:175 +#: frappe/public/js/frappe/web_form/web_form_list.js:176 #: frappe/templates/print_formats/standard_macros.html:44 msgid "Sr" msgstr "Nr." @@ -24662,7 +24771,7 @@ msgstr "Stack Trace" msgid "Standard" msgstr "Standard" -#: frappe/model/delete_doc.py:79 +#: frappe/model/delete_doc.py:119 msgid "Standard DocType can not be deleted." msgstr "Standard dokumenttype (DocType) kan ikke slettes." @@ -24814,7 +24923,7 @@ msgstr "Egenskaper for tilstand" #: frappe/contacts/doctype/address/address.json #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "State/Province" -msgstr "Stat/provins" +msgstr "Delstat/provins" #. Label of the document_states_section (Tab Break) field in DocType 'DocType' #. Label of the states (Table) field in DocType 'Customize Form' @@ -24932,7 +25041,7 @@ msgstr "Fremgangsmåte for å bekrefte påloggingen din" #. Label of the sticky (Check) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json -#: frappe/public/js/frappe/form/grid_row.js:454 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Sticky" msgstr "Klebrig" @@ -24962,7 +25071,7 @@ msgstr "Bruk av lagringsplass etter tabell" msgid "Store Attached PDF Document" msgstr "Lagre vedlagt PDF-dokument" -#: frappe/core/doctype/user/user.js:490 +#: frappe/core/doctype/user/user.js:497 msgid "Store the API secret securely. It won't be displayed again." msgstr "Lagre API-hemmeligheten på en sikker måte. Den vil ikke bli vist igjen." @@ -25074,6 +25183,7 @@ msgstr "Kø for innsending" #. 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' +#. Button label of the request-to-delete-data Web Form #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/docshare/docshare.json @@ -25082,10 +25192,11 @@ msgstr "Kø for innsending" #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/quick_entry.js:225 #: frappe/public/js/frappe/ui/capture.js:307 +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json msgid "Submit" msgstr "Registrer" -#: frappe/public/js/frappe/list/list_view.js:2231 +#: frappe/public/js/frappe/list/list_view.js:2233 msgctxt "Button in list view actions menu" msgid "Submit" msgstr "Registrer" @@ -25095,7 +25206,7 @@ msgctxt "Button in web form" msgid "Submit" msgstr "Registrer" -#: frappe/public/js/frappe/ui/dialog.js:63 +#: frappe/public/js/frappe/ui/dialog.js:64 msgctxt "Primary action in dialog" msgid "Submit" msgstr "Registrer" @@ -25143,7 +25254,7 @@ msgstr "Registrer dette dokumentet for å fullføre dette trinnet." msgid "Submit this document to confirm" msgstr "Registrer dette dokumentet for å bekrefte" -#: frappe/public/js/frappe/list/list_view.js:2236 +#: frappe/public/js/frappe/list/list_view.js:2238 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "Registrer {0} dokumenter?" @@ -25193,7 +25304,7 @@ msgstr "Undertittel" #: 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:1171 +#: frappe/public/js/frappe/form/grid.js:1172 #: frappe/public/js/frappe/views/translation_manager.js:21 #: frappe/templates/includes/login/login.js:230 #: frappe/templates/includes/login/login.js:236 @@ -25408,7 +25519,7 @@ msgstr "Synkronisering" msgid "Syncing {0} of {1}" msgstr "Synkronisering {0} av {1}" -#: frappe/utils/data.py:2547 +#: frappe/utils/data.py:2573 msgid "Syntax Error" msgstr "Syntaksfeil" @@ -25719,7 +25830,7 @@ msgstr "Flervalg av tabeller" msgid "Table Trimmed" msgstr "Tabellen er forkortet" -#: frappe/public/js/frappe/form/grid.js:1170 +#: frappe/public/js/frappe/form/grid.js:1171 msgid "Table updated" msgstr "Tabellen er oppdatert" @@ -25936,7 +26047,7 @@ msgstr "Takk" msgid "The Auto Repeat for this document has been disabled." msgstr "Automatisk gjentakelse for dette dokumentet er deaktivert." -#: frappe/public/js/frappe/form/grid.js:1193 +#: frappe/public/js/frappe/form/grid.js:1194 msgid "The CSV format is case sensitive" msgstr "CSV-formatet skiller mellom store og små bokstaver" @@ -26008,7 +26119,7 @@ msgstr "Kommentaren kan ikke være tom" msgid "The contents of this email are strictly confidential. Please do not forward this email to anyone." msgstr "Innholdet i denne e-posten er strengt konfidensielt. Vennligst ikke videresend denne e-posten til noen." -#: frappe/public/js/frappe/list/list_view.js:685 +#: frappe/public/js/frappe/list/list_view.js:687 msgid "The count shown is an estimated count. Click here to see the accurate count." msgstr "Antallet som vises er et estimert antall. Klikk her for å se det nøyaktige antallet." @@ -26044,7 +26155,7 @@ msgstr "Feltnavnet du har angitt i \"Vedlagt til\"-feltet er ugyldig" #: frappe/automation/doctype/assignment_rule/assignment_rule.py:62 msgid "The following Assignment Days have been repeated: {0}" -msgstr "Følgende oppdragsdager er gjentatt: {0}" +msgstr "Følgende oppgavedager er gjentatt: {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'" @@ -26112,7 +26223,7 @@ msgstr "Prosjektnummeret hentet fra Google Cloud Console under
Click here to download:
{0}

This link will expire in {1} hours." -msgstr "" +msgstr "Rapporten du ba om, er generert.

Klikk her for å laste ned:
{0}

Denne lenken utløper om {1} timer." #: frappe/core/doctype/user/user.py:1000 msgid "The reset password link has been expired" @@ -26122,7 +26233,7 @@ msgstr "Lenken for tilbakestilling av passord er utløpt" msgid "The reset password link has either been used before or is invalid" msgstr "Lenken for tilbakestilling av passord er enten brukt før eller ugyldig" -#: frappe/app.py:388 frappe/public/js/frappe/request.js:149 +#: frappe/app.py:391 frappe/public/js/frappe/request.js:149 msgid "The resource you are looking for is not available" msgstr "Ressursen du leter etter er ikke tilgjengelig" @@ -26195,12 +26306,12 @@ msgstr "Det er ingen kommende hendelser for deg." msgid "There are no {0} for this {1}, why don't you start one!" msgstr "Det er ingen {0} for dette {1}. Hvorfor ikke starte en!" -#: frappe/public/js/frappe/views/reports/query_report.js:965 +#: frappe/public/js/frappe/views/reports/query_report.js:973 msgid "There are {0} with the same filters already in the queue:" msgstr "Det finnes allerede {0} med de samme filtrene i køen:" #: frappe/website/doctype/web_form/web_form.js:81 -#: frappe/website/doctype/web_form/web_form.js:317 +#: frappe/website/doctype/web_form/web_form.js:318 msgid "There can be only 9 Page Break fields in a Web Form" msgstr "Det kan bare være 9 sideskiftfelt i et webskjema" @@ -26224,11 +26335,11 @@ msgstr "Det finnes ingen oppgave som heter \"{}\"" msgid "There is nothing new to show you right now." msgstr "Det er ikke noe nytt å vise deg akkurat nå." -#: frappe/core/doctype/file/file.py:640 frappe/utils/file_manager.py:372 +#: frappe/core/doctype/file/file.py:643 frappe/utils/file_manager.py:372 msgid "There is some problem with the file url: {0}" msgstr "Det er et problem med fil-URL-en: {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:962 +#: frappe/public/js/frappe/views/reports/query_report.js:970 msgid "There is {0} with the same filters already in the queue:" msgstr "Det finnes allerede {0} med de samme filtrene i køen:" @@ -26240,7 +26351,7 @@ msgstr "Det må være minst én tillatelsesregel." msgid "There was an error building this page" msgstr "Det oppsto en feil under oppbyggingen av denne siden" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:182 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:196 msgid "There was an error saving filters" msgstr "Det oppsto en feil under lagring av filtre" @@ -26297,7 +26408,7 @@ msgstr "Autentisering via tredjepart" msgid "This Currency is disabled. Enable to use in transactions" msgstr "Denne valutaen er deaktivert. Aktiver for bruk i transaksjoner" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:391 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:405 msgid "This Kanban Board will be private" msgstr "Denne Kanban-tavlen forblir privat" @@ -26307,7 +26418,7 @@ msgstr "Denne måneden" #: frappe/core/doctype/file/file.py:396 msgid "This PDF cannot be uploaded as it contains unsafe content." -msgstr "" +msgstr "Denne PDF-filen kan ikke lastes opp fordi den inneholder usikkert innhold." #: frappe/public/js/frappe/ui/filters/filter.js:670 msgid "This Quarter" @@ -26334,7 +26445,7 @@ msgstr "Denne handlingen er kun tillatt for {}" msgid "This cannot be undone" msgstr "Dette kan ikke angres." -#: frappe/desk/doctype/number_card/number_card.js:480 +#: frappe/desk/doctype/number_card/number_card.js:484 msgctxt "Number Card" msgid "This card is visible only to Administrator and System Managers by default. Set a DocType to share with users who have read access." msgstr "Dette kortet er som standard kun synlig for Administrator og systemadministratorer. Angi en dokumenttype (DocType) for å dele med brukere som har lesetilgang." @@ -26357,7 +26468,7 @@ msgstr "Denne dokumenttypen har ingen foreldreløse felt å trimme" msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes." msgstr "Denne dokumenttypen (DocType) har utestående migreringer. Kjør \"bench migrate\" før du endrer dokumenttype, for å unngå at endringer går tapt." -#: frappe/model/delete_doc.py:113 +#: frappe/model/delete_doc.py:153 msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time." msgstr "Dette dokumentet kan ikke slettes akkurat nå, siden det redigeres av en annen bruker. Vennligst prøv igjen etter en stund." @@ -26402,7 +26513,7 @@ msgstr "Dette feltet vises bare hvis feltnavnet som er definert her, har verdi E "eval:doc.myfield=='My Value'\n" "eval:doc.age>18" -#: frappe/core/doctype/file/file.py:522 +#: frappe/core/doctype/file/file.py:525 msgid "This file is attached to a protected document and cannot be deleted." msgstr "Denne filen er knyttet til et beskyttet dokument og kan ikke slettes." @@ -26437,7 +26548,7 @@ msgstr "Denne geolokaliseringsleverandøren støttes ikke ennå." msgid "This goes above the slideshow." msgstr "Dette går over lysbildefremvisningen." -#: frappe/public/js/frappe/views/reports/query_report.js:2189 +#: frappe/public/js/frappe/views/reports/query_report.js:2197 msgid "This is a background report. Please set the appropriate filters and then generate a new one." msgstr "Dette er en bakgrunnsrapport. Vennligst angi de riktige filtrene og generer deretter en ny." @@ -26487,7 +26598,7 @@ msgstr "Dette kan bli skrevet ut på flere sider" msgid "This month" msgstr "Denne måneden" -#: frappe/public/js/frappe/views/reports/query_report.js:1037 +#: frappe/public/js/frappe/views/reports/query_report.js:1045 msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead." msgstr "Denne rapporten inneholder {0} rader og er for stor til å vises i nettleseren. Du kan bruke {1} i stedet." @@ -26495,7 +26606,7 @@ msgstr "Denne rapporten inneholder {0} rader og er for stor til å vises i nettl msgid "This report was generated on {0}" msgstr "Denne rapporten ble generert den {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:853 +#: frappe/public/js/frappe/views/reports/query_report.js:861 msgid "This report was generated {0}." msgstr "Denne rapporten ble generert {0}." @@ -26637,9 +26748,11 @@ msgstr "Tidsvindu (sekunder)" #. Label of the time_zone (Select) field in DocType 'System Settings' #. Label of the time_zone (Autocomplete) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #. 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/core/web_form/edit_profile/edit_profile.json #: frappe/desk/page/setup_wizard/setup_wizard.js:407 #: frappe/website/doctype/web_page_view/web_page_view.json msgid "Time Zone" @@ -26906,7 +27019,7 @@ msgstr "For å eksportere dette trinnet som JSON, koble det til et onboarding-do msgid "To generate password click {0}" msgstr "For å generere passord, klikk {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:854 +#: frappe/public/js/frappe/views/reports/query_report.js:862 msgid "To get the updated report, click on {0}." msgstr "For å få den oppdaterte rapporten, klikk på {0}." @@ -26981,7 +27094,7 @@ msgstr "Bytt til/fra rutenettvisning" msgid "Toggle Sidebar" msgstr "Vis/skjul sidepanel" -#: frappe/public/js/frappe/list/list_view.js:1964 +#: frappe/public/js/frappe/list/list_view.js:1966 msgctxt "Button in list view menu" msgid "Toggle Sidebar" msgstr "Vis/skjul sidepanel" @@ -27107,7 +27220,7 @@ msgstr "Emne" #: frappe/desk/query_report.py:587 #: frappe/public/js/frappe/views/reports/print_grid.html:45 -#: frappe/public/js/frappe/views/reports/query_report.js:1324 +#: frappe/public/js/frappe/views/reports/query_report.js:1332 #: frappe/public/js/frappe/views/reports/report_view.js:1553 msgid "Total" msgstr "Totalt" @@ -27266,7 +27379,7 @@ msgstr "Overganger" msgid "Translatable" msgstr "Oversettbar" -#: frappe/public/js/frappe/views/reports/query_report.js:2244 +#: frappe/public/js/frappe/views/reports/query_report.js:2252 msgid "Translate Data" msgstr "Oversett data" @@ -27359,7 +27472,7 @@ msgstr "Prøv igjen" #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Try a Naming Series" -msgstr "Prøv en navneserie" +msgstr "Prøv en nummerserie" #: frappe/printing/page/print/print.js:202 #: frappe/printing/page/print/print.js:208 @@ -27625,7 +27738,7 @@ msgstr "Kan ikke sende e-post på grunn av manglende e-postkonto. Konfigurer sta msgid "Unable to update event" msgstr "Kan ikke oppdatere hendelsen" -#: frappe/core/doctype/file/file.py:486 +#: frappe/core/doctype/file/file.py:489 msgid "Unable to write file format for {0}" msgstr "Kan ikke skrive filformat for {0}" @@ -27634,7 +27747,7 @@ msgstr "Kan ikke skrive filformat for {0}" msgid "Unassign Condition" msgstr "Tilordne betingelse" -#: frappe/app.py:396 +#: frappe/app.py:399 msgid "Uncaught Exception" msgstr "Ubehandlet unntak" @@ -27650,7 +27763,7 @@ msgstr "Angre" msgid "Undo last action" msgstr "Angre siste handling" -#: frappe/database/query.py:1495 +#: frappe/database/query.py:1497 msgid "Unescaped quotes in string literal: {0}" msgstr "Ubeskyttede anførselstegn i strengliteral: {0} ✅" @@ -27699,7 +27812,7 @@ msgstr "Ukjent kolonne: {0}" msgid "Unknown Rounding Method: {}" msgstr "Ukjent avrundingsmetode: {}" -#: frappe/auth.py:316 +#: frappe/auth.py:319 msgid "Unknown User" msgstr "Ukjent bruker" @@ -27765,8 +27878,8 @@ msgstr "Avmeldingsparametere" msgid "Unsubscribed" msgstr "Avmeldt" -#: frappe/database/query.py:653 frappe/database/query.py:1387 -#: frappe/database/query.py:1397 +#: frappe/database/query.py:655 frappe/database/query.py:1389 +#: frappe/database/query.py:1399 msgid "Unsupported function or invalid field name: {0}" msgstr "Ikke-støttet funksjon eller ugyldig feltnavn: {0}" @@ -27800,7 +27913,7 @@ msgstr "Kommende hendelser for I dag" #: 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:427 +#: frappe/public/js/frappe/form/grid_row.js:428 msgid "Update" msgstr "Oppdater" @@ -27834,6 +27947,11 @@ msgstr "Oppdater ordre" msgid "Update Password" msgstr "Oppdater passord" +#. Title of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Update Profile" +msgstr "" + #. Label of the update_series (Section Break) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -27915,7 +28033,7 @@ msgstr "Oppdaterer globale innstillinger" #: frappe/core/doctype/document_naming_settings/document_naming_settings.js:59 msgid "Updating naming series options" -msgstr "Oppdaterer alternativer for navneserier" +msgstr "Oppdaterer alternativer for nummerserier" #: frappe/public/js/frappe/form/toolbar.js:136 msgid "Updating related fields..." @@ -28049,11 +28167,7 @@ msgstr "Bruk en annen e-post-ID" msgid "Use if the default settings don't seem to detect your data correctly" msgstr "Bruk hvis standardinnstillingene ikke ser ut til å oppdage dataene dine riktig" -#: frappe/model/db_query.py:436 -msgid "Use of function {0} in field is restricted" -msgstr "Bruk av funksjonen {0} i felt er ikke tillatt" - -#: frappe/model/db_query.py:413 +#: frappe/model/db_query.py:411 msgid "Use of sub-query or function is restricted" msgstr "Bruk av under­spørring eller funksjon er ikke tillatt" @@ -28275,12 +28389,12 @@ msgstr "Brukerrettighet" #. 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:1944 +#: frappe/public/js/frappe/views/reports/query_report.js:1952 #: frappe/public/js/frappe/views/reports/report_view.js:1761 msgid "User Permissions" msgstr "Brukerrettigheter" -#: frappe/public/js/frappe/list/list_view.js:1922 +#: frappe/public/js/frappe/list/list_view.js:1924 msgctxt "Button in list view menu" msgid "User Permissions" msgstr "Brukerrettigheter" @@ -28424,7 +28538,7 @@ msgstr "Bruker {0} utga seg for å være {1}" msgid "User {0} is disabled" msgstr "Bruker {0} er deaktivert" -#: frappe/sessions.py:242 +#: frappe/sessions.py:243 msgid "User {0} is disabled. Please contact your System Manager." msgstr "Bruker {0} er deaktivert. Ta kontakt med din systemansvarlige." @@ -28601,7 +28715,7 @@ msgstr "Verdien kan ikke være negativ for {0}: {1}" msgid "Value for a check field can be either 0 or 1" msgstr "Verdien for et kontrollfelt kan være enten 0 eller 1" -#: frappe/custom/doctype/customize_form/customize_form.py:612 +#: frappe/custom/doctype/customize_form/customize_form.py:616 msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters" msgstr "Verdien for feltet {0} er for lang i {1}. Lengden bør være mindre enn {2} tegn" @@ -28722,7 +28836,7 @@ msgstr "Vis alle" msgid "View Audit Trail" msgstr "Vis revisjonsspor" -#: frappe/core/doctype/user/user.js:156 +#: frappe/core/doctype/user/user.js:144 msgid "View Doctype Permissions" msgstr "Vis DocType-rettigheter" @@ -28734,7 +28848,7 @@ msgstr "Vis fil" msgid "View Full Log" msgstr "Vis hele loggen" -#: frappe/public/js/frappe/views/treeview.js:484 +#: frappe/public/js/frappe/views/treeview.js:486 #: frappe/public/js/frappe/widgets/quick_list_widget.js:258 msgid "View List" msgstr "Vis liste" @@ -28744,7 +28858,7 @@ msgstr "Vis liste" msgid "View Log" msgstr "Vis logg" -#: frappe/core/doctype/user/user.js:147 +#: frappe/core/doctype/user/user.js:135 #: frappe/core/doctype/user_permission/user_permission.js:24 msgid "View Permitted Documents" msgstr "Vis tillatte dokumenter" @@ -28860,6 +28974,7 @@ msgid "Warehouse" msgstr "Varehus" #. Option for the 'Style' (Select) field in DocType 'Workflow State' +#: frappe/public/js/frappe/router.js:613 #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Warning" msgstr "Advarsel" @@ -29094,12 +29209,12 @@ msgstr "Meta-tagg for nettstedet" #: frappe/website/doctype/website_route_meta/website_route_meta.json #: frappe/website/workspace/website/website.json msgid "Website Route Meta" -msgstr "" +msgstr "Sti-metadata for nettsted" #. Name of a DocType #: frappe/website/doctype/website_route_redirect/website_route_redirect.json msgid "Website Route Redirect" -msgstr "" +msgstr "Sti-viderekobling for nettsted" #. Name of a DocType #. Label of a Link in the Website Workspace @@ -29133,24 +29248,24 @@ msgstr "Innstillinger for nettsted" #: frappe/website/doctype/website_sidebar/website_sidebar.json #: frappe/website/workspace/website/website.json msgid "Website Sidebar" -msgstr "" +msgstr "Nettstedets sidefelt" #. Name of a DocType #: frappe/website/doctype/website_sidebar_item/website_sidebar_item.json msgid "Website Sidebar Item" -msgstr "" +msgstr "Element i nettstedets sidefelt" #. 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 "Lysbildefremvisning på nettstedet" #. Name of a DocType #: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json msgid "Website Slideshow Item" -msgstr "" +msgstr "Element i lysbildefremvisning på nettstedet" #. Label of the website_theme (Link) field in DocType 'Website Settings' #. Name of a DocType @@ -29164,18 +29279,18 @@ msgstr "Nettstedstema" #. Name of a DocType #: frappe/website/doctype/website_theme_ignore_app/website_theme_ignore_app.json msgid "Website Theme Ignore App" -msgstr "" +msgstr "Ignorer app for nettstedstema" #. 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 "Bilde­ for nettstedstema" #. 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 "Bilde­lenke for nettstedstema" #. Option for the 'SocketIO Transport Mode' (Select) field in DocType 'System #. Health Report' @@ -29201,7 +29316,7 @@ msgstr "Onsdag" #: frappe/public/js/frappe/views/calendar/calendar.js:276 msgid "Week" -msgstr "" +msgstr "Uke" #. Option for the 'Frequency' (Select) field in DocType 'Auto Email Report' #: frappe/email/doctype/auto_email_report/auto_email_report.json @@ -29239,7 +29354,7 @@ msgstr "Ukeslang" #: frappe/desk/page/setup_wizard/setup_wizard.js:384 msgid "Welcome" -msgstr "" +msgstr "Velkommen" #. Label of the welcome_email_template (Link) field in DocType 'System #. Settings' @@ -29247,12 +29362,12 @@ msgstr "" #: frappe/core/doctype/system_settings/system_settings.json #: frappe/email/doctype/email_group/email_group.json msgid "Welcome Email Template" -msgstr "" +msgstr "Mal for velkomst-e-post" #. Label of the welcome_url (Data) field in DocType 'Email Group' #: frappe/email/doctype/email_group/email_group.json msgid "Welcome URL" -msgstr "" +msgstr "Velkomst-URL" #. Name of a Workspace #: frappe/core/workspace/welcome_workspace/welcome_workspace.json @@ -29261,11 +29376,11 @@ msgstr "Velkomst og introduksjon" #: frappe/core/doctype/user/user.py:416 msgid "Welcome email sent" -msgstr "" +msgstr "Velkomst-e-post sendt" #: frappe/core/doctype/user/user.py:477 msgid "Welcome to {0}" -msgstr "" +msgstr "Velkommen til {0}" #: frappe/public/js/frappe/ui/notifications/notifications.js:62 msgid "What's New" @@ -29332,7 +29447,7 @@ msgstr "Vil legge til «%» før og etter spørringen" #: frappe/desk/page/setup_wizard/setup_wizard.js:485 msgid "Will be your login ID" -msgstr "" +msgstr "Vil være din innloggings-ID" #: frappe/printing/page/print_format_builder/print_format_builder.js:424 msgid "Will only be shown if section headings are enabled" @@ -29342,7 +29457,7 @@ msgstr "Vil bare vises hvis seksjonsoverskrifter er aktivert" #. 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 "Kjører planlagte jobber bare én gang om dagen for inaktive nettsteder. Sett den til 0 for å unngå automatisk deaktivering av planleggeren." #: frappe/public/js/frappe/form/print_utils.js:45 msgid "With Letter head" @@ -29357,7 +29472,7 @@ msgstr "Info om bakgrunnsprosesser" #. Label of the worker_name (Data) field in DocType 'RQ Worker' #: frappe/core/doctype/rq_worker/rq_worker.json msgid "Worker Name" -msgstr "" +msgstr "Prosessnavn" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' #. Group in DocType's connections @@ -29373,30 +29488,30 @@ msgstr "Arbeidsflyt" #: frappe/workflow/doctype/workflow_action/workflow_action.json #: frappe/workflow/doctype/workflow_action/workflow_action.py:444 msgid "Workflow Action" -msgstr "" +msgstr "Arbeidsflythandling" #. Name of a DocType #. Description of a DocType #: frappe/workflow/doctype/workflow_action_master/workflow_action_master.json msgid "Workflow Action Master" -msgstr "" +msgstr "Mal for arbeidsflythandling" #. 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 "Navn på arbeidsflythandling" #. Name of a DocType #: frappe/workflow/doctype/workflow_action_permitted_role/workflow_action_permitted_role.json msgid "Workflow Action Permitted Role" -msgstr "" +msgstr "Tillatt rolle for arbeidsflythandling" #. 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 "Arbeidsflythandlingen er ikke opprettet for valgfrie tilstander" +msgstr "Det opprettes ikke arbeidsflythandling for valgfrie tilstander" #: frappe/public/js/workflow_builder/store.js:129 #: frappe/workflow/doctype/workflow/workflow.js:25 @@ -29420,7 +29535,7 @@ msgstr "Med Arbeidsflytbygger kan du lage arbeidsflyter visuelt. Du kan dra og s #. Label of the workflow_data (JSON) field in DocType 'Workflow' #: frappe/workflow/doctype/workflow/workflow.json msgid "Workflow Data" -msgstr "" +msgstr "Arbeidsflytdata" #: frappe/public/js/workflow_builder/components/Properties.vue:44 msgid "Workflow Details" @@ -29429,40 +29544,40 @@ msgstr "Arbeidsflytdetaljer" #. Name of a DocType #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json msgid "Workflow Document State" -msgstr "" +msgstr "Tilstand for arbeidsflytdokument" #. Label of the workflow_name (Data) field in DocType 'Workflow' #: frappe/workflow/doctype/workflow/workflow.json msgid "Workflow Name" -msgstr "" +msgstr "Navn på arbeidsflyt" #. 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 "Arbeidsflyttilstand" #. Label of the workflow_state_field (Data) field in DocType 'Workflow' #: frappe/workflow/doctype/workflow/workflow.json msgid "Workflow State Field" -msgstr "" +msgstr "Felt for arbeidsflyttilstand" #: frappe/model/workflow.py:64 msgid "Workflow State not set" -msgstr "" +msgstr "Arbeidsflyttilstand ikke angitt" #: frappe/model/workflow.py:260 frappe/model/workflow.py:268 msgid "Workflow State transition not allowed from {0} to {1}" -msgstr "" +msgstr "Overgang mellom arbeidsflyttilstander er ikke tillatt fra {0} til {1}" #: frappe/workflow/doctype/workflow/workflow.js:140 msgid "Workflow States Don't Exist" -msgstr "" +msgstr "Arbeidsflyttilstander finnes ikke" #: frappe/model/workflow.py:384 msgid "Workflow Status" -msgstr "" +msgstr "Arbeidsflyttilstand" #. Option for the 'Script Type' (Select) field in DocType 'Server Script' #: frappe/core/doctype/server_script/server_script.json @@ -29472,26 +29587,26 @@ msgstr "Oppgaver i arbeidsflyt" #. Name of a DocType #: frappe/workflow/doctype/workflow_transition/workflow_transition.json msgid "Workflow Transition" -msgstr "" +msgstr "Arbeidsflytovergang" #. Name of a DocType #: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json msgid "Workflow Transition Task" -msgstr "" +msgstr "Oppgave ved arbeidsflytovergang" #. Name of a DocType #: frappe/workflow/doctype/workflow_transition_tasks/workflow_transition_tasks.json msgid "Workflow Transition Tasks" -msgstr "" +msgstr "Oppgaver ved arbeidsflytovergang" #. Description of a DocType #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Workflow state represents the current state of a document." -msgstr "" +msgstr "Arbeidsflyttilstand representerer den nåværende tilstanden til et dokument." #: frappe/public/js/workflow_builder/store.js:83 msgid "Workflow updated successfully" -msgstr "Arbeidsflyten ble vellykket oppdatert" +msgstr "Arbeidsflyten ble oppdatert" #. Label of the workspace_section (Section Break) field in DocType 'User' #. Label of a Link in the Build Workspace @@ -29505,24 +29620,24 @@ msgstr "Arbeidsflyten ble vellykket oppdatert" msgid "Workspace" msgstr "Arbeidsområde" -#: frappe/public/js/frappe/router.js:175 +#: frappe/public/js/frappe/router.js:180 msgid "Workspace {0} does not exist" -msgstr "" +msgstr "Arbeidsområdet {0} finnes ikke" #. Name of a DocType #: frappe/desk/doctype/workspace_chart/workspace_chart.json msgid "Workspace Chart" -msgstr "" +msgstr "Diagram for arbeidsområde" #. Name of a DocType #: frappe/desk/doctype/workspace_custom_block/workspace_custom_block.json msgid "Workspace Custom Block" -msgstr "" +msgstr "Tilpasset blokk for arbeidsområde" #. Name of a DocType #: frappe/desk/doctype/workspace_link/workspace_link.json msgid "Workspace Link" -msgstr "" +msgstr "Lenke for arbeidsområde" #. Name of a role #: frappe/desk/doctype/custom_html_block/custom_html_block.json @@ -29577,15 +29692,15 @@ msgstr "Arbeidsområder" #: frappe/public/js/frappe/form/footer/form_timeline.js:757 msgid "Would you like to publish this comment? This means it will become visible to website/portal users." -msgstr "" +msgstr "Ønsker du å publisere denne kommentaren? Dette betyr at den blir synlig for brukere av nettstedet/portalen." #: frappe/public/js/frappe/form/footer/form_timeline.js:761 msgid "Would you like to unpublish this comment? This means it will no longer be visible to website/portal users." -msgstr "" +msgstr "Ønsker du å avpublisere denne kommentaren? Dette betyr at den ikke lenger vil være synlig for brukere av nettstedet/portalen." #: frappe/desk/page/setup_wizard/setup_wizard.py:41 msgid "Wrapping up" -msgstr "" +msgstr "Oppsummerer" #. Label of the write (Check) field in DocType 'Custom DocPerm' #. Label of the write (Check) field in DocType 'DocPerm' @@ -29596,15 +29711,15 @@ msgstr "" #: frappe/core/doctype/docshare/docshare.json #: frappe/core/doctype/user_document_type/user_document_type.json msgid "Write" -msgstr "" +msgstr "Skrive" #: frappe/model/base_document.py:1011 msgid "Wrong Fetch From value" -msgstr "" +msgstr "Feil «Hent fra»-verdi" #: frappe/public/js/frappe/views/reports/report_view.js:495 msgid "X Axis Field" -msgstr "" +msgstr "Felt i X-akse" #. Label of the x_field (Select) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json @@ -29623,11 +29738,11 @@ msgstr "Y-akse" #: frappe/public/js/frappe/views/reports/report_view.js:502 msgid "Y Axis Fields" -msgstr "" +msgstr "Felt for Y-akse" #. 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:1225 +#: frappe/public/js/frappe/views/reports/query_report.js:1233 msgid "Y Field" msgstr "Y-felt" @@ -29689,7 +29804,7 @@ msgstr "Gul" #: frappe/public/js/form_builder/utils.js:336 #: frappe/public/js/frappe/form/controls/link.js:498 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1665 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 #: frappe/website/doctype/help_article/templates/help_article.html:25 msgid "Yes" msgstr "Ja" @@ -29711,27 +29826,31 @@ msgstr "I går" #: 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 "Du" #: frappe/public/js/frappe/form/footer/form_timeline.js:463 msgid "You Liked" -msgstr "" +msgstr "Du likte" #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:266 msgid "You added 1 row to {0}" -msgstr "" +msgstr "Du la til 1 rad til {0}" #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:244 msgid "You added {0} rows to {1}" +msgstr "Du la til {0} rader til {1}" + +#: frappe/public/js/frappe/router.js:642 +msgid "You are about to open an external link. To confirm, click the link again." msgstr "" #: frappe/public/js/frappe/dom.js:438 msgid "You are connected to internet." -msgstr "" +msgstr "Du er koblet til Internett." #: frappe/public/js/frappe/ui/toolbar/navbar.html:20 msgid "You are impersonating as another user." -msgstr "" +msgstr "Du utgir deg for å være en annen bruker." #: frappe/integrations/frappe_providers/frappecloud_billing.py:28 msgid "You are not allowed to access this resource" @@ -29739,27 +29858,27 @@ msgstr "Du har ikke tilgang til denne ressursen" #: 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 "Du har ikke tilgang til denne {0} oppføringen fordi den er lenket til {1} '{2}' i felt {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 "Du har ikke tilgang til denne {0} -posten fordi den er knyttet til {1} '{2}' i rad {3}, felt {4}" #: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:68 msgid "You are not allowed to create columns" -msgstr "" +msgstr "Du har ikke rettigheter til å opprette kolonner" #: frappe/core/doctype/report/report.py:97 msgid "You are not allowed to delete Standard Report" -msgstr "" +msgstr "Du har ikke rettigheter til å slette standardrapporten" #: frappe/website/doctype/website_theme/website_theme.py:73 msgid "You are not allowed to delete a standard Website Theme" -msgstr "" +msgstr "Du har ikke rettigheter til å slette et standard nettstedstema" #: frappe/core/doctype/report/report.py:391 msgid "You are not allowed to edit the report." -msgstr "" +msgstr "Du har ikke rettigheter til å redigere rapporten." #: frappe/core/doctype/data_import/exporter.py:121 #: frappe/core/doctype/data_import/exporter.py:125 @@ -29768,41 +29887,41 @@ msgstr "" msgid "You are not allowed to export {} doctype" msgstr "Du har ikke rettigheter til å eksportere {} dokumenttype (DocType)" -#: frappe/public/js/frappe/views/treeview.js:448 +#: frappe/public/js/frappe/views/treeview.js:450 msgid "You are not allowed to print this report" -msgstr "Du har ikke tillatelse til å skrive ut denne rapporten" +msgstr "Du har ikke rettigheter til å skrive ut denne rapporten" #: frappe/public/js/frappe/views/communication.js:787 msgid "You are not allowed to send emails related to this document" -msgstr "" +msgstr "Du har ikke rettigheter til å sende e-poster om dette dokumentet" -#: frappe/website/doctype/web_form/web_form.py:605 +#: frappe/website/doctype/web_form/web_form.py:632 msgid "You are not allowed to update this Web Form Document" -msgstr "" +msgstr "Du har ikke rettigheter til å oppdatere dette nettskjemadokumentet" #: frappe/public/js/frappe/request.js:37 msgid "You are not connected to Internet. Retry after sometime." -msgstr "" +msgstr "Du er ikke koblet til Internett. Prøv på nytt etter en stund." #: frappe/public/js/frappe/web_form/webform_script.js:22 msgid "You are not permitted to access this page without login." -msgstr "" +msgstr "Du har ikke tilgang til denne siden uten å være logget inn." #: frappe/www/app.py:27 msgid "You are not permitted to access this page." -msgstr "" +msgstr "Ditt rettighetsnivå hindrer visning av denne siden." #: frappe/__init__.py:465 msgid "You are not permitted to access this resource. Login to access" -msgstr "" +msgstr "Du må være innlogget for å få tilgang til denne ressursen." #: 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 "Du følger nå dette dokumentet. Du vil motta daglige oppdateringer via e-post. Du kan endre dette i brukerinnstillingene." #: frappe/core/doctype/installed_applications/installed_applications.py:117 msgid "You are only allowed to update order, do not remove or add apps." -msgstr "" +msgstr "Du kan bare endre rekkefølgen på appene, ikke legge til eller fjerne dem." #: 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)." @@ -29811,7 +29930,7 @@ msgstr "Du velger Synkroniseringsalternativet ALLE. Dette vil synkronisere alle #: frappe/public/js/frappe/form/footer/form_timeline.js:414 msgctxt "Form timeline" msgid "You attached {0}" -msgstr "" +msgstr "Du la ved {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." @@ -29831,11 +29950,11 @@ msgstr "Du kan også kopiere og lime inn dette" #: frappe/templates/emails/delete_data_confirmation.html:11 msgid "You can also copy-paste this {0} to your browser" -msgstr "" +msgstr "Du kan også kopiere og lime inn denne {0} i nettleseren din" #: frappe/templates/emails/user_invitation_expired.html:8 msgid "You can ask your team to resend the invitation if you'd still like to join." -msgstr "" +msgstr "Du kan be teamet ditt om å sende invitasjonen på nytt hvis du fortsatt ønsker å bli med." #: frappe/core/page/permission_manager/permission_manager_help.html:17 msgid "You can change Submitted documents by cancelling them and then, amending them." @@ -29849,21 +29968,21 @@ msgstr "Du kan endre retningslinjene for oppbevaring fra {0}." msgid "You can continue with the onboarding after exploring this page" msgstr "Du kan fortsette med onboarding-prosessen etter å ha utforsket denne siden" -#: frappe/model/delete_doc.py:137 +#: frappe/model/delete_doc.py:177 msgid "You can disable this {0} instead of deleting it." -msgstr "" +msgstr "Du kan deaktivere denne {0} i stedet for å slette den." -#: frappe/core/doctype/file/file.py:758 +#: frappe/core/doctype/file/file.py:761 msgid "You can increase the limit from System Settings." -msgstr "" +msgstr "Du kan øke grensen fra systeminnstillingene." #: frappe/utils/synchronization.py:48 msgid "You can manually remove the lock if you think it's safe: {}" -msgstr "" +msgstr "Du kan manuelt fjerne låsen hvis du tror det er trygt: {}" #: frappe/public/js/frappe/form/controls/markdown_editor.js:75 msgid "You can only insert images in Markdown fields" -msgstr "" +msgstr "Du kan bare sette inn bilder i felter som støtter Markdown" #: frappe/public/js/frappe/list/bulk_operations.js:42 msgid "You can only print upto {0} documents at a time" @@ -29889,7 +30008,7 @@ msgstr "Du kan velge ett av følgende," #. '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 "Du kan angi en høy verdi her hvis flere brukere skal logge seg på fra samme nettverk." #: frappe/desk/query_report.py:382 msgid "You can try changing the filters of your report." @@ -29903,13 +30022,13 @@ msgstr "Du kan bruke Tilpass skjema til å angi nivåer på felt." msgid "You can use wildcard %" msgstr "Du kan bruke jokertegn %." -#: frappe/custom/doctype/customize_form/customize_form.py:390 -msgid "You can't set 'Options' for field {0}" -msgstr "" - #: frappe/custom/doctype/customize_form/customize_form.py:394 +msgid "You can't set 'Options' for field {0}" +msgstr "Du kan ikke angi «Alternativer» for felt {0}" + +#: frappe/custom/doctype/customize_form/customize_form.py:398 msgid "You can't set 'Translatable' for field {0}" -msgstr "" +msgstr "Du kan ikke angi «Oversettbar» for felt {0}" #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:74 msgctxt "Form timeline" @@ -29925,40 +30044,40 @@ msgstr "Du avbrøt dokumentet {1}" msgid "You cannot create a dashboard chart from single DocTypes" msgstr "Du kan ikke opprette et oversiktspanel-diagram fra enkeltstående dokumenttyper (DocType)" -#: frappe/custom/doctype/customize_form/customize_form.py:386 +#: frappe/custom/doctype/customize_form/customize_form.py:390 msgid "You cannot unset 'Read Only' for field {0}" -msgstr "" +msgstr "Du kan ikke oppheve \"Skrivebeskyttet\" for felt {0}" #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:125 msgid "You changed the value of {0}" -msgstr "" +msgstr "Du endret verdien for {0}" #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:114 msgid "You changed the value of {0} {1}" -msgstr "" +msgstr "Du endret verdien for {0} {1}" #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:191 msgid "You changed the values for {0}" -msgstr "" +msgstr "Du endret verdiene for {0}" #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:180 msgid "You changed the values for {0} {1}" -msgstr "" +msgstr "Du endret verdiene for {0} {1}" #: frappe/public/js/frappe/form/footer/form_timeline.js:443 msgctxt "Form timeline" msgid "You changed {0} to {1}" -msgstr "" +msgstr "Du endret {0} til {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 "Du opprettet dette" #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:340 msgctxt "Form timeline" msgid "You created this document {0}" -msgstr "" +msgstr "Du opprettet dette dokumentet {0}" #: frappe/client.py:417 msgid "You do not have Read or Select Permissions for {}" @@ -29968,17 +30087,17 @@ msgstr "Du har ikke lese- eller valgtillatelser for {}" msgid "You do not have enough permissions to access this resource. Please contact your manager to get access." msgstr "Du har ikke tilstrekkelige rettigheter til å få tilgang til denne ressursen. Ta kontakt med admin for å få tilgang." -#: frappe/app.py:381 +#: frappe/app.py:384 msgid "You do not have enough permissions to complete the action" -msgstr "" +msgstr "Du har ikke tilstrekkelige rettigheter til å fullføre handlingen" -#: frappe/database/query.py:529 +#: frappe/database/query.py:531 msgid "You do not have permission to access field: {0}" -msgstr "" +msgstr "Du har ikke rettigheter for tilgang til feltet: {0}" #: frappe/desk/query_report.py:923 msgid "You do not have permission to access {0}: {1}." -msgstr "" +msgstr "Du har ikke rettigheter for tilgang til {0}: {1}." #: frappe/public/js/frappe/form/form.js:960 msgid "You do not have permissions to cancel all linked documents." @@ -29986,23 +30105,23 @@ msgstr "Du har ikke rettigheter til å avbryte alle sammenlenkede dokumenter." #: frappe/desk/query_report.py:43 msgid "You don't have access to Report: {0}" -msgstr "" +msgstr "Du har ikke tilgang til rapport: {0}" -#: frappe/website/doctype/web_form/web_form.py:808 +#: frappe/website/doctype/web_form/web_form.py:835 msgid "You don't have permission to access the {0} DocType." msgstr "Du har ikke rettigheter for tilgang til {} dokumenttype (DocType)." #: frappe/utils/response.py:289 frappe/utils/response.py:293 msgid "You don't have permission to access this file" -msgstr "" +msgstr "Du har ikke rettigheter for tilgang til denne filen" #: frappe/desk/query_report.py:49 msgid "You don't have permission to get a report on: {0}" -msgstr "" +msgstr "Du har ikke rettigheter til å få en rapport på: {0}" #: frappe/website/doctype/web_form/web_form.py:175 msgid "You don't have the permissions to access this document" -msgstr "" +msgstr "Du har ikke rettigheter til å få tilgang til dette dokumentet" #: frappe/templates/emails/new_message.html:1 msgid "You have a new message from:" @@ -30010,19 +30129,19 @@ msgstr "Du har en ny melding fra:" #: frappe/handler.py:119 msgid "You have been successfully logged out" -msgstr "" +msgstr "Du er blitt logget ut" -#: frappe/custom/doctype/customize_form/customize_form.py:245 +#: frappe/custom/doctype/customize_form/customize_form.py:247 msgid "You have hit the row size limit on database table: {0}" -msgstr "" +msgstr "Du har nådd grensen for radstørrelse i databasetabellen: {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 "Du har ikke angitt noen verdi. Feltet vil bli satt til tomt." #: frappe/twofactor.py:437 msgid "You have to enable Two Factor Auth from System Settings." -msgstr "" +msgstr "Du må aktivere tofaktorautentisering fra systeminnstillinger." #: frappe/public/js/frappe/model/create_new.js:328 msgid "You have unsaved changes in this form. Please save before you continue." @@ -30030,44 +30149,44 @@ msgstr "Du har ulagrede endringer i dette skjemaet. Vennligst lagre før du fort #: frappe/public/js/frappe/ui/toolbar/navbar.html:50 msgid "You have unseen notifications" -msgstr "" +msgstr "Du har usette varsler" #: frappe/core/doctype/log_settings/log_settings.py:125 msgid "You have unseen {0}" -msgstr "" +msgstr "Du har usett {0}" #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:192 msgid "You haven't added any Dashboard Charts or Number Cards yet." msgstr "Du har ikke lagt til noen oversiktspanel-diagrammer eller tallkort ennå." -#: frappe/public/js/frappe/list/list_view.js:501 +#: frappe/public/js/frappe/list/list_view.js:503 msgid "You haven't created a {0} yet" -msgstr "" +msgstr "Du har ikke opprettet en {0} ennå" #: frappe/rate_limiter.py:166 msgid "You hit the rate limit because of too many requests. Please try after sometime." -msgstr "" +msgstr "Du har nådd hastighetsgrensen på grunn av for mange forespørsler. Prøv igjen etter en stund." #: 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 "Du redigerte dette sist" #: frappe/public/js/frappe/widgets/widget_dialog.js:352 msgid "You must add atleast one link." -msgstr "" +msgstr "Du må legge til minst én lenke." -#: frappe/website/doctype/web_form/web_form.py:804 +#: frappe/website/doctype/web_form/web_form.py:831 msgid "You must be logged in to use this form." -msgstr "" +msgstr "Du må være innlogget for å bruke dette skjemaet." -#: frappe/website/doctype/web_form/web_form.py:645 +#: frappe/website/doctype/web_form/web_form.py:672 msgid "You must login to submit this form" msgstr "Du må logge inn for å kunne registrere dette skjemaet" #: frappe/model/document.py:358 msgid "You need the '{0}' permission on {1} {2} to perform this action." -msgstr "" +msgstr "Du trenger tillatelsen '{0}' på {1} {2} for å utføre denne handlingen." #: frappe/desk/doctype/workspace/workspace.py:127 msgid "You need to be Workspace Manager to delete a public workspace." @@ -30079,11 +30198,11 @@ msgstr "Du må være Administrator for arbeidsområder for å redigere dette dok #: frappe/www/attribution.py:16 msgid "You need to be a system user to access this page." -msgstr "" +msgstr "Du må være systembruker for å få adgang til denne siden." #: 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 "Du må være i utviklermodus for å redigere et standard webskjema" #: frappe/utils/response.py:278 msgid "You need to be logged in and have System Manager Role to be able to access backups." @@ -30091,23 +30210,23 @@ msgstr "Du må være logget inn og ha rollen som systemansvarlig for å få tilg #: 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 "Du må være innlogget for å få tilgang til denne siden" #: frappe/website/doctype/web_form/web_form.py:164 msgid "You need to be logged in to access this {0}." -msgstr "" +msgstr "Du må være innlogget for å få tilgang til denne {0}." #: frappe/public/js/frappe/widgets/links_widget.js:63 msgid "You need to create these first:" -msgstr "" +msgstr "Du må opprette disse først:" #: frappe/www/login.html:76 msgid "You need to enable JavaScript for your app to work." -msgstr "" +msgstr "Du må aktivere JavaScript for at appen skal fungere." #: frappe/core/doctype/docshare/docshare.py:62 msgid "You need to have \"Share\" permission" -msgstr "" +msgstr "Du må ha tillatelse til å dele" #: frappe/utils/print_format.py:268 msgid "You need to install pycups to use this feature!" @@ -30119,32 +30238,32 @@ msgstr "Du må først velge indeksene du vil legge til." #: frappe/email/doctype/email_account/email_account.py:160 msgid "You need to set one IMAP folder for {0}" -msgstr "" +msgstr "Du må angi én IMAP-mappe for {0}" #: frappe/model/rename_doc.py:391 msgid "You need write permission on {0} {1} to merge" -msgstr "" +msgstr "Du trenger skriverettighet på {0} {1} for å slå sammen" #: frappe/model/rename_doc.py:386 msgid "You need write permission on {0} {1} to rename" -msgstr "" +msgstr "Du trenger skriverettighet på {0} {1} for å gi nytt navn til" #: frappe/client.py:449 msgid "You need {0} permission to fetch values from {1} {2}" -msgstr "" +msgstr "Du må ha rettighet fra {0} for å hente verdier fra {1} {2}" #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:311 msgid "You removed 1 row from {0}" -msgstr "" +msgstr "Du fjernet 1 rad fra {0}" #: frappe/public/js/frappe/form/footer/form_timeline.js:419 msgctxt "Form timeline" msgid "You removed attachment {0}" -msgstr "" +msgstr "Du fjernet vedlegg {0}" #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:289 msgid "You removed {0} rows from {1}" -msgstr "" +msgstr "Du fjernet {0} rader fra {1}" #: frappe/public/js/frappe/widgets/onboarding_widget.js:520 msgid "You seem good to go!" @@ -30170,19 +30289,23 @@ msgstr "Du registrerte dette dokumentet {0}" #: frappe/public/js/frappe/form/sidebar/document_follow.js:144 msgid "You unfollowed this document" -msgstr "" +msgstr "Du sluttet å følge dette dokumentet" #: frappe/public/js/frappe/form/footer/form_timeline.js:183 msgid "You viewed this" +msgstr "Du så dette" + +#: frappe/public/js/frappe/router.js:653 +msgid "You will be redirected to:" msgstr "" #: frappe/core/doctype/user_invitation/user_invitation.py:113 msgid "You've been invited to join {0}" -msgstr "" +msgstr "Du er blitt invitert til å bli med på {0}" #: frappe/templates/emails/user_invitation.html:5 msgid "You've been invited to join {0}." -msgstr "" +msgstr "Du er blitt invitert til å bli med på {0}" #: frappe/public/js/frappe/desk.js:547 msgid "You've logged in as another user from another tab. Refresh this page to continue using system." @@ -30190,7 +30313,7 @@ msgstr "Du har logget inn som en annen bruker fra en annen fane. Oppdater denne #: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "YouTube" -msgstr "" +msgstr "YouTube" #: 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." @@ -30198,15 +30321,15 @@ msgstr "CSV-filen din genereres og vil vises i Vedlegg-delen når den er klar. I #: frappe/desk/page/setup_wizard/setup_wizard.js:397 msgid "Your Country" -msgstr "" +msgstr "Ditt land" #: frappe/desk/page/setup_wizard/setup_wizard.js:389 msgid "Your Language" -msgstr "" +msgstr "Ditt språk" #: frappe/templates/includes/comments/comments.html:21 msgid "Your Name" -msgstr "" +msgstr "Ditt navn" #: frappe/public/js/frappe/list/bulk_operations.js:132 msgid "Your PDF is ready for download" @@ -30221,21 +30344,21 @@ msgstr "Dine snarveier" msgid "Your account has been deleted" msgstr "Din konto er blitt slettet" -#: frappe/auth.py:514 +#: frappe/auth.py:517 msgid "Your account has been locked and will resume after {0} seconds" -msgstr "" +msgstr "Kontoen din er låst og vil bli gjenopptatt etter {0} sekunder" #: frappe/desk/form/assign_to.py:279 msgid "Your assignment on {0} {1} has been removed by {2}" -msgstr "" +msgstr "Oppgaven din på {0} {1} er fjernet av {2}" #: frappe/core/doctype/file/file.js:74 msgid "Your browser does not support the audio element." -msgstr "" +msgstr "Nettleseren din støtter ikke audio-elementet." #: frappe/core/doctype/file/file.js:56 msgid "Your browser does not support the video element." -msgstr "" +msgstr "Nettleseren din støtter ikke video-elementet." #: frappe/templates/pages/integrations/gcalendar-success.html:11 msgid "Your connection request to Google Calendar was successfully accepted" @@ -30243,15 +30366,15 @@ msgstr "Forespørselen din om tilkobling til Google Kalender ble godkjent" #: frappe/www/contact.html:35 msgid "Your email address" -msgstr "" +msgstr "Din e-postadresse " #: frappe/desk/utils.py:105 msgid "Your exported report: {0}" -msgstr "" +msgstr "Din eksporterte rapport: {0}" #: frappe/public/js/frappe/web_form/web_form.js:452 msgid "Your form has been successfully updated" -msgstr "" +msgstr "Skjemaet ditt er blitt oppdatert" #: frappe/templates/emails/user_invitation_cancelled.html:5 msgid "Your invitation to join {0} has been cancelled by the site administrator." @@ -30259,7 +30382,7 @@ msgstr "Invitasjonen din til å bli med {0} er blitt kansellert av nettstedadmin #: frappe/templates/emails/user_invitation_expired.html:5 msgid "Your invitation to join {0} has expired." -msgstr "" +msgstr "Invitasjonen din til å bli medlem av {0} har utløpt." #: frappe/templates/emails/new_user.html:6 msgid "Your login id is" @@ -30271,13 +30394,13 @@ msgstr "Vellykket oppretting av nytt passord." #: frappe/www/update-password.html:172 msgid "Your old password is incorrect." -msgstr "" +msgstr "Det gamle passordet ditt er feil." #. 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 "Organisasjonens navn og adresse for bunnteksten i e-posten." #: 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." @@ -30285,33 +30408,33 @@ msgstr "Vi har mottatt forespørselen din. Vi vil svare tilbake innen kort tid. #: frappe/desk/query_report.py:342 frappe/desk/reportview.py:396 msgid "Your report is being generated in the background. You will receive an email on {0} with a download link once it is ready." -msgstr "" +msgstr "Rapporten din genereres i bakgrunnen. Du vil motta en e-post på {0} med en nedlastingslenke når den er klar." -#: frappe/app.py:374 +#: frappe/app.py:377 msgid "Your session has expired, please login again to continue." -msgstr "" +msgstr "Økten din er utløpt. Logg inn på nytt for å fortsette." #: frappe/public/js/frappe/ui/toolbar/navbar.html:15 msgid "Your site is undergoing maintenance or being updated." -msgstr "" +msgstr "Nettstedet ditt er under vedlikehold eller oppdatering." #: frappe/templates/emails/verification_code.html:1 msgid "Your verification code is {0}" -msgstr "" +msgstr "Din verifiseringskode er {0}" #: frappe/utils/data.py:1558 msgid "Zero" -msgstr "" +msgstr "Null" #. 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 "Null betyr at alle oppdaterte poster sendes, uavhengig av tidspunkt" #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:358 msgid "[Action taken by {0}]" -msgstr "" +msgstr "[Handling utført av {0}]" #. Label of the _doctype (Link) field in DocType 'Desktop Icon' #: frappe/desk/doctype/desktop_icon/desktop_icon.json @@ -30321,11 +30444,11 @@ msgstr "_doctype" #. Label of the _report (Link) field in DocType 'Desktop Icon' #: frappe/desk/doctype/desktop_icon/desktop_icon.json msgid "_report" -msgstr "" +msgstr "_report" #: frappe/database/database.py:360 msgid "`as_iterator` only works with `as_list=True` or `as_dict=True`" -msgstr "" +msgstr "`as_iterator` fungerer bare med `as_list=True` eller `as_dict=True`." #: frappe/utils/background_jobs.py:120 msgid "`job_id` paramater is required for deduplication." @@ -30344,7 +30467,7 @@ msgstr "korriger" #: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1564 msgid "and" -msgstr "" +msgstr "og" #: frappe/public/js/frappe/ui/sort_selector.html:5 #: frappe/public/js/frappe/ui/sort_selector.js:48 @@ -30358,12 +30481,12 @@ msgstr "blå" #: frappe/public/js/frappe/form/workflow.js:35 msgid "by Role" -msgstr "" +msgstr "etter rolle" #. Label of the profile (Code) field in DocType 'Recorder' #: frappe/core/doctype/recorder/recorder.json msgid "cProfile Output" -msgstr "" +msgstr "cProfile-utdata" #: frappe/public/js/frappe/ui/toolbar/search_utils.js:295 msgid "calendar" @@ -30386,7 +30509,7 @@ msgstr "tøm" #: frappe/public/js/frappe/form/templates/timeline_message_box.html:34 msgid "commented" -msgstr "" +msgstr "kommenterte" #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' @@ -30403,7 +30526,7 @@ msgstr "cyan" #: frappe/public/js/frappe/utils/utils.js:1119 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 @@ -30466,35 +30589,35 @@ msgstr "dokumenttype (DocType) … f.eks. Kunde" #. Account' #: frappe/email/doctype/email_account/email_account.json msgid "e.g. \"Support\", \"Sales\", \"Jerry Yang\"" -msgstr "" +msgstr "f.eks. \"Support\", \"Salg\", \"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 "f.eks. (55 + 434) / 4 eller =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 "f.eks. 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 "f.eks. svar@dittselskap.no. Alle svar kommer til denne innboksen." #. 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 "f.eks. smtp.gmail.com" #: frappe/custom/doctype/custom_field/custom_field.js:98 msgid "e.g.:" -msgstr "" +msgstr "f.eks.:" #. Option for the 'Code Editor Type' (Select) field in DocType 'User' #: frappe/core/doctype/user/user.json @@ -30517,7 +30640,7 @@ msgstr "e-post innboks" #: frappe/permissions.py:425 frappe/permissions.py:436 #: frappe/public/js/frappe/form/controls/link.js:507 msgid "empty" -msgstr "" +msgstr "tom" #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' @@ -30570,7 +30693,7 @@ msgstr "gzip ikke funnet i PATH! Dette er nødvendig for å ta en sikkerhetskopi #: frappe/public/js/frappe/utils/utils.js:1123 msgctxt "Hours (Field: Duration)" msgid "h" -msgstr "" +msgstr "h" #: frappe/public/js/frappe/ui/toolbar/search_utils.js:305 msgid "hub" @@ -30579,7 +30702,7 @@ msgstr "hub" #. Label of the icon (Data) field in DocType 'Page' #: frappe/core/doctype/page/page.json msgid "icon" -msgstr "" +msgstr "ikon" #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' @@ -30589,15 +30712,15 @@ msgstr "import" #: frappe/templates/signup.html:11 frappe/www/login.html:11 msgid "jane@example.com" -msgstr "" +msgstr "janne@eksempel.no" #: frappe/public/js/frappe/utils/pretty_date.js:46 msgid "just now" -msgstr "" +msgstr "akkurat nå" #: frappe/desk/desktop.py:255 frappe/desk/query_report.py:291 msgid "label" -msgstr "" +msgstr "etikett" #. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json @@ -30622,9 +30745,9 @@ msgstr "liste" #: frappe/www/third_party_apps.html:43 msgid "logged in" -msgstr "" +msgstr "innlogget" -#: frappe/website/doctype/web_form/web_form.js:362 +#: frappe/website/doctype/web_form/web_form.js:363 msgid "login_required" msgstr "login_required" @@ -30639,11 +30762,11 @@ msgstr "lang" #: frappe/public/js/frappe/utils/utils.js:1127 msgctxt "Minutes (Field: Duration)" msgid "m" -msgstr "" +msgstr "m" #: frappe/model/rename_doc.py:215 msgid "merged {0} into {1}" -msgstr "" +msgstr "slått sammen {0} til {1}" #. Option for the 'Date Format' (Select) field in DocType 'Language' #. Option for the 'Date Format' (Select) field in DocType 'System Settings' @@ -30666,7 +30789,7 @@ msgstr "modul" #: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:178 msgid "module name..." -msgstr "" +msgstr "modulnavn..." #: frappe/public/js/frappe/ui/toolbar/search_utils.js:169 msgid "new" @@ -30679,7 +30802,7 @@ msgstr "ny type dokument" #. 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 "ingen mislykkede forsøk" #. Label of the nonce (Data) field in DocType 'OAuth Authorization Code' #: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json @@ -30689,20 +30812,20 @@ msgstr "nonce" #. Label of the notified (Check) field in DocType 'Reminder' #: frappe/automation/doctype/reminder/reminder.json msgid "notified" -msgstr "" +msgstr "varslet" #: frappe/public/js/frappe/utils/pretty_date.js:25 msgid "now" -msgstr "" +msgstr "nå" #: frappe/public/js/frappe/form/grid_pagination.js:116 msgid "of" -msgstr "" +msgstr "av" #. Label of the old_parent (Data) field in DocType 'File' #: frappe/core/doctype/file/file.json msgid "old_parent" -msgstr "" +msgstr "old_parent" #. Option for the 'Doc Event' (Select) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json @@ -30737,7 +30860,7 @@ msgstr "on_update_after_submit" #: frappe/public/js/frappe/utils/utils.js:392 frappe/www/login.html:90 #: frappe/www/login.py:112 msgid "or" -msgstr "" +msgstr "eller" #. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json @@ -30769,7 +30892,7 @@ msgstr "skriv ut" #. Label of the processlist (HTML) field in DocType 'System Console' #: frappe/desk/doctype/system_console/system_console.json msgid "processlist" -msgstr "" +msgstr "prosessliste" #. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json @@ -30799,7 +30922,7 @@ msgstr "rød" #: frappe/model/rename_doc.py:217 msgid "renamed from {0} to {1}" -msgstr "" +msgstr "omnavnet fra {0} til {1}" #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' @@ -30810,7 +30933,7 @@ msgstr "rapport" #. Label of the response (HTML) field in DocType 'Custom Role' #: frappe/core/doctype/custom_role/custom_role.json msgid "response" -msgstr "" +msgstr "respons" #: frappe/core/doctype/deleted_document/deleted_document.py:61 msgid "restored {0} as {1}" @@ -30820,7 +30943,7 @@ msgstr "gjenopprettet {0} som {1}" #: frappe/public/js/frappe/utils/utils.js:1131 msgctxt "Seconds (Field: Duration)" msgid "s" -msgstr "" +msgstr "s" #. Option for the 'Code challenge method' (Select) field in DocType 'OAuth #. Authorization Code' @@ -30854,15 +30977,15 @@ msgstr "kort" #: frappe/public/js/frappe/widgets/number_card_widget.js:310 msgid "since last month" -msgstr "" +msgstr "siden forrige måned" #: frappe/public/js/frappe/widgets/number_card_widget.js:309 msgid "since last week" -msgstr "" +msgstr "siden forrige uke" #: frappe/public/js/frappe/widgets/number_card_widget.js:311 msgid "since last year" -msgstr "" +msgstr "siden i fjor" #: frappe/public/js/frappe/widgets/number_card_widget.js:308 msgid "since yesterday" @@ -30875,7 +30998,7 @@ msgstr "startet" #: frappe/desk/page/setup_wizard/setup_wizard.js:201 msgid "starting the setup..." -msgstr "" +msgstr "starter installasjonen..." #. Description of the 'Group Object Class' (Data) field in DocType 'LDAP #. Settings' @@ -30911,11 +31034,11 @@ msgstr "tekst i dokumenttype (DocType)" #: frappe/public/js/frappe/form/controls/data.js:36 msgid "this form" -msgstr "" +msgstr "dette skjemaet" #: frappe/tests/test_translate.py:174 msgid "this shouldn't break" -msgstr "" +msgstr "dette burde ikke ødelegge" #: frappe/templates/emails/download_data.html:9 msgid "to your browser" @@ -30929,7 +31052,7 @@ msgstr "Twitter(X)" #: frappe/public/js/frappe/change_log.html:7 msgid "updated to {0}" -msgstr "" +msgstr "oppdatert til {0}" #: frappe/public/js/frappe/ui/filters/filter.js:361 msgid "use % as wildcard" @@ -30942,33 +31065,33 @@ msgstr "verdier atskilt med komma" #. Label of the version_table (HTML) field in DocType 'Audit Trail' #: frappe/core/doctype/audit_trail/audit_trail.json msgid "version_table" -msgstr "" +msgstr "version_table" #: frappe/automation/doctype/assignment_rule/assignment_rule.py:382 msgid "via Assignment Rule" -msgstr "" +msgstr "via tildelingsregel" #: frappe/automation/doctype/auto_repeat/auto_repeat.py:264 msgid "via Auto Repeat" -msgstr "" +msgstr "via automatisk gjentakelse" #: frappe/core/doctype/data_import/importer.py:271 #: frappe/core/doctype/data_import/importer.py:292 msgid "via Data Import" -msgstr "" +msgstr "via dataimport" #. Description of the 'Add Video Conferencing' (Check) field in DocType 'Event' #: frappe/desk/doctype/event/event.json msgid "via Google Meet" msgstr "via Google Meet" -#: frappe/email/doctype/notification/notification.py:403 +#: frappe/email/doctype/notification/notification.py:405 msgid "via Notification" -msgstr "" +msgstr "via varsel" #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:17 msgid "via {0}" -msgstr "" +msgstr "via {0}" #. Option for the 'Code Editor Type' (Select) field in DocType 'User' #: frappe/core/doctype/user/user.json @@ -30982,13 +31105,13 @@ msgstr "vskode" #: frappe/templates/includes/oauth_confirmation.html:5 msgid "wants to access the following details from your account" -msgstr "" +msgstr "ønsker tilgang til følgende detaljer fra kontoen din" #. 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 "Når elementet klikkes, vil fokus settes til popover-en hvis den finnes" #. Option for the 'PDF Generator' (Select) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json @@ -31042,28 +31165,28 @@ 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 rad påkrevet)" #: 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} Kalender" #: frappe/public/js/frappe/views/reports/report_view.js:575 msgid "{0} Chart" -msgstr "" +msgstr "{0} Diagram" #: frappe/core/page/dashboard_view/dashboard_view.js:67 #: frappe/public/js/frappe/ui/toolbar/search_utils.js:356 @@ -31072,11 +31195,11 @@ msgstr "" msgid "{0} Dashboard" msgstr "{0} oversiktspanel" -#: frappe/public/js/frappe/form/grid_row.js:486 +#: frappe/public/js/frappe/form/grid_row.js:487 #: frappe/public/js/frappe/list/list_settings.js:225 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:178 msgid "{0} Fields" -msgstr "" +msgstr "{0} Felt" #: frappe/integrations/doctype/google_calendar/google_calendar.py:376 msgid "{0} Google Calendar Events synced." @@ -31088,7 +31211,7 @@ msgstr "{0} Google-kontakter synkronisert." #: frappe/public/js/frappe/form/footer/form_timeline.js:464 msgid "{0} Liked" -msgstr "" +msgstr "{0} Likt" #: frappe/public/js/frappe/ui/toolbar/search_utils.js:83 #: frappe/public/js/frappe/ui/toolbar/search_utils.js:84 @@ -31099,23 +31222,23 @@ msgstr "{0} Liste" #: frappe/public/js/frappe/list/list_settings.js:33 msgid "{0} List View Settings" -msgstr "" +msgstr "{0} Innstillinger for listevisning" #: 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}-kart" #: frappe/public/js/frappe/form/quick_entry.js:122 msgid "{0} Name" -msgstr "" +msgstr "{0} Navn" #: frappe/model/base_document.py:1215 msgid "{0} Not allowed to change {1} after submission from {2} to {3}" -msgstr "" +msgstr "{0}Har ikke lov til å endre {1} etter registrering fra {2} til {3}" #: frappe/public/js/frappe/ui/toolbar/search_utils.js:95 #: frappe/public/js/frappe/ui/toolbar/search_utils.js:96 @@ -31123,13 +31246,13 @@ msgstr "" msgid "{0} Report" msgstr "{0} Rapport" -#: frappe/public/js/frappe/views/reports/query_report.js:956 +#: frappe/public/js/frappe/views/reports/query_report.js:964 msgid "{0} Reports" -msgstr "" +msgstr "{0} Rapporter" #: frappe/public/js/frappe/views/kanban/kanban_settings.js:26 msgid "{0} Settings" -msgstr "" +msgstr "{0} Innstillinger" #: frappe/public/js/frappe/ui/toolbar/search_utils.js:87 #: frappe/public/js/frappe/ui/toolbar/search_utils.js:88 @@ -31140,7 +31263,7 @@ msgstr "{0} Tre" #: 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} Nettsidevisninger" #: frappe/public/js/frappe/ui/toolbar/search_utils.js:91 #: frappe/public/js/frappe/ui/toolbar/search_utils.js:92 @@ -31153,11 +31276,11 @@ msgstr "{0} lagt til" #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:268 msgid "{0} added 1 row to {1}" -msgstr "" +msgstr "{0} la til 1 rad til {1}" #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:246 msgid "{0} added {1} rows to {2}" -msgstr "" +msgstr "{0} la til {1} rader til {2}" #: frappe/public/js/frappe/form/controls/data.js:215 msgid "{0} already exists. Select another name" @@ -31165,19 +31288,19 @@ msgstr "{0} finnes allerede. Velg et annet navn" #: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:36 msgid "{0} already unsubscribed" -msgstr "" +msgstr "{0} allerede avmeldt" #: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:49 msgid "{0} already unsubscribed for {1} {2}" -msgstr "" +msgstr "{0} allerede avmeldt for {1} {2}" #: frappe/utils/data.py:1765 msgid "{0} and {1}" -msgstr "" +msgstr "{0} og {1}" #: frappe/public/js/frappe/form/sidebar/form_sidebar_users.js:72 msgid "{0} are currently {1}" -msgstr "" +msgstr "{0} er for øyeblikket {1}" #: frappe/printing/doctype/print_format/print_format.py:98 msgid "{0} are required" @@ -31189,16 +31312,16 @@ msgstr "{0} tildelte deg en ny oppgave {1} {2}" #: frappe/desk/doctype/todo/todo.py:48 msgid "{0} assigned {1}: {2}" -msgstr "" +msgstr "{0} tilordnet {1}: {2}" #: frappe/public/js/frappe/form/footer/form_timeline.js:415 msgctxt "Form timeline" msgid "{0} attached {1}" -msgstr "" +msgstr "{0} lagt ved {1}" -#: frappe/core/doctype/system_settings/system_settings.py:152 +#: frappe/core/doctype/system_settings/system_settings.py:153 msgid "{0} can not be more than {1}" -msgstr "" +msgstr "{0} kan ikke være mer enn {1}" #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:77 msgid "{0} cancelled this document" @@ -31215,161 +31338,161 @@ msgstr "{0} kan ikke korrigeres fordi det ikke er avbrutt. Vennligst avbryt doku #: frappe/public/js/form_builder/store.js:190 msgid "{0} cannot be hidden and mandatory without any default value" -msgstr "" +msgstr "{0} kan ikke være skjult og påkrevet uten noen standardverdi" #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:128 msgid "{0} changed the value of {1}" -msgstr "" +msgstr "{0} endret verdien for {1}" #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:119 msgid "{0} changed the value of {1} {2}" -msgstr "" +msgstr "{0} endret verdien for {1} {2}" #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:194 msgid "{0} changed the values for {1}" -msgstr "" +msgstr "{0} endret verdiene for {1}" #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:185 msgid "{0} changed the values for {1} {2}" -msgstr "" +msgstr "{0} endret verdiene for {1} {2}" #: frappe/public/js/frappe/form/footer/form_timeline.js:444 msgctxt "Form timeline" msgid "{0} changed {1} to {2}" -msgstr "" +msgstr "{0} endret {1} til {2}" #: frappe/core/doctype/doctype/doctype.py:1606 msgid "{0} contains an invalid Fetch From expression, Fetch From can't be self-referential." -msgstr "" +msgstr "{0} inneholder et ugyldig «Hent fra»-uttrykk. «Hent fra» kan ikke være selvrefererende." #: frappe/public/js/frappe/views/interaction.js:261 msgid "{0} created successfully" -msgstr "" +msgstr "{0} opprettet" #: 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} opprettet dette" #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:343 msgctxt "Form timeline" msgid "{0} created this document {1}" -msgstr "" +msgstr "{0} opprettet dette dokumentet {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} dager siden" #: 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} finnes ikke i rad {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} feltet kan ikke angis som unikt i {1}, siden det finnes ikke-unike eksisterende verdier" -#: frappe/database/query.py:708 +#: frappe/database/query.py:710 msgid "{0} fields cannot contain backticks (`): {1}" -msgstr "Filterfelt kan ikke inneholde backticks (`)." +msgstr "{0} felt kan ikke inneholde backticks (`): {1}" #: 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 "" +msgstr "{0} -formatet kunne ikke bestemmes fra verdiene i denne kolonnen. Standardverdien er {1}." #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:101 msgid "{0} from {1} to {2}" -msgstr "" +msgstr "{0} fra {1} til {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} fra {1} til {2} i rad #{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} har allerede tildelt standardverdi for {1}." #: frappe/email/queue.py:124 msgid "{0} has left the conversation in {1} {2}" -msgstr "" +msgstr "{0} har forlatt samtalen på {1} {2}" #: frappe/public/js/frappe/utils/pretty_date.js:54 msgid "{0} hours ago" -msgstr "" +msgstr "{0} timer siden." #: frappe/website/doctype/web_form/templates/web_form.html:155 msgid "{0} if you are not redirected within {1} seconds" -msgstr "" +msgstr "{0} hvis du ikke blir omdirigert innen {1} sekunder" #: 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} i raden {1} kan ikke ha både URL og underordnede elementer" #: frappe/core/doctype/doctype/doctype.py:935 msgid "{0} is a mandatory field" -msgstr "" +msgstr "{0} er et påkrevet felt" -#: frappe/core/doctype/file/file.py:566 +#: frappe/core/doctype/file/file.py:569 msgid "{0} is a not a valid zip file" -msgstr "" +msgstr "{0} er ikke en gyldig zip-fil" #: frappe/core/doctype/doctype/doctype.py:1619 msgid "{0} is an invalid Data field." -msgstr "" +msgstr "{0} er et ugyldig datafelt." #: frappe/automation/doctype/auto_repeat/auto_repeat.py:162 msgid "{0} is an invalid email address in 'Recipients'" -msgstr "" +msgstr "{0} er en ugyldig e-postadresse i 'Mottakere'" #: frappe/public/js/frappe/views/reports/report_view.js:1470 msgid "{0} is between {1} and {2}" -msgstr "" +msgstr "{0} er mellom {1} og {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} er for øyeblikket {1}" #: frappe/public/js/frappe/views/reports/report_view.js:1439 msgid "{0} is equal to {1}" -msgstr "" +msgstr "{0} er lik {1}" #: frappe/public/js/frappe/views/reports/report_view.js:1459 msgid "{0} is greater than or equal to {1}" -msgstr "" +msgstr "{0} er større enn eller lik {1}" #: frappe/public/js/frappe/views/reports/report_view.js:1449 msgid "{0} is greater than {1}" -msgstr "" +msgstr "{0} er større enn {1}" #: frappe/public/js/frappe/views/reports/report_view.js:1464 msgid "{0} is less than or equal to {1}" -msgstr "" +msgstr "{0} er mindre enn eller lik {1}" #: frappe/public/js/frappe/views/reports/report_view.js:1454 msgid "{0} is less than {1}" -msgstr "" +msgstr "{0} er mindre enn {1}" #: frappe/public/js/frappe/views/reports/report_view.js:1489 msgid "{0} is like {1}" -msgstr "" +msgstr "{0} er som {1}" #: frappe/email/doctype/email_account/email_account.py:193 msgid "{0} is mandatory" -msgstr "" +msgstr "{0} er påkrevet" -#: frappe/database/query.py:485 +#: frappe/database/query.py:487 msgid "{0} is not a child table of {1}" -msgstr "" +msgstr "{0} er ikke en undertabell av {1}" #: frappe/core/doctype/document_naming_rule/document_naming_rule.py:50 msgid "{0} is not a field of doctype {1}" @@ -31381,36 +31504,36 @@ msgstr "{0} er ikke et format for råutskrift." #: frappe/public/js/frappe/views/calendar/calendar.js:82 msgid "{0} is not a valid Calendar. Redirecting to default Calendar." -msgstr "" +msgstr "{0} er ikke en gyldig kalender. Omdirigerer til standardkalender." #: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:67 msgid "{0} is not a valid Cron expression." -msgstr "" +msgstr "{0} er ikke et gyldig Cron-uttrykk." -#: frappe/public/js/frappe/form/controls/dynamic_link.js:27 +#: frappe/public/js/frappe/form/controls/dynamic_link.js:23 msgid "{0} is not a valid DocType for Dynamic Link" msgstr "{0} er ikke en gyldig dokumenttype (DocType) for dynamisk lenke" #: frappe/email/doctype/email_group/email_group.py:140 #: frappe/utils/__init__.py:208 msgid "{0} is not a valid Email Address" -msgstr "" +msgstr "{0} er ikke en gyldig e-postadresse" #: frappe/geo/doctype/country/country.py:30 msgid "{0} is not a valid ISO 3166 ALPHA-2 code." -msgstr "" +msgstr "{0} er ikke en gyldig ISO 3166 ALPHA-2-kode." #: frappe/utils/__init__.py:176 msgid "{0} is not a valid Name" -msgstr "" +msgstr "{0} er ikke et gyldig navn" #: frappe/utils/__init__.py:155 msgid "{0} is not a valid Phone Number" -msgstr "" +msgstr "{0} er ikke et gyldig telefonnummer" #: frappe/model/workflow.py:245 msgid "{0} is not a valid Workflow State. Please update your Workflow and try again." -msgstr "" +msgstr "{0} er ikke en gyldig arbeidsflyttilstand. Oppdater arbeidsflyten din og prøv på nytt." #: frappe/permissions.py:809 msgid "{0} is not a valid parent DocType for {1}" @@ -31418,35 +31541,35 @@ msgstr "{0} er ikke en gyldig overordnet dokumenttype (DocType) for {1}" #: frappe/permissions.py:829 msgid "{0} is not a valid parentfield for {1}" -msgstr "" +msgstr "{0} er ikke et gyldig overordnet felt for {1}" #: 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 "" +msgstr "{0} er ikke et gyldig rapportformat. Rapportformat må være ett av følgende: {1}" -#: frappe/core/doctype/file/file.py:546 +#: frappe/core/doctype/file/file.py:549 msgid "{0} is not a zip file" -msgstr "" +msgstr "{0} er ikke en zip-fil" #: frappe/core/doctype/user_invitation/user_invitation.py:182 msgid "{0} is not an allowed role for {1}" -msgstr "" +msgstr "{0} er ikke en tillatt rolle for {1}" #: frappe/public/js/frappe/views/reports/report_view.js:1444 msgid "{0} is not equal to {1}" -msgstr "" +msgstr "{0} er ikke lik {1}" #: frappe/public/js/frappe/views/reports/report_view.js:1491 msgid "{0} is not like {1}" -msgstr "" +msgstr "{0} er ikke som {1}" #: frappe/public/js/frappe/views/reports/report_view.js:1485 msgid "{0} is not one of {1}" -msgstr "" +msgstr "{0} er ikke en av {1}" #: frappe/public/js/frappe/views/reports/report_view.js:1495 msgid "{0} is not set" -msgstr "" +msgstr "{0} er ikke satt" #: frappe/printing/doctype/print_format/print_format.py:176 msgid "{0} is now default print format for {1} doctype" @@ -31454,7 +31577,7 @@ msgstr "{0} er nå standard utskriftsformat for {1} dokumenttype (DocType)" #: frappe/public/js/frappe/views/reports/report_view.js:1478 msgid "{0} is one of {1}" -msgstr "" +msgstr "{0} er en av {1}" #: frappe/email/doctype/email_account/email_account.py:304 #: frappe/model/naming.py:226 @@ -31466,114 +31589,114 @@ msgstr "{0} er påkrevd" #: frappe/public/js/frappe/views/reports/report_view.js:1494 msgid "{0} is set" -msgstr "" +msgstr "{0} er satt" #: frappe/public/js/frappe/views/reports/report_view.js:1473 msgid "{0} is within {1}" -msgstr "" +msgstr "{0} er innenfor {1}" -#: frappe/public/js/frappe/list/list_view.js:1839 +#: frappe/public/js/frappe/list/list_view.js:1841 msgid "{0} items selected" msgstr "{0} elementer valgt" #: frappe/core/doctype/user/user.py:1393 msgid "{0} just impersonated as you. They gave this reason: {1}" -msgstr "" +msgstr "{0} utga seg nettopp for å være deg. De oppga denne grunnen: {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} redigert dette sist " #: frappe/core/doctype/activity_log/feed.py:13 msgid "{0} logged in" -msgstr "" +msgstr "{0} logget inn" #: frappe/core/doctype/activity_log/feed.py:19 msgid "{0} logged out: {1}" -msgstr "" +msgstr "{0} logget ut: {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} nevnte deg i en kommentar i {1} {2}" #: frappe/public/js/frappe/utils/pretty_date.js:50 msgid "{0} minutes ago" -msgstr "" +msgstr "{0} minutter siden" #: frappe/public/js/frappe/utils/pretty_date.js:68 msgid "{0} months ago" -msgstr "" +msgstr "{0} måneder siden" #: frappe/model/document.py:1808 msgid "{0} must be after {1}" -msgstr "" +msgstr "{0} må være etter {1}" #: frappe/model/document.py:1564 msgid "{0} must be beginning with '{1}'" -msgstr "" +msgstr "{0} må begynne med '{1}'" #: frappe/model/document.py:1566 msgid "{0} must be equal to '{1}'" -msgstr "" +msgstr "{0} må være lik '{1}'" #: frappe/model/document.py:1562 msgid "{0} must be none of {1}" -msgstr "" +msgstr "{0} må ikke være noen av {1}" #: frappe/model/document.py:1560 frappe/utils/csvutils.py:161 msgid "{0} must be one of {1}" -msgstr "" +msgstr "{0} må være en av {1}" #: frappe/model/base_document.py:933 msgid "{0} must be set first" -msgstr "" +msgstr "{0} må angis først" #: frappe/model/base_document.py:786 msgid "{0} must be unique" -msgstr "" +msgstr "{0} må være unik" #: frappe/model/document.py:1568 msgid "{0} must be {1} {2}" -msgstr "" +msgstr "{0} må være {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} må begynne og slutte med en bokstav og kan bare inneholde bokstaver, bindestrek eller understreking." #: frappe/workflow/doctype/workflow/workflow.py:91 msgid "{0} not a valid State" -msgstr "" +msgstr "{0} ikke en gyldig tilstand" #: frappe/model/rename_doc.py:394 msgid "{0} not allowed to be renamed" -msgstr "" +msgstr "{0} kan ikke gis nytt navn" #: frappe/desk/doctype/desktop_icon/desktop_icon.py:365 msgid "{0} not found" -msgstr "" +msgstr "{0} ikke funnet" #: frappe/core/doctype/report/report.py:427 -#: frappe/public/js/frappe/list/list_view.js:1211 -msgid "{0} of {1}" -msgstr "" - #: frappe/public/js/frappe/list/list_view.js:1213 +msgid "{0} of {1}" +msgstr "{0} av {1}" + +#: frappe/public/js/frappe/list/list_view.js:1215 msgid "{0} of {1} ({2} rows with children)" -msgstr "" +msgstr "{0} av {1} ({2} rader med underordnede)" #: frappe/utils/data.py:1566 msgctxt "Money in words" msgid "{0} only." -msgstr "" +msgstr "Bare {0} ." #: frappe/utils/data.py:1747 msgid "{0} or {1}" -msgstr "" +msgstr "{0} eller {1}" #: frappe/core/doctype/user_permission/user_permission_list.js:177 msgid "{0} record deleted" @@ -31593,42 +31716,42 @@ msgstr "{0} poster slettet" #: frappe/public/js/frappe/data_import/data_exporter.js:229 msgid "{0} records will be exported" -msgstr "" +msgstr "{0} oppføringer vil bli eksportert" #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:313 msgid "{0} removed 1 row from {1}" -msgstr "" +msgstr "{0} fjernet 1 rad fra {1}" #: frappe/public/js/frappe/form/footer/form_timeline.js:420 msgctxt "Form timeline" msgid "{0} removed attachment {1}" -msgstr "" +msgstr "{0} fjernet vedlegg {1}" #: frappe/desk/doctype/todo/todo.py:58 msgid "{0} removed their assignment." -msgstr "" +msgstr "{0} fjernet sin tildeling." #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:291 msgid "{0} removed {1} rows from {2}" -msgstr "" +msgstr "{0} fjernet {1} rader fra {2}" -#: frappe/public/js/frappe/roles_editor.js:62 +#: frappe/public/js/frappe/roles_editor.js:64 msgid "{0} role does not have permission on any doctype" msgstr "{0}-rollen har ikke tillatelse til noen dokumenttype (DocType)" #: frappe/model/document.py:1799 msgid "{0} row #{1}:" -msgstr "" +msgstr "{0} rad #{1}:" #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:299 msgctxt "User removed rows from child table" msgid "{0} rows from {1}" -msgstr "" +msgstr "{0} rader fra {1}" #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:254 msgctxt "User added rows to child table" msgid "{0} rows to {1}" -msgstr "" +msgstr "{0} rader til {1}" #: frappe/desk/query_report.py:666 msgid "{0} saved successfully" @@ -31636,19 +31759,19 @@ msgstr "{0} lagret var vellykket" #: frappe/desk/doctype/todo/todo.py:44 msgid "{0} self assigned this task: {1}" -msgstr "" +msgstr "{0} tildelte seg selv denne oppgaven: {1}" #: frappe/share.py:233 msgid "{0} shared a document {1} {2} with you" -msgstr "" +msgstr "{0} delte et dokument {1} {2} med deg" #: frappe/core/doctype/docshare/docshare.py:77 msgid "{0} shared this document with everyone" -msgstr "" +msgstr "{0} delte dette dokumentet med alle" #: frappe/core/doctype/docshare/docshare.py:80 msgid "{0} shared this document with {1}" -msgstr "" +msgstr "{0} delte dette dokumentet med {1}" #: frappe/core/doctype/doctype/doctype.py:317 msgid "{0} should be indexed because it's referred in dashboard connections" @@ -31656,7 +31779,7 @@ msgstr "{0} bør indekseres fordi det refereres til det i oversiktspanel-tilkobl #: frappe/automation/doctype/auto_repeat/auto_repeat.py:149 msgid "{0} should not be same as {1}" -msgstr "" +msgstr "{0} kan ikke være samme som {1}" #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:51 msgid "{0} submitted this document" @@ -31670,25 +31793,25 @@ msgstr "{0} registrerte dette dokumentet {1}" #: frappe/email/doctype/email_group/email_group.py:71 #: frappe/email/doctype/email_group/email_group.py:142 msgid "{0} subscribers added" -msgstr "" +msgstr "{0} abonnenter lagt til" #: frappe/email/queue.py:69 msgid "{0} to stop receiving emails of this type" -msgstr "" +msgstr "{0} for å slutte å motta e-post av denne typen" #: 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:238 msgid "{0} to {1}" -msgstr "" +msgstr "{0} til {1}" #: frappe/core/doctype/docshare/docshare.py:89 msgid "{0} un-shared this document with {1}" -msgstr "" +msgstr "{0} sluttet å dele dette dokumentet med {1}" -#: frappe/custom/doctype/customize_form/customize_form.py:254 +#: frappe/custom/doctype/customize_form/customize_form.py:256 msgid "{0} updated" -msgstr "" +msgstr "{0} oppdatert" #: frappe/public/js/frappe/form/controls/multiselect_list.js:198 msgid "{0} values selected" @@ -31696,23 +31819,23 @@ msgstr "{0} verdier valgt" #: frappe/public/js/frappe/form/footer/form_timeline.js:184 msgid "{0} viewed this" -msgstr "" +msgstr "{0} så dette" #: 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" -msgstr "" +msgstr "{0} uker siden" #: frappe/public/js/frappe/utils/pretty_date.js:39 msgid "{0} y" -msgstr "" +msgstr "{0} y" #: frappe/public/js/frappe/utils/pretty_date.js:72 msgid "{0} years ago" -msgstr "" +msgstr "{0} uker siden" #: frappe/public/js/frappe/form/link_selector.js:219 msgid "{0} {1} added" @@ -31724,15 +31847,15 @@ msgstr "Ny {0} {1} lagt til i oversiktspanelet {2}" #: frappe/model/base_document.py:719 frappe/model/rename_doc.py:110 msgid "{0} {1} already exists" -msgstr "" +msgstr "{0} {1} finnes allerede" #: frappe/model/base_document.py:1044 msgid "{0} {1} cannot be \"{2}\". It should be one of \"{3}\"" -msgstr "" +msgstr "{0} {1} kan ikke være \"{2}\". Det bør være en av \"{3}\"" #: frappe/utils/nestedset.py:353 msgid "{0} {1} cannot be a leaf node as it has children" -msgstr "" +msgstr "{0} {1} kan ikke være en bladnode siden den har underordnede" #: frappe/model/rename_doc.py:376 msgid "{0} {1} does not exist, select a new target to merge" @@ -31744,15 +31867,15 @@ msgstr "{0} {1} er lenket til følgende registrerte dokumenter: {2}" #: frappe/model/document.py:258 frappe/permissions.py:580 msgid "{0} {1} not found" -msgstr "" +msgstr "{0} {1} ikke funnet" -#: frappe/model/delete_doc.py:248 +#: frappe/model/delete_doc.py:288 msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first." msgstr "{0} {1}: Registrert post kan ikke slettes. Du må {2} Avbryte {3} den først." #: frappe/model/base_document.py:1176 msgid "{0}, Row {1}" -msgstr "" +msgstr "{0}, Rad {1}" #: frappe/utils/print_format.py:148 frappe/utils/print_format.py:192 msgid "{0}/{1} complete | Please leave this tab open until completion." @@ -31760,7 +31883,7 @@ msgstr "{0}/{1} fullført | La denne fanen være åpen til den er fullført." #: frappe/model/base_document.py:1181 msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}" -msgstr "" +msgstr "{0}: '{1}' ({3}) vil bli avkortet, da maks tillatte tegn er {2}" #: frappe/core/doctype/doctype/doctype.py:1814 msgid "{0}: Cannot set Amend without Cancel" @@ -31780,7 +31903,7 @@ msgstr "{0}: Kan ikke angi Avbryt uten å registrere" #: frappe/core/doctype/doctype/doctype.py:1816 msgid "{0}: Cannot set Import without Create" -msgstr "" +msgstr "{0}: Kan ikke angi import uten å opprette" #: frappe/core/doctype/doctype/doctype.py:1812 msgid "{0}: Cannot set Submit, Cancel, Amend without Write" @@ -31788,7 +31911,7 @@ msgstr "{0}: Kan ikke angi Registrer, Avbryt, Korriger uten å skrive" #: frappe/core/doctype/doctype/doctype.py:1836 msgid "{0}: Cannot set import as {1} is not importable" -msgstr "" +msgstr "{0}: Kan ikke angi import ettersom {1} ikke kan importeres" #: frappe/automation/doctype/auto_repeat/auto_repeat.py:436 msgid "{0}: Failed to attach new recurring document. To enable attaching document in the auto repeat notification email, enable {1} in Print Settings" @@ -31796,31 +31919,31 @@ msgstr "{0}: Kunne ikke legge ved nytt gjentakende dokument. For å aktivere ved #: frappe/core/doctype/doctype/doctype.py:1427 msgid "{0}: Field '{1}' cannot be set as Unique as it has non-unique values" -msgstr "" +msgstr "{0}: Felt '{1}' kan ikke angis som unikt, da det har ikke-unike verdier" #: frappe/core/doctype/doctype/doctype.py:1335 msgid "{0}: Field {1} in row {2} cannot be hidden and mandatory without default" -msgstr "" +msgstr "{0}: Felt {1} på rad {2} kan ikke skjules og er påkrevet uten standard" #: frappe/core/doctype/doctype/doctype.py:1294 msgid "{0}: Field {1} of type {2} cannot be mandatory" -msgstr "" +msgstr "{0}: Felt {1} av typen {2} kan ikke være påkrevet " #: frappe/core/doctype/doctype/doctype.py:1282 msgid "{0}: Fieldname {1} appears multiple times in rows {2}" -msgstr "" +msgstr "{0}: Feltnavn {1} vises flere ganger i radene {2}" #: frappe/core/doctype/doctype/doctype.py:1414 msgid "{0}: Fieldtype {1} for {2} cannot be unique" -msgstr "" +msgstr "{0}: Fieldtype {1} for {2} kan ikke være unik" #: frappe/core/doctype/doctype/doctype.py:1769 msgid "{0}: No basic permissions set" -msgstr "" +msgstr "{0}: Ingen basisrettigheter er angitt" #: frappe/core/doctype/doctype/doctype.py:1783 msgid "{0}: Only one rule allowed with the same Role, Level and {1}" -msgstr "" +msgstr "{0}: Bare én regel tillatt med samme rolle, nivå og {1}" #: frappe/core/doctype/doctype/doctype.py:1316 msgid "{0}: Options must be a valid DocType for field {1} in row {2}" @@ -31840,7 +31963,7 @@ msgstr "{0}: Andre tillatelsesregler kan også gjelde" #: frappe/core/doctype/doctype/doctype.py:1798 msgid "{0}: Permission at level 0 must be set before higher levels are set" -msgstr "" +msgstr "{0}: Rettigheter på nivå 0 må angis før høyere nivåer angis" #: frappe/public/js/frappe/form/controls/data.js:51 msgid "{0}: You can increase the limit for the field if required via {1}" @@ -31848,24 +31971,24 @@ msgstr "{0}: Du kan øke grensen for feltet om nødvendig via {1}" #: frappe/core/doctype/doctype/doctype.py:1269 msgid "{0}: fieldname cannot be set to reserved keyword {1}" -msgstr "" +msgstr "{0}: feltnavn kan ikke settes til reservert nøkkelord {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} er satt til tilstand {2}" -#: frappe/public/js/frappe/views/reports/query_report.js:1283 +#: frappe/public/js/frappe/views/reports/query_report.js:1291 msgid "{0}: {1} vs {2}" -msgstr "" +msgstr "{0}: {1} vs {2}" #: frappe/core/doctype/doctype/doctype.py:1435 msgid "{0}:Fieldtype {1} for {2} cannot be indexed" -msgstr "" +msgstr "{0}:Fieldtype {1} for {2} kan ikke indekseres" #: frappe/public/js/frappe/form/quick_entry.js:195 msgid "{1} saved" @@ -31873,11 +31996,11 @@ msgstr "{1} lagret" #: frappe/public/js/frappe/utils/datatable.js:12 msgid "{count} cell copied" -msgstr "" +msgstr "{count} celle kopiert" #: frappe/public/js/frappe/utils/datatable.js:13 msgid "{count} cells copied" -msgstr "" +msgstr "{count} celler kopiert" #: frappe/public/js/frappe/utils/datatable.js:16 msgid "{count} row selected" @@ -31889,19 +32012,19 @@ msgstr "{count} rader valgt" #: frappe/core/doctype/doctype/doctype.py:1489 msgid "{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}." -msgstr "" +msgstr "{{{0}}} er ikke et gyldig feltnavnmønster. Det må være {{field_name}}." #: frappe/public/js/frappe/form/form.js:521 msgid "{} Complete" -msgstr "" +msgstr "{} Fullført" -#: frappe/utils/data.py:2541 +#: frappe/utils/data.py:2567 msgid "{} Invalid python code on line {}" -msgstr "" +msgstr "{} Ugyldig python-kode på linje {}" -#: frappe/utils/data.py:2550 +#: frappe/utils/data.py:2576 msgid "{} Possibly invalid python code.
{}" -msgstr "" +msgstr "{} Muligens ugyldig python-kode.
{}" #. Count format of shortcut in the Website Workspace #: frappe/website/workspace/website/website.json @@ -31914,18 +32037,18 @@ msgstr "{} støtter ikke automatisk sletting av loggfiler." #: frappe/core/doctype/audit_trail/audit_trail.py:41 msgid "{} field cannot be empty." -msgstr "" +msgstr "{}-feltet kan ikke være tomt." #: 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 "{} er deaktivert. Den kan bare aktiveres hvis {} er merket av." #: frappe/utils/data.py:145 msgid "{} is not a valid date string." -msgstr "" +msgstr "{} er ikke en gyldig datostreng." -#: frappe/commands/utils.py:562 +#: frappe/commands/utils.py:561 msgid "{} not found in PATH! This is required to access the console." msgstr "{} ikke funnet i PATH! Dette er påkrevd for å få tilgang til konsollen." diff --git a/frappe/locale/nl.po b/frappe/locale/nl.po index a0fab261c2..3ceaf014e3 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-09-21 09:33+0000\n" -"PO-Revision-Date: 2025-09-21 19:57\n" +"POT-Creation-Date: 2025-10-05 09:33+0000\n" +"PO-Revision-Date: 2025-10-06 22:59\n" "Last-Translator: developers@frappe.io\n" "Language-Team: Dutch\n" "MIME-Version: 1.0\n" @@ -78,7 +78,7 @@ msgstr "'In Global Search' niet toegestaan voor type {0} in rij {1}" msgid "'In List View' is not allowed for field {0} of type {1}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:363 +#: frappe/custom/doctype/customize_form/customize_form.py:367 msgid "'In List View' not allowed for type {0} in row {1}" msgstr "'In lijst weergave' niet toegestaan voor type {0} in rij {1}" @@ -122,7 +122,7 @@ msgstr "" msgid "0 is highest" msgstr "0 is het hoogst" -#: frappe/public/js/frappe/form/grid_row.js:892 +#: frappe/public/js/frappe/form/grid_row.js:893 msgid "1 = True & 0 = False" msgstr "1 = Waar & 0 = Onwaar" @@ -140,11 +140,11 @@ msgstr "1 dag" msgid "1 Google Calendar Event synced." msgstr "1 Google Agenda-evenement gesynchroniseerd." -#: frappe/public/js/frappe/views/reports/query_report.js:955 +#: frappe/public/js/frappe/views/reports/query_report.js:963 msgid "1 Report" msgstr "1 rapport" -#: frappe/tests/test_utils.py:739 +#: frappe/tests/test_utils.py:845 msgid "1 day ago" msgstr "1 dag geleden" @@ -153,17 +153,17 @@ msgid "1 hour" msgstr "1 uur" #: frappe/public/js/frappe/utils/pretty_date.js:52 -#: frappe/tests/test_utils.py:737 +#: frappe/tests/test_utils.py:843 msgid "1 hour ago" msgstr "1 uur geleden" #: frappe/public/js/frappe/utils/pretty_date.js:48 -#: frappe/tests/test_utils.py:735 +#: frappe/tests/test_utils.py:841 msgid "1 minute ago" msgstr "1 minuut geleden" #: frappe/public/js/frappe/utils/pretty_date.js:66 -#: frappe/tests/test_utils.py:743 +#: frappe/tests/test_utils.py:849 msgid "1 month ago" msgstr "1 maand geleden" @@ -185,37 +185,37 @@ msgctxt "User added row to child table" msgid "1 row to {0}" msgstr "" -#: frappe/tests/test_utils.py:734 +#: frappe/tests/test_utils.py:840 msgid "1 second ago" msgstr "1 seconde geleden" #: frappe/public/js/frappe/utils/pretty_date.js:62 -#: frappe/tests/test_utils.py:741 +#: frappe/tests/test_utils.py:847 msgid "1 week ago" msgstr "1 week geleden" #: frappe/public/js/frappe/utils/pretty_date.js:70 -#: frappe/tests/test_utils.py:745 +#: frappe/tests/test_utils.py:851 msgid "1 year ago" msgstr "1 jaar geleden" -#: frappe/tests/test_utils.py:738 +#: frappe/tests/test_utils.py:844 msgid "2 hours ago" msgstr "2 uur geleden" -#: frappe/tests/test_utils.py:744 +#: frappe/tests/test_utils.py:850 msgid "2 months ago" msgstr "2 maanden geleden" -#: frappe/tests/test_utils.py:742 +#: frappe/tests/test_utils.py:848 msgid "2 weeks ago" msgstr "2 weken geleden" -#: frappe/tests/test_utils.py:746 +#: frappe/tests/test_utils.py:852 msgid "2 years ago" msgstr "2 jaren geleden" -#: frappe/tests/test_utils.py:736 +#: frappe/tests/test_utils.py:842 msgid "3 minutes ago" msgstr "3 minuten geleden" @@ -231,7 +231,7 @@ msgstr "4 uren" msgid "5 Records" msgstr "5 records" -#: frappe/tests/test_utils.py:740 +#: frappe/tests/test_utils.py:846 msgid "5 days ago" msgstr "5 dagen geleden" @@ -267,6 +267,16 @@ msgstr "{0} is geen geldige URL" 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 "" +#. Introduction text of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "

Request a file containing your personally identifiable information (PII) that is saved on our system. The file will be in JSON format and is sent to you by email. If you would like to have your PII deleted from our system, please make a request to delete data.

" +msgstr "" + +#. Introduction text of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "

Send a request to delete your account and personally identifiable information (PII) that is stored on our system. You will receive an email to verify your request. Once the request is verified we will take care of deleting your PII. If you just want to check what PII we have stored, you can request your data.

" +msgstr "" + #. Content of the 'Help HTML' (HTML) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -568,6 +578,11 @@ msgstr "" msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three." msgstr "" +#. Success message of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "A download link with your data will be sent to the email address associated with your account." +msgstr "" + #: frappe/custom/doctype/custom_field/custom_field.py:175 msgid "A field with the name {0} already exists in {1}" msgstr "" @@ -694,7 +709,7 @@ msgstr "" #. 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.js:452 frappe/core/doctype/user/user.json +#: frappe/core/doctype/user/user.js:459 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 @@ -713,7 +728,7 @@ msgstr "" msgid "API Key cannot be regenerated" msgstr "" -#: frappe/core/doctype/user/user.js:449 +#: frappe/core/doctype/user/user.js:456 msgid "API Keys" msgstr "" @@ -737,7 +752,7 @@ msgstr "" #. 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.js:459 frappe/core/doctype/user/user.json +#: frappe/core/doctype/user/user.js:466 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" @@ -823,7 +838,7 @@ msgstr "" msgid "Access Token URL" msgstr "" -#: frappe/auth.py:491 +#: frappe/auth.py:494 msgid "Access not allowed from this IP Address" msgstr "Toegang niet toegestaan vanaf dit IP-adres" @@ -939,7 +954,7 @@ msgstr "" #: 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:842 +#: frappe/public/js/frappe/views/reports/query_report.js:850 msgid "Actions" msgstr "Acties" @@ -996,7 +1011,7 @@ msgstr "Activiteitenlogboek" #: 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:501 +#: frappe/public/js/frappe/form/grid_row.js:502 #: 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 @@ -1007,7 +1022,7 @@ msgstr "Activiteitenlogboek" msgid "Add" msgstr "Toevoegen" -#: frappe/public/js/frappe/form/grid_row.js:454 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Add / Remove Columns" msgstr "" @@ -1052,8 +1067,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:1832 -#: frappe/public/js/frappe/views/reports/query_report.js:1835 +#: frappe/public/js/frappe/views/reports/query_report.js:1840 +#: frappe/public/js/frappe/views/reports/query_report.js:1843 #: frappe/public/js/frappe/views/reports/report_view.js:360 #: frappe/public/js/frappe/views/reports/report_view.js:385 #: frappe/public/js/print_format_builder/Field.vue:112 @@ -1147,7 +1162,7 @@ msgstr "Abonnees toevoegen" msgid "Add Tags" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2149 +#: frappe/public/js/frappe/list/list_view.js:2151 msgctxt "Button in list view actions menu" msgid "Add Tags" msgstr "" @@ -1528,11 +1543,11 @@ msgstr "" msgid "Alerts and Notifications" msgstr "" -#: frappe/database/query.py:1608 +#: frappe/database/query.py:1610 msgid "Alias cannot be a SQL keyword: {0}" msgstr "" -#: frappe/database/query.py:1533 +#: frappe/database/query.py:1535 msgid "Alias must be a string" msgstr "" @@ -1979,6 +1994,12 @@ msgstr "" msgid "Alternative Email ID" msgstr "" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Always" +msgstr "" + #. Label of the always_bcc (Data) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Always BCC Address" @@ -2055,6 +2076,11 @@ msgstr "" msgid "Amendment naming rules updated." msgstr "" +#. Success message of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "An email to verify your request has been sent to your email address. Please verify your request to complete the process." +msgstr "" + #: frappe/public/js/frappe/ui/toolbar/toolbar.js:354 msgid "An error occurred while setting Session Defaults" msgstr "" @@ -2237,7 +2263,7 @@ msgstr "" msgid "Apply" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2134 +#: frappe/public/js/frappe/list/list_view.js:2136 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" msgstr "Toewijzingsregel toepassen" @@ -2322,7 +2348,7 @@ msgstr "" msgid "Are you sure you want to cancel the invitation?" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2113 +#: frappe/public/js/frappe/list/list_view.js:2115 msgid "Are you sure you want to clear the assignments?" msgstr "" @@ -2358,7 +2384,7 @@ msgstr "" msgid "Are you sure you want to discard the changes?" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:969 +#: frappe/public/js/frappe/views/reports/query_report.js:977 msgid "Are you sure you want to generate a new report?" msgstr "" @@ -2366,7 +2392,7 @@ msgstr "" msgid "Are you sure you want to merge {0} with {1}?" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:108 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:118 msgid "Are you sure you want to proceed?" msgstr "" @@ -2421,6 +2447,12 @@ msgstr "" msgid "As per your request, your account and data on {0} associated with email {1} has been permanently deleted" msgstr "" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Ask" +msgstr "" + #. Label of the assign_condition (Code) field in DocType 'Assignment Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Assign Condition" @@ -2430,7 +2462,7 @@ msgstr "" msgid "Assign To" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2095 +#: frappe/public/js/frappe/list/list_view.js:2097 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "" @@ -2573,7 +2605,7 @@ msgstr "opdrachten" msgid "Asynchronous" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:696 +#: frappe/public/js/frappe/form/grid_row.js:697 msgid "At least one column is required to show in the grid." msgstr "" @@ -3553,7 +3585,7 @@ msgstr "" msgid "Bulk Edit" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1189 +#: frappe/public/js/frappe/form/grid.js:1190 msgid "Bulk Edit {0}" msgstr "" @@ -3845,7 +3877,7 @@ msgstr "" #. 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/doctype/doctype_list.js:131 #: frappe/core/doctype/user_document_type/user_document_type.json #: frappe/core/doctype/user_invitation/user_invitation.js:17 #: frappe/email/doctype/notification/notification.json @@ -3853,7 +3885,7 @@ msgstr "" msgid "Cancel" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2204 +#: frappe/public/js/frappe/list/list_view.js:2206 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "" @@ -3871,7 +3903,7 @@ msgstr "" msgid "Cancel All Documents" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2209 +#: frappe/public/js/frappe/list/list_view.js:2211 msgctxt "Title of confirmation dialog" msgid "Cancel {0} documents?" msgstr "" @@ -3924,7 +3956,7 @@ msgstr "" msgid "Cannot Update After Submit" msgstr "" -#: frappe/core/doctype/file/file.py:643 +#: frappe/core/doctype/file/file.py:646 msgid "Cannot access file path {0}" msgstr "" @@ -3972,7 +4004,7 @@ msgstr "" msgid "Cannot delete Home and Attachments folders" msgstr "" -#: frappe/model/delete_doc.py:379 +#: frappe/model/delete_doc.py:419 msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}" msgstr "" @@ -4052,7 +4084,7 @@ msgstr "" msgid "Cannot find file {} on disk" msgstr "" -#: frappe/core/doctype/file/file.py:583 +#: frappe/core/doctype/file/file.py:586 msgid "Cannot get file contents of a Folder" msgstr "" @@ -4060,7 +4092,7 @@ msgstr "" msgid "Cannot have multiple printers mapped to a single print format." msgstr "" -#: frappe/public/js/frappe/form/grid.js:1133 +#: frappe/public/js/frappe/form/grid.js:1134 msgid "Cannot import table with more than 5000 rows." msgstr "" @@ -4076,7 +4108,7 @@ msgstr "" msgid "Cannot match column {0} with any field" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:175 +#: frappe/public/js/frappe/form/grid_row.js:176 msgid "Cannot move row" msgstr "" @@ -4105,11 +4137,11 @@ msgstr "" msgid "Cannot update {0}" msgstr "" -#: frappe/model/db_query.py:1130 +#: frappe/model/db_query.py:1136 msgid "Cannot use sub-query here." msgstr "" -#: frappe/model/db_query.py:1162 +#: frappe/model/db_query.py:1168 msgid "Cannot use {0} in order/group by" msgstr "" @@ -4381,11 +4413,11 @@ msgstr "" #. Description of the 'Is Child Table' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:52 +#: frappe/core/doctype/doctype/doctype_list.js:53 msgid "Child Tables are shown as a Grid in other DocTypes" msgstr "" -#: frappe/database/query.py:660 +#: frappe/database/query.py:662 msgid "Child query fields for '{0}' must be a list or tuple." msgstr "" @@ -4441,7 +4473,7 @@ msgstr "" msgid "Clear All" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2110 +#: frappe/public/js/frappe/list/list_view.js:2112 msgctxt "Button in list view actions menu" msgid "Clear Assignment" msgstr "" @@ -4535,7 +4567,7 @@ msgstr "" msgid "Click to Set Filters" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:739 +#: frappe/public/js/frappe/list/list_view.js:741 msgid "Click to sort by {0}" msgstr "" @@ -4713,7 +4745,7 @@ msgctxt "Shrink code field." msgid "Collapse" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2113 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 #: frappe/public/js/frappe/views/treeview.js:123 msgid "Collapse All" msgstr "" @@ -4768,7 +4800,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:1233 +#: frappe/public/js/frappe/views/reports/query_report.js:1241 #: frappe/public/js/frappe/widgets/widget_dialog.js:546 #: frappe/public/js/frappe/widgets/widget_dialog.js:694 #: frappe/website/doctype/color/color.json @@ -4824,11 +4856,11 @@ msgstr "" msgid "Column Name cannot be empty" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:454 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Column Width" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:661 +#: frappe/public/js/frappe/form/grid_row.js:662 msgid "Column width cannot be zero." msgstr "" @@ -4855,7 +4887,7 @@ msgstr "" msgid "Columns / Fields" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:397 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:411 msgid "Columns based on" msgstr "" @@ -5119,7 +5151,7 @@ msgstr "" msgid "Configure Chart" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:406 +#: frappe/public/js/frappe/form/grid_row.js:407 msgid "Configure Columns" msgstr "" @@ -5144,7 +5176,7 @@ msgstr "" msgid "Configure various aspects of how document naming works like naming series, current counter." msgstr "" -#: frappe/core/doctype/user/user.js:412 frappe/public/js/frappe/dom.js:345 +#: frappe/core/doctype/user/user.js:400 frappe/public/js/frappe/dom.js:345 #: frappe/www/update-password.html:66 msgid "Confirm" msgstr "" @@ -5163,7 +5195,7 @@ msgstr "" msgid "Confirm Deletion of Account" msgstr "" -#: frappe/core/doctype/user/user.js:196 +#: frappe/core/doctype/user/user.js:184 msgid "Confirm New Password" msgstr "" @@ -5416,7 +5448,7 @@ msgstr "" msgid "Copy to Clipboard" msgstr "" -#: frappe/core/doctype/user/user.js:480 +#: frappe/core/doctype/user/user.js:487 msgid "Copy token to clipboard" msgstr "" @@ -5425,7 +5457,7 @@ msgstr "" msgid "Copyright" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:123 +#: frappe/custom/doctype/customize_form/customize_form.py:125 msgid "Core DocTypes cannot be customized." msgstr "" @@ -5449,7 +5481,7 @@ msgstr "" msgid "Could not map column {0} to field {1}" msgstr "" -#: frappe/database/query.py:564 +#: frappe/database/query.py:566 msgid "Could not parse field: {0}" msgstr "" @@ -5541,13 +5573,13 @@ 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:1265 +#: frappe/public/js/frappe/views/reports/query_report.js:1273 #: frappe/public/js/frappe/views/workspace/workspace.js:469 #: frappe/workflow/page/workflow_builder/workflow_builder.js:46 msgid "Create" msgstr "" -#: frappe/core/doctype/doctype/doctype_list.js:102 +#: frappe/core/doctype/doctype/doctype_list.js:103 msgid "Create & Continue" msgstr "" @@ -5561,7 +5593,7 @@ msgid "Create Card" msgstr "" #: frappe/public/js/frappe/views/reports/query_report.js:285 -#: frappe/public/js/frappe/views/reports/query_report.js:1192 +#: frappe/public/js/frappe/views/reports/query_report.js:1200 msgid "Create Chart" msgstr "" @@ -5595,12 +5627,12 @@ msgstr "" msgid "Create New" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:512 +#: frappe/public/js/frappe/list/list_view.js:514 msgctxt "Create a new document from list view" msgid "Create New" msgstr "" -#: frappe/core/doctype/doctype/doctype_list.js:100 +#: frappe/core/doctype/doctype/doctype_list.js:101 msgid "Create New DocType" msgstr "" @@ -5608,7 +5640,7 @@ msgstr "" msgid "Create New Kanban Board" msgstr "" -#: frappe/core/doctype/user/user.js:276 +#: frappe/core/doctype/user/user.js:264 msgid "Create User Email" msgstr "" @@ -5631,8 +5663,8 @@ msgstr "" #: frappe/public/js/frappe/form/controls/link.js:315 #: frappe/public/js/frappe/form/controls/link.js:317 #: frappe/public/js/frappe/form/link_selector.js:139 -#: frappe/public/js/frappe/list/list_view.js:504 -#: frappe/public/js/frappe/web_form/web_form_list.js:225 +#: frappe/public/js/frappe/list/list_view.js:506 +#: frappe/public/js/frappe/web_form/web_form_list.js:226 msgid "Create a new {0}" msgstr "" @@ -5648,7 +5680,7 @@ msgstr "" msgid "Create or Edit Workflow" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:507 +#: frappe/public/js/frappe/list/list_view.js:509 msgid "Create your first {0}" msgstr "" @@ -5995,7 +6027,7 @@ 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/core/doctype/doctype/doctype_list.js:83 #: frappe/website/doctype/website_theme/website_theme.json msgid "Custom?" msgstr "" @@ -6030,7 +6062,7 @@ msgstr "" msgid "Customize" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1947 +#: frappe/public/js/frappe/list/list_view.js:1949 msgctxt "Button in list view menu" msgid "Customize" msgstr "" @@ -6049,7 +6081,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:343 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 msgid "Customize Form" msgstr "" @@ -6280,7 +6312,7 @@ msgstr "" msgid "Data Import Template" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:615 +#: frappe/custom/doctype/customize_form/customize_form.py:619 msgid "Data Too Long" msgstr "" @@ -6311,7 +6343,7 @@ msgstr "" msgid "Database Storage Usage By Tables" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:249 +#: frappe/custom/doctype/customize_form/customize_form.py:251 msgid "Database Table Row Size Limit" msgstr "" @@ -6681,13 +6713,13 @@ msgstr "" #: frappe/public/js/frappe/form/toolbar.js:464 #: frappe/public/js/frappe/views/reports/report_view.js:1749 #: frappe/public/js/frappe/views/treeview.js:329 -#: frappe/public/js/frappe/web_form/web_form_list.js:282 +#: frappe/public/js/frappe/web_form/web_form_list.js:283 #: frappe/templates/discussions/reply_card.html:35 #: frappe/templates/discussions/reply_section.html:29 msgid "Delete" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2172 +#: frappe/public/js/frappe/list/list_view.js:2174 msgctxt "Button in list view actions menu" msgid "Delete" msgstr "" @@ -6720,7 +6752,7 @@ msgstr "" msgid "Delete Data" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:106 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:116 msgid "Delete Kanban Board" msgstr "" @@ -6734,7 +6766,7 @@ msgctxt "Title of confirmation dialog" msgid "Delete Tab" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:936 +#: frappe/public/js/frappe/views/reports/query_report.js:944 msgid "Delete and Generate New" msgstr "" @@ -6776,12 +6808,12 @@ msgstr "" msgid "Delete this record to allow sending to this email address" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2177 +#: frappe/public/js/frappe/list/list_view.js:2179 msgctxt "Title of confirmation dialog" msgid "Delete {0} item permanently?" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2183 +#: frappe/public/js/frappe/list/list_view.js:2185 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "" @@ -7278,10 +7310,14 @@ msgstr "" msgid "Do not create new user if user with email does not exist in the system" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1194 +#: frappe/public/js/frappe/form/grid.js:1195 msgid "Do not edit headers which are preset in the template" msgstr "" +#: frappe/public/js/frappe/router.js:624 +msgid "Do not warn me again about {0}" +msgstr "" + #: frappe/core/doctype/system_settings/system_settings.js:71 msgid "Do you still want to proceed?" msgstr "" @@ -7705,7 +7741,7 @@ msgstr "" #: 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/public/js/frappe/roles_editor.js:68 #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json #: frappe/workflow/doctype/workflow/workflow.json msgid "Document Type" @@ -7756,15 +7792,15 @@ msgstr "" msgid "Document follow is not enabled for this user." msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1300 +#: frappe/public/js/frappe/list/list_view.js:1302 msgid "Document has been cancelled" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1299 +#: frappe/public/js/frappe/list/list_view.js:1301 msgid "Document has been submitted" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1298 +#: frappe/public/js/frappe/list/list_view.js:1300 msgid "Document is in draft state" msgstr "" @@ -7906,7 +7942,7 @@ msgstr "" msgid "Double click to edit label" msgstr "" -#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:467 +#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:474 #: frappe/email/doctype/auto_email_report/auto_email_report.js:8 #: frappe/public/js/frappe/form/grid.js:66 msgid "Download" @@ -7939,7 +7975,7 @@ msgstr "" msgid "Download PDF" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:832 +#: frappe/public/js/frappe/views/reports/query_report.js:840 msgid "Download Report" msgstr "" @@ -8139,8 +8175,8 @@ msgstr "" #: 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:880 -#: frappe/public/js/frappe/views/reports/query_report.js:1783 +#: frappe/public/js/frappe/views/reports/query_report.js:888 +#: frappe/public/js/frappe/views/reports/query_report.js:1791 #: 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 @@ -8152,7 +8188,7 @@ msgstr "" msgid "Edit" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2258 +#: frappe/public/js/frappe/list/list_view.js:2260 msgctxt "Button in list view actions menu" msgid "Edit" msgstr "" @@ -8162,7 +8198,7 @@ msgctxt "Button in web form" msgid "Edit" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:349 +#: frappe/public/js/frappe/form/grid_row.js:350 msgctxt "Edit grid row" msgid "Edit" msgstr "" @@ -8191,7 +8227,7 @@ msgstr "" msgid "Edit DocType" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1974 +#: frappe/public/js/frappe/list/list_view.js:1976 msgctxt "Button in list view menu" msgid "Edit DocType" msgstr "" @@ -8311,7 +8347,7 @@ msgstr "" #. 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/core/doctype/doctype/doctype_list.js:58 #: frappe/custom/doctype/customize_form/customize_form.json msgid "Editable Grid" msgstr "" @@ -8356,6 +8392,8 @@ msgstr "" #. 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' +#. Label of a field in the request-data Web Form +#. Label of a field in the request-to-delete-data Web Form #: frappe/automation/workspace/tools/tools.json #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/custom_docperm/custom_docperm.json @@ -8374,6 +8412,8 @@ msgstr "" #: 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/website/web_form/request_data/request_data.json +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json #: frappe/www/login.html:8 frappe/www/login.py:104 msgid "Email" msgstr "" @@ -8605,7 +8645,7 @@ msgstr "" msgid "Email has been moved to trash" msgstr "" -#: frappe/core/doctype/user/user.js:278 +#: frappe/core/doctype/user/user.js:266 msgid "Email is mandatory to create User Email" msgstr "" @@ -8648,7 +8688,7 @@ msgstr "" msgid "Embed code copied" msgstr "" -#: frappe/database/query.py:1537 +#: frappe/database/query.py:1539 msgid "Empty alias is not allowed" msgstr "" @@ -8656,7 +8696,7 @@ msgstr "" msgid "Empty column" msgstr "" -#: frappe/database/query.py:1455 +#: frappe/database/query.py:1457 msgid "Empty string arguments are not allowed" msgstr "" @@ -9112,9 +9152,9 @@ msgstr "" msgid "Error in Header/Footer Script" msgstr "" -#: frappe/email/doctype/notification/notification.py:640 -#: frappe/email/doctype/notification/notification.py:780 -#: frappe/email/doctype/notification/notification.py:786 +#: frappe/email/doctype/notification/notification.py:642 +#: frappe/email/doctype/notification/notification.py:782 +#: frappe/email/doctype/notification/notification.py:788 msgid "Error in Notification" msgstr "" @@ -9134,7 +9174,7 @@ msgstr "" msgid "Error while connecting to email account {0}" msgstr "" -#: frappe/email/doctype/notification/notification.py:777 +#: frappe/email/doctype/notification/notification.py:779 msgid "Error while evaluating Notification {0}. Please fix your template." msgstr "" @@ -9295,7 +9335,7 @@ msgstr "" msgid "Executing..." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2132 +#: frappe/public/js/frappe/views/reports/query_report.js:2140 msgid "Execution Time: {0} sec" msgstr "" @@ -9321,12 +9361,12 @@ msgctxt "Enlarge code field." msgid "Expand" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2113 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 #: frappe/public/js/frappe/views/treeview.js:133 msgid "Expand All" msgstr "" -#: frappe/database/query.py:352 +#: frappe/database/query.py:354 msgid "Expected 'and' or 'or' operator, found: {0}" msgstr "" @@ -9384,13 +9424,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:1820 +#: frappe/public/js/frappe/views/reports/query_report.js:1828 #: frappe/public/js/frappe/views/reports/report_view.js:1629 #: frappe/public/js/frappe/widgets/chart_widget.js:315 msgid "Export" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2280 +#: frappe/public/js/frappe/list/list_view.js:2282 msgctxt "Button in list view actions menu" msgid "Export" msgstr "" @@ -9583,7 +9623,7 @@ msgstr "" msgid "Failed to connect to server" msgstr "" -#: frappe/auth.py:698 +#: frappe/auth.py:701 msgid "Failed to decode token, please provide a valid base64-encoded token." msgstr "" @@ -9747,7 +9787,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:236 -#: frappe/public/js/frappe/views/reports/query_report.js:1879 +#: frappe/public/js/frappe/views/reports/query_report.js:1887 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_form_list_column/web_form_list_column.json msgid "Field" @@ -9830,7 +9870,7 @@ msgstr "" msgid "Field {0} not found." msgstr "" -#: frappe/email/doctype/notification/notification.py:545 +#: frappe/email/doctype/notification/notification.py:547 msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link" msgstr "" @@ -9848,7 +9888,7 @@ msgstr "" #: 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:454 +#: frappe/public/js/frappe/form/grid_row.js:455 #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Fieldname" msgstr "" @@ -9929,7 +9969,7 @@ msgstr "" msgid "Fields must be a list or tuple when as_list is enabled" msgstr "" -#: frappe/database/query.py:611 +#: frappe/database/query.py:613 msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function" msgstr "" @@ -9957,7 +9997,7 @@ msgstr "" msgid "Fieldtype cannot be changed from {0} to {1}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:589 +#: frappe/custom/doctype/customize_form/customize_form.py:593 msgid "Fieldtype cannot be changed from {0} to {1} in row {2}" msgstr "" @@ -10023,7 +10063,7 @@ msgstr "" msgid "File backup is ready" msgstr "" -#: frappe/core/doctype/file/file.py:646 +#: frappe/core/doctype/file/file.py:649 msgid "File name cannot have {0}" msgstr "" @@ -10031,7 +10071,7 @@ msgstr "" msgid "File not attached" msgstr "" -#: frappe/core/doctype/file/file.py:756 frappe/public/js/frappe/request.js:200 +#: frappe/core/doctype/file/file.py:759 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 "" @@ -10044,7 +10084,7 @@ msgstr "" msgid "File type of {0} is not allowed" msgstr "" -#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:448 +#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:451 msgid "File {0} does not exist" msgstr "" @@ -10098,11 +10138,11 @@ msgstr "" msgid "Filter Values" msgstr "" -#: frappe/database/query.py:358 +#: frappe/database/query.py:360 msgid "Filter condition missing after operator: {0}" msgstr "" -#: frappe/database/query.py:425 +#: frappe/database/query.py:427 msgid "Filter fields cannot contain backticks (`)." msgstr "" @@ -10179,7 +10219,7 @@ msgstr "" msgid "Filters applied for {0}" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:188 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:202 msgid "Filters saved" msgstr "" @@ -10227,9 +10267,12 @@ msgstr "" #. Label of the first_name (Data) field in DocType 'Contact' #. Label of the first_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json #: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:44 -#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:15 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:15 msgid "First Name" msgstr "" @@ -10310,7 +10353,7 @@ msgstr "" msgid "Folder name should not include '/' (slash)" msgstr "" -#: frappe/core/doctype/file/file.py:494 +#: frappe/core/doctype/file/file.py:497 msgid "Folder {0} is not empty" msgstr "" @@ -10512,7 +10555,7 @@ msgstr "" msgid "For Value" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2129 +#: frappe/public/js/frappe/views/reports/query_report.js:2137 #: frappe/public/js/frappe/views/reports/report_view.js:108 msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)." msgstr "" @@ -10797,7 +10840,7 @@ msgstr "" msgid "From Date Field" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1840 +#: frappe/public/js/frappe/views/reports/query_report.js:1848 msgid "From Document Type" msgstr "" @@ -10859,12 +10902,12 @@ msgstr "" msgid "Function {0} is not whitelisted." msgstr "" -#: frappe/database/query.py:1417 +#: frappe/database/query.py:1419 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" +msgid "Further sub-groups can only be created under records marked as 'Group'" msgstr "" #: frappe/core/doctype/communication/communication.js:291 @@ -10924,7 +10967,7 @@ msgstr "" msgid "Generate Keys" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:874 +#: frappe/public/js/frappe/views/reports/query_report.js:882 msgid "Generate New Report" msgstr "" @@ -11340,14 +11383,10 @@ msgstr "" msgid "Group By field is required to create a dashboard chart" msgstr "" -#: frappe/database/query.py:750 +#: frappe/database/query.py:752 msgid "Group By must be a string" msgstr "" -#: frappe/public/js/frappe/views/treeview.js:418 -msgid "Group Node" -msgstr "" - #. Label of the ldap_group_objectclass (Data) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Group Object Class" @@ -11677,7 +11716,7 @@ msgstr "" msgid "Hidden Fields" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1642 +#: frappe/public/js/frappe/views/reports/query_report.js:1650 msgid "Hidden columns include: {0}" msgstr "" @@ -11789,7 +11828,7 @@ msgstr "" msgid "Hide Standard Menu" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1849 +#: frappe/public/js/frappe/list/list_view.js:1851 msgid "Hide Tags" msgstr "" @@ -12048,7 +12087,7 @@ msgstr "" #: frappe/core/doctype/doctype/doctype.py:1777 #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45 -#: frappe/public/js/frappe/roles_editor.js:66 +#: frappe/public/js/frappe/roles_editor.js:68 msgid "If Owner" msgstr "" @@ -12276,8 +12315,8 @@ msgstr "" msgid "Illegal Document Status for {0}" msgstr "" -#: frappe/model/db_query.py:453 frappe/model/db_query.py:456 -#: frappe/model/db_query.py:1121 +#: frappe/model/db_query.py:454 frappe/model/db_query.py:457 +#: frappe/model/db_query.py:1122 msgid "Illegal SQL Query" msgstr "" @@ -12364,11 +12403,11 @@ msgstr "" #. Option for the 'Operation' (Select) field in DocType 'Activity Log' #: frappe/core/doctype/activity_log/activity_log.json -#: frappe/core/doctype/user/user.js:384 +#: frappe/core/doctype/user/user.js:372 msgid "Impersonate" msgstr "" -#: frappe/core/doctype/user/user.js:411 +#: frappe/core/doctype/user/user.js:399 msgid "Impersonate as {0}" msgstr "" @@ -12398,7 +12437,7 @@ msgstr "" msgid "Import" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1911 +#: frappe/public/js/frappe/list/list_view.js:1913 msgctxt "Button in list view menu" msgid "Import" msgstr "" @@ -12627,15 +12666,15 @@ msgid "Include Web View Link in Email" msgstr "" #: frappe/public/js/frappe/form/print_utils.js:59 -#: frappe/public/js/frappe/views/reports/query_report.js:1620 +#: frappe/public/js/frappe/views/reports/query_report.js:1628 msgid "Include filters" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1640 +#: frappe/public/js/frappe/views/reports/query_report.js:1648 msgid "Include hidden columns" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1612 +#: frappe/public/js/frappe/views/reports/query_report.js:1620 msgid "Include indentation" msgstr "" @@ -12682,7 +12721,7 @@ msgstr "" msgid "Incomplete Virtual Doctype Implementation" msgstr "" -#: frappe/auth.py:255 +#: frappe/auth.py:258 msgid "Incomplete login details" msgstr "" @@ -12793,7 +12832,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:1885 +#: frappe/public/js/frappe/views/reports/query_report.js:1893 msgid "Insert After" msgstr "" @@ -12866,7 +12905,7 @@ msgstr "" msgid "Insufficient Permission Level for {0}" msgstr "" -#: frappe/database/query.py:806 frappe/database/query.py:1052 +#: frappe/database/query.py:808 frappe/database/query.py:1054 msgid "Insufficient Permission for {0}" msgstr "" @@ -12982,7 +13021,7 @@ msgid "Invalid" msgstr "" #: frappe/public/js/form_builder/utils.js:221 -#: frappe/public/js/frappe/form/grid_row.js:849 +#: frappe/public/js/frappe/form/grid_row.js:850 #: frappe/public/js/frappe/form/layout.js:810 #: frappe/public/js/frappe/views/reports/report_view.js:721 msgid "Invalid \"depends_on\" expression" @@ -13040,8 +13079,8 @@ 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 +#: frappe/database/query.py:429 frappe/database/query.py:456 +#: frappe/database/query.py:466 frappe/database/query.py:489 msgid "Invalid Filter" msgstr "" @@ -13113,7 +13152,7 @@ msgstr "" msgid "Invalid Phone Number" msgstr "" -#: frappe/auth.py:94 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 +#: frappe/auth.py:97 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 #: frappe/www/login.py:128 msgid "Invalid Request" msgstr "" @@ -13153,7 +13192,7 @@ msgstr "" msgid "Invalid aggregate function" msgstr "" -#: frappe/database/query.py:1542 +#: frappe/database/query.py:1544 msgid "Invalid alias format: {0}. Alias must be a simple identifier." msgstr "" @@ -13161,19 +13200,19 @@ msgstr "" msgid "Invalid app" msgstr "" -#: frappe/database/query.py:1468 +#: frappe/database/query.py:1470 msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed." msgstr "" -#: frappe/database/query.py:1444 +#: frappe/database/query.py:1446 msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed." msgstr "" -#: frappe/database/query.py:460 +#: frappe/database/query.py:462 msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed." msgstr "" -#: frappe/database/query.py:575 +#: frappe/database/query.py:577 msgid "Invalid characters in table name: {0}" msgstr "" @@ -13181,11 +13220,11 @@ msgstr "" msgid "Invalid column" msgstr "" -#: frappe/database/query.py:381 +#: frappe/database/query.py:383 msgid "Invalid condition type in nested filters: {0}" msgstr "" -#: frappe/database/query.py:787 +#: frappe/database/query.py:789 msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'." msgstr "" @@ -13201,23 +13240,23 @@ msgstr "" msgid "Invalid expression set in filter {0} ({1})" msgstr "" -#: frappe/database/query.py:1301 +#: frappe/database/query.py:1303 msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'." msgstr "" -#: frappe/database/query.py:734 +#: frappe/database/query.py:736 msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'." msgstr "" -#: frappe/database/query.py:1620 +#: frappe/database/query.py:1622 msgid "Invalid field name in function: {0}. Only simple field names are allowed." msgstr "" -#: frappe/utils/data.py:2215 +#: frappe/utils/data.py:2241 msgid "Invalid field name {0}" msgstr "" -#: frappe/database/query.py:668 +#: frappe/database/query.py:670 msgid "Invalid field type: {0}" msgstr "" @@ -13229,11 +13268,11 @@ msgstr "" msgid "Invalid file path: {0}" msgstr "" -#: frappe/database/query.py:364 +#: frappe/database/query.py:366 msgid "Invalid filter condition: {0}. Expected a list or tuple." msgstr "" -#: frappe/database/query.py:450 +#: frappe/database/query.py:452 msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'." msgstr "" @@ -13241,11 +13280,11 @@ msgstr "" msgid "Invalid filter: {0}" msgstr "" -#: frappe/database/query.py:1422 +#: frappe/database/query.py:1424 msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed." msgstr "" -#: frappe/database/query.py:1383 +#: frappe/database/query.py:1385 msgid "Invalid function dictionary format" msgstr "" @@ -13282,23 +13321,27 @@ msgstr "" msgid "Invalid redirect regex in row #{}: {}" msgstr "" -#: frappe/app.py:337 +#: frappe/app.py:340 msgid "Invalid request arguments" msgstr "" +#: frappe/app.py:327 +msgid "Invalid request body" +msgstr "" + #: frappe/core/doctype/user_invitation/user_invitation.py:181 msgid "Invalid role" msgstr "" -#: frappe/database/query.py:410 +#: frappe/database/query.py:412 msgid "Invalid simple filter format: {0}" msgstr "" -#: frappe/database/query.py:341 +#: frappe/database/query.py:343 msgid "Invalid start for filter condition: {0}. Expected a list or tuple." msgstr "" -#: frappe/database/query.py:1489 +#: frappe/database/query.py:1491 msgid "Invalid string literal format: {0}" msgstr "" @@ -13402,7 +13445,7 @@ msgstr "" #. 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/doctype_list.js:50 #: frappe/core/doctype/doctype_link/doctype_link.json msgid "Is Child Table" msgstr "" @@ -13455,6 +13498,10 @@ msgstr "" msgid "Is Global" msgstr "" +#: frappe/public/js/frappe/views/treeview.js:418 +msgid "Is Group" +msgstr "" + #. Label of the is_hidden (Check) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "Is Hidden" @@ -13543,7 +13590,7 @@ 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/core/doctype/doctype/doctype_list.js:65 #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Is Single" msgstr "" @@ -13579,7 +13626,7 @@ msgstr "" #. Label of the is_submittable (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:39 +#: frappe/core/doctype/doctype/doctype_list.js:40 msgid "Is Submittable" msgstr "" @@ -13785,11 +13832,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:388 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:402 msgid "Kanban Board Name" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:265 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:279 msgctxt "Button in kanban view menu" msgid "Kanban Settings" msgstr "" @@ -14087,10 +14134,13 @@ msgstr "" #. 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' +#. Label of a field in the edit-profile Web Form #: 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:117 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/printing/page/print/print.js:117 #: frappe/public/js/frappe/form/templates/print_layout.html:11 msgid "Language" msgstr "" @@ -14178,9 +14228,12 @@ msgstr "" #. Label of the last_name (Data) field in DocType 'Contact' #. Label of the last_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json #: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:45 -#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:19 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:19 msgid "Last Name" msgstr "" @@ -14421,7 +14474,7 @@ msgstr "" #: 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/public/js/frappe/roles_editor.js:68 #: frappe/website/doctype/help_article/help_article.json msgid "Level" msgstr "" @@ -14714,7 +14767,7 @@ msgstr "" msgid "List Settings" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1991 +#: frappe/public/js/frappe/list/list_view.js:1993 msgctxt "Button in list view menu" msgid "List Settings" msgstr "" @@ -14765,7 +14818,7 @@ msgid "Load Balancing" msgstr "" #: frappe/public/js/frappe/list/base_list.js:399 -#: frappe/public/js/frappe/web_form/web_form_list.js:305 +#: frappe/public/js/frappe/web_form/web_form_list.js:306 #: frappe/website/doctype/help_article/templates/help_article_list.html:30 msgid "Load More" msgstr "" @@ -14785,7 +14838,7 @@ msgstr "" #: frappe/public/js/frappe/list/base_list.js:526 #: frappe/public/js/frappe/list/list_view.js:363 #: frappe/public/js/frappe/ui/listing.html:16 -#: frappe/public/js/frappe/views/reports/query_report.js:1089 +#: frappe/public/js/frappe/views/reports/query_report.js:1097 msgid "Loading" msgstr "" @@ -14928,7 +14981,7 @@ msgstr "" msgid "Login and view in Browser" msgstr "" -#: frappe/website/doctype/web_form/web_form.js:367 +#: frappe/website/doctype/web_form/web_form.js:368 msgid "Login is required to see web form list view. Enable {0} to see list settings" msgstr "" @@ -14936,7 +14989,7 @@ msgstr "" msgid "Login link sent to your email" msgstr "" -#: frappe/auth.py:339 frappe/auth.py:342 +#: frappe/auth.py:342 frappe/auth.py:345 msgid "Login not allowed at this time" msgstr "" @@ -14989,7 +15042,7 @@ msgstr "" msgid "Login with email link expiry (in minutes)" msgstr "" -#: frappe/auth.py:144 +#: frappe/auth.py:147 msgid "Login with username and password is not allowed." msgstr "" @@ -15008,7 +15061,7 @@ msgstr "" msgid "Logout" msgstr "" -#: frappe/core/doctype/user/user.js:202 +#: frappe/core/doctype/user/user.js:190 msgid "Logout All Sessions" msgstr "" @@ -15112,7 +15165,10 @@ msgid "Major" msgstr "" #. Label of the show_name_in_global_search (Check) field in DocType 'DocType' +#. Label of the show_name_in_global_search (Check) field in DocType 'Customize +#. Form' #: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Make \"name\" searchable in Global Search" msgstr "" @@ -15188,7 +15244,7 @@ msgstr "" msgid "Mandatory Depends On (JS)" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:509 +#: frappe/website/doctype/web_form/web_form.py:536 msgid "Mandatory Information missing:" msgstr "" @@ -15645,6 +15701,11 @@ msgstr "" msgid "Middle Name" msgstr "" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Middle Name (Optional)" +msgstr "" + #. Name of a DocType #. Label of a Link in the Tools Workspace #: frappe/automation/doctype/milestone/milestone.json @@ -15751,6 +15812,11 @@ msgstr "" msgid "Mobile No" msgstr "" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Mobile Number" +msgstr "" + #. 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" @@ -15776,7 +15842,7 @@ msgstr "" #. 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/doctype/doctype_list.js:31 #: 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 @@ -15952,10 +16018,12 @@ msgstr "" #. Label of the additional_info (Section Break) field in DocType #. 'Communication' #. Label of the short_bio (Tab Break) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: 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 +#: frappe/core/web_form/edit_profile/edit_profile.json msgid "More Information" msgstr "" @@ -15985,7 +16053,7 @@ msgstr "" msgid "Move" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:193 +#: frappe/public/js/frappe/form/grid_row.js:194 msgid "Move To" msgstr "" @@ -16021,7 +16089,7 @@ msgstr "" msgid "Move the current field and the following fields to a new column" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:168 +#: frappe/public/js/frappe/form/grid_row.js:169 msgid "Move to Row Number" msgstr "" @@ -16089,7 +16157,7 @@ msgid "Mx" msgstr "" #: frappe/templates/includes/web_sidebar.html:41 -#: frappe/website/doctype/web_form/web_form.py:498 +#: frappe/website/doctype/web_form/web_form.py:525 #: 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" @@ -16231,12 +16299,12 @@ msgstr "" msgid "Navbar Template Values" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1378 +#: frappe/public/js/frappe/list/list_view.js:1380 msgctxt "Description of a list view shortcut" msgid "Navigate list down" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1385 +#: frappe/public/js/frappe/list/list_view.js:1387 msgctxt "Description of a list view shortcut" msgid "Navigate list up" msgstr "" @@ -16251,6 +16319,10 @@ msgstr "" msgid "Navigation Settings" msgstr "" +#: frappe/public/js/frappe/list/list_view.js:485 +msgid "Need Help?" +msgstr "" + #: frappe/desk/doctype/workspace/workspace.py:322 msgid "Need Workspace Manager role to edit private workspace of other users" msgstr "" @@ -16259,7 +16331,7 @@ msgstr "" msgid "Negative Value" msgstr "" -#: frappe/database/query.py:333 +#: frappe/database/query.py:335 msgid "Nested filters must be provided as a list or tuple." msgstr "" @@ -16272,6 +16344,12 @@ msgstr "" msgid "Network Printer Settings" msgstr "" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Never" +msgstr "" + #. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/core/doctype/success_action/success_action.js:57 @@ -16280,7 +16358,7 @@ msgstr "" #: 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/treeview.js:473 #: frappe/public/js/frappe/views/workspace/workspace.js:64 #: frappe/website/doctype/web_form/templates/web_list.html:15 #: frappe/www/list.html:19 @@ -16341,7 +16419,7 @@ msgstr "" msgid "New Folder" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 msgid "New Kanban Board" msgstr "" @@ -16376,7 +16454,7 @@ msgstr "" msgid "New Onboarding" msgstr "" -#: frappe/core/doctype/user/user.js:190 frappe/www/update-password.html:43 +#: frappe/core/doctype/user/user.js:178 frappe/www/update-password.html:43 msgid "New Password" msgstr "" @@ -16472,7 +16550,7 @@ msgstr "" #: frappe/public/js/frappe/ui/toolbar/search_utils.js:227 #: 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:411 +#: frappe/website/doctype/web_form/web_form.py:438 msgid "New {0}" msgstr "" @@ -16624,7 +16702,7 @@ msgstr "" #: frappe/public/js/form_builder/utils.js:341 #: frappe/public/js/frappe/form/controls/link.js:498 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1665 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 #: frappe/website/doctype/help_article/templates/help_article.html:26 msgid "No" msgstr "" @@ -16773,7 +16851,7 @@ msgstr "" msgid "No Roles Specified" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 msgid "No Select Field Found" msgstr "" @@ -16857,7 +16935,7 @@ msgstr "" msgid "No failed logs" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:371 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:385 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 "" @@ -16881,7 +16959,7 @@ msgstr "" msgid "No matching records. Search something new" msgstr "" -#: frappe/public/js/frappe/web_form/web_form_list.js:161 +#: frappe/public/js/frappe/web_form/web_form_list.js:162 msgid "No more items to display" msgstr "" @@ -16925,7 +17003,7 @@ msgctxt "{0} = verb, {1} = object" msgid "No permission to '{0}' {1}" msgstr "" -#: frappe/model/db_query.py:948 +#: frappe/model/db_query.py:949 msgid "No permission to read {0}" msgstr "" @@ -16973,11 +17051,11 @@ msgstr "" msgid "No {0} Found" msgstr "" -#: frappe/public/js/frappe/web_form/web_form_list.js:233 +#: frappe/public/js/frappe/web_form/web_form_list.js:234 msgid "No {0} found" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:497 +#: frappe/public/js/frappe/list/list_view.js:499 msgid "No {0} found with matching filters. Clear filters to see all {0}." msgstr "" @@ -16986,7 +17064,7 @@ msgid "No {0} mail" msgstr "" #: frappe/public/js/form_builder/utils.js:117 -#: frappe/public/js/frappe/form/grid_row.js:256 +#: frappe/public/js/frappe/form/grid_row.js:257 msgctxt "Title of the 'row number' column" msgid "No." msgstr "" @@ -17050,7 +17128,7 @@ msgstr "" msgid "Not Equals" msgstr "" -#: frappe/app.py:387 frappe/www/404.html:3 +#: frappe/app.py:390 frappe/www/404.html:3 msgid "Not Found" msgstr "" @@ -17076,9 +17154,9 @@ msgstr "" msgid "Not Nullable" msgstr "" -#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26 +#: frappe/__init__.py:550 frappe/app.py:383 frappe/desk/calendar.py:26 #: frappe/public/js/frappe/web_form/webform_script.js:15 -#: frappe/website/doctype/web_form/web_form.py:747 +#: frappe/website/doctype/web_form/web_form.py:774 #: 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 @@ -17097,7 +17175,7 @@ msgstr "" #: 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/kanban/kanban_view.js:183 #: frappe/public/js/frappe/views/reports/report_view.js:209 #: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39 #: frappe/website/doctype/web_form/templates/web_form.html:85 @@ -17148,7 +17226,7 @@ msgstr "" msgid "Not allowed for {0}: {1}" msgstr "" -#: frappe/email/doctype/notification/notification.py:637 +#: frappe/email/doctype/notification/notification.py:639 msgid "Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings" msgstr "" @@ -17180,12 +17258,12 @@ msgstr "" msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType." msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:216 +#: frappe/core/doctype/system_settings/system_settings.py:217 #: 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:760 +#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:787 #: frappe/website/js/website.js:97 msgid "Not permitted" msgstr "" @@ -17231,7 +17309,7 @@ msgstr "" msgid "Note: Multiple sessions will be allowed in case of mobile device" msgstr "" -#: frappe/core/doctype/user/user.js:399 +#: frappe/core/doctype/user/user.js:387 msgid "Note: This will be shared with user." msgstr "" @@ -17303,15 +17381,15 @@ msgstr "" msgid "Notification sent to" msgstr "" -#: frappe/email/doctype/notification/notification.py:542 +#: frappe/email/doctype/notification/notification.py:544 msgid "Notification: customer {0} has no Mobile number set" msgstr "" -#: frappe/email/doctype/notification/notification.py:528 +#: frappe/email/doctype/notification/notification.py:530 msgid "Notification: document {0} has no {1} number set (field: {2})" msgstr "" -#: frappe/email/doctype/notification/notification.py:537 +#: frappe/email/doctype/notification/notification.py:539 msgid "Notification: user {0} has no Mobile number set" msgstr "" @@ -17425,7 +17503,7 @@ msgstr "" msgid "Number of attachment fields are more than {}, limit updated to {}." msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:171 +#: frappe/core/doctype/system_settings/system_settings.py:172 msgid "Number of backups must be greater than zero." msgstr "" @@ -17697,7 +17775,7 @@ msgstr "" #. Description of the 'Is Submittable' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:42 +#: frappe/core/doctype/doctype/doctype_list.js:43 msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended." msgstr "" @@ -17786,11 +17864,11 @@ msgstr "" msgid "Only reports of type Report Builder can be edited" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:129 +#: frappe/custom/doctype/customize_form/customize_form.py:131 msgid "Only standard DocTypes are allowed to be customized from Customize Form." msgstr "" -#: frappe/model/delete_doc.py:241 +#: frappe/model/delete_doc.py:281 msgid "Only the Administrator can delete a standard DocType." msgstr "" @@ -17886,7 +17964,7 @@ msgstr "" msgid "Open in a new tab" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1431 +#: frappe/public/js/frappe/list/list_view.js:1433 msgctxt "Description of a list view shortcut" msgid "Open list item" msgstr "" @@ -17935,7 +18013,7 @@ msgstr "" msgid "Operation" msgstr "" -#: frappe/utils/data.py:2146 +#: frappe/utils/data.py:2172 msgid "Operator must be one of {0}" msgstr "" @@ -17981,6 +18059,7 @@ msgstr "" #. 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 (Text) field in DocType 'Web Form List Column' #. 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 @@ -17989,6 +18068,7 @@ msgstr "" #: 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_form_list_column/web_form_list_column.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Options" msgstr "" @@ -18034,7 +18114,7 @@ msgstr "" msgid "Order" msgstr "" -#: frappe/database/query.py:767 +#: frappe/database/query.py:769 msgid "Order By must be a string" msgstr "" @@ -18132,7 +18212,7 @@ msgstr "" #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/printing/page/print/print.js:84 #: frappe/public/js/frappe/form/templates/print_layout.html:44 -#: frappe/public/js/frappe/views/reports/query_report.js:1804 +#: frappe/public/js/frappe/views/reports/query_report.js:1812 msgid "PDF" msgstr "" @@ -18480,8 +18560,8 @@ msgstr "" #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/system_settings/system_settings.json -#: frappe/core/doctype/user/user.js:177 frappe/core/doctype/user/user.js:224 -#: frappe/core/doctype/user/user.js:244 +#: frappe/core/doctype/user/user.js:165 frappe/core/doctype/user/user.js:212 +#: frappe/core/doctype/user/user.js:232 #: 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 @@ -18504,7 +18584,7 @@ msgstr "" msgid "Password Reset Link Generation Limit" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:896 +#: frappe/public/js/frappe/form/grid_row.js:897 msgid "Password cannot be filtered" msgstr "" @@ -18541,7 +18621,7 @@ msgstr "" msgid "Password set" msgstr "" -#: frappe/auth.py:258 +#: frappe/auth.py:261 msgid "Password size exceeded the maximum allowed size" msgstr "" @@ -18553,7 +18633,7 @@ msgstr "" msgid "Passwords do not match" msgstr "" -#: frappe/core/doctype/user/user.js:210 +#: frappe/core/doctype/user/user.js:198 msgid "Passwords do not match!" msgstr "" @@ -18704,7 +18784,7 @@ msgstr "" msgid "Permanently delete {0}?" msgstr "" -#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533 +#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:535 msgid "Permission Error" msgstr "" @@ -18764,8 +18844,8 @@ msgstr "" #: 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:143 frappe/core/doctype/user/user.js:152 -#: frappe/core/doctype/user/user.js:161 +#: frappe/core/doctype/user/user.js:131 frappe/core/doctype/user/user.js:140 +#: frappe/core/doctype/user/user.js:149 #: 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 @@ -18835,6 +18915,7 @@ msgstr "" #. Option for the 'Type' (Select) field in DocType 'Communication' #. Option for the 'Type' (Select) field in DocType 'DocField' #. Label of the phone (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #. 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' @@ -18845,6 +18926,7 @@ msgstr "" #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.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 @@ -19019,7 +19101,7 @@ msgstr "" msgid "Please duplicate this to make changes" msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:164 +#: frappe/core/doctype/system_settings/system_settings.py:165 msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login." msgstr "" @@ -19151,11 +19233,11 @@ msgstr "" msgid "Please select Entity Type first" msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:115 +#: frappe/core/doctype/system_settings/system_settings.py:116 msgid "Please select Minimum Password Score" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1185 +#: frappe/public/js/frappe/views/reports/query_report.js:1193 msgid "Please select X and Y fields" msgstr "" @@ -19183,7 +19265,7 @@ msgstr "" msgid "Please select applicable Doctypes" msgstr "" -#: frappe/model/db_query.py:1157 +#: frappe/model/db_query.py:1163 msgid "Please select atleast 1 column from {0} to sort/group" msgstr "" @@ -19213,7 +19295,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:1408 +#: frappe/public/js/frappe/views/reports/query_report.js:1416 msgid "Please set filters" msgstr "" @@ -19233,7 +19315,7 @@ msgstr "" msgid "Please set the series to be used." msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:128 +#: frappe/core/doctype/system_settings/system_settings.py:129 msgid "Please setup SMS before setting it as an authentication method, via SMS Settings" msgstr "" @@ -19385,7 +19467,7 @@ msgstr "" msgid "Posting Timestamp" msgstr "" -#: frappe/database/query.py:1518 +#: frappe/database/query.py:1520 msgid "Potentially dangerous content in string literal: {0}" msgstr "" @@ -19587,13 +19669,13 @@ msgstr "" #: 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:1789 +#: frappe/public/js/frappe/views/reports/query_report.js:1797 #: frappe/public/js/frappe/views/reports/report_view.js:1539 -#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18 +#: frappe/public/js/frappe/views/treeview.js:492 frappe/www/printview.html:18 msgid "Print" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2164 +#: frappe/public/js/frappe/list/list_view.js:2166 msgctxt "Button in list view actions menu" msgid "Print" msgstr "" @@ -19663,7 +19745,7 @@ msgstr "" msgid "Print Format Type" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1578 +#: frappe/public/js/frappe/views/reports/query_report.js:1586 msgid "Print Format not found" msgstr "" @@ -19844,11 +19926,11 @@ msgstr "" msgid "Proceed" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:932 +#: frappe/public/js/frappe/views/reports/query_report.js:940 msgid "Proceed Anyway" msgstr "" -#: frappe/public/js/frappe/form/controls/table.js:123 +#: frappe/public/js/frappe/form/controls/table.js:104 msgid "Processing" msgstr "" @@ -19865,11 +19947,21 @@ msgstr "" msgid "Profile" msgstr "" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile Picture" +msgstr "" + +#. Success message of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile updated successfully." +msgstr "" + #: frappe/public/js/frappe/socketio_client.js:82 msgid "Progress" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:408 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:422 msgid "Project" msgstr "" @@ -19913,7 +20005,7 @@ msgstr "" msgid "Protect Attached Files" msgstr "" -#: frappe/core/doctype/file/file.py:523 +#: frappe/core/doctype/file/file.py:526 msgid "Protected File" msgstr "" @@ -20419,11 +20511,11 @@ msgstr "" msgid "Reason" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:886 +#: frappe/public/js/frappe/views/reports/query_report.js:894 msgid "Rebuild" msgstr "" -#: frappe/public/js/frappe/views/treeview.js:509 +#: frappe/public/js/frappe/views/treeview.js:511 msgid "Rebuild Tree" msgstr "" @@ -20804,8 +20896,8 @@ 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:1778 -#: frappe/public/js/frappe/views/treeview.js:496 +#: frappe/public/js/frappe/views/reports/query_report.js:1786 +#: frappe/public/js/frappe/views/treeview.js:498 #: frappe/public/js/frappe/widgets/chart_widget.js:291 #: frappe/public/js/frappe/widgets/number_card_widget.js:352 #: frappe/public/js/print_format_builder/Preview.vue:24 @@ -20836,13 +20928,13 @@ msgstr "" msgid "Refresh Token" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:534 +#: frappe/public/js/frappe/list/list_view.js:536 msgctxt "Document count in list view" msgid "Refreshing" msgstr "" #: frappe/core/doctype/system_settings/system_settings.js:57 -#: frappe/core/doctype/user/user.js:374 +#: frappe/core/doctype/user/user.js:362 #: frappe/desk/page/setup_wizard/setup_wizard.js:211 msgid "Refreshing..." msgstr "" @@ -21227,7 +21319,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:1965 +#: frappe/public/js/frappe/views/reports/query_report.js:1973 msgid "Report Name" msgstr "" @@ -21279,7 +21371,7 @@ msgstr "" msgid "Report has no numeric fields, please change the Report Name" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1013 +#: frappe/public/js/frappe/views/reports/query_report.js:1021 msgid "Report initiated, click to view status" msgstr "" @@ -21299,7 +21391,7 @@ msgstr "" msgid "Report was not saved (there were errors)" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2003 +#: frappe/public/js/frappe/views/reports/query_report.js:2011 msgid "Report with more than 10 columns looks better in Landscape mode." msgstr "" @@ -21335,7 +21427,7 @@ msgstr "" msgid "Reports & Masters" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:929 +#: frappe/public/js/frappe/views/reports/query_report.js:937 msgid "Reports already in Queue" msgstr "" @@ -21354,7 +21446,10 @@ msgid "Request Body" msgstr "" #. Label of the data (Code) field in DocType 'Integration Request' +#. Title of the request-data Web Form +#. Button label of the request-data Web Form #: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/website/web_form/request_data/request_data.json msgid "Request Data" msgstr "" @@ -21406,6 +21501,11 @@ msgstr "" msgid "Request URL" msgstr "" +#. Title of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "Request for Account Deletion" +msgstr "" + #. Label of the requested_numbers (Code) field in DocType 'SMS Log' #: frappe/core/doctype/sms_log/sms_log.json msgid "Requested Numbers" @@ -21461,7 +21561,7 @@ msgstr "" msgid "Reset Fields" msgstr "" -#: frappe/core/doctype/user/user.js:184 frappe/core/doctype/user/user.js:187 +#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:175 msgid "Reset LDAP Password" msgstr "" @@ -21469,11 +21569,11 @@ msgstr "" msgid "Reset Layout" msgstr "" -#: frappe/core/doctype/user/user.js:235 +#: frappe/core/doctype/user/user.js:223 msgid "Reset OTP Secret" msgstr "" -#: frappe/core/doctype/user/user.js:168 frappe/www/login.html:199 +#: frappe/core/doctype/user/user.js:156 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" @@ -21508,7 +21608,7 @@ msgstr "" msgid "Reset sorting" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:433 +#: frappe/public/js/frappe/form/grid_row.js:434 msgid "Reset to default" msgstr "" @@ -21760,7 +21860,7 @@ 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 +#: frappe/public/js/frappe/roles_editor.js:114 msgid "Role Permissions" msgstr "" @@ -21770,7 +21870,7 @@ msgstr "" msgid "Role Permissions Manager" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1933 +#: frappe/public/js/frappe/list/list_view.js:1935 msgctxt "Button in list view menu" msgid "Role Permissions Manager" msgstr "" @@ -21963,11 +22063,11 @@ msgstr "" msgid "Row {0}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:353 +#: frappe/custom/doctype/customize_form/customize_form.py:357 msgid "Row {0}: Not allowed to disable Mandatory for standard fields" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:342 +#: frappe/custom/doctype/customize_form/customize_form.py:346 msgid "Row {0}: Not allowed to enable Allow on Submit for standard fields" msgstr "" @@ -21986,7 +22086,10 @@ msgid "Rows Removed" msgstr "" #. Label of the rows_threshold_for_grid_search (Int) field in DocType 'DocType' +#. Label of the rows_threshold_for_grid_search (Int) field in DocType +#. 'Customize Form' #: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Rows Threshold for Grid Search" msgstr "" @@ -22194,8 +22297,8 @@ msgstr "" #: 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:1957 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 +#: frappe/public/js/frappe/views/reports/query_report.js:1965 #: frappe/public/js/frappe/views/reports/report_view.js:1735 #: frappe/public/js/frappe/views/workspace/workspace.js:335 #: frappe/public/js/frappe/widgets/base_widget.js:142 @@ -22218,11 +22321,11 @@ msgstr "" msgid "Save Customizations" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1960 +#: frappe/public/js/frappe/views/reports/query_report.js:1968 msgid "Save Report" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:97 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:107 msgid "Save filters" msgstr "" @@ -22594,7 +22697,7 @@ msgstr "" msgid "See all Activity" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:855 +#: frappe/public/js/frappe/views/reports/query_report.js:863 msgid "See all past reports." msgstr "" @@ -22658,7 +22761,7 @@ msgstr "" #: 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:497 +#: frappe/public/js/frappe/form/grid_row.js:498 msgid "Select All" msgstr "" @@ -22738,7 +22841,7 @@ msgstr "" msgid "Select Field..." msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:489 +#: frappe/public/js/frappe/form/grid_row.js:490 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:181 msgid "Select Fields" msgstr "" @@ -22858,7 +22961,7 @@ msgid "Select a field to edit its properties." msgstr "" #: frappe/public/js/frappe/views/treeview.js:358 -msgid "Select a group node first." +msgid "Select a group {0} first." msgstr "" #: frappe/core/doctype/doctype/doctype.py:1956 @@ -22895,13 +22998,13 @@ msgstr "" msgid "Select atleast 2 actions" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1445 +#: frappe/public/js/frappe/list/list_view.js:1447 msgctxt "Description of a list view shortcut" msgid "Select list item" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1397 -#: frappe/public/js/frappe/list/list_view.js:1413 +#: frappe/public/js/frappe/list/list_view.js:1399 +#: frappe/public/js/frappe/list/list_view.js:1415 msgctxt "Description of a list view shortcut" msgid "Select multiple list items" msgstr "" @@ -23223,7 +23326,7 @@ msgstr "" msgid "Server Action" msgstr "" -#: frappe/app.py:396 frappe/public/js/frappe/request.js:611 +#: frappe/app.py:399 frappe/public/js/frappe/request.js:611 #: frappe/www/error.html:36 frappe/www/error.py:15 msgid "Server Error" msgstr "" @@ -23289,7 +23392,7 @@ msgstr "" msgid "Session Defaults Saved" msgstr "" -#: frappe/app.py:373 +#: frappe/app.py:376 msgid "Session Expired" msgstr "" @@ -23298,7 +23401,7 @@ msgstr "" msgid "Session Expiry (idle timeout)" msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:122 +#: frappe/core/doctype/system_settings/system_settings.py:123 msgid "Session Expiry must be in format {0}" msgstr "" @@ -23347,7 +23450,7 @@ msgstr "" msgid "Set Filters for {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2113 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 msgid "Set Level" msgstr "" @@ -23401,7 +23504,7 @@ msgstr "" msgid "Set Role For" msgstr "" -#: frappe/core/doctype/user/user.js:136 +#: frappe/core/doctype/user/user.js:124 #: frappe/core/page/permission_manager/permission_manager.js:72 msgid "Set User Permissions" msgstr "" @@ -23563,7 +23666,7 @@ msgstr "" msgid "Setup > User Permissions" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1826 +#: frappe/public/js/frappe/views/reports/query_report.js:1834 #: frappe/public/js/frappe/views/reports/report_view.js:1713 msgid "Setup Auto Email" msgstr "" @@ -23704,6 +23807,12 @@ msgstr "" msgid "Show Error" msgstr "" +#. Label of the show_external_link_warning (Select) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Show External Link Warning" +msgstr "" + #: frappe/public/js/frappe/form/layout.js:578 msgid "Show Fieldname (click to copy on clipboard)" msgstr "" @@ -23832,7 +23941,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:1849 +#: frappe/public/js/frappe/list/list_view.js:1851 msgid "Show Tags" msgstr "" @@ -24039,22 +24148,22 @@ msgstr "" msgid "Signups have been disabled for this website." msgstr "" -#. 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 "" - #. 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\")" +msgid "Simple Python Expression, Example: status == \"Invalid\"" msgstr "" #. 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'" +msgid "Simple Python Expression, Example: status == 'Open' and issue_type == 'Bug'" +msgstr "" + +#. 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 "" #. Label of the simultaneous_sessions (Int) field in DocType 'User' @@ -24062,13 +24171,13 @@ msgstr "" msgid "Simultaneous Sessions" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:126 +#: frappe/custom/doctype/customize_form/customize_form.py:128 msgid "Single DocTypes cannot be customized." 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 +#: frappe/core/doctype/doctype/doctype_list.js:68 msgid "Single Types have only one record no tables associated. Values are stored in tabSingles" msgstr "" @@ -24404,7 +24513,7 @@ msgid "Splash Image" msgstr "" #: frappe/desk/reportview.py:455 -#: frappe/public/js/frappe/web_form/web_form_list.js:175 +#: frappe/public/js/frappe/web_form/web_form_list.js:176 #: frappe/templates/print_formats/standard_macros.html:44 msgid "Sr" msgstr "" @@ -24436,7 +24545,7 @@ msgstr "" msgid "Standard" msgstr "" -#: frappe/model/delete_doc.py:79 +#: frappe/model/delete_doc.py:119 msgid "Standard DocType can not be deleted." msgstr "" @@ -24706,7 +24815,7 @@ msgstr "" #. Label of the sticky (Check) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json -#: frappe/public/js/frappe/form/grid_row.js:454 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Sticky" msgstr "" @@ -24736,7 +24845,7 @@ msgstr "" msgid "Store Attached PDF Document" msgstr "" -#: frappe/core/doctype/user/user.js:490 +#: frappe/core/doctype/user/user.js:497 msgid "Store the API secret securely. It won't be displayed again." msgstr "" @@ -24848,6 +24957,7 @@ msgstr "" #. 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' +#. Button label of the request-to-delete-data Web Form #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/docshare/docshare.json @@ -24856,10 +24966,11 @@ msgstr "" #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/quick_entry.js:225 #: frappe/public/js/frappe/ui/capture.js:307 +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json msgid "Submit" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2231 +#: frappe/public/js/frappe/list/list_view.js:2233 msgctxt "Button in list view actions menu" msgid "Submit" msgstr "" @@ -24869,7 +24980,7 @@ msgctxt "Button in web form" msgid "Submit" msgstr "" -#: frappe/public/js/frappe/ui/dialog.js:63 +#: frappe/public/js/frappe/ui/dialog.js:64 msgctxt "Primary action in dialog" msgid "Submit" msgstr "" @@ -24917,7 +25028,7 @@ msgstr "" msgid "Submit this document to confirm" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2236 +#: frappe/public/js/frappe/list/list_view.js:2238 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "" @@ -24967,7 +25078,7 @@ msgstr "" #: 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:1171 +#: frappe/public/js/frappe/form/grid.js:1172 #: frappe/public/js/frappe/views/translation_manager.js:21 #: frappe/templates/includes/login/login.js:230 #: frappe/templates/includes/login/login.js:236 @@ -25182,7 +25293,7 @@ msgstr "" msgid "Syncing {0} of {1}" msgstr "" -#: frappe/utils/data.py:2547 +#: frappe/utils/data.py:2573 msgid "Syntax Error" msgstr "" @@ -25493,7 +25604,7 @@ msgstr "" msgid "Table Trimmed" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1170 +#: frappe/public/js/frappe/form/grid.js:1171 msgid "Table updated" msgstr "" @@ -25708,7 +25819,7 @@ msgstr "" msgid "The Auto Repeat for this document has been disabled." msgstr "" -#: frappe/public/js/frappe/form/grid.js:1193 +#: frappe/public/js/frappe/form/grid.js:1194 msgid "The CSV format is case sensitive" msgstr "" @@ -25776,7 +25887,7 @@ msgstr "" 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:685 +#: frappe/public/js/frappe/list/list_view.js:687 msgid "The count shown is an estimated count. Click here to see the accurate count." msgstr "" @@ -25888,7 +25999,7 @@ msgstr "" msgid "The reset password link has either been used before or is invalid" msgstr "" -#: frappe/app.py:388 frappe/public/js/frappe/request.js:149 +#: frappe/app.py:391 frappe/public/js/frappe/request.js:149 msgid "The resource you are looking for is not available" msgstr "" @@ -25961,12 +26072,12 @@ 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:965 +#: frappe/public/js/frappe/views/reports/query_report.js:973 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 +#: frappe/website/doctype/web_form/web_form.js:318 msgid "There can be only 9 Page Break fields in a Web Form" msgstr "" @@ -25990,11 +26101,11 @@ msgstr "" msgid "There is nothing new to show you right now." msgstr "" -#: frappe/core/doctype/file/file.py:640 frappe/utils/file_manager.py:372 +#: frappe/core/doctype/file/file.py:643 frappe/utils/file_manager.py:372 msgid "There is some problem with the file url: {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:962 +#: frappe/public/js/frappe/views/reports/query_report.js:970 msgid "There is {0} with the same filters already in the queue:" msgstr "" @@ -26006,7 +26117,7 @@ msgstr "" msgid "There was an error building this page" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:182 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:196 msgid "There was an error saving filters" msgstr "" @@ -26063,7 +26174,7 @@ msgstr "" msgid "This Currency is disabled. Enable to use in transactions" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:391 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:405 msgid "This Kanban Board will be private" msgstr "" @@ -26100,7 +26211,7 @@ msgstr "" msgid "This cannot be undone" msgstr "" -#: frappe/desk/doctype/number_card/number_card.js:480 +#: frappe/desk/doctype/number_card/number_card.js:484 msgctxt "Number Card" msgid "This card is visible only to Administrator and System Managers by default. Set a DocType to share with users who have read access." msgstr "" @@ -26123,7 +26234,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:113 +#: frappe/model/delete_doc.py:153 msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time." msgstr "" @@ -26165,7 +26276,7 @@ msgid "This field will appear only if the fieldname defined here has value OR th "eval:doc.age>18" msgstr "" -#: frappe/core/doctype/file/file.py:522 +#: frappe/core/doctype/file/file.py:525 msgid "This file is attached to a protected document and cannot be deleted." msgstr "" @@ -26200,7 +26311,7 @@ msgstr "" msgid "This goes above the slideshow." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2189 +#: frappe/public/js/frappe/views/reports/query_report.js:2197 msgid "This is a background report. Please set the appropriate filters and then generate a new one." msgstr "" @@ -26250,7 +26361,7 @@ msgstr "" msgid "This month" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1037 +#: frappe/public/js/frappe/views/reports/query_report.js:1045 msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead." msgstr "" @@ -26258,7 +26369,7 @@ msgstr "" msgid "This report was generated on {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:853 +#: frappe/public/js/frappe/views/reports/query_report.js:861 msgid "This report was generated {0}." msgstr "" @@ -26400,9 +26511,11 @@ msgstr "" #. Label of the time_zone (Select) field in DocType 'System Settings' #. Label of the time_zone (Autocomplete) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #. 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/core/web_form/edit_profile/edit_profile.json #: frappe/desk/page/setup_wizard/setup_wizard.js:407 #: frappe/website/doctype/web_page_view/web_page_view.json msgid "Time Zone" @@ -26663,7 +26776,7 @@ msgstr "" msgid "To generate password click {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:854 +#: frappe/public/js/frappe/views/reports/query_report.js:862 msgid "To get the updated report, click on {0}." msgstr "" @@ -26738,7 +26851,7 @@ msgstr "" msgid "Toggle Sidebar" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1964 +#: frappe/public/js/frappe/list/list_view.js:1966 msgctxt "Button in list view menu" msgid "Toggle Sidebar" msgstr "" @@ -26864,7 +26977,7 @@ msgstr "" #: frappe/desk/query_report.py:587 #: frappe/public/js/frappe/views/reports/print_grid.html:45 -#: frappe/public/js/frappe/views/reports/query_report.js:1324 +#: frappe/public/js/frappe/views/reports/query_report.js:1332 #: frappe/public/js/frappe/views/reports/report_view.js:1553 msgid "Total" msgstr "" @@ -27021,7 +27134,7 @@ msgstr "" msgid "Translatable" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2244 +#: frappe/public/js/frappe/views/reports/query_report.js:2252 msgid "Translate Data" msgstr "" @@ -27379,7 +27492,7 @@ msgstr "" msgid "Unable to update event" msgstr "" -#: frappe/core/doctype/file/file.py:486 +#: frappe/core/doctype/file/file.py:489 msgid "Unable to write file format for {0}" msgstr "" @@ -27388,7 +27501,7 @@ msgstr "" msgid "Unassign Condition" msgstr "" -#: frappe/app.py:396 +#: frappe/app.py:399 msgid "Uncaught Exception" msgstr "" @@ -27404,7 +27517,7 @@ msgstr "" msgid "Undo last action" msgstr "" -#: frappe/database/query.py:1495 +#: frappe/database/query.py:1497 msgid "Unescaped quotes in string literal: {0}" msgstr "" @@ -27451,7 +27564,7 @@ msgstr "" msgid "Unknown Rounding Method: {}" msgstr "" -#: frappe/auth.py:316 +#: frappe/auth.py:319 msgid "Unknown User" msgstr "" @@ -27517,8 +27630,8 @@ msgstr "" msgid "Unsubscribed" msgstr "" -#: frappe/database/query.py:653 frappe/database/query.py:1387 -#: frappe/database/query.py:1397 +#: frappe/database/query.py:655 frappe/database/query.py:1389 +#: frappe/database/query.py:1399 msgid "Unsupported function or invalid field name: {0}" msgstr "" @@ -27552,7 +27665,7 @@ msgstr "" #: 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:427 +#: frappe/public/js/frappe/form/grid_row.js:428 msgid "Update" msgstr "" @@ -27586,6 +27699,11 @@ msgstr "" msgid "Update Password" msgstr "" +#. Title of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Update Profile" +msgstr "" + #. Label of the update_series (Section Break) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -27801,11 +27919,7 @@ msgstr "" msgid "Use if the default settings don't seem to detect your data correctly" msgstr "" -#: frappe/model/db_query.py:436 -msgid "Use of function {0} in field is restricted" -msgstr "" - -#: frappe/model/db_query.py:413 +#: frappe/model/db_query.py:411 msgid "Use of sub-query or function is restricted" msgstr "" @@ -28027,12 +28141,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:1944 +#: frappe/public/js/frappe/views/reports/query_report.js:1952 #: frappe/public/js/frappe/views/reports/report_view.js:1761 msgid "User Permissions" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1922 +#: frappe/public/js/frappe/list/list_view.js:1924 msgctxt "Button in list view menu" msgid "User Permissions" msgstr "" @@ -28176,7 +28290,7 @@ msgstr "" msgid "User {0} is disabled" msgstr "" -#: frappe/sessions.py:242 +#: frappe/sessions.py:243 msgid "User {0} is disabled. Please contact your System Manager." msgstr "" @@ -28353,7 +28467,7 @@ msgstr "" msgid "Value for a check field can be either 0 or 1" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:612 +#: frappe/custom/doctype/customize_form/customize_form.py:616 msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters" msgstr "" @@ -28474,7 +28588,7 @@ msgstr "" msgid "View Audit Trail" msgstr "" -#: frappe/core/doctype/user/user.js:156 +#: frappe/core/doctype/user/user.js:144 msgid "View Doctype Permissions" msgstr "" @@ -28486,7 +28600,7 @@ msgstr "" msgid "View Full Log" msgstr "" -#: frappe/public/js/frappe/views/treeview.js:484 +#: frappe/public/js/frappe/views/treeview.js:486 #: frappe/public/js/frappe/widgets/quick_list_widget.js:258 msgid "View List" msgstr "" @@ -28496,7 +28610,7 @@ msgstr "" msgid "View Log" msgstr "" -#: frappe/core/doctype/user/user.js:147 +#: frappe/core/doctype/user/user.js:135 #: frappe/core/doctype/user_permission/user_permission.js:24 msgid "View Permitted Documents" msgstr "" @@ -28612,6 +28726,7 @@ msgid "Warehouse" msgstr "" #. Option for the 'Style' (Select) field in DocType 'Workflow State' +#: frappe/public/js/frappe/router.js:613 #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Warning" msgstr "" @@ -29257,7 +29372,7 @@ msgstr "" msgid "Workspace" msgstr "" -#: frappe/public/js/frappe/router.js:175 +#: frappe/public/js/frappe/router.js:180 msgid "Workspace {0} does not exist" msgstr "" @@ -29379,7 +29494,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:1225 +#: frappe/public/js/frappe/views/reports/query_report.js:1233 msgid "Y Field" msgstr "" @@ -29441,7 +29556,7 @@ msgstr "" #: frappe/public/js/form_builder/utils.js:336 #: frappe/public/js/frappe/form/controls/link.js:498 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1665 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 #: frappe/website/doctype/help_article/templates/help_article.html:25 msgid "Yes" msgstr "" @@ -29477,6 +29592,10 @@ msgstr "" msgid "You added {0} rows to {1}" msgstr "" +#: frappe/public/js/frappe/router.js:642 +msgid "You are about to open an external link. To confirm, click the link again." +msgstr "" + #: frappe/public/js/frappe/dom.js:438 msgid "You are connected to internet." msgstr "" @@ -29520,7 +29639,7 @@ msgstr "" msgid "You are not allowed to export {} doctype" msgstr "" -#: frappe/public/js/frappe/views/treeview.js:448 +#: frappe/public/js/frappe/views/treeview.js:450 msgid "You are not allowed to print this report" msgstr "" @@ -29528,7 +29647,7 @@ msgstr "" msgid "You are not allowed to send emails related to this document" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:605 +#: frappe/website/doctype/web_form/web_form.py:632 msgid "You are not allowed to update this Web Form Document" msgstr "" @@ -29601,11 +29720,11 @@ msgstr "" msgid "You can continue with the onboarding after exploring this page" msgstr "" -#: frappe/model/delete_doc.py:137 +#: frappe/model/delete_doc.py:177 msgid "You can disable this {0} instead of deleting it." msgstr "" -#: frappe/core/doctype/file/file.py:758 +#: frappe/core/doctype/file/file.py:761 msgid "You can increase the limit from System Settings." msgstr "" @@ -29655,11 +29774,11 @@ msgstr "" msgid "You can use wildcard %" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:390 +#: frappe/custom/doctype/customize_form/customize_form.py:394 msgid "You can't set 'Options' for field {0}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:394 +#: frappe/custom/doctype/customize_form/customize_form.py:398 msgid "You can't set 'Translatable' for field {0}" msgstr "" @@ -29677,7 +29796,7 @@ msgstr "" msgid "You cannot create a dashboard chart from single DocTypes" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:386 +#: frappe/custom/doctype/customize_form/customize_form.py:390 msgid "You cannot unset 'Read Only' for field {0}" msgstr "" @@ -29720,11 +29839,11 @@ msgstr "" msgid "You do not have enough permissions to access this resource. Please contact your manager to get access." msgstr "" -#: frappe/app.py:381 +#: frappe/app.py:384 msgid "You do not have enough permissions to complete the action" msgstr "" -#: frappe/database/query.py:529 +#: frappe/database/query.py:531 msgid "You do not have permission to access field: {0}" msgstr "" @@ -29740,7 +29859,7 @@ msgstr "" msgid "You don't have access to Report: {0}" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:808 +#: frappe/website/doctype/web_form/web_form.py:835 msgid "You don't have permission to access the {0} DocType." msgstr "" @@ -29764,7 +29883,7 @@ msgstr "" msgid "You have been successfully logged out" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:245 +#: frappe/custom/doctype/customize_form/customize_form.py:247 msgid "You have hit the row size limit on database table: {0}" msgstr "" @@ -29792,7 +29911,7 @@ msgstr "" msgid "You haven't added any Dashboard Charts or Number Cards yet." msgstr "" -#: frappe/public/js/frappe/list/list_view.js:501 +#: frappe/public/js/frappe/list/list_view.js:503 msgid "You haven't created a {0} yet" msgstr "" @@ -29809,11 +29928,11 @@ msgstr "" msgid "You must add atleast one link." msgstr "" -#: frappe/website/doctype/web_form/web_form.py:804 +#: frappe/website/doctype/web_form/web_form.py:831 msgid "You must be logged in to use this form." msgstr "" -#: frappe/website/doctype/web_form/web_form.py:645 +#: frappe/website/doctype/web_form/web_form.py:672 msgid "You must login to submit this form" msgstr "" @@ -29928,6 +30047,10 @@ msgstr "" msgid "You viewed this" msgstr "" +#: frappe/public/js/frappe/router.js:653 +msgid "You will be redirected to:" +msgstr "" + #: frappe/core/doctype/user_invitation/user_invitation.py:113 msgid "You've been invited to join {0}" msgstr "" @@ -29973,7 +30096,7 @@ msgstr "" msgid "Your account has been deleted" msgstr "" -#: frappe/auth.py:514 +#: frappe/auth.py:517 msgid "Your account has been locked and will resume after {0} seconds" msgstr "" @@ -30039,7 +30162,7 @@ msgstr "" msgid "Your report is being generated in the background. You will receive an email on {0} with a download link once it is ready." msgstr "" -#: frappe/app.py:374 +#: frappe/app.py:377 msgid "Your session has expired, please login again to continue." msgstr "" @@ -30376,7 +30499,7 @@ msgstr "" msgid "logged in" msgstr "" -#: frappe/website/doctype/web_form/web_form.js:362 +#: frappe/website/doctype/web_form/web_form.js:363 msgid "login_required" msgstr "" @@ -30714,7 +30837,7 @@ msgstr "" msgid "via Google Meet" msgstr "" -#: frappe/email/doctype/notification/notification.py:403 +#: frappe/email/doctype/notification/notification.py:405 msgid "via Notification" msgstr "" @@ -30824,7 +30947,7 @@ msgstr "" msgid "{0} Dashboard" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:486 +#: frappe/public/js/frappe/form/grid_row.js:487 #: frappe/public/js/frappe/list/list_settings.js:225 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:178 msgid "{0} Fields" @@ -30875,7 +30998,7 @@ msgstr "" msgid "{0} Report" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:956 +#: frappe/public/js/frappe/views/reports/query_report.js:964 msgid "{0} Reports" msgstr "" @@ -30948,7 +31071,7 @@ msgctxt "Form timeline" msgid "{0} attached {1}" msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:152 +#: frappe/core/doctype/system_settings/system_settings.py:153 msgid "{0} can not be more than {1}" msgstr "" @@ -31025,7 +31148,7 @@ msgstr "" msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values" msgstr "" -#: frappe/database/query.py:708 +#: frappe/database/query.py:710 msgid "{0} fields cannot contain backticks (`): {1}" msgstr "" @@ -31070,7 +31193,7 @@ msgstr "" msgid "{0} is a mandatory field" msgstr "" -#: frappe/core/doctype/file/file.py:566 +#: frappe/core/doctype/file/file.py:569 msgid "{0} is a not a valid zip file" msgstr "" @@ -31119,7 +31242,7 @@ msgstr "" msgid "{0} is mandatory" msgstr "" -#: frappe/database/query.py:485 +#: frappe/database/query.py:487 msgid "{0} is not a child table of {1}" msgstr "" @@ -31139,7 +31262,7 @@ msgstr "" msgid "{0} is not a valid Cron expression." msgstr "" -#: frappe/public/js/frappe/form/controls/dynamic_link.js:27 +#: frappe/public/js/frappe/form/controls/dynamic_link.js:23 msgid "{0} is not a valid DocType for Dynamic Link" msgstr "" @@ -31176,7 +31299,7 @@ msgstr "" msgid "{0} is not a valid report format. Report format should one of the following {1}" msgstr "" -#: frappe/core/doctype/file/file.py:546 +#: frappe/core/doctype/file/file.py:549 msgid "{0} is not a zip file" msgstr "" @@ -31224,7 +31347,7 @@ msgstr "" msgid "{0} is within {1}" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1839 +#: frappe/public/js/frappe/list/list_view.js:1841 msgid "{0} items selected" msgstr "" @@ -31310,11 +31433,11 @@ msgid "{0} not found" msgstr "" #: frappe/core/doctype/report/report.py:427 -#: frappe/public/js/frappe/list/list_view.js:1211 +#: frappe/public/js/frappe/list/list_view.js:1213 msgid "{0} of {1}" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1213 +#: frappe/public/js/frappe/list/list_view.js:1215 msgid "{0} of {1} ({2} rows with children)" msgstr "" @@ -31364,7 +31487,7 @@ msgstr "" msgid "{0} removed {1} rows from {2}" msgstr "" -#: frappe/public/js/frappe/roles_editor.js:62 +#: frappe/public/js/frappe/roles_editor.js:64 msgid "{0} role does not have permission on any doctype" msgstr "" @@ -31438,7 +31561,7 @@ msgstr "" msgid "{0} un-shared this document with {1}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:254 +#: frappe/custom/doctype/customize_form/customize_form.py:256 msgid "{0} updated" msgstr "" @@ -31498,7 +31621,7 @@ msgstr "" msgid "{0} {1} not found" msgstr "" -#: frappe/model/delete_doc.py:248 +#: frappe/model/delete_doc.py:288 msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first." msgstr "" @@ -31611,7 +31734,7 @@ msgstr "" msgid "{0}: {1} is set to state {2}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1283 +#: frappe/public/js/frappe/views/reports/query_report.js:1291 msgid "{0}: {1} vs {2}" msgstr "" @@ -31647,11 +31770,11 @@ msgstr "" msgid "{} Complete" msgstr "" -#: frappe/utils/data.py:2541 +#: frappe/utils/data.py:2567 msgid "{} Invalid python code on line {}" msgstr "" -#: frappe/utils/data.py:2550 +#: frappe/utils/data.py:2576 msgid "{} Possibly invalid python code.
{}" msgstr "" @@ -31677,7 +31800,7 @@ msgstr "" msgid "{} is not a valid date string." msgstr "" -#: frappe/commands/utils.py:562 +#: frappe/commands/utils.py:561 msgid "{} not found in PATH! This is required to access the console." msgstr "" diff --git a/frappe/locale/pl.po b/frappe/locale/pl.po index 271ad008b0..0f0205451d 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-09-21 09:33+0000\n" -"PO-Revision-Date: 2025-09-21 19:57\n" +"POT-Creation-Date: 2025-10-05 09:33+0000\n" +"PO-Revision-Date: 2025-10-06 22:59\n" "Last-Translator: developers@frappe.io\n" "Language-Team: Polish\n" "MIME-Version: 1.0\n" @@ -22,7 +22,7 @@ msgstr "" #. Condition' #: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json msgid "!=" -msgstr "" +msgstr "!=" #. Description of the 'Org History Heading' (Data) field in DocType 'About Us #. Settings' @@ -78,7 +78,7 @@ msgstr "'In Global Search' niedozwolone dla typu {0} w wierszu {1}" msgid "'In List View' is not allowed for field {0} of type {1}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:363 +#: frappe/custom/doctype/customize_form/customize_form.py:367 msgid "'In List View' not allowed for type {0} in row {1}" msgstr "" @@ -122,7 +122,7 @@ msgstr "0 - Projekt; 1 - Wysłane; 2 - Anulowane" msgid "0 is highest" msgstr "0 jest najwyższą wartością" -#: frappe/public/js/frappe/form/grid_row.js:892 +#: frappe/public/js/frappe/form/grid_row.js:893 msgid "1 = True & 0 = False" msgstr "" @@ -140,11 +140,11 @@ msgstr "" msgid "1 Google Calendar Event synced." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:955 +#: frappe/public/js/frappe/views/reports/query_report.js:963 msgid "1 Report" msgstr "" -#: frappe/tests/test_utils.py:739 +#: frappe/tests/test_utils.py:845 msgid "1 day ago" msgstr "" @@ -153,23 +153,23 @@ msgid "1 hour" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:52 -#: frappe/tests/test_utils.py:737 +#: frappe/tests/test_utils.py:843 msgid "1 hour ago" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:48 -#: frappe/tests/test_utils.py:735 +#: frappe/tests/test_utils.py:841 msgid "1 minute ago" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:66 -#: frappe/tests/test_utils.py:743 +#: frappe/tests/test_utils.py:849 msgid "1 month ago" msgstr "" #: frappe/public/js/print_format_builder/PrintFormat.vue:3 msgid "1 of 2" -msgstr "" +msgstr "1 z 2" #: frappe/public/js/frappe/data_import/data_exporter.js:227 msgid "1 record will be exported" @@ -185,37 +185,37 @@ msgctxt "User added row to child table" msgid "1 row to {0}" msgstr "" -#: frappe/tests/test_utils.py:734 +#: frappe/tests/test_utils.py:840 msgid "1 second ago" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:62 -#: frappe/tests/test_utils.py:741 +#: frappe/tests/test_utils.py:847 msgid "1 week ago" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:70 -#: frappe/tests/test_utils.py:745 +#: frappe/tests/test_utils.py:851 msgid "1 year ago" msgstr "" -#: frappe/tests/test_utils.py:738 +#: frappe/tests/test_utils.py:844 msgid "2 hours ago" msgstr "" -#: frappe/tests/test_utils.py:744 +#: frappe/tests/test_utils.py:850 msgid "2 months ago" msgstr "" -#: frappe/tests/test_utils.py:742 +#: frappe/tests/test_utils.py:848 msgid "2 weeks ago" msgstr "" -#: frappe/tests/test_utils.py:746 +#: frappe/tests/test_utils.py:852 msgid "2 years ago" msgstr "" -#: frappe/tests/test_utils.py:736 +#: frappe/tests/test_utils.py:842 msgid "3 minutes ago" msgstr "" @@ -231,7 +231,7 @@ msgstr "" msgid "5 Records" msgstr "" -#: frappe/tests/test_utils.py:740 +#: frappe/tests/test_utils.py:846 msgid "5 days ago" msgstr "" @@ -267,6 +267,16 @@ msgstr "" 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 "" +#. Introduction text of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "

Request a file containing your personally identifiable information (PII) that is saved on our system. The file will be in JSON format and is sent to you by email. If you would like to have your PII deleted from our system, please make a request to delete data.

" +msgstr "" + +#. Introduction text of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "

Send a request to delete your account and personally identifiable information (PII) that is stored on our system. You will receive an email to verify your request. Once the request is verified we will take care of deleting your PII. If you just want to check what PII we have stored, you can request your data.

" +msgstr "" + #. Content of the 'Help HTML' (HTML) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -581,6 +591,11 @@ msgstr "" msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three." msgstr "" +#. Success message of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "A download link with your data will be sent to the email address associated with your account." +msgstr "" + #: frappe/custom/doctype/custom_field/custom_field.py:175 msgid "A field with the name {0} already exists in {1}" msgstr "" @@ -707,7 +722,7 @@ msgstr "" #. 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.js:452 frappe/core/doctype/user/user.json +#: frappe/core/doctype/user/user.js:459 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 @@ -726,7 +741,7 @@ msgstr "" msgid "API Key cannot be regenerated" msgstr "" -#: frappe/core/doctype/user/user.js:449 +#: frappe/core/doctype/user/user.js:456 msgid "API Keys" msgstr "" @@ -750,7 +765,7 @@ msgstr "" #. 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.js:459 frappe/core/doctype/user/user.json +#: frappe/core/doctype/user/user.js:466 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" @@ -767,7 +782,7 @@ msgstr "" #. Type: Action #: frappe/hooks.py msgid "About" -msgstr "" +msgstr "O programie" #: frappe/www/about.html:11 frappe/www/about.html:18 msgid "About Us" @@ -836,7 +851,7 @@ msgstr "Dostęp za pomocą Tokenu" msgid "Access Token URL" msgstr "Uzyskaj dostęp do adresu URL tokenu" -#: frappe/auth.py:491 +#: frappe/auth.py:494 msgid "Access not allowed from this IP Address" msgstr "" @@ -952,7 +967,7 @@ msgstr "" #: 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:842 +#: frappe/public/js/frappe/views/reports/query_report.js:850 msgid "Actions" msgstr "" @@ -1009,7 +1024,7 @@ msgstr "" #: 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:501 +#: frappe/public/js/frappe/form/grid_row.js:502 #: 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 @@ -1020,7 +1035,7 @@ msgstr "" msgid "Add" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:454 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Add / Remove Columns" msgstr "" @@ -1065,8 +1080,8 @@ msgid "Add Child" msgstr "" #: frappe/public/js/frappe/views/kanban/kanban_board.html:4 -#: frappe/public/js/frappe/views/reports/query_report.js:1832 -#: frappe/public/js/frappe/views/reports/query_report.js:1835 +#: frappe/public/js/frappe/views/reports/query_report.js:1840 +#: frappe/public/js/frappe/views/reports/query_report.js:1843 #: frappe/public/js/frappe/views/reports/report_view.js:360 #: frappe/public/js/frappe/views/reports/report_view.js:385 #: frappe/public/js/print_format_builder/Field.vue:112 @@ -1160,7 +1175,7 @@ msgstr "" msgid "Add Tags" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2149 +#: frappe/public/js/frappe/list/list_view.js:2151 msgctxt "Button in list view actions menu" msgid "Add Tags" msgstr "" @@ -1541,11 +1556,11 @@ msgstr "Alarm" msgid "Alerts and Notifications" msgstr "" -#: frappe/database/query.py:1608 +#: frappe/database/query.py:1610 msgid "Alias cannot be a SQL keyword: {0}" msgstr "" -#: frappe/database/query.py:1533 +#: frappe/database/query.py:1535 msgid "Alias must be a string" msgstr "" @@ -1993,6 +2008,12 @@ msgstr "" msgid "Alternative Email ID" msgstr "" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Always" +msgstr "" + #. Label of the always_bcc (Data) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Always BCC Address" @@ -2069,6 +2090,11 @@ msgstr "Zmiana niedozwolona" msgid "Amendment naming rules updated." msgstr "" +#. Success message of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "An email to verify your request has been sent to your email address. Please verify your request to complete the process." +msgstr "" + #: frappe/public/js/frappe/ui/toolbar/toolbar.js:354 msgid "An error occurred while setting Session Defaults" msgstr "" @@ -2251,7 +2277,7 @@ msgstr "Data zastosowania" msgid "Apply" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2134 +#: frappe/public/js/frappe/list/list_view.js:2136 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" msgstr "" @@ -2336,7 +2362,7 @@ msgstr "" msgid "Are you sure you want to cancel the invitation?" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2113 +#: frappe/public/js/frappe/list/list_view.js:2115 msgid "Are you sure you want to clear the assignments?" msgstr "" @@ -2372,7 +2398,7 @@ msgstr "" msgid "Are you sure you want to discard the changes?" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:969 +#: frappe/public/js/frappe/views/reports/query_report.js:977 msgid "Are you sure you want to generate a new report?" msgstr "" @@ -2380,7 +2406,7 @@ msgstr "" msgid "Are you sure you want to merge {0} with {1}?" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:108 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:118 msgid "Are you sure you want to proceed?" msgstr "" @@ -2435,6 +2461,12 @@ msgstr "" msgid "As per your request, your account and data on {0} associated with email {1} has been permanently deleted" msgstr "" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Ask" +msgstr "" + #. Label of the assign_condition (Code) field in DocType 'Assignment Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Assign Condition" @@ -2444,7 +2476,7 @@ msgstr "Przypisz warunek" msgid "Assign To" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2095 +#: frappe/public/js/frappe/list/list_view.js:2097 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "" @@ -2587,7 +2619,7 @@ msgstr "" msgid "Asynchronous" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:696 +#: frappe/public/js/frappe/form/grid_row.js:697 msgid "At least one column is required to show in the grid." msgstr "" @@ -3567,7 +3599,7 @@ msgstr "" msgid "Bulk Edit" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1189 +#: frappe/public/js/frappe/form/grid.js:1190 msgid "Bulk Edit {0}" msgstr "" @@ -3859,7 +3891,7 @@ msgstr "" #. 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/doctype/doctype_list.js:131 #: frappe/core/doctype/user_document_type/user_document_type.json #: frappe/core/doctype/user_invitation/user_invitation.js:17 #: frappe/email/doctype/notification/notification.json @@ -3867,7 +3899,7 @@ msgstr "" msgid "Cancel" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2204 +#: frappe/public/js/frappe/list/list_view.js:2206 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "" @@ -3885,7 +3917,7 @@ msgstr "" msgid "Cancel All Documents" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2209 +#: frappe/public/js/frappe/list/list_view.js:2211 msgctxt "Title of confirmation dialog" msgid "Cancel {0} documents?" msgstr "" @@ -3938,7 +3970,7 @@ msgstr "" msgid "Cannot Update After Submit" msgstr "" -#: frappe/core/doctype/file/file.py:643 +#: frappe/core/doctype/file/file.py:646 msgid "Cannot access file path {0}" msgstr "" @@ -3986,7 +4018,7 @@ msgstr "" msgid "Cannot delete Home and Attachments folders" msgstr "" -#: frappe/model/delete_doc.py:379 +#: frappe/model/delete_doc.py:419 msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}" msgstr "" @@ -4066,7 +4098,7 @@ msgstr "" msgid "Cannot find file {} on disk" msgstr "" -#: frappe/core/doctype/file/file.py:583 +#: frappe/core/doctype/file/file.py:586 msgid "Cannot get file contents of a Folder" msgstr "" @@ -4074,7 +4106,7 @@ msgstr "" msgid "Cannot have multiple printers mapped to a single print format." msgstr "" -#: frappe/public/js/frappe/form/grid.js:1133 +#: frappe/public/js/frappe/form/grid.js:1134 msgid "Cannot import table with more than 5000 rows." msgstr "" @@ -4090,7 +4122,7 @@ msgstr "" msgid "Cannot match column {0} with any field" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:175 +#: frappe/public/js/frappe/form/grid_row.js:176 msgid "Cannot move row" msgstr "" @@ -4119,11 +4151,11 @@ msgstr "" msgid "Cannot update {0}" msgstr "" -#: frappe/model/db_query.py:1130 +#: frappe/model/db_query.py:1136 msgid "Cannot use sub-query here." msgstr "" -#: frappe/model/db_query.py:1162 +#: frappe/model/db_query.py:1168 msgid "Cannot use {0} in order/group by" msgstr "" @@ -4395,11 +4427,11 @@ msgstr "" #. Description of the 'Is Child Table' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:52 +#: frappe/core/doctype/doctype/doctype_list.js:53 msgid "Child Tables are shown as a Grid in other DocTypes" msgstr "" -#: frappe/database/query.py:660 +#: frappe/database/query.py:662 msgid "Child query fields for '{0}' must be a list or tuple." msgstr "" @@ -4455,14 +4487,14 @@ msgstr "" msgid "Clear All" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2110 +#: frappe/public/js/frappe/list/list_view.js:2112 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 "" +msgstr "Wyczyść pamięć podręczną i przeładuj" #: frappe/core/doctype/error_log/error_log_list.js:12 msgid "Clear Error Logs" @@ -4549,7 +4581,7 @@ msgstr "" msgid "Click to Set Filters" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:739 +#: frappe/public/js/frappe/list/list_view.js:741 msgid "Click to sort by {0}" msgstr "" @@ -4727,7 +4759,7 @@ msgctxt "Shrink code field." msgid "Collapse" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2113 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 #: frappe/public/js/frappe/views/treeview.js:123 msgid "Collapse All" msgstr "" @@ -4782,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:1233 +#: frappe/public/js/frappe/views/reports/query_report.js:1241 #: frappe/public/js/frappe/widgets/widget_dialog.js:546 #: frappe/public/js/frappe/widgets/widget_dialog.js:694 #: frappe/website/doctype/color/color.json @@ -4838,11 +4870,11 @@ msgstr "" msgid "Column Name cannot be empty" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:454 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Column Width" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:661 +#: frappe/public/js/frappe/form/grid_row.js:662 msgid "Column width cannot be zero." msgstr "" @@ -4869,7 +4901,7 @@ msgstr "" msgid "Columns / Fields" msgstr "Kolumny / Pola" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:397 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:411 msgid "Columns based on" msgstr "" @@ -5133,7 +5165,7 @@ msgstr "" msgid "Configure Chart" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:406 +#: frappe/public/js/frappe/form/grid_row.js:407 msgid "Configure Columns" msgstr "" @@ -5158,7 +5190,7 @@ msgstr "" msgid "Configure various aspects of how document naming works like naming series, current counter." msgstr "" -#: frappe/core/doctype/user/user.js:412 frappe/public/js/frappe/dom.js:345 +#: frappe/core/doctype/user/user.js:400 frappe/public/js/frappe/dom.js:345 #: frappe/www/update-password.html:66 msgid "Confirm" msgstr "" @@ -5177,7 +5209,7 @@ msgstr "" msgid "Confirm Deletion of Account" msgstr "" -#: frappe/core/doctype/user/user.js:196 +#: frappe/core/doctype/user/user.js:184 msgid "Confirm New Password" msgstr "" @@ -5430,7 +5462,7 @@ msgstr "" msgid "Copy to Clipboard" msgstr "" -#: frappe/core/doctype/user/user.js:480 +#: frappe/core/doctype/user/user.js:487 msgid "Copy token to clipboard" msgstr "" @@ -5439,7 +5471,7 @@ msgstr "" msgid "Copyright" msgstr "Prawa autorskie" -#: frappe/custom/doctype/customize_form/customize_form.py:123 +#: frappe/custom/doctype/customize_form/customize_form.py:125 msgid "Core DocTypes cannot be customized." msgstr "" @@ -5463,7 +5495,7 @@ msgstr "" msgid "Could not map column {0} to field {1}" msgstr "" -#: frappe/database/query.py:564 +#: frappe/database/query.py:566 msgid "Could not parse field: {0}" msgstr "" @@ -5555,13 +5587,13 @@ 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:1265 +#: frappe/public/js/frappe/views/reports/query_report.js:1273 #: frappe/public/js/frappe/views/workspace/workspace.js:469 #: frappe/workflow/page/workflow_builder/workflow_builder.js:46 msgid "Create" msgstr "" -#: frappe/core/doctype/doctype/doctype_list.js:102 +#: frappe/core/doctype/doctype/doctype_list.js:103 msgid "Create & Continue" msgstr "" @@ -5575,7 +5607,7 @@ msgid "Create Card" msgstr "" #: frappe/public/js/frappe/views/reports/query_report.js:285 -#: frappe/public/js/frappe/views/reports/query_report.js:1192 +#: frappe/public/js/frappe/views/reports/query_report.js:1200 msgid "Create Chart" msgstr "" @@ -5609,12 +5641,12 @@ msgstr "Utwórz dziennik" msgid "Create New" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:512 +#: frappe/public/js/frappe/list/list_view.js:514 msgctxt "Create a new document from list view" msgid "Create New" msgstr "" -#: frappe/core/doctype/doctype/doctype_list.js:100 +#: frappe/core/doctype/doctype/doctype_list.js:101 msgid "Create New DocType" msgstr "" @@ -5622,7 +5654,7 @@ msgstr "" msgid "Create New Kanban Board" msgstr "" -#: frappe/core/doctype/user/user.js:276 +#: frappe/core/doctype/user/user.js:264 msgid "Create User Email" msgstr "" @@ -5645,8 +5677,8 @@ msgstr "" #: frappe/public/js/frappe/form/controls/link.js:315 #: frappe/public/js/frappe/form/controls/link.js:317 #: frappe/public/js/frappe/form/link_selector.js:139 -#: frappe/public/js/frappe/list/list_view.js:504 -#: frappe/public/js/frappe/web_form/web_form_list.js:225 +#: frappe/public/js/frappe/list/list_view.js:506 +#: frappe/public/js/frappe/web_form/web_form_list.js:226 msgid "Create a new {0}" msgstr "" @@ -5662,7 +5694,7 @@ msgstr "" msgid "Create or Edit Workflow" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:507 +#: frappe/public/js/frappe/list/list_view.js:509 msgid "Create your first {0}" msgstr "" @@ -6009,7 +6041,7 @@ 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/core/doctype/doctype/doctype_list.js:83 #: frappe/website/doctype/website_theme/website_theme.json msgid "Custom?" msgstr "" @@ -6044,7 +6076,7 @@ msgstr "" msgid "Customize" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1947 +#: frappe/public/js/frappe/list/list_view.js:1949 msgctxt "Button in list view menu" msgid "Customize" msgstr "" @@ -6063,7 +6095,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:343 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 msgid "Customize Form" msgstr "" @@ -6294,7 +6326,7 @@ msgstr "" msgid "Data Import Template" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:615 +#: frappe/custom/doctype/customize_form/customize_form.py:619 msgid "Data Too Long" msgstr "" @@ -6325,7 +6357,7 @@ msgstr "" msgid "Database Storage Usage By Tables" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:249 +#: frappe/custom/doctype/customize_form/customize_form.py:251 msgid "Database Table Row Size Limit" msgstr "" @@ -6695,13 +6727,13 @@ msgstr "" #: frappe/public/js/frappe/form/toolbar.js:464 #: frappe/public/js/frappe/views/reports/report_view.js:1749 #: frappe/public/js/frappe/views/treeview.js:329 -#: frappe/public/js/frappe/web_form/web_form_list.js:282 +#: frappe/public/js/frappe/web_form/web_form_list.js:283 #: frappe/templates/discussions/reply_card.html:35 #: frappe/templates/discussions/reply_section.html:29 msgid "Delete" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2172 +#: frappe/public/js/frappe/list/list_view.js:2174 msgctxt "Button in list view actions menu" msgid "Delete" msgstr "" @@ -6734,7 +6766,7 @@ msgstr "" msgid "Delete Data" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:106 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:116 msgid "Delete Kanban Board" msgstr "" @@ -6748,7 +6780,7 @@ msgctxt "Title of confirmation dialog" msgid "Delete Tab" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:936 +#: frappe/public/js/frappe/views/reports/query_report.js:944 msgid "Delete and Generate New" msgstr "" @@ -6790,12 +6822,12 @@ msgstr "" msgid "Delete this record to allow sending to this email address" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2177 +#: frappe/public/js/frappe/list/list_view.js:2179 msgctxt "Title of confirmation dialog" msgid "Delete {0} item permanently?" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2183 +#: frappe/public/js/frappe/list/list_view.js:2185 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "" @@ -7292,10 +7324,14 @@ msgstr "" msgid "Do not create new user if user with email does not exist in the system" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1194 +#: frappe/public/js/frappe/form/grid.js:1195 msgid "Do not edit headers which are preset in the template" msgstr "" +#: frappe/public/js/frappe/router.js:624 +msgid "Do not warn me again about {0}" +msgstr "" + #: frappe/core/doctype/system_settings/system_settings.js:71 msgid "Do you still want to proceed?" msgstr "" @@ -7719,7 +7755,7 @@ msgstr "Tytuł dokumentu" #: 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/public/js/frappe/roles_editor.js:68 #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json #: frappe/workflow/doctype/workflow/workflow.json msgid "Document Type" @@ -7770,15 +7806,15 @@ msgstr "" msgid "Document follow is not enabled for this user." msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1300 +#: frappe/public/js/frappe/list/list_view.js:1302 msgid "Document has been cancelled" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1299 +#: frappe/public/js/frappe/list/list_view.js:1301 msgid "Document has been submitted" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1298 +#: frappe/public/js/frappe/list/list_view.js:1300 msgid "Document is in draft state" msgstr "" @@ -7920,7 +7956,7 @@ msgstr "Pączek" msgid "Double click to edit label" msgstr "" -#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:467 +#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:474 #: frappe/email/doctype/auto_email_report/auto_email_report.js:8 #: frappe/public/js/frappe/form/grid.js:66 msgid "Download" @@ -7953,7 +7989,7 @@ msgstr "" msgid "Download PDF" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:832 +#: frappe/public/js/frappe/views/reports/query_report.js:840 msgid "Download Report" msgstr "" @@ -8153,8 +8189,8 @@ msgstr "" #: 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:880 -#: frappe/public/js/frappe/views/reports/query_report.js:1783 +#: frappe/public/js/frappe/views/reports/query_report.js:888 +#: frappe/public/js/frappe/views/reports/query_report.js:1791 #: 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 @@ -8166,7 +8202,7 @@ msgstr "" msgid "Edit" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2258 +#: frappe/public/js/frappe/list/list_view.js:2260 msgctxt "Button in list view actions menu" msgid "Edit" msgstr "" @@ -8176,7 +8212,7 @@ msgctxt "Button in web form" msgid "Edit" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:349 +#: frappe/public/js/frappe/form/grid_row.js:350 msgctxt "Edit grid row" msgid "Edit" msgstr "" @@ -8205,7 +8241,7 @@ msgstr "" msgid "Edit DocType" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1974 +#: frappe/public/js/frappe/list/list_view.js:1976 msgctxt "Button in list view menu" msgid "Edit DocType" msgstr "" @@ -8325,7 +8361,7 @@ msgstr "" #. 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/core/doctype/doctype/doctype_list.js:58 #: frappe/custom/doctype/customize_form/customize_form.json msgid "Editable Grid" msgstr "" @@ -8370,6 +8406,8 @@ msgstr "" #. 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' +#. Label of a field in the request-data Web Form +#. Label of a field in the request-to-delete-data Web Form #: frappe/automation/workspace/tools/tools.json #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/custom_docperm/custom_docperm.json @@ -8388,6 +8426,8 @@ msgstr "" #: 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/website/web_form/request_data/request_data.json +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json #: frappe/www/login.html:8 frappe/www/login.py:104 msgid "Email" msgstr "" @@ -8619,7 +8659,7 @@ msgstr "" msgid "Email has been moved to trash" msgstr "" -#: frappe/core/doctype/user/user.js:278 +#: frappe/core/doctype/user/user.js:266 msgid "Email is mandatory to create User Email" msgstr "" @@ -8662,7 +8702,7 @@ 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 +#: frappe/database/query.py:1539 msgid "Empty alias is not allowed" msgstr "" @@ -8670,7 +8710,7 @@ msgstr "" msgid "Empty column" msgstr "" -#: frappe/database/query.py:1455 +#: frappe/database/query.py:1457 msgid "Empty string arguments are not allowed" msgstr "" @@ -9126,9 +9166,9 @@ msgstr "" msgid "Error in Header/Footer Script" msgstr "" -#: frappe/email/doctype/notification/notification.py:640 -#: frappe/email/doctype/notification/notification.py:780 -#: frappe/email/doctype/notification/notification.py:786 +#: frappe/email/doctype/notification/notification.py:642 +#: frappe/email/doctype/notification/notification.py:782 +#: frappe/email/doctype/notification/notification.py:788 msgid "Error in Notification" msgstr "" @@ -9148,7 +9188,7 @@ msgstr "" msgid "Error while connecting to email account {0}" msgstr "" -#: frappe/email/doctype/notification/notification.py:777 +#: frappe/email/doctype/notification/notification.py:779 msgid "Error while evaluating Notification {0}. Please fix your template." msgstr "" @@ -9309,7 +9349,7 @@ msgstr "" msgid "Executing..." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2132 +#: frappe/public/js/frappe/views/reports/query_report.js:2140 msgid "Execution Time: {0} sec" msgstr "" @@ -9335,12 +9375,12 @@ msgctxt "Enlarge code field." msgid "Expand" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2113 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 #: frappe/public/js/frappe/views/treeview.js:133 msgid "Expand All" msgstr "" -#: frappe/database/query.py:352 +#: frappe/database/query.py:354 msgid "Expected 'and' or 'or' operator, found: {0}" msgstr "" @@ -9398,13 +9438,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:1820 +#: frappe/public/js/frappe/views/reports/query_report.js:1828 #: frappe/public/js/frappe/views/reports/report_view.js:1629 #: frappe/public/js/frappe/widgets/chart_widget.js:315 msgid "Export" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2280 +#: frappe/public/js/frappe/list/list_view.js:2282 msgctxt "Button in list view actions menu" msgid "Export" msgstr "" @@ -9597,7 +9637,7 @@ msgstr "" msgid "Failed to connect to server" msgstr "" -#: frappe/auth.py:698 +#: frappe/auth.py:701 msgid "Failed to decode token, please provide a valid base64-encoded token." msgstr "" @@ -9761,7 +9801,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:236 -#: frappe/public/js/frappe/views/reports/query_report.js:1879 +#: frappe/public/js/frappe/views/reports/query_report.js:1887 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_form_list_column/web_form_list_column.json msgid "Field" @@ -9844,7 +9884,7 @@ msgstr "" msgid "Field {0} not found." msgstr "" -#: frappe/email/doctype/notification/notification.py:545 +#: frappe/email/doctype/notification/notification.py:547 msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link" msgstr "" @@ -9862,7 +9902,7 @@ msgstr "" #: 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:454 +#: frappe/public/js/frappe/form/grid_row.js:455 #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Fieldname" msgstr "" @@ -9943,7 +9983,7 @@ msgstr "" msgid "Fields must be a list or tuple when as_list is enabled" msgstr "" -#: frappe/database/query.py:611 +#: frappe/database/query.py:613 msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function" msgstr "" @@ -9971,7 +10011,7 @@ msgstr "Typ pola" msgid "Fieldtype cannot be changed from {0} to {1}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:589 +#: frappe/custom/doctype/customize_form/customize_form.py:593 msgid "Fieldtype cannot be changed from {0} to {1} in row {2}" msgstr "" @@ -10037,7 +10077,7 @@ msgstr "URL Pliku" msgid "File backup is ready" msgstr "" -#: frappe/core/doctype/file/file.py:646 +#: frappe/core/doctype/file/file.py:649 msgid "File name cannot have {0}" msgstr "" @@ -10045,7 +10085,7 @@ msgstr "" msgid "File not attached" msgstr "" -#: frappe/core/doctype/file/file.py:756 frappe/public/js/frappe/request.js:200 +#: frappe/core/doctype/file/file.py:759 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 "" @@ -10058,7 +10098,7 @@ msgstr "" msgid "File type of {0} is not allowed" msgstr "" -#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:448 +#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:451 msgid "File {0} does not exist" msgstr "" @@ -10112,11 +10152,11 @@ msgstr "" msgid "Filter Values" msgstr "Filtruj wartości" -#: frappe/database/query.py:358 +#: frappe/database/query.py:360 msgid "Filter condition missing after operator: {0}" msgstr "" -#: frappe/database/query.py:425 +#: frappe/database/query.py:427 msgid "Filter fields cannot contain backticks (`)." msgstr "" @@ -10193,7 +10233,7 @@ msgstr "Sekcja filtrów" msgid "Filters applied for {0}" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:188 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:202 msgid "Filters saved" msgstr "" @@ -10241,9 +10281,12 @@ msgstr "" #. Label of the first_name (Data) field in DocType 'Contact' #. Label of the first_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json #: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:44 -#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:15 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:15 msgid "First Name" msgstr "" @@ -10324,7 +10367,7 @@ msgstr "" msgid "Folder name should not include '/' (slash)" msgstr "" -#: frappe/core/doctype/file/file.py:494 +#: frappe/core/doctype/file/file.py:497 msgid "Folder {0} is not empty" msgstr "" @@ -10526,7 +10569,7 @@ msgstr "" msgid "For Value" msgstr "Dla wartości" -#: frappe/public/js/frappe/views/reports/query_report.js:2129 +#: frappe/public/js/frappe/views/reports/query_report.js:2137 #: frappe/public/js/frappe/views/reports/report_view.js:108 msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)." msgstr "" @@ -10611,7 +10654,7 @@ msgstr "" #: frappe/www/login.html:37 msgid "Forgot Password?" -msgstr "" +msgstr "Zapomniałeś hasła?" #. Label of the form_builder_tab (Tab Break) field in DocType 'DocType' #. Option for the 'Apply To' (Select) field in DocType 'Client Script' @@ -10748,7 +10791,7 @@ msgstr "" #. Type: Route #: frappe/hooks.py msgid "Frappe Support" -msgstr "" +msgstr "Wsparcie od Frappe" #: frappe/website/doctype/web_page/web_page.js:92 msgid "Frappe page builder using components" @@ -10811,7 +10854,7 @@ msgstr "" msgid "From Date Field" msgstr "Od pola daty" -#: frappe/public/js/frappe/views/reports/query_report.js:1840 +#: frappe/public/js/frappe/views/reports/query_report.js:1848 msgid "From Document Type" msgstr "" @@ -10873,12 +10916,12 @@ msgstr "" msgid "Function {0} is not whitelisted." msgstr "" -#: frappe/database/query.py:1417 +#: frappe/database/query.py:1419 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" +msgid "Further sub-groups can only be created under records marked as 'Group'" msgstr "" #: frappe/core/doctype/communication/communication.js:291 @@ -10938,7 +10981,7 @@ msgstr "" msgid "Generate Keys" msgstr "Generuj klucze" -#: frappe/public/js/frappe/views/reports/query_report.js:874 +#: frappe/public/js/frappe/views/reports/query_report.js:882 msgid "Generate New Report" msgstr "" @@ -11061,7 +11104,7 @@ msgstr "" #: frappe/public/js/frappe/ui/keyboard.js:122 msgid "Global Shortcuts" -msgstr "" +msgstr "Skróty globalne" #. Label of the global_unsubscribe (Check) field in DocType 'Email Unsubscribe' #: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json @@ -11354,14 +11397,10 @@ msgstr "Grupuj według typu" msgid "Group By field is required to create a dashboard chart" msgstr "" -#: frappe/database/query.py:750 +#: frappe/database/query.py:752 msgid "Group By must be a string" msgstr "" -#: frappe/public/js/frappe/views/treeview.js:418 -msgid "Group Node" -msgstr "" - #. Label of the ldap_group_objectclass (Data) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Group Object Class" @@ -11691,7 +11730,7 @@ msgstr "" msgid "Hidden Fields" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1642 +#: frappe/public/js/frappe/views/reports/query_report.js:1650 msgid "Hidden columns include: {0}" msgstr "" @@ -11803,7 +11842,7 @@ msgstr "" msgid "Hide Standard Menu" msgstr "Ukryj standardowego menu" -#: frappe/public/js/frappe/list/list_view.js:1849 +#: frappe/public/js/frappe/list/list_view.js:1851 msgid "Hide Tags" msgstr "" @@ -12062,7 +12101,7 @@ msgstr "Jeśli Zaznaczone stan przepływu pracy nie zastąpi statusu w widoku li #: frappe/core/doctype/doctype/doctype.py:1777 #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45 -#: frappe/public/js/frappe/roles_editor.js:66 +#: frappe/public/js/frappe/roles_editor.js:68 msgid "If Owner" msgstr "" @@ -12290,8 +12329,8 @@ msgstr "Ignorowane aplikacje" msgid "Illegal Document Status for {0}" msgstr "" -#: frappe/model/db_query.py:453 frappe/model/db_query.py:456 -#: frappe/model/db_query.py:1121 +#: frappe/model/db_query.py:454 frappe/model/db_query.py:457 +#: frappe/model/db_query.py:1122 msgid "Illegal SQL Query" msgstr "" @@ -12378,11 +12417,11 @@ msgstr "" #. Option for the 'Operation' (Select) field in DocType 'Activity Log' #: frappe/core/doctype/activity_log/activity_log.json -#: frappe/core/doctype/user/user.js:384 +#: frappe/core/doctype/user/user.js:372 msgid "Impersonate" msgstr "" -#: frappe/core/doctype/user/user.js:411 +#: frappe/core/doctype/user/user.js:399 msgid "Impersonate as {0}" msgstr "" @@ -12412,7 +12451,7 @@ msgstr "Bezwarunkowy" msgid "Import" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1911 +#: frappe/public/js/frappe/list/list_view.js:1913 msgctxt "Button in list view menu" msgid "Import" msgstr "" @@ -12641,15 +12680,15 @@ msgid "Include Web View Link in Email" msgstr "Wyślij łącze do widoku internetowego dokumentu w wiadomości e-mail" #: frappe/public/js/frappe/form/print_utils.js:59 -#: frappe/public/js/frappe/views/reports/query_report.js:1620 +#: frappe/public/js/frappe/views/reports/query_report.js:1628 msgid "Include filters" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1640 +#: frappe/public/js/frappe/views/reports/query_report.js:1648 msgid "Include hidden columns" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1612 +#: frappe/public/js/frappe/views/reports/query_report.js:1620 msgid "Include indentation" msgstr "" @@ -12696,7 +12735,7 @@ msgstr "" msgid "Incomplete Virtual Doctype Implementation" msgstr "" -#: frappe/auth.py:255 +#: frappe/auth.py:258 msgid "Incomplete login details" msgstr "" @@ -12807,7 +12846,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:1885 +#: frappe/public/js/frappe/views/reports/query_report.js:1893 msgid "Insert After" msgstr "" @@ -12880,7 +12919,7 @@ msgstr "" msgid "Insufficient Permission Level for {0}" msgstr "" -#: frappe/database/query.py:806 frappe/database/query.py:1052 +#: frappe/database/query.py:808 frappe/database/query.py:1054 msgid "Insufficient Permission for {0}" msgstr "" @@ -12996,7 +13035,7 @@ msgid "Invalid" msgstr "" #: frappe/public/js/form_builder/utils.js:221 -#: frappe/public/js/frappe/form/grid_row.js:849 +#: frappe/public/js/frappe/form/grid_row.js:850 #: frappe/public/js/frappe/form/layout.js:810 #: frappe/public/js/frappe/views/reports/report_view.js:721 msgid "Invalid \"depends_on\" expression" @@ -13054,8 +13093,8 @@ 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 +#: frappe/database/query.py:429 frappe/database/query.py:456 +#: frappe/database/query.py:466 frappe/database/query.py:489 msgid "Invalid Filter" msgstr "" @@ -13127,7 +13166,7 @@ msgstr "" msgid "Invalid Phone Number" msgstr "" -#: frappe/auth.py:94 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 +#: frappe/auth.py:97 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 #: frappe/www/login.py:128 msgid "Invalid Request" msgstr "" @@ -13167,7 +13206,7 @@ msgstr "" msgid "Invalid aggregate function" msgstr "" -#: frappe/database/query.py:1542 +#: frappe/database/query.py:1544 msgid "Invalid alias format: {0}. Alias must be a simple identifier." msgstr "" @@ -13175,19 +13214,19 @@ msgstr "" msgid "Invalid app" msgstr "" -#: frappe/database/query.py:1468 +#: frappe/database/query.py:1470 msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed." msgstr "" -#: frappe/database/query.py:1444 +#: frappe/database/query.py:1446 msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed." msgstr "" -#: frappe/database/query.py:460 +#: frappe/database/query.py:462 msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed." msgstr "" -#: frappe/database/query.py:575 +#: frappe/database/query.py:577 msgid "Invalid characters in table name: {0}" msgstr "" @@ -13195,11 +13234,11 @@ msgstr "" msgid "Invalid column" msgstr "" -#: frappe/database/query.py:381 +#: frappe/database/query.py:383 msgid "Invalid condition type in nested filters: {0}" msgstr "" -#: frappe/database/query.py:787 +#: frappe/database/query.py:789 msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'." msgstr "" @@ -13215,23 +13254,23 @@ msgstr "" msgid "Invalid expression set in filter {0} ({1})" msgstr "" -#: frappe/database/query.py:1301 +#: frappe/database/query.py:1303 msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'." msgstr "" -#: frappe/database/query.py:734 +#: frappe/database/query.py:736 msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'." msgstr "" -#: frappe/database/query.py:1620 +#: frappe/database/query.py:1622 msgid "Invalid field name in function: {0}. Only simple field names are allowed." msgstr "" -#: frappe/utils/data.py:2215 +#: frappe/utils/data.py:2241 msgid "Invalid field name {0}" msgstr "" -#: frappe/database/query.py:668 +#: frappe/database/query.py:670 msgid "Invalid field type: {0}" msgstr "" @@ -13243,11 +13282,11 @@ msgstr "" msgid "Invalid file path: {0}" msgstr "" -#: frappe/database/query.py:364 +#: frappe/database/query.py:366 msgid "Invalid filter condition: {0}. Expected a list or tuple." msgstr "" -#: frappe/database/query.py:450 +#: frappe/database/query.py:452 msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'." msgstr "" @@ -13255,11 +13294,11 @@ msgstr "" msgid "Invalid filter: {0}" msgstr "" -#: frappe/database/query.py:1422 +#: frappe/database/query.py:1424 msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed." msgstr "" -#: frappe/database/query.py:1383 +#: frappe/database/query.py:1385 msgid "Invalid function dictionary format" msgstr "" @@ -13296,23 +13335,27 @@ msgstr "" msgid "Invalid redirect regex in row #{}: {}" msgstr "" -#: frappe/app.py:337 +#: frappe/app.py:340 msgid "Invalid request arguments" msgstr "" +#: frappe/app.py:327 +msgid "Invalid request body" +msgstr "" + #: frappe/core/doctype/user_invitation/user_invitation.py:181 msgid "Invalid role" msgstr "" -#: frappe/database/query.py:410 +#: frappe/database/query.py:412 msgid "Invalid simple filter format: {0}" msgstr "" -#: frappe/database/query.py:341 +#: frappe/database/query.py:343 msgid "Invalid start for filter condition: {0}. Expected a list or tuple." msgstr "" -#: frappe/database/query.py:1489 +#: frappe/database/query.py:1491 msgid "Invalid string literal format: {0}" msgstr "" @@ -13416,7 +13459,7 @@ msgstr "" #. 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/doctype_list.js:50 #: frappe/core/doctype/doctype_link/doctype_link.json msgid "Is Child Table" msgstr "" @@ -13469,6 +13512,10 @@ msgstr "Czy Folder" msgid "Is Global" msgstr "" +#: frappe/public/js/frappe/views/treeview.js:418 +msgid "Is Group" +msgstr "" + #. Label of the is_hidden (Check) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "Is Hidden" @@ -13557,7 +13604,7 @@ 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/core/doctype/doctype/doctype_list.js:65 #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Is Single" msgstr "" @@ -13593,7 +13640,7 @@ msgstr "Standardowy" #. Label of the is_submittable (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:39 +#: frappe/core/doctype/doctype/doctype_list.js:40 msgid "Is Submittable" msgstr "" @@ -13799,11 +13846,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:388 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:402 msgid "Kanban Board Name" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:265 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:279 msgctxt "Button in kanban view menu" msgid "Kanban Settings" msgstr "" @@ -13843,7 +13890,7 @@ msgstr "Klucz" #. Type: Action #: frappe/hooks.py frappe/public/js/frappe/ui/keyboard.js:130 msgid "Keyboard Shortcuts" -msgstr "" +msgstr "Skróty klawiszowe" #. Option for the 'Social Login Provider' (Select) field in DocType 'Social #. Login Key' @@ -14101,10 +14148,13 @@ msgstr "" #. 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' +#. Label of a field in the edit-profile Web Form #: 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:117 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/printing/page/print/print.js:117 #: frappe/public/js/frappe/form/templates/print_layout.html:11 msgid "Language" msgstr "" @@ -14192,9 +14242,12 @@ msgstr "W zeszłym miesiącu" #. Label of the last_name (Data) field in DocType 'Contact' #. Label of the last_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json #: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:45 -#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:19 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:19 msgid "Last Name" msgstr "" @@ -14435,7 +14488,7 @@ msgstr "Nagłówek w HTMLu" #: 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/public/js/frappe/roles_editor.js:68 #: frappe/website/doctype/help_article/help_article.json msgid "Level" msgstr "" @@ -14728,7 +14781,7 @@ msgstr "" msgid "List Settings" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1991 +#: frappe/public/js/frappe/list/list_view.js:1993 msgctxt "Button in list view menu" msgid "List Settings" msgstr "" @@ -14779,7 +14832,7 @@ msgid "Load Balancing" msgstr "Równoważenie obciążenia" #: frappe/public/js/frappe/list/base_list.js:399 -#: frappe/public/js/frappe/web_form/web_form_list.js:305 +#: frappe/public/js/frappe/web_form/web_form_list.js:306 #: frappe/website/doctype/help_article/templates/help_article_list.html:30 msgid "Load More" msgstr "" @@ -14799,7 +14852,7 @@ msgstr "" #: frappe/public/js/frappe/list/base_list.js:526 #: frappe/public/js/frappe/list/list_view.js:363 #: frappe/public/js/frappe/ui/listing.html:16 -#: frappe/public/js/frappe/views/reports/query_report.js:1089 +#: frappe/public/js/frappe/views/reports/query_report.js:1097 msgid "Loading" msgstr "" @@ -14942,7 +14995,7 @@ msgstr "" msgid "Login and view in Browser" msgstr "" -#: frappe/website/doctype/web_form/web_form.js:367 +#: frappe/website/doctype/web_form/web_form.js:368 msgid "Login is required to see web form list view. Enable {0} to see list settings" msgstr "" @@ -14950,7 +15003,7 @@ msgstr "" msgid "Login link sent to your email" msgstr "" -#: frappe/auth.py:339 frappe/auth.py:342 +#: frappe/auth.py:342 frappe/auth.py:345 msgid "Login not allowed at this time" msgstr "" @@ -14973,7 +15026,7 @@ msgstr "" #: frappe/www/login.html:64 msgid "Login to {0}" -msgstr "" +msgstr "Logowanie do {0}" #: frappe/templates/includes/login/login.js:319 msgid "Login token required" @@ -14981,7 +15034,7 @@ msgstr "" #: frappe/www/login.html:126 frappe/www/login.html:210 msgid "Login with Email Link" -msgstr "" +msgstr "Logowanie przez link" #: frappe/www/login.html:116 msgid "Login with Frappe Cloud" @@ -15003,7 +15056,7 @@ msgstr "" msgid "Login with email link expiry (in minutes)" msgstr "" -#: frappe/auth.py:144 +#: frappe/auth.py:147 msgid "Login with username and password is not allowed." msgstr "" @@ -15022,7 +15075,7 @@ msgstr "" msgid "Logout" msgstr "Wyloguj" -#: frappe/core/doctype/user/user.js:202 +#: frappe/core/doctype/user/user.js:190 msgid "Logout All Sessions" msgstr "" @@ -15126,7 +15179,10 @@ msgid "Major" msgstr "" #. Label of the show_name_in_global_search (Check) field in DocType 'DocType' +#. Label of the show_name_in_global_search (Check) field in DocType 'Customize +#. Form' #: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Make \"name\" searchable in Global Search" msgstr "Make „Nazwa” można przeszukiwać w Global Search" @@ -15202,7 +15258,7 @@ msgstr "Obowiązkowe zależy od" msgid "Mandatory Depends On (JS)" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:509 +#: frappe/website/doctype/web_form/web_form.py:536 msgid "Mandatory Information missing:" msgstr "" @@ -15659,6 +15715,11 @@ msgstr "" msgid "Middle Name" msgstr "Drugie imię" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Middle Name (Optional)" +msgstr "" + #. Name of a DocType #. Label of a Link in the Tools Workspace #: frappe/automation/doctype/milestone/milestone.json @@ -15765,6 +15826,11 @@ msgstr "" msgid "Mobile No" msgstr "" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Mobile Number" +msgstr "" + #. 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" @@ -15790,7 +15856,7 @@ msgstr "" #. 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/doctype/doctype_list.js:31 #: 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 @@ -15966,10 +16032,12 @@ msgstr "" #. Label of the additional_info (Section Break) field in DocType #. 'Communication' #. Label of the short_bio (Tab Break) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: 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 +#: frappe/core/web_form/edit_profile/edit_profile.json msgid "More Information" msgstr "Więcej informacji" @@ -15999,7 +16067,7 @@ msgstr "" msgid "Move" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:193 +#: frappe/public/js/frappe/form/grid_row.js:194 msgid "Move To" msgstr "" @@ -16035,7 +16103,7 @@ msgstr "" msgid "Move the current field and the following fields to a new column" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:168 +#: frappe/public/js/frappe/form/grid_row.js:169 msgid "Move to Row Number" msgstr "" @@ -16103,7 +16171,7 @@ msgid "Mx" msgstr "" #: frappe/templates/includes/web_sidebar.html:41 -#: frappe/website/doctype/web_form/web_form.py:498 +#: frappe/website/doctype/web_form/web_form.py:525 #: 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" @@ -16245,12 +16313,12 @@ msgstr "Szablon paska nawigacyjnego" msgid "Navbar Template Values" msgstr "Wartości szablonu paska nawigacyjnego" -#: frappe/public/js/frappe/list/list_view.js:1378 +#: frappe/public/js/frappe/list/list_view.js:1380 msgctxt "Description of a list view shortcut" msgid "Navigate list down" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1385 +#: frappe/public/js/frappe/list/list_view.js:1387 msgctxt "Description of a list view shortcut" msgid "Navigate list up" msgstr "" @@ -16265,6 +16333,10 @@ msgstr "" msgid "Navigation Settings" msgstr "" +#: frappe/public/js/frappe/list/list_view.js:485 +msgid "Need Help?" +msgstr "" + #: frappe/desk/doctype/workspace/workspace.py:322 msgid "Need Workspace Manager role to edit private workspace of other users" msgstr "" @@ -16273,7 +16345,7 @@ msgstr "" msgid "Negative Value" msgstr "" -#: frappe/database/query.py:333 +#: frappe/database/query.py:335 msgid "Nested filters must be provided as a list or tuple." msgstr "" @@ -16286,6 +16358,12 @@ msgstr "" msgid "Network Printer Settings" msgstr "" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Never" +msgstr "" + #. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/core/doctype/success_action/success_action.js:57 @@ -16294,7 +16372,7 @@ msgstr "" #: 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/treeview.js:473 #: frappe/public/js/frappe/views/workspace/workspace.js:64 #: frappe/website/doctype/web_form/templates/web_list.html:15 #: frappe/www/list.html:19 @@ -16355,7 +16433,7 @@ msgstr "" msgid "New Folder" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 msgid "New Kanban Board" msgstr "" @@ -16390,7 +16468,7 @@ msgstr "" msgid "New Onboarding" msgstr "" -#: frappe/core/doctype/user/user.js:190 frappe/www/update-password.html:43 +#: frappe/core/doctype/user/user.js:178 frappe/www/update-password.html:43 msgid "New Password" msgstr "" @@ -16486,7 +16564,7 @@ msgstr "Wstawiam nową wartość" #: frappe/public/js/frappe/ui/toolbar/search_utils.js:227 #: 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:411 +#: frappe/website/doctype/web_form/web_form.py:438 msgid "New {0}" msgstr "" @@ -16638,7 +16716,7 @@ msgstr "" #: frappe/public/js/form_builder/utils.js:341 #: frappe/public/js/frappe/form/controls/link.js:498 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1665 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 #: frappe/website/doctype/help_article/templates/help_article.html:26 msgid "No" msgstr "" @@ -16787,7 +16865,7 @@ msgstr "" msgid "No Roles Specified" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 msgid "No Select Field Found" msgstr "" @@ -16871,7 +16949,7 @@ msgstr "" msgid "No failed logs" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:371 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:385 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 "" @@ -16895,7 +16973,7 @@ msgstr "" msgid "No matching records. Search something new" msgstr "" -#: frappe/public/js/frappe/web_form/web_form_list.js:161 +#: frappe/public/js/frappe/web_form/web_form_list.js:162 msgid "No more items to display" msgstr "" @@ -16939,7 +17017,7 @@ msgctxt "{0} = verb, {1} = object" msgid "No permission to '{0}' {1}" msgstr "" -#: frappe/model/db_query.py:948 +#: frappe/model/db_query.py:949 msgid "No permission to read {0}" msgstr "" @@ -16987,11 +17065,11 @@ msgstr "" msgid "No {0} Found" msgstr "" -#: frappe/public/js/frappe/web_form/web_form_list.js:233 +#: frappe/public/js/frappe/web_form/web_form_list.js:234 msgid "No {0} found" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:497 +#: frappe/public/js/frappe/list/list_view.js:499 msgid "No {0} found with matching filters. Clear filters to see all {0}." msgstr "" @@ -17000,7 +17078,7 @@ msgid "No {0} mail" msgstr "" #: frappe/public/js/form_builder/utils.js:117 -#: frappe/public/js/frappe/form/grid_row.js:256 +#: frappe/public/js/frappe/form/grid_row.js:257 msgctxt "Title of the 'row number' column" msgid "No." msgstr "" @@ -17064,7 +17142,7 @@ msgstr "" msgid "Not Equals" msgstr "" -#: frappe/app.py:387 frappe/www/404.html:3 +#: frappe/app.py:390 frappe/www/404.html:3 msgid "Not Found" msgstr "" @@ -17090,9 +17168,9 @@ msgstr "" msgid "Not Nullable" msgstr "" -#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26 +#: frappe/__init__.py:550 frappe/app.py:383 frappe/desk/calendar.py:26 #: frappe/public/js/frappe/web_form/webform_script.js:15 -#: frappe/website/doctype/web_form/web_form.py:747 +#: frappe/website/doctype/web_form/web_form.py:774 #: 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 @@ -17111,7 +17189,7 @@ msgstr "" #: 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/kanban/kanban_view.js:183 #: frappe/public/js/frappe/views/reports/report_view.js:209 #: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39 #: frappe/website/doctype/web_form/templates/web_form.html:85 @@ -17162,7 +17240,7 @@ msgstr "" msgid "Not allowed for {0}: {1}" msgstr "" -#: frappe/email/doctype/notification/notification.py:637 +#: frappe/email/doctype/notification/notification.py:639 msgid "Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings" msgstr "" @@ -17194,12 +17272,12 @@ msgstr "" msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType." msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:216 +#: frappe/core/doctype/system_settings/system_settings.py:217 #: 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:760 +#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:787 #: frappe/website/js/website.js:97 msgid "Not permitted" msgstr "" @@ -17245,7 +17323,7 @@ msgstr "Uwaga: Aby uzyskać najlepsze wyniki, obrazy muszą być tego samego roz msgid "Note: Multiple sessions will be allowed in case of mobile device" msgstr "Uwaga: Wielokrotne sesje będą dozwolone w przypadku urządzeń mobilnych" -#: frappe/core/doctype/user/user.js:399 +#: frappe/core/doctype/user/user.js:387 msgid "Note: This will be shared with user." msgstr "" @@ -17317,15 +17395,15 @@ msgstr "" msgid "Notification sent to" msgstr "" -#: frappe/email/doctype/notification/notification.py:542 +#: frappe/email/doctype/notification/notification.py:544 msgid "Notification: customer {0} has no Mobile number set" msgstr "" -#: frappe/email/doctype/notification/notification.py:528 +#: frappe/email/doctype/notification/notification.py:530 msgid "Notification: document {0} has no {1} number set (field: {2})" msgstr "" -#: frappe/email/doctype/notification/notification.py:537 +#: frappe/email/doctype/notification/notification.py:539 msgid "Notification: user {0} has no Mobile number set" msgstr "" @@ -17439,7 +17517,7 @@ msgstr "" msgid "Number of attachment fields are more than {}, limit updated to {}." msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:171 +#: frappe/core/doctype/system_settings/system_settings.py:172 msgid "Number of backups must be greater than zero." msgstr "" @@ -17711,7 +17789,7 @@ msgstr "" #. Description of the 'Is Submittable' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:42 +#: frappe/core/doctype/doctype/doctype_list.js:43 msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended." msgstr "" @@ -17800,11 +17878,11 @@ msgstr "" msgid "Only reports of type Report Builder can be edited" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:129 +#: frappe/custom/doctype/customize_form/customize_form.py:131 msgid "Only standard DocTypes are allowed to be customized from Customize Form." msgstr "" -#: frappe/model/delete_doc.py:241 +#: frappe/model/delete_doc.py:281 msgid "Only the Administrator can delete a standard DocType." msgstr "" @@ -17862,7 +17940,7 @@ msgstr "Otwórz dokumenty" #: frappe/public/js/frappe/ui/keyboard.js:243 msgid "Open Help" -msgstr "" +msgstr "Otwórz Pomoc" #. Label of the open_reference_document (Button) field in DocType 'Notification #. Log' @@ -17900,7 +17978,7 @@ msgstr "" msgid "Open in a new tab" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1431 +#: frappe/public/js/frappe/list/list_view.js:1433 msgctxt "Description of a list view shortcut" msgid "Open list item" msgstr "" @@ -17949,7 +18027,7 @@ msgstr "Otwarty" msgid "Operation" msgstr "" -#: frappe/utils/data.py:2146 +#: frappe/utils/data.py:2172 msgid "Operator must be one of {0}" msgstr "" @@ -17995,6 +18073,7 @@ msgstr "Opcjonalnie: powiadomienie zostanie wysłane, jeśli wyrażenie jest pra #. 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 (Text) field in DocType 'Web Form List Column' #. 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 @@ -18003,6 +18082,7 @@ msgstr "Opcjonalnie: powiadomienie zostanie wysłane, jeśli wyrażenie jest pra #: 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_form_list_column/web_form_list_column.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Options" msgstr "" @@ -18048,7 +18128,7 @@ msgstr "" msgid "Order" msgstr "Zamówienie" -#: frappe/database/query.py:767 +#: frappe/database/query.py:769 msgid "Order By must be a string" msgstr "" @@ -18146,7 +18226,7 @@ msgstr "" #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/printing/page/print/print.js:84 #: frappe/public/js/frappe/form/templates/print_layout.html:44 -#: frappe/public/js/frappe/views/reports/query_report.js:1804 +#: frappe/public/js/frappe/views/reports/query_report.js:1812 msgid "PDF" msgstr "" @@ -18494,8 +18574,8 @@ msgstr "Nieaktywny" #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/system_settings/system_settings.json -#: frappe/core/doctype/user/user.js:177 frappe/core/doctype/user/user.js:224 -#: frappe/core/doctype/user/user.js:244 +#: frappe/core/doctype/user/user.js:165 frappe/core/doctype/user/user.js:212 +#: frappe/core/doctype/user/user.js:232 #: 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 @@ -18518,7 +18598,7 @@ msgstr "" msgid "Password Reset Link Generation Limit" msgstr "Limit generowania linków do resetowania hasła" -#: frappe/public/js/frappe/form/grid_row.js:896 +#: frappe/public/js/frappe/form/grid_row.js:897 msgid "Password cannot be filtered" msgstr "" @@ -18555,7 +18635,7 @@ msgstr "" msgid "Password set" msgstr "" -#: frappe/auth.py:258 +#: frappe/auth.py:261 msgid "Password size exceeded the maximum allowed size" msgstr "" @@ -18567,7 +18647,7 @@ msgstr "" msgid "Passwords do not match" msgstr "" -#: frappe/core/doctype/user/user.js:210 +#: frappe/core/doctype/user/user.js:198 msgid "Passwords do not match!" msgstr "" @@ -18718,7 +18798,7 @@ msgstr "" msgid "Permanently delete {0}?" msgstr "" -#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533 +#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:535 msgid "Permission Error" msgstr "" @@ -18778,8 +18858,8 @@ msgstr "" #: 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:143 frappe/core/doctype/user/user.js:152 -#: frappe/core/doctype/user/user.js:161 +#: frappe/core/doctype/user/user.js:131 frappe/core/doctype/user/user.js:140 +#: frappe/core/doctype/user/user.js:149 #: 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 @@ -18849,6 +18929,7 @@ msgstr "" #. Option for the 'Type' (Select) field in DocType 'Communication' #. Option for the 'Type' (Select) field in DocType 'DocField' #. Label of the phone (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #. 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' @@ -18859,6 +18940,7 @@ msgstr "" #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.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 @@ -19033,7 +19115,7 @@ msgstr "" msgid "Please duplicate this to make changes" msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:164 +#: frappe/core/doctype/system_settings/system_settings.py:165 msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login." msgstr "" @@ -19165,11 +19247,11 @@ msgstr "" msgid "Please select Entity Type first" msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:115 +#: frappe/core/doctype/system_settings/system_settings.py:116 msgid "Please select Minimum Password Score" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1185 +#: frappe/public/js/frappe/views/reports/query_report.js:1193 msgid "Please select X and Y fields" msgstr "" @@ -19197,7 +19279,7 @@ msgstr "" msgid "Please select applicable Doctypes" msgstr "" -#: frappe/model/db_query.py:1157 +#: frappe/model/db_query.py:1163 msgid "Please select atleast 1 column from {0} to sort/group" msgstr "" @@ -19227,7 +19309,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:1408 +#: frappe/public/js/frappe/views/reports/query_report.js:1416 msgid "Please set filters" msgstr "" @@ -19247,7 +19329,7 @@ msgstr "" msgid "Please set the series to be used." msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:128 +#: frappe/core/doctype/system_settings/system_settings.py:129 msgid "Please setup SMS before setting it as an authentication method, via SMS Settings" msgstr "" @@ -19399,7 +19481,7 @@ msgstr "" msgid "Posting Timestamp" msgstr "" -#: frappe/database/query.py:1518 +#: frappe/database/query.py:1520 msgid "Potentially dangerous content in string literal: {0}" msgstr "" @@ -19480,7 +19562,7 @@ msgstr "" #: frappe/public/js/frappe/ui/keyboard.js:139 msgid "Press Alt Key to trigger additional shortcuts in Menu and Sidebar" -msgstr "" +msgstr "Naciśnij klawisz Alt, aby uruchomić dodatkowe skróty w menu i pasku bocznym" #: frappe/public/js/frappe/list/list_filter.js:141 msgid "Press Enter to save" @@ -19601,13 +19683,13 @@ msgstr "" #: 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:1789 +#: frappe/public/js/frappe/views/reports/query_report.js:1797 #: frappe/public/js/frappe/views/reports/report_view.js:1539 -#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18 +#: frappe/public/js/frappe/views/treeview.js:492 frappe/www/printview.html:18 msgid "Print" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2164 +#: frappe/public/js/frappe/list/list_view.js:2166 msgctxt "Button in list view actions menu" msgid "Print" msgstr "" @@ -19677,7 +19759,7 @@ msgstr "Format Drukuj Pomoc" msgid "Print Format Type" msgstr "Drukuj Typ Formatu" -#: frappe/public/js/frappe/views/reports/query_report.js:1578 +#: frappe/public/js/frappe/views/reports/query_report.js:1586 msgid "Print Format not found" msgstr "" @@ -19858,11 +19940,11 @@ msgstr "Protip: Dodaj Reference: {{ reference_doctype }} {{ reference_name msgid "Proceed" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:932 +#: frappe/public/js/frappe/views/reports/query_report.js:940 msgid "Proceed Anyway" msgstr "" -#: frappe/public/js/frappe/form/controls/table.js:123 +#: frappe/public/js/frappe/form/controls/table.js:104 msgid "Processing" msgstr "" @@ -19879,11 +19961,21 @@ msgstr "" msgid "Profile" msgstr "" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile Picture" +msgstr "" + +#. Success message of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile updated successfully." +msgstr "Pomyślnie zaktualizowano profil." + #: frappe/public/js/frappe/socketio_client.js:82 msgid "Progress" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:408 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:422 msgid "Project" msgstr "" @@ -19927,7 +20019,7 @@ msgstr "Typ Właściwości" msgid "Protect Attached Files" msgstr "" -#: frappe/core/doctype/file/file.py:523 +#: frappe/core/doctype/file/file.py:526 msgid "Protected File" msgstr "" @@ -20433,11 +20525,11 @@ msgstr "" msgid "Reason" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:886 +#: frappe/public/js/frappe/views/reports/query_report.js:894 msgid "Rebuild" msgstr "" -#: frappe/public/js/frappe/views/treeview.js:509 +#: frappe/public/js/frappe/views/treeview.js:511 msgid "Rebuild Tree" msgstr "" @@ -20818,8 +20910,8 @@ 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:1778 -#: frappe/public/js/frappe/views/treeview.js:496 +#: frappe/public/js/frappe/views/reports/query_report.js:1786 +#: frappe/public/js/frappe/views/treeview.js:498 #: frappe/public/js/frappe/widgets/chart_widget.js:291 #: frappe/public/js/frappe/widgets/number_card_widget.js:352 #: frappe/public/js/print_format_builder/Preview.vue:24 @@ -20850,13 +20942,13 @@ msgstr "" msgid "Refresh Token" msgstr "Odśwież token" -#: frappe/public/js/frappe/list/list_view.js:534 +#: frappe/public/js/frappe/list/list_view.js:536 msgctxt "Document count in list view" msgid "Refreshing" msgstr "" #: frappe/core/doctype/system_settings/system_settings.js:57 -#: frappe/core/doctype/user/user.js:374 +#: frappe/core/doctype/user/user.js:362 #: frappe/desk/page/setup_wizard/setup_wizard.js:211 msgid "Refreshing..." msgstr "" @@ -21241,7 +21333,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:1965 +#: frappe/public/js/frappe/views/reports/query_report.js:1973 msgid "Report Name" msgstr "" @@ -21293,7 +21385,7 @@ msgstr "" msgid "Report has no numeric fields, please change the Report Name" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1013 +#: frappe/public/js/frappe/views/reports/query_report.js:1021 msgid "Report initiated, click to view status" msgstr "" @@ -21313,7 +21405,7 @@ msgstr "" msgid "Report was not saved (there were errors)" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2003 +#: frappe/public/js/frappe/views/reports/query_report.js:2011 msgid "Report with more than 10 columns looks better in Landscape mode." msgstr "" @@ -21349,7 +21441,7 @@ msgstr "" msgid "Reports & Masters" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:929 +#: frappe/public/js/frappe/views/reports/query_report.js:937 msgid "Reports already in Queue" msgstr "" @@ -21368,7 +21460,10 @@ msgid "Request Body" msgstr "" #. Label of the data (Code) field in DocType 'Integration Request' +#. Title of the request-data Web Form +#. Button label of the request-data Web Form #: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/website/web_form/request_data/request_data.json msgid "Request Data" msgstr "Żądaj danych" @@ -21420,6 +21515,11 @@ msgstr "" msgid "Request URL" msgstr "Żądaj adresu URL" +#. Title of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "Request for Account Deletion" +msgstr "" + #. Label of the requested_numbers (Code) field in DocType 'SMS Log' #: frappe/core/doctype/sms_log/sms_log.json msgid "Requested Numbers" @@ -21475,7 +21575,7 @@ msgstr "" msgid "Reset Fields" msgstr "" -#: frappe/core/doctype/user/user.js:184 frappe/core/doctype/user/user.js:187 +#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:175 msgid "Reset LDAP Password" msgstr "" @@ -21483,11 +21583,11 @@ msgstr "" msgid "Reset Layout" msgstr "" -#: frappe/core/doctype/user/user.js:235 +#: frappe/core/doctype/user/user.js:223 msgid "Reset OTP Secret" msgstr "" -#: frappe/core/doctype/user/user.js:168 frappe/www/login.html:199 +#: frappe/core/doctype/user/user.js:156 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" @@ -21522,7 +21622,7 @@ msgstr "" msgid "Reset sorting" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:433 +#: frappe/public/js/frappe/form/grid_row.js:434 msgid "Reset to default" msgstr "" @@ -21774,7 +21874,7 @@ 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 +#: frappe/public/js/frappe/roles_editor.js:114 msgid "Role Permissions" msgstr "" @@ -21784,7 +21884,7 @@ msgstr "" msgid "Role Permissions Manager" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1933 +#: frappe/public/js/frappe/list/list_view.js:1935 msgctxt "Button in list view menu" msgid "Role Permissions Manager" msgstr "" @@ -21977,11 +22077,11 @@ msgstr "" msgid "Row {0}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:353 +#: frappe/custom/doctype/customize_form/customize_form.py:357 msgid "Row {0}: Not allowed to disable Mandatory for standard fields" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:342 +#: frappe/custom/doctype/customize_form/customize_form.py:346 msgid "Row {0}: Not allowed to enable Allow on Submit for standard fields" msgstr "" @@ -22000,7 +22100,10 @@ msgid "Rows Removed" msgstr "" #. Label of the rows_threshold_for_grid_search (Int) field in DocType 'DocType' +#. Label of the rows_threshold_for_grid_search (Int) field in DocType +#. 'Customize Form' #: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Rows Threshold for Grid Search" msgstr "" @@ -22208,8 +22311,8 @@ msgstr "" #: 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:1957 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 +#: frappe/public/js/frappe/views/reports/query_report.js:1965 #: frappe/public/js/frappe/views/reports/report_view.js:1735 #: frappe/public/js/frappe/views/workspace/workspace.js:335 #: frappe/public/js/frappe/widgets/base_widget.js:142 @@ -22232,11 +22335,11 @@ msgstr "" msgid "Save Customizations" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1960 +#: frappe/public/js/frappe/views/reports/query_report.js:1968 msgid "Save Report" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:97 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:107 msgid "Save filters" msgstr "" @@ -22608,7 +22711,7 @@ msgstr "Ustawienia Zabezpieczeń" msgid "See all Activity" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:855 +#: frappe/public/js/frappe/views/reports/query_report.js:863 msgid "See all past reports." msgstr "" @@ -22672,7 +22775,7 @@ msgstr "" #: 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:497 +#: frappe/public/js/frappe/form/grid_row.js:498 msgid "Select All" msgstr "" @@ -22752,7 +22855,7 @@ msgstr "" msgid "Select Field..." msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:489 +#: frappe/public/js/frappe/form/grid_row.js:490 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:181 msgid "Select Fields" msgstr "" @@ -22872,7 +22975,7 @@ msgid "Select a field to edit its properties." msgstr "" #: frappe/public/js/frappe/views/treeview.js:358 -msgid "Select a group node first." +msgid "Select a group {0} first." msgstr "" #: frappe/core/doctype/doctype/doctype.py:1956 @@ -22909,13 +23012,13 @@ msgstr "" msgid "Select atleast 2 actions" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1445 +#: frappe/public/js/frappe/list/list_view.js:1447 msgctxt "Description of a list view shortcut" msgid "Select list item" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1397 -#: frappe/public/js/frappe/list/list_view.js:1413 +#: frappe/public/js/frappe/list/list_view.js:1399 +#: frappe/public/js/frappe/list/list_view.js:1415 msgctxt "Description of a list view shortcut" msgid "Select multiple list items" msgstr "" @@ -23237,7 +23340,7 @@ msgstr "" msgid "Server Action" msgstr "Działanie serwera" -#: frappe/app.py:396 frappe/public/js/frappe/request.js:611 +#: frappe/app.py:399 frappe/public/js/frappe/request.js:611 #: frappe/www/error.html:36 frappe/www/error.py:15 msgid "Server Error" msgstr "" @@ -23303,7 +23406,7 @@ msgstr "" msgid "Session Defaults Saved" msgstr "" -#: frappe/app.py:373 +#: frappe/app.py:376 msgid "Session Expired" msgstr "" @@ -23312,7 +23415,7 @@ msgstr "" msgid "Session Expiry (idle timeout)" msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:122 +#: frappe/core/doctype/system_settings/system_settings.py:123 msgid "Session Expiry must be in format {0}" msgstr "" @@ -23361,7 +23464,7 @@ msgstr "" msgid "Set Filters for {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2113 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 msgid "Set Level" msgstr "" @@ -23415,7 +23518,7 @@ msgstr "" msgid "Set Role For" msgstr "Ustaw rola" -#: frappe/core/doctype/user/user.js:136 +#: frappe/core/doctype/user/user.js:124 #: frappe/core/page/permission_manager/permission_manager.js:72 msgid "Set User Permissions" msgstr "" @@ -23577,7 +23680,7 @@ msgstr "" msgid "Setup > User Permissions" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1826 +#: frappe/public/js/frappe/views/reports/query_report.js:1834 #: frappe/public/js/frappe/views/reports/report_view.js:1713 msgid "Setup Auto Email" msgstr "" @@ -23718,6 +23821,12 @@ msgstr "" msgid "Show Error" msgstr "" +#. Label of the show_external_link_warning (Select) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Show External Link Warning" +msgstr "" + #: frappe/public/js/frappe/form/layout.js:578 msgid "Show Fieldname (click to copy on clipboard)" msgstr "" @@ -23751,7 +23860,7 @@ msgstr "" #: frappe/public/js/frappe/ui/keyboard.js:234 msgid "Show Keyboard Shortcuts" -msgstr "" +msgstr "Pokaż skróty klawiszowe" #. Label of the show_labels (Check) field in DocType 'Kanban Board' #: frappe/desk/doctype/kanban_board/kanban_board.json @@ -23846,7 +23955,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:1849 +#: frappe/public/js/frappe/list/list_view.js:1851 msgid "Show Tags" msgstr "" @@ -24053,36 +24162,36 @@ msgstr "" msgid "Signups have been disabled for this website." msgstr "" -#. 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 "Proste wyrażenie w Pythonie, przykład: status w („Zamknięte”, „Anulowane”)" - #. 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 "Proste wyrażenie w języku Python, przykład: Status w („Nieprawidłowy”)" +msgid "Simple Python Expression, Example: status == \"Invalid\"" +msgstr "" #. 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 "Simple Python Expression, Przykład: status == 'Open' i wpisz == 'Bug'" +msgid "Simple Python Expression, Example: status == 'Open' and issue_type == 'Bug'" +msgstr "" + +#. 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 "" #. Label of the simultaneous_sessions (Int) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Simultaneous Sessions" msgstr "Liczba jednoczesnych sesji" -#: frappe/custom/doctype/customize_form/customize_form.py:126 +#: frappe/custom/doctype/customize_form/customize_form.py:128 msgid "Single DocTypes cannot be customized." 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 +#: frappe/core/doctype/doctype/doctype_list.js:68 msgid "Single Types have only one record no tables associated. Values are stored in tabSingles" msgstr "" @@ -24418,7 +24527,7 @@ msgid "Splash Image" msgstr "" #: frappe/desk/reportview.py:455 -#: frappe/public/js/frappe/web_form/web_form_list.js:175 +#: frappe/public/js/frappe/web_form/web_form_list.js:176 #: frappe/templates/print_formats/standard_macros.html:44 msgid "Sr" msgstr "" @@ -24450,7 +24559,7 @@ msgstr "" msgid "Standard" msgstr "" -#: frappe/model/delete_doc.py:79 +#: frappe/model/delete_doc.py:119 msgid "Standard DocType can not be deleted." msgstr "" @@ -24720,7 +24829,7 @@ msgstr "" #. Label of the sticky (Check) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json -#: frappe/public/js/frappe/form/grid_row.js:454 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Sticky" msgstr "" @@ -24750,7 +24859,7 @@ msgstr "" msgid "Store Attached PDF Document" msgstr "" -#: frappe/core/doctype/user/user.js:490 +#: frappe/core/doctype/user/user.js:497 msgid "Store the API secret securely. It won't be displayed again." msgstr "" @@ -24862,6 +24971,7 @@ msgstr "" #. 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' +#. Button label of the request-to-delete-data Web Form #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/docshare/docshare.json @@ -24870,10 +24980,11 @@ msgstr "" #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/quick_entry.js:225 #: frappe/public/js/frappe/ui/capture.js:307 +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json msgid "Submit" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2231 +#: frappe/public/js/frappe/list/list_view.js:2233 msgctxt "Button in list view actions menu" msgid "Submit" msgstr "" @@ -24883,7 +24994,7 @@ msgctxt "Button in web form" msgid "Submit" msgstr "" -#: frappe/public/js/frappe/ui/dialog.js:63 +#: frappe/public/js/frappe/ui/dialog.js:64 msgctxt "Primary action in dialog" msgid "Submit" msgstr "" @@ -24931,7 +25042,7 @@ msgstr "" msgid "Submit this document to confirm" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2236 +#: frappe/public/js/frappe/list/list_view.js:2238 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "" @@ -24981,7 +25092,7 @@ msgstr "Podtytuł" #: 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:1171 +#: frappe/public/js/frappe/form/grid.js:1172 #: frappe/public/js/frappe/views/translation_manager.js:21 #: frappe/templates/includes/login/login.js:230 #: frappe/templates/includes/login/login.js:236 @@ -25196,7 +25307,7 @@ msgstr "" msgid "Syncing {0} of {1}" msgstr "" -#: frappe/utils/data.py:2547 +#: frappe/utils/data.py:2573 msgid "Syntax Error" msgstr "" @@ -25219,7 +25330,7 @@ msgstr "" #. Type: Route #: frappe/hooks.py msgid "System Health" -msgstr "" +msgstr "Stan systemu" #. Name of a DocType #: frappe/desk/doctype/system_health_report/system_health_report.json @@ -25507,7 +25618,7 @@ msgstr "Tabela MultiSelect" msgid "Table Trimmed" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1170 +#: frappe/public/js/frappe/form/grid.js:1171 msgid "Table updated" msgstr "" @@ -25722,7 +25833,7 @@ msgstr "" msgid "The Auto Repeat for this document has been disabled." msgstr "" -#: frappe/public/js/frappe/form/grid.js:1193 +#: frappe/public/js/frappe/form/grid.js:1194 msgid "The CSV format is case sensitive" msgstr "" @@ -25790,7 +25901,7 @@ msgstr "" 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:685 +#: frappe/public/js/frappe/list/list_view.js:687 msgid "The count shown is an estimated count. Click here to see the accurate count." msgstr "" @@ -25902,7 +26013,7 @@ msgstr "" msgid "The reset password link has either been used before or is invalid" msgstr "" -#: frappe/app.py:388 frappe/public/js/frappe/request.js:149 +#: frappe/app.py:391 frappe/public/js/frappe/request.js:149 msgid "The resource you are looking for is not available" msgstr "" @@ -25975,12 +26086,12 @@ 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:965 +#: frappe/public/js/frappe/views/reports/query_report.js:973 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 +#: frappe/website/doctype/web_form/web_form.js:318 msgid "There can be only 9 Page Break fields in a Web Form" msgstr "" @@ -26004,11 +26115,11 @@ msgstr "" msgid "There is nothing new to show you right now." msgstr "" -#: frappe/core/doctype/file/file.py:640 frappe/utils/file_manager.py:372 +#: frappe/core/doctype/file/file.py:643 frappe/utils/file_manager.py:372 msgid "There is some problem with the file url: {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:962 +#: frappe/public/js/frappe/views/reports/query_report.js:970 msgid "There is {0} with the same filters already in the queue:" msgstr "" @@ -26020,7 +26131,7 @@ msgstr "" msgid "There was an error building this page" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:182 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:196 msgid "There was an error saving filters" msgstr "" @@ -26077,7 +26188,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:391 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:405 msgid "This Kanban Board will be private" msgstr "" @@ -26114,7 +26225,7 @@ msgstr "" msgid "This cannot be undone" msgstr "" -#: frappe/desk/doctype/number_card/number_card.js:480 +#: frappe/desk/doctype/number_card/number_card.js:484 msgctxt "Number Card" msgid "This card is visible only to Administrator and System Managers by default. Set a DocType to share with users who have read access." msgstr "" @@ -26137,7 +26248,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:113 +#: frappe/model/delete_doc.py:153 msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time." msgstr "" @@ -26179,7 +26290,7 @@ msgid "This field will appear only if the fieldname defined here has value OR th "eval:doc.age>18" msgstr "" -#: frappe/core/doctype/file/file.py:522 +#: frappe/core/doctype/file/file.py:525 msgid "This file is attached to a protected document and cannot be deleted." msgstr "" @@ -26214,7 +26325,7 @@ msgstr "" msgid "This goes above the slideshow." msgstr "Występuje ponad slideshow" -#: frappe/public/js/frappe/views/reports/query_report.js:2189 +#: frappe/public/js/frappe/views/reports/query_report.js:2197 msgid "This is a background report. Please set the appropriate filters and then generate a new one." msgstr "" @@ -26264,7 +26375,7 @@ msgstr "" msgid "This month" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1037 +#: frappe/public/js/frappe/views/reports/query_report.js:1045 msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead." msgstr "" @@ -26272,7 +26383,7 @@ msgstr "" msgid "This report was generated on {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:853 +#: frappe/public/js/frappe/views/reports/query_report.js:861 msgid "This report was generated {0}." msgstr "" @@ -26414,9 +26525,11 @@ msgstr "" #. Label of the time_zone (Select) field in DocType 'System Settings' #. Label of the time_zone (Autocomplete) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #. 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/core/web_form/edit_profile/edit_profile.json #: frappe/desk/page/setup_wizard/setup_wizard.js:407 #: frappe/website/doctype/web_page_view/web_page_view.json msgid "Time Zone" @@ -26677,7 +26790,7 @@ msgstr "" msgid "To generate password click {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:854 +#: frappe/public/js/frappe/views/reports/query_report.js:862 msgid "To get the updated report, click on {0}." msgstr "" @@ -26752,7 +26865,7 @@ msgstr "" msgid "Toggle Sidebar" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1964 +#: frappe/public/js/frappe/list/list_view.js:1966 msgctxt "Button in list view menu" msgid "Toggle Sidebar" msgstr "" @@ -26878,7 +26991,7 @@ msgstr "Temat" #: frappe/desk/query_report.py:587 #: frappe/public/js/frappe/views/reports/print_grid.html:45 -#: frappe/public/js/frappe/views/reports/query_report.js:1324 +#: frappe/public/js/frappe/views/reports/query_report.js:1332 #: frappe/public/js/frappe/views/reports/report_view.js:1553 msgid "Total" msgstr "" @@ -27035,7 +27148,7 @@ msgstr "Przejścia" msgid "Translatable" msgstr "Przetłumaczalny" -#: frappe/public/js/frappe/views/reports/query_report.js:2244 +#: frappe/public/js/frappe/views/reports/query_report.js:2252 msgid "Translate Data" msgstr "" @@ -27393,7 +27506,7 @@ msgstr "" msgid "Unable to update event" msgstr "" -#: frappe/core/doctype/file/file.py:486 +#: frappe/core/doctype/file/file.py:489 msgid "Unable to write file format for {0}" msgstr "" @@ -27402,7 +27515,7 @@ msgstr "" msgid "Unassign Condition" msgstr "Stan niepodpisania" -#: frappe/app.py:396 +#: frappe/app.py:399 msgid "Uncaught Exception" msgstr "" @@ -27418,7 +27531,7 @@ msgstr "" msgid "Undo last action" msgstr "" -#: frappe/database/query.py:1495 +#: frappe/database/query.py:1497 msgid "Unescaped quotes in string literal: {0}" msgstr "" @@ -27465,7 +27578,7 @@ msgstr "" msgid "Unknown Rounding Method: {}" msgstr "" -#: frappe/auth.py:316 +#: frappe/auth.py:319 msgid "Unknown User" msgstr "" @@ -27531,8 +27644,8 @@ msgstr "" msgid "Unsubscribed" msgstr "" -#: frappe/database/query.py:653 frappe/database/query.py:1387 -#: frappe/database/query.py:1397 +#: frappe/database/query.py:655 frappe/database/query.py:1389 +#: frappe/database/query.py:1399 msgid "Unsupported function or invalid field name: {0}" msgstr "" @@ -27566,7 +27679,7 @@ msgstr "" #: 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:427 +#: frappe/public/js/frappe/form/grid_row.js:428 msgid "Update" msgstr "" @@ -27600,6 +27713,11 @@ msgstr "" msgid "Update Password" msgstr "" +#. Title of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Update Profile" +msgstr "" + #. Label of the update_series (Section Break) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -27815,11 +27933,7 @@ msgstr "" msgid "Use if the default settings don't seem to detect your data correctly" msgstr "" -#: frappe/model/db_query.py:436 -msgid "Use of function {0} in field is restricted" -msgstr "" - -#: frappe/model/db_query.py:413 +#: frappe/model/db_query.py:411 msgid "Use of sub-query or function is restricted" msgstr "" @@ -28041,12 +28155,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:1944 +#: frappe/public/js/frappe/views/reports/query_report.js:1952 #: frappe/public/js/frappe/views/reports/report_view.js:1761 msgid "User Permissions" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1922 +#: frappe/public/js/frappe/list/list_view.js:1924 msgctxt "Button in list view menu" msgid "User Permissions" msgstr "" @@ -28190,7 +28304,7 @@ msgstr "" msgid "User {0} is disabled" msgstr "" -#: frappe/sessions.py:242 +#: frappe/sessions.py:243 msgid "User {0} is disabled. Please contact your System Manager." msgstr "" @@ -28367,7 +28481,7 @@ msgstr "" msgid "Value for a check field can be either 0 or 1" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:612 +#: frappe/custom/doctype/customize_form/customize_form.py:616 msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters" msgstr "" @@ -28458,7 +28572,7 @@ msgstr "" #: frappe/templates/includes/login/login.js:171 msgid "Verifying..." -msgstr "" +msgstr "Weryfikowanie..." #. Name of a DocType #: frappe/core/doctype/version/version.json @@ -28488,7 +28602,7 @@ msgstr "" msgid "View Audit Trail" msgstr "" -#: frappe/core/doctype/user/user.js:156 +#: frappe/core/doctype/user/user.js:144 msgid "View Doctype Permissions" msgstr "" @@ -28500,7 +28614,7 @@ msgstr "" msgid "View Full Log" msgstr "" -#: frappe/public/js/frappe/views/treeview.js:484 +#: frappe/public/js/frappe/views/treeview.js:486 #: frappe/public/js/frappe/widgets/quick_list_widget.js:258 msgid "View List" msgstr "" @@ -28510,7 +28624,7 @@ msgstr "" msgid "View Log" msgstr "" -#: frappe/core/doctype/user/user.js:147 +#: frappe/core/doctype/user/user.js:135 #: frappe/core/doctype/user_permission/user_permission.js:24 msgid "View Permitted Documents" msgstr "" @@ -28626,6 +28740,7 @@ msgid "Warehouse" msgstr "" #. Option for the 'Style' (Select) field in DocType 'Workflow State' +#: frappe/public/js/frappe/router.js:613 #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Warning" msgstr "" @@ -29271,7 +29386,7 @@ msgstr "" msgid "Workspace" msgstr "" -#: frappe/public/js/frappe/router.js:175 +#: frappe/public/js/frappe/router.js:180 msgid "Workspace {0} does not exist" msgstr "" @@ -29393,7 +29508,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:1225 +#: frappe/public/js/frappe/views/reports/query_report.js:1233 msgid "Y Field" msgstr "" @@ -29455,7 +29570,7 @@ msgstr "" #: frappe/public/js/form_builder/utils.js:336 #: frappe/public/js/frappe/form/controls/link.js:498 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1665 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 #: frappe/website/doctype/help_article/templates/help_article.html:25 msgid "Yes" msgstr "" @@ -29491,6 +29606,10 @@ msgstr "" msgid "You added {0} rows to {1}" msgstr "" +#: frappe/public/js/frappe/router.js:642 +msgid "You are about to open an external link. To confirm, click the link again." +msgstr "" + #: frappe/public/js/frappe/dom.js:438 msgid "You are connected to internet." msgstr "" @@ -29534,7 +29653,7 @@ msgstr "" msgid "You are not allowed to export {} doctype" msgstr "" -#: frappe/public/js/frappe/views/treeview.js:448 +#: frappe/public/js/frappe/views/treeview.js:450 msgid "You are not allowed to print this report" msgstr "" @@ -29542,7 +29661,7 @@ msgstr "" msgid "You are not allowed to send emails related to this document" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:605 +#: frappe/website/doctype/web_form/web_form.py:632 msgid "You are not allowed to update this Web Form Document" msgstr "" @@ -29615,11 +29734,11 @@ msgstr "" msgid "You can continue with the onboarding after exploring this page" msgstr "" -#: frappe/model/delete_doc.py:137 +#: frappe/model/delete_doc.py:177 msgid "You can disable this {0} instead of deleting it." msgstr "" -#: frappe/core/doctype/file/file.py:758 +#: frappe/core/doctype/file/file.py:761 msgid "You can increase the limit from System Settings." msgstr "" @@ -29669,11 +29788,11 @@ msgstr "" msgid "You can use wildcard %" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:390 +#: frappe/custom/doctype/customize_form/customize_form.py:394 msgid "You can't set 'Options' for field {0}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:394 +#: frappe/custom/doctype/customize_form/customize_form.py:398 msgid "You can't set 'Translatable' for field {0}" msgstr "" @@ -29691,7 +29810,7 @@ msgstr "" msgid "You cannot create a dashboard chart from single DocTypes" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:386 +#: frappe/custom/doctype/customize_form/customize_form.py:390 msgid "You cannot unset 'Read Only' for field {0}" msgstr "" @@ -29734,11 +29853,11 @@ msgstr "" msgid "You do not have enough permissions to access this resource. Please contact your manager to get access." msgstr "" -#: frappe/app.py:381 +#: frappe/app.py:384 msgid "You do not have enough permissions to complete the action" msgstr "" -#: frappe/database/query.py:529 +#: frappe/database/query.py:531 msgid "You do not have permission to access field: {0}" msgstr "" @@ -29754,7 +29873,7 @@ msgstr "" msgid "You don't have access to Report: {0}" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:808 +#: frappe/website/doctype/web_form/web_form.py:835 msgid "You don't have permission to access the {0} DocType." msgstr "" @@ -29778,7 +29897,7 @@ msgstr "" msgid "You have been successfully logged out" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:245 +#: frappe/custom/doctype/customize_form/customize_form.py:247 msgid "You have hit the row size limit on database table: {0}" msgstr "" @@ -29806,7 +29925,7 @@ msgstr "" msgid "You haven't added any Dashboard Charts or Number Cards yet." msgstr "" -#: frappe/public/js/frappe/list/list_view.js:501 +#: frappe/public/js/frappe/list/list_view.js:503 msgid "You haven't created a {0} yet" msgstr "" @@ -29823,11 +29942,11 @@ msgstr "" msgid "You must add atleast one link." msgstr "" -#: frappe/website/doctype/web_form/web_form.py:804 +#: frappe/website/doctype/web_form/web_form.py:831 msgid "You must be logged in to use this form." msgstr "" -#: frappe/website/doctype/web_form/web_form.py:645 +#: frappe/website/doctype/web_form/web_form.py:672 msgid "You must login to submit this form" msgstr "" @@ -29942,6 +30061,10 @@ msgstr "" msgid "You viewed this" msgstr "" +#: frappe/public/js/frappe/router.js:653 +msgid "You will be redirected to:" +msgstr "" + #: frappe/core/doctype/user_invitation/user_invitation.py:113 msgid "You've been invited to join {0}" msgstr "" @@ -29987,7 +30110,7 @@ msgstr "" msgid "Your account has been deleted" msgstr "" -#: frappe/auth.py:514 +#: frappe/auth.py:517 msgid "Your account has been locked and will resume after {0} seconds" msgstr "" @@ -30053,7 +30176,7 @@ msgstr "" msgid "Your report is being generated in the background. You will receive an email on {0} with a download link once it is ready." msgstr "" -#: frappe/app.py:374 +#: frappe/app.py:377 msgid "Your session has expired, please login again to continue." msgstr "" @@ -30390,7 +30513,7 @@ msgstr "lista" msgid "logged in" msgstr "" -#: frappe/website/doctype/web_form/web_form.js:362 +#: frappe/website/doctype/web_form/web_form.js:363 msgid "login_required" msgstr "" @@ -30728,7 +30851,7 @@ msgstr "" msgid "via Google Meet" msgstr "" -#: frappe/email/doctype/notification/notification.py:403 +#: frappe/email/doctype/notification/notification.py:405 msgid "via Notification" msgstr "" @@ -30838,7 +30961,7 @@ msgstr "" msgid "{0} Dashboard" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:486 +#: frappe/public/js/frappe/form/grid_row.js:487 #: frappe/public/js/frappe/list/list_settings.js:225 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:178 msgid "{0} Fields" @@ -30889,7 +31012,7 @@ msgstr "" msgid "{0} Report" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:956 +#: frappe/public/js/frappe/views/reports/query_report.js:964 msgid "{0} Reports" msgstr "" @@ -30962,7 +31085,7 @@ msgctxt "Form timeline" msgid "{0} attached {1}" msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:152 +#: frappe/core/doctype/system_settings/system_settings.py:153 msgid "{0} can not be more than {1}" msgstr "" @@ -31039,7 +31162,7 @@ msgstr "" msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values" msgstr "" -#: frappe/database/query.py:708 +#: frappe/database/query.py:710 msgid "{0} fields cannot contain backticks (`): {1}" msgstr "" @@ -31084,7 +31207,7 @@ msgstr "" msgid "{0} is a mandatory field" msgstr "" -#: frappe/core/doctype/file/file.py:566 +#: frappe/core/doctype/file/file.py:569 msgid "{0} is a not a valid zip file" msgstr "" @@ -31133,7 +31256,7 @@ msgstr "" msgid "{0} is mandatory" msgstr "" -#: frappe/database/query.py:485 +#: frappe/database/query.py:487 msgid "{0} is not a child table of {1}" msgstr "" @@ -31153,7 +31276,7 @@ msgstr "" msgid "{0} is not a valid Cron expression." msgstr "" -#: frappe/public/js/frappe/form/controls/dynamic_link.js:27 +#: frappe/public/js/frappe/form/controls/dynamic_link.js:23 msgid "{0} is not a valid DocType for Dynamic Link" msgstr "" @@ -31190,7 +31313,7 @@ msgstr "" msgid "{0} is not a valid report format. Report format should one of the following {1}" msgstr "" -#: frappe/core/doctype/file/file.py:546 +#: frappe/core/doctype/file/file.py:549 msgid "{0} is not a zip file" msgstr "" @@ -31238,7 +31361,7 @@ msgstr "" msgid "{0} is within {1}" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1839 +#: frappe/public/js/frappe/list/list_view.js:1841 msgid "{0} items selected" msgstr "" @@ -31324,11 +31447,11 @@ msgid "{0} not found" msgstr "" #: frappe/core/doctype/report/report.py:427 -#: frappe/public/js/frappe/list/list_view.js:1211 +#: frappe/public/js/frappe/list/list_view.js:1213 msgid "{0} of {1}" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1213 +#: frappe/public/js/frappe/list/list_view.js:1215 msgid "{0} of {1} ({2} rows with children)" msgstr "" @@ -31378,7 +31501,7 @@ msgstr "" msgid "{0} removed {1} rows from {2}" msgstr "" -#: frappe/public/js/frappe/roles_editor.js:62 +#: frappe/public/js/frappe/roles_editor.js:64 msgid "{0} role does not have permission on any doctype" msgstr "" @@ -31452,7 +31575,7 @@ msgstr "" msgid "{0} un-shared this document with {1}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:254 +#: frappe/custom/doctype/customize_form/customize_form.py:256 msgid "{0} updated" msgstr "" @@ -31512,7 +31635,7 @@ msgstr "" msgid "{0} {1} not found" msgstr "" -#: frappe/model/delete_doc.py:248 +#: frappe/model/delete_doc.py:288 msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first." msgstr "" @@ -31625,7 +31748,7 @@ msgstr "" msgid "{0}: {1} is set to state {2}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1283 +#: frappe/public/js/frappe/views/reports/query_report.js:1291 msgid "{0}: {1} vs {2}" msgstr "" @@ -31661,11 +31784,11 @@ msgstr "" msgid "{} Complete" msgstr "" -#: frappe/utils/data.py:2541 +#: frappe/utils/data.py:2567 msgid "{} Invalid python code on line {}" msgstr "" -#: frappe/utils/data.py:2550 +#: frappe/utils/data.py:2576 msgid "{} Possibly invalid python code.
{}" msgstr "" @@ -31691,7 +31814,7 @@ msgstr "" msgid "{} is not a valid date string." msgstr "" -#: frappe/commands/utils.py:562 +#: frappe/commands/utils.py:561 msgid "{} not found in PATH! This is required to access the console." msgstr "" diff --git a/frappe/locale/pt.po b/frappe/locale/pt.po index 0f97ce1e7b..48a3c3b2e4 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-09-21 09:33+0000\n" -"PO-Revision-Date: 2025-09-21 19:58\n" +"POT-Creation-Date: 2025-10-05 09:33+0000\n" +"PO-Revision-Date: 2025-10-06 22:59\n" "Last-Translator: developers@frappe.io\n" "Language-Team: Portuguese\n" "MIME-Version: 1.0\n" @@ -38,7 +38,7 @@ msgstr "\"Principal\" diz respeito à tabela principal na qual deve ser acrescen #. Settings' #: frappe/website/doctype/about_us_settings/about_us_settings.json msgid "\"Team Members\" or \"Management\"" -msgstr "" +msgstr "\"Membros da Equipa\" ou \"Administração\"" #: frappe/public/js/frappe/form/form.js:1090 msgid "\"amended_from\" field must be present to do an amendment." @@ -78,25 +78,25 @@ msgstr "" msgid "'In List View' is not allowed for field {0} of type {1}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:363 +#: frappe/custom/doctype/customize_form/customize_form.py:367 msgid "'In List View' not allowed for type {0} in row {1}" msgstr "" #: frappe/automation/doctype/auto_repeat/auto_repeat.py:164 msgid "'Recipients' not specified" -msgstr "" +msgstr "'Destinatários' não especificados" #: frappe/utils/__init__.py:271 msgid "'{0}' is not a valid IBAN" -msgstr "" +msgstr "'{0}' não é um IBAN válido" #: frappe/utils/__init__.py:261 msgid "'{0}' is not a valid URL" -msgstr "" +msgstr "'{0}' não é um URL válido" #: frappe/core/doctype/doctype/doctype.py:1349 msgid "'{0}' not allowed for type {1} in row {2}" -msgstr "" +msgstr "'{0}' não permitido para o tipo {1} na linha {2}" #: frappe/public/js/frappe/data_import/data_exporter.js:302 msgid "(Mandatory)" @@ -109,7 +109,7 @@ msgstr "" #: frappe/public/js/frappe/list/list_settings.js:133 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:111 msgid "+ Add / Remove Fields" -msgstr "" +msgstr "+ Adicionar / Remover Campos" #. Description of the 'Doc Status' (Select) field in DocType 'Workflow Document #. State' @@ -122,7 +122,7 @@ msgstr "" msgid "0 is highest" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:892 +#: frappe/public/js/frappe/form/grid_row.js:893 msgid "1 = True & 0 = False" msgstr "" @@ -134,17 +134,17 @@ msgstr "" #: frappe/public/js/frappe/form/reminders.js:19 msgid "1 Day" -msgstr "" +msgstr "1 Dia" #: frappe/integrations/doctype/google_calendar/google_calendar.py:374 msgid "1 Google Calendar Event synced." -msgstr "" +msgstr "1 evento do Google Calendar sincronizado." -#: frappe/public/js/frappe/views/reports/query_report.js:955 +#: frappe/public/js/frappe/views/reports/query_report.js:963 msgid "1 Report" -msgstr "" +msgstr "1 Relatório" -#: frappe/tests/test_utils.py:739 +#: frappe/tests/test_utils.py:845 msgid "1 day ago" msgstr "há 1 dia" @@ -153,17 +153,17 @@ msgid "1 hour" msgstr "1 hora" #: frappe/public/js/frappe/utils/pretty_date.js:52 -#: frappe/tests/test_utils.py:737 +#: frappe/tests/test_utils.py:843 msgid "1 hour ago" msgstr "há 1 hora atrás" #: frappe/public/js/frappe/utils/pretty_date.js:48 -#: frappe/tests/test_utils.py:735 +#: frappe/tests/test_utils.py:841 msgid "1 minute ago" msgstr "há 1 minuto atrás" #: frappe/public/js/frappe/utils/pretty_date.js:66 -#: frappe/tests/test_utils.py:743 +#: frappe/tests/test_utils.py:849 msgid "1 month ago" msgstr "1 mês atrás" @@ -173,7 +173,7 @@ msgstr "1 de 2" #: frappe/public/js/frappe/data_import/data_exporter.js:227 msgid "1 record will be exported" -msgstr "" +msgstr "será exportado 1 registo" #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:320 msgctxt "User removed row from child table" @@ -185,59 +185,59 @@ msgctxt "User added row to child table" msgid "1 row to {0}" msgstr "" -#: frappe/tests/test_utils.py:734 +#: frappe/tests/test_utils.py:840 msgid "1 second ago" -msgstr "" +msgstr "há 1 segundo" #: frappe/public/js/frappe/utils/pretty_date.js:62 -#: frappe/tests/test_utils.py:741 +#: frappe/tests/test_utils.py:847 msgid "1 week ago" -msgstr "" +msgstr "há 1 semana" #: frappe/public/js/frappe/utils/pretty_date.js:70 -#: frappe/tests/test_utils.py:745 +#: frappe/tests/test_utils.py:851 msgid "1 year ago" msgstr "1 ano atrás" -#: frappe/tests/test_utils.py:738 +#: frappe/tests/test_utils.py:844 msgid "2 hours ago" msgstr "há 2 horas" -#: frappe/tests/test_utils.py:744 +#: frappe/tests/test_utils.py:850 msgid "2 months ago" msgstr "há 2 meses" -#: frappe/tests/test_utils.py:742 +#: frappe/tests/test_utils.py:848 msgid "2 weeks ago" msgstr "há 2 semanas" -#: frappe/tests/test_utils.py:746 +#: frappe/tests/test_utils.py:852 msgid "2 years ago" -msgstr "" +msgstr "há 2 anos" -#: frappe/tests/test_utils.py:736 +#: frappe/tests/test_utils.py:842 msgid "3 minutes ago" -msgstr "" +msgstr "há 3 minutos" #: frappe/public/js/frappe/form/reminders.js:16 msgid "30 minutes" -msgstr "" +msgstr "30 minutos" #: frappe/public/js/frappe/form/reminders.js:18 msgid "4 hours" -msgstr "" +msgstr "4 horas" #: frappe/public/js/frappe/data_import/data_exporter.js:37 msgid "5 Records" msgstr "5 registos" -#: frappe/tests/test_utils.py:740 +#: frappe/tests/test_utils.py:846 msgid "5 days ago" msgstr "há 5 dias" #: frappe/desk/doctype/bulk_update/bulk_update.py:36 msgid "; not allowed in condition" -msgstr "" +msgstr "; não é permitido na condição" #. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule #. Condition' @@ -256,17 +256,29 @@ msgstr "<=" msgid "\n" " Click here to learn about token-based authentication\n" "" -msgstr "" +msgstr "\n" +" Clique aqui para saber mais sobre a autenticação baseada em token\n" +"" #: frappe/public/js/frappe/widgets/widget_dialog.js:601 msgid "{0} is not a valid URL" -msgstr "" +msgstr "{0} não é um URL válido" #. Content of the 'Help' (HTML) field in DocType '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 "" +#. Introduction text of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "

Request a file containing your personally identifiable information (PII) that is saved on our system. The file will be in JSON format and is sent to you by email. If you would like to have your PII deleted from our system, please make a request to delete data.

" +msgstr "" + +#. Introduction text of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "

Send a request to delete your account and personally identifiable information (PII) that is stored on our system. You will receive an email to verify your request. Once the request is verified we will take care of deleting your PII. If you just want to check what PII we have stored, you can request your data.

" +msgstr "" + #. Content of the 'Help HTML' (HTML) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -568,6 +580,11 @@ msgstr "" msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three." msgstr "" +#. Success message of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "A download link with your data will be sent to the email address associated with your account." +msgstr "" + #: frappe/custom/doctype/custom_field/custom_field.py:175 msgid "A field with the name {0} already exists in {1}" msgstr "" @@ -694,7 +711,7 @@ msgstr "" #. 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.js:452 frappe/core/doctype/user/user.json +#: frappe/core/doctype/user/user.js:459 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 @@ -713,7 +730,7 @@ msgstr "" msgid "API Key cannot be regenerated" msgstr "" -#: frappe/core/doctype/user/user.js:449 +#: frappe/core/doctype/user/user.js:456 msgid "API Keys" msgstr "" @@ -737,7 +754,7 @@ msgstr "" #. 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.js:459 frappe/core/doctype/user/user.json +#: frappe/core/doctype/user/user.js:466 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" @@ -823,7 +840,7 @@ msgstr "" msgid "Access Token URL" msgstr "" -#: frappe/auth.py:491 +#: frappe/auth.py:494 msgid "Access not allowed from this IP Address" msgstr "" @@ -939,7 +956,7 @@ msgstr "" #: 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:842 +#: frappe/public/js/frappe/views/reports/query_report.js:850 msgid "Actions" msgstr "Ações" @@ -996,7 +1013,7 @@ msgstr "" #: 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:501 +#: frappe/public/js/frappe/form/grid_row.js:502 #: 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 @@ -1007,7 +1024,7 @@ msgstr "" msgid "Add" msgstr "Adicionar" -#: frappe/public/js/frappe/form/grid_row.js:454 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Add / Remove Columns" msgstr "" @@ -1052,8 +1069,8 @@ msgid "Add Child" msgstr "" #: frappe/public/js/frappe/views/kanban/kanban_board.html:4 -#: frappe/public/js/frappe/views/reports/query_report.js:1832 -#: frappe/public/js/frappe/views/reports/query_report.js:1835 +#: frappe/public/js/frappe/views/reports/query_report.js:1840 +#: frappe/public/js/frappe/views/reports/query_report.js:1843 #: frappe/public/js/frappe/views/reports/report_view.js:360 #: frappe/public/js/frappe/views/reports/report_view.js:385 #: frappe/public/js/print_format_builder/Field.vue:112 @@ -1147,7 +1164,7 @@ msgstr "" msgid "Add Tags" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2149 +#: frappe/public/js/frappe/list/list_view.js:2151 msgctxt "Button in list view actions menu" msgid "Add Tags" msgstr "" @@ -1528,11 +1545,11 @@ msgstr "" msgid "Alerts and Notifications" msgstr "" -#: frappe/database/query.py:1608 +#: frappe/database/query.py:1610 msgid "Alias cannot be a SQL keyword: {0}" msgstr "" -#: frappe/database/query.py:1533 +#: frappe/database/query.py:1535 msgid "Alias must be a string" msgstr "" @@ -1979,6 +1996,12 @@ msgstr "" msgid "Alternative Email ID" msgstr "" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Always" +msgstr "" + #. Label of the always_bcc (Data) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Always BCC Address" @@ -2055,6 +2078,11 @@ msgstr "" msgid "Amendment naming rules updated." msgstr "" +#. Success message of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "An email to verify your request has been sent to your email address. Please verify your request to complete the process." +msgstr "" + #: frappe/public/js/frappe/ui/toolbar/toolbar.js:354 msgid "An error occurred while setting Session Defaults" msgstr "" @@ -2237,7 +2265,7 @@ msgstr "" msgid "Apply" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2134 +#: frappe/public/js/frappe/list/list_view.js:2136 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" msgstr "" @@ -2322,7 +2350,7 @@ msgstr "" msgid "Are you sure you want to cancel the invitation?" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2113 +#: frappe/public/js/frappe/list/list_view.js:2115 msgid "Are you sure you want to clear the assignments?" msgstr "" @@ -2358,7 +2386,7 @@ msgstr "" msgid "Are you sure you want to discard the changes?" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:969 +#: frappe/public/js/frappe/views/reports/query_report.js:977 msgid "Are you sure you want to generate a new report?" msgstr "" @@ -2366,7 +2394,7 @@ msgstr "" msgid "Are you sure you want to merge {0} with {1}?" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:108 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:118 msgid "Are you sure you want to proceed?" msgstr "" @@ -2421,6 +2449,12 @@ msgstr "" msgid "As per your request, your account and data on {0} associated with email {1} has been permanently deleted" msgstr "" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Ask" +msgstr "" + #. Label of the assign_condition (Code) field in DocType 'Assignment Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Assign Condition" @@ -2430,7 +2464,7 @@ msgstr "" msgid "Assign To" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2095 +#: frappe/public/js/frappe/list/list_view.js:2097 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "" @@ -2573,7 +2607,7 @@ msgstr "" msgid "Asynchronous" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:696 +#: frappe/public/js/frappe/form/grid_row.js:697 msgid "At least one column is required to show in the grid." msgstr "" @@ -3553,7 +3587,7 @@ msgstr "" msgid "Bulk Edit" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1189 +#: frappe/public/js/frappe/form/grid.js:1190 msgid "Bulk Edit {0}" msgstr "" @@ -3845,7 +3879,7 @@ msgstr "" #. 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/doctype/doctype_list.js:131 #: frappe/core/doctype/user_document_type/user_document_type.json #: frappe/core/doctype/user_invitation/user_invitation.js:17 #: frappe/email/doctype/notification/notification.json @@ -3853,7 +3887,7 @@ msgstr "" msgid "Cancel" msgstr "Cancelar" -#: frappe/public/js/frappe/list/list_view.js:2204 +#: frappe/public/js/frappe/list/list_view.js:2206 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "Cancelar" @@ -3871,7 +3905,7 @@ msgstr "" msgid "Cancel All Documents" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2209 +#: frappe/public/js/frappe/list/list_view.js:2211 msgctxt "Title of confirmation dialog" msgid "Cancel {0} documents?" msgstr "" @@ -3924,7 +3958,7 @@ msgstr "" msgid "Cannot Update After Submit" msgstr "" -#: frappe/core/doctype/file/file.py:643 +#: frappe/core/doctype/file/file.py:646 msgid "Cannot access file path {0}" msgstr "" @@ -3972,7 +4006,7 @@ msgstr "" msgid "Cannot delete Home and Attachments folders" msgstr "" -#: frappe/model/delete_doc.py:379 +#: frappe/model/delete_doc.py:419 msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}" msgstr "" @@ -4052,7 +4086,7 @@ msgstr "" msgid "Cannot find file {} on disk" msgstr "" -#: frappe/core/doctype/file/file.py:583 +#: frappe/core/doctype/file/file.py:586 msgid "Cannot get file contents of a Folder" msgstr "" @@ -4060,7 +4094,7 @@ msgstr "" msgid "Cannot have multiple printers mapped to a single print format." msgstr "" -#: frappe/public/js/frappe/form/grid.js:1133 +#: frappe/public/js/frappe/form/grid.js:1134 msgid "Cannot import table with more than 5000 rows." msgstr "" @@ -4076,7 +4110,7 @@ msgstr "" msgid "Cannot match column {0} with any field" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:175 +#: frappe/public/js/frappe/form/grid_row.js:176 msgid "Cannot move row" msgstr "" @@ -4105,11 +4139,11 @@ msgstr "" msgid "Cannot update {0}" msgstr "" -#: frappe/model/db_query.py:1130 +#: frappe/model/db_query.py:1136 msgid "Cannot use sub-query here." msgstr "" -#: frappe/model/db_query.py:1162 +#: frappe/model/db_query.py:1168 msgid "Cannot use {0} in order/group by" msgstr "" @@ -4382,11 +4416,11 @@ msgstr "" #. Description of the 'Is Child Table' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:52 +#: frappe/core/doctype/doctype/doctype_list.js:53 msgid "Child Tables are shown as a Grid in other DocTypes" msgstr "" -#: frappe/database/query.py:660 +#: frappe/database/query.py:662 msgid "Child query fields for '{0}' must be a list or tuple." msgstr "" @@ -4442,7 +4476,7 @@ msgstr "" msgid "Clear All" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2110 +#: frappe/public/js/frappe/list/list_view.js:2112 msgctxt "Button in list view actions menu" msgid "Clear Assignment" msgstr "" @@ -4536,7 +4570,7 @@ msgstr "" msgid "Click to Set Filters" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:739 +#: frappe/public/js/frappe/list/list_view.js:741 msgid "Click to sort by {0}" msgstr "" @@ -4714,7 +4748,7 @@ msgctxt "Shrink code field." msgid "Collapse" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2113 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 #: frappe/public/js/frappe/views/treeview.js:123 msgid "Collapse All" msgstr "" @@ -4769,7 +4803,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:1233 +#: frappe/public/js/frappe/views/reports/query_report.js:1241 #: frappe/public/js/frappe/widgets/widget_dialog.js:546 #: frappe/public/js/frappe/widgets/widget_dialog.js:694 #: frappe/website/doctype/color/color.json @@ -4825,11 +4859,11 @@ msgstr "" msgid "Column Name cannot be empty" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:454 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Column Width" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:661 +#: frappe/public/js/frappe/form/grid_row.js:662 msgid "Column width cannot be zero." msgstr "" @@ -4856,7 +4890,7 @@ msgstr "" msgid "Columns / Fields" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:397 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:411 msgid "Columns based on" msgstr "" @@ -5120,7 +5154,7 @@ msgstr "" msgid "Configure Chart" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:406 +#: frappe/public/js/frappe/form/grid_row.js:407 msgid "Configure Columns" msgstr "" @@ -5145,7 +5179,7 @@ msgstr "" msgid "Configure various aspects of how document naming works like naming series, current counter." msgstr "" -#: frappe/core/doctype/user/user.js:412 frappe/public/js/frappe/dom.js:345 +#: frappe/core/doctype/user/user.js:400 frappe/public/js/frappe/dom.js:345 #: frappe/www/update-password.html:66 msgid "Confirm" msgstr "Confirmar" @@ -5164,7 +5198,7 @@ msgstr "" msgid "Confirm Deletion of Account" msgstr "" -#: frappe/core/doctype/user/user.js:196 +#: frappe/core/doctype/user/user.js:184 msgid "Confirm New Password" msgstr "" @@ -5417,7 +5451,7 @@ msgstr "" msgid "Copy to Clipboard" msgstr "" -#: frappe/core/doctype/user/user.js:480 +#: frappe/core/doctype/user/user.js:487 msgid "Copy token to clipboard" msgstr "" @@ -5426,7 +5460,7 @@ msgstr "" msgid "Copyright" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:123 +#: frappe/custom/doctype/customize_form/customize_form.py:125 msgid "Core DocTypes cannot be customized." msgstr "" @@ -5450,7 +5484,7 @@ msgstr "" msgid "Could not map column {0} to field {1}" msgstr "" -#: frappe/database/query.py:564 +#: frappe/database/query.py:566 msgid "Could not parse field: {0}" msgstr "" @@ -5542,13 +5576,13 @@ 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:1265 +#: frappe/public/js/frappe/views/reports/query_report.js:1273 #: frappe/public/js/frappe/views/workspace/workspace.js:469 #: frappe/workflow/page/workflow_builder/workflow_builder.js:46 msgid "Create" msgstr "Criar" -#: frappe/core/doctype/doctype/doctype_list.js:102 +#: frappe/core/doctype/doctype/doctype_list.js:103 msgid "Create & Continue" msgstr "" @@ -5562,7 +5596,7 @@ msgid "Create Card" msgstr "" #: frappe/public/js/frappe/views/reports/query_report.js:285 -#: frappe/public/js/frappe/views/reports/query_report.js:1192 +#: frappe/public/js/frappe/views/reports/query_report.js:1200 msgid "Create Chart" msgstr "" @@ -5596,12 +5630,12 @@ msgstr "" msgid "Create New" msgstr "Criar Novo" -#: frappe/public/js/frappe/list/list_view.js:512 +#: frappe/public/js/frappe/list/list_view.js:514 msgctxt "Create a new document from list view" msgid "Create New" msgstr "Criar Novo" -#: frappe/core/doctype/doctype/doctype_list.js:100 +#: frappe/core/doctype/doctype/doctype_list.js:101 msgid "Create New DocType" msgstr "" @@ -5609,7 +5643,7 @@ msgstr "" msgid "Create New Kanban Board" msgstr "" -#: frappe/core/doctype/user/user.js:276 +#: frappe/core/doctype/user/user.js:264 msgid "Create User Email" msgstr "" @@ -5632,8 +5666,8 @@ msgstr "" #: frappe/public/js/frappe/form/controls/link.js:315 #: frappe/public/js/frappe/form/controls/link.js:317 #: frappe/public/js/frappe/form/link_selector.js:139 -#: frappe/public/js/frappe/list/list_view.js:504 -#: frappe/public/js/frappe/web_form/web_form_list.js:225 +#: frappe/public/js/frappe/list/list_view.js:506 +#: frappe/public/js/frappe/web_form/web_form_list.js:226 msgid "Create a new {0}" msgstr "" @@ -5649,7 +5683,7 @@ msgstr "" msgid "Create or Edit Workflow" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:507 +#: frappe/public/js/frappe/list/list_view.js:509 msgid "Create your first {0}" msgstr "" @@ -5996,7 +6030,7 @@ 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/core/doctype/doctype/doctype_list.js:83 #: frappe/website/doctype/website_theme/website_theme.json msgid "Custom?" msgstr "" @@ -6031,7 +6065,7 @@ msgstr "" msgid "Customize" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1947 +#: frappe/public/js/frappe/list/list_view.js:1949 msgctxt "Button in list view menu" msgid "Customize" msgstr "" @@ -6050,7 +6084,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:343 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 msgid "Customize Form" msgstr "" @@ -6281,7 +6315,7 @@ msgstr "" msgid "Data Import Template" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:615 +#: frappe/custom/doctype/customize_form/customize_form.py:619 msgid "Data Too Long" msgstr "" @@ -6312,7 +6346,7 @@ msgstr "" msgid "Database Storage Usage By Tables" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:249 +#: frappe/custom/doctype/customize_form/customize_form.py:251 msgid "Database Table Row Size Limit" msgstr "" @@ -6682,13 +6716,13 @@ msgstr "" #: frappe/public/js/frappe/form/toolbar.js:464 #: frappe/public/js/frappe/views/reports/report_view.js:1749 #: frappe/public/js/frappe/views/treeview.js:329 -#: frappe/public/js/frappe/web_form/web_form_list.js:282 +#: frappe/public/js/frappe/web_form/web_form_list.js:283 #: frappe/templates/discussions/reply_card.html:35 #: frappe/templates/discussions/reply_section.html:29 msgid "Delete" msgstr "Eliminar" -#: frappe/public/js/frappe/list/list_view.js:2172 +#: frappe/public/js/frappe/list/list_view.js:2174 msgctxt "Button in list view actions menu" msgid "Delete" msgstr "Eliminar" @@ -6721,7 +6755,7 @@ msgstr "" msgid "Delete Data" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:106 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:116 msgid "Delete Kanban Board" msgstr "" @@ -6735,7 +6769,7 @@ msgctxt "Title of confirmation dialog" msgid "Delete Tab" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:936 +#: frappe/public/js/frappe/views/reports/query_report.js:944 msgid "Delete and Generate New" msgstr "" @@ -6777,12 +6811,12 @@ msgstr "" msgid "Delete this record to allow sending to this email address" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2177 +#: frappe/public/js/frappe/list/list_view.js:2179 msgctxt "Title of confirmation dialog" msgid "Delete {0} item permanently?" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2183 +#: frappe/public/js/frappe/list/list_view.js:2185 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "" @@ -7279,10 +7313,14 @@ msgstr "" msgid "Do not create new user if user with email does not exist in the system" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1194 +#: frappe/public/js/frappe/form/grid.js:1195 msgid "Do not edit headers which are preset in the template" msgstr "" +#: frappe/public/js/frappe/router.js:624 +msgid "Do not warn me again about {0}" +msgstr "" + #: frappe/core/doctype/system_settings/system_settings.js:71 msgid "Do you still want to proceed?" msgstr "" @@ -7706,7 +7744,7 @@ msgstr "" #: 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/public/js/frappe/roles_editor.js:68 #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json #: frappe/workflow/doctype/workflow/workflow.json msgid "Document Type" @@ -7757,15 +7795,15 @@ msgstr "" msgid "Document follow is not enabled for this user." msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1300 +#: frappe/public/js/frappe/list/list_view.js:1302 msgid "Document has been cancelled" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1299 +#: frappe/public/js/frappe/list/list_view.js:1301 msgid "Document has been submitted" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1298 +#: frappe/public/js/frappe/list/list_view.js:1300 msgid "Document is in draft state" msgstr "" @@ -7907,7 +7945,7 @@ msgstr "" msgid "Double click to edit label" msgstr "" -#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:467 +#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:474 #: frappe/email/doctype/auto_email_report/auto_email_report.js:8 #: frappe/public/js/frappe/form/grid.js:66 msgid "Download" @@ -7940,7 +7978,7 @@ msgstr "" msgid "Download PDF" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:832 +#: frappe/public/js/frappe/views/reports/query_report.js:840 msgid "Download Report" msgstr "" @@ -8140,8 +8178,8 @@ msgstr "" #: 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:880 -#: frappe/public/js/frappe/views/reports/query_report.js:1783 +#: frappe/public/js/frappe/views/reports/query_report.js:888 +#: frappe/public/js/frappe/views/reports/query_report.js:1791 #: 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 @@ -8153,7 +8191,7 @@ msgstr "" msgid "Edit" msgstr "Editar" -#: frappe/public/js/frappe/list/list_view.js:2258 +#: frappe/public/js/frappe/list/list_view.js:2260 msgctxt "Button in list view actions menu" msgid "Edit" msgstr "Editar" @@ -8163,7 +8201,7 @@ msgctxt "Button in web form" msgid "Edit" msgstr "Editar" -#: frappe/public/js/frappe/form/grid_row.js:349 +#: frappe/public/js/frappe/form/grid_row.js:350 msgctxt "Edit grid row" msgid "Edit" msgstr "Editar" @@ -8192,7 +8230,7 @@ msgstr "" msgid "Edit DocType" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1974 +#: frappe/public/js/frappe/list/list_view.js:1976 msgctxt "Button in list view menu" msgid "Edit DocType" msgstr "" @@ -8312,7 +8350,7 @@ msgstr "" #. 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/core/doctype/doctype/doctype_list.js:58 #: frappe/custom/doctype/customize_form/customize_form.json msgid "Editable Grid" msgstr "" @@ -8357,6 +8395,8 @@ msgstr "" #. 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' +#. Label of a field in the request-data Web Form +#. Label of a field in the request-to-delete-data Web Form #: frappe/automation/workspace/tools/tools.json #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/custom_docperm/custom_docperm.json @@ -8375,6 +8415,8 @@ msgstr "" #: 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/website/web_form/request_data/request_data.json +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json #: frappe/www/login.html:8 frappe/www/login.py:104 msgid "Email" msgstr "" @@ -8606,7 +8648,7 @@ msgstr "" msgid "Email has been moved to trash" msgstr "" -#: frappe/core/doctype/user/user.js:278 +#: frappe/core/doctype/user/user.js:266 msgid "Email is mandatory to create User Email" msgstr "" @@ -8649,7 +8691,7 @@ msgstr "" msgid "Embed code copied" msgstr "" -#: frappe/database/query.py:1537 +#: frappe/database/query.py:1539 msgid "Empty alias is not allowed" msgstr "" @@ -8657,7 +8699,7 @@ msgstr "" msgid "Empty column" msgstr "" -#: frappe/database/query.py:1455 +#: frappe/database/query.py:1457 msgid "Empty string arguments are not allowed" msgstr "" @@ -9113,9 +9155,9 @@ msgstr "" msgid "Error in Header/Footer Script" msgstr "" -#: frappe/email/doctype/notification/notification.py:640 -#: frappe/email/doctype/notification/notification.py:780 -#: frappe/email/doctype/notification/notification.py:786 +#: frappe/email/doctype/notification/notification.py:642 +#: frappe/email/doctype/notification/notification.py:782 +#: frappe/email/doctype/notification/notification.py:788 msgid "Error in Notification" msgstr "" @@ -9135,7 +9177,7 @@ msgstr "" msgid "Error while connecting to email account {0}" msgstr "" -#: frappe/email/doctype/notification/notification.py:777 +#: frappe/email/doctype/notification/notification.py:779 msgid "Error while evaluating Notification {0}. Please fix your template." msgstr "" @@ -9296,7 +9338,7 @@ msgstr "" msgid "Executing..." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2132 +#: frappe/public/js/frappe/views/reports/query_report.js:2140 msgid "Execution Time: {0} sec" msgstr "" @@ -9322,12 +9364,12 @@ msgctxt "Enlarge code field." msgid "Expand" msgstr "Expandir" -#: frappe/public/js/frappe/views/reports/query_report.js:2113 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 #: frappe/public/js/frappe/views/treeview.js:133 msgid "Expand All" msgstr "" -#: frappe/database/query.py:352 +#: frappe/database/query.py:354 msgid "Expected 'and' or 'or' operator, found: {0}" msgstr "" @@ -9385,13 +9427,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:1820 +#: frappe/public/js/frappe/views/reports/query_report.js:1828 #: frappe/public/js/frappe/views/reports/report_view.js:1629 #: frappe/public/js/frappe/widgets/chart_widget.js:315 msgid "Export" msgstr "Exportar" -#: frappe/public/js/frappe/list/list_view.js:2280 +#: frappe/public/js/frappe/list/list_view.js:2282 msgctxt "Button in list view actions menu" msgid "Export" msgstr "Exportar" @@ -9584,7 +9626,7 @@ msgstr "" msgid "Failed to connect to server" msgstr "" -#: frappe/auth.py:698 +#: frappe/auth.py:701 msgid "Failed to decode token, please provide a valid base64-encoded token." msgstr "" @@ -9748,7 +9790,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:236 -#: frappe/public/js/frappe/views/reports/query_report.js:1879 +#: frappe/public/js/frappe/views/reports/query_report.js:1887 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_form_list_column/web_form_list_column.json msgid "Field" @@ -9831,7 +9873,7 @@ msgstr "" msgid "Field {0} not found." msgstr "" -#: frappe/email/doctype/notification/notification.py:545 +#: frappe/email/doctype/notification/notification.py:547 msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link" msgstr "" @@ -9849,7 +9891,7 @@ msgstr "" #: 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:454 +#: frappe/public/js/frappe/form/grid_row.js:455 #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Fieldname" msgstr "" @@ -9930,7 +9972,7 @@ msgstr "" msgid "Fields must be a list or tuple when as_list is enabled" msgstr "" -#: frappe/database/query.py:611 +#: frappe/database/query.py:613 msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function" msgstr "" @@ -9958,7 +10000,7 @@ msgstr "" msgid "Fieldtype cannot be changed from {0} to {1}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:589 +#: frappe/custom/doctype/customize_form/customize_form.py:593 msgid "Fieldtype cannot be changed from {0} to {1} in row {2}" msgstr "" @@ -10024,7 +10066,7 @@ msgstr "" msgid "File backup is ready" msgstr "" -#: frappe/core/doctype/file/file.py:646 +#: frappe/core/doctype/file/file.py:649 msgid "File name cannot have {0}" msgstr "" @@ -10032,7 +10074,7 @@ msgstr "" msgid "File not attached" msgstr "" -#: frappe/core/doctype/file/file.py:756 frappe/public/js/frappe/request.js:200 +#: frappe/core/doctype/file/file.py:759 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 "" @@ -10045,7 +10087,7 @@ msgstr "" msgid "File type of {0} is not allowed" msgstr "" -#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:448 +#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:451 msgid "File {0} does not exist" msgstr "" @@ -10099,11 +10141,11 @@ msgstr "" msgid "Filter Values" msgstr "" -#: frappe/database/query.py:358 +#: frappe/database/query.py:360 msgid "Filter condition missing after operator: {0}" msgstr "" -#: frappe/database/query.py:425 +#: frappe/database/query.py:427 msgid "Filter fields cannot contain backticks (`)." msgstr "" @@ -10180,7 +10222,7 @@ msgstr "" msgid "Filters applied for {0}" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:188 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:202 msgid "Filters saved" msgstr "" @@ -10228,9 +10270,12 @@ msgstr "" #. Label of the first_name (Data) field in DocType 'Contact' #. Label of the first_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json #: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:44 -#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:15 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:15 msgid "First Name" msgstr "" @@ -10311,7 +10356,7 @@ msgstr "" msgid "Folder name should not include '/' (slash)" msgstr "" -#: frappe/core/doctype/file/file.py:494 +#: frappe/core/doctype/file/file.py:497 msgid "Folder {0} is not empty" msgstr "" @@ -10513,7 +10558,7 @@ msgstr "" msgid "For Value" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2129 +#: frappe/public/js/frappe/views/reports/query_report.js:2137 #: frappe/public/js/frappe/views/reports/report_view.js:108 msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)." msgstr "" @@ -10798,7 +10843,7 @@ msgstr "" msgid "From Date Field" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1840 +#: frappe/public/js/frappe/views/reports/query_report.js:1848 msgid "From Document Type" msgstr "" @@ -10860,12 +10905,12 @@ msgstr "" msgid "Function {0} is not whitelisted." msgstr "" -#: frappe/database/query.py:1417 +#: frappe/database/query.py:1419 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" +msgid "Further sub-groups can only be created under records marked as 'Group'" msgstr "" #: frappe/core/doctype/communication/communication.js:291 @@ -10925,7 +10970,7 @@ msgstr "" msgid "Generate Keys" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:874 +#: frappe/public/js/frappe/views/reports/query_report.js:882 msgid "Generate New Report" msgstr "" @@ -11341,14 +11386,10 @@ msgstr "" msgid "Group By field is required to create a dashboard chart" msgstr "" -#: frappe/database/query.py:750 +#: frappe/database/query.py:752 msgid "Group By must be a string" msgstr "" -#: frappe/public/js/frappe/views/treeview.js:418 -msgid "Group Node" -msgstr "" - #. Label of the ldap_group_objectclass (Data) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Group Object Class" @@ -11678,7 +11719,7 @@ msgstr "" msgid "Hidden Fields" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1642 +#: frappe/public/js/frappe/views/reports/query_report.js:1650 msgid "Hidden columns include: {0}" msgstr "" @@ -11790,7 +11831,7 @@ msgstr "" msgid "Hide Standard Menu" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1849 +#: frappe/public/js/frappe/list/list_view.js:1851 msgid "Hide Tags" msgstr "" @@ -12049,7 +12090,7 @@ msgstr "" #: frappe/core/doctype/doctype/doctype.py:1777 #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45 -#: frappe/public/js/frappe/roles_editor.js:66 +#: frappe/public/js/frappe/roles_editor.js:68 msgid "If Owner" msgstr "" @@ -12277,8 +12318,8 @@ msgstr "" msgid "Illegal Document Status for {0}" msgstr "" -#: frappe/model/db_query.py:453 frappe/model/db_query.py:456 -#: frappe/model/db_query.py:1121 +#: frappe/model/db_query.py:454 frappe/model/db_query.py:457 +#: frappe/model/db_query.py:1122 msgid "Illegal SQL Query" msgstr "" @@ -12365,11 +12406,11 @@ msgstr "" #. Option for the 'Operation' (Select) field in DocType 'Activity Log' #: frappe/core/doctype/activity_log/activity_log.json -#: frappe/core/doctype/user/user.js:384 +#: frappe/core/doctype/user/user.js:372 msgid "Impersonate" msgstr "" -#: frappe/core/doctype/user/user.js:411 +#: frappe/core/doctype/user/user.js:399 msgid "Impersonate as {0}" msgstr "" @@ -12399,7 +12440,7 @@ msgstr "" msgid "Import" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1911 +#: frappe/public/js/frappe/list/list_view.js:1913 msgctxt "Button in list view menu" msgid "Import" msgstr "" @@ -12628,15 +12669,15 @@ msgid "Include Web View Link in Email" msgstr "" #: frappe/public/js/frappe/form/print_utils.js:59 -#: frappe/public/js/frappe/views/reports/query_report.js:1620 +#: frappe/public/js/frappe/views/reports/query_report.js:1628 msgid "Include filters" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1640 +#: frappe/public/js/frappe/views/reports/query_report.js:1648 msgid "Include hidden columns" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1612 +#: frappe/public/js/frappe/views/reports/query_report.js:1620 msgid "Include indentation" msgstr "" @@ -12683,7 +12724,7 @@ msgstr "" msgid "Incomplete Virtual Doctype Implementation" msgstr "" -#: frappe/auth.py:255 +#: frappe/auth.py:258 msgid "Incomplete login details" msgstr "" @@ -12794,7 +12835,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:1885 +#: frappe/public/js/frappe/views/reports/query_report.js:1893 msgid "Insert After" msgstr "" @@ -12867,7 +12908,7 @@ msgstr "" msgid "Insufficient Permission Level for {0}" msgstr "" -#: frappe/database/query.py:806 frappe/database/query.py:1052 +#: frappe/database/query.py:808 frappe/database/query.py:1054 msgid "Insufficient Permission for {0}" msgstr "" @@ -12983,7 +13024,7 @@ msgid "Invalid" msgstr "" #: frappe/public/js/form_builder/utils.js:221 -#: frappe/public/js/frappe/form/grid_row.js:849 +#: frappe/public/js/frappe/form/grid_row.js:850 #: frappe/public/js/frappe/form/layout.js:810 #: frappe/public/js/frappe/views/reports/report_view.js:721 msgid "Invalid \"depends_on\" expression" @@ -13041,8 +13082,8 @@ 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 +#: frappe/database/query.py:429 frappe/database/query.py:456 +#: frappe/database/query.py:466 frappe/database/query.py:489 msgid "Invalid Filter" msgstr "" @@ -13114,7 +13155,7 @@ msgstr "" msgid "Invalid Phone Number" msgstr "" -#: frappe/auth.py:94 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 +#: frappe/auth.py:97 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 #: frappe/www/login.py:128 msgid "Invalid Request" msgstr "" @@ -13154,7 +13195,7 @@ msgstr "" msgid "Invalid aggregate function" msgstr "" -#: frappe/database/query.py:1542 +#: frappe/database/query.py:1544 msgid "Invalid alias format: {0}. Alias must be a simple identifier." msgstr "" @@ -13162,19 +13203,19 @@ msgstr "" msgid "Invalid app" msgstr "" -#: frappe/database/query.py:1468 +#: frappe/database/query.py:1470 msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed." msgstr "" -#: frappe/database/query.py:1444 +#: frappe/database/query.py:1446 msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed." msgstr "" -#: frappe/database/query.py:460 +#: frappe/database/query.py:462 msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed." msgstr "" -#: frappe/database/query.py:575 +#: frappe/database/query.py:577 msgid "Invalid characters in table name: {0}" msgstr "" @@ -13182,11 +13223,11 @@ msgstr "" msgid "Invalid column" msgstr "" -#: frappe/database/query.py:381 +#: frappe/database/query.py:383 msgid "Invalid condition type in nested filters: {0}" msgstr "" -#: frappe/database/query.py:787 +#: frappe/database/query.py:789 msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'." msgstr "" @@ -13202,23 +13243,23 @@ msgstr "" msgid "Invalid expression set in filter {0} ({1})" msgstr "" -#: frappe/database/query.py:1301 +#: frappe/database/query.py:1303 msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'." msgstr "" -#: frappe/database/query.py:734 +#: frappe/database/query.py:736 msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'." msgstr "" -#: frappe/database/query.py:1620 +#: frappe/database/query.py:1622 msgid "Invalid field name in function: {0}. Only simple field names are allowed." msgstr "" -#: frappe/utils/data.py:2215 +#: frappe/utils/data.py:2241 msgid "Invalid field name {0}" msgstr "" -#: frappe/database/query.py:668 +#: frappe/database/query.py:670 msgid "Invalid field type: {0}" msgstr "" @@ -13230,11 +13271,11 @@ msgstr "" msgid "Invalid file path: {0}" msgstr "" -#: frappe/database/query.py:364 +#: frappe/database/query.py:366 msgid "Invalid filter condition: {0}. Expected a list or tuple." msgstr "" -#: frappe/database/query.py:450 +#: frappe/database/query.py:452 msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'." msgstr "" @@ -13242,11 +13283,11 @@ msgstr "" msgid "Invalid filter: {0}" msgstr "" -#: frappe/database/query.py:1422 +#: frappe/database/query.py:1424 msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed." msgstr "" -#: frappe/database/query.py:1383 +#: frappe/database/query.py:1385 msgid "Invalid function dictionary format" msgstr "" @@ -13283,23 +13324,27 @@ msgstr "" msgid "Invalid redirect regex in row #{}: {}" msgstr "" -#: frappe/app.py:337 +#: frappe/app.py:340 msgid "Invalid request arguments" msgstr "" +#: frappe/app.py:327 +msgid "Invalid request body" +msgstr "" + #: frappe/core/doctype/user_invitation/user_invitation.py:181 msgid "Invalid role" msgstr "" -#: frappe/database/query.py:410 +#: frappe/database/query.py:412 msgid "Invalid simple filter format: {0}" msgstr "" -#: frappe/database/query.py:341 +#: frappe/database/query.py:343 msgid "Invalid start for filter condition: {0}. Expected a list or tuple." msgstr "" -#: frappe/database/query.py:1489 +#: frappe/database/query.py:1491 msgid "Invalid string literal format: {0}" msgstr "" @@ -13403,7 +13448,7 @@ msgstr "" #. 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/doctype_list.js:50 #: frappe/core/doctype/doctype_link/doctype_link.json msgid "Is Child Table" msgstr "" @@ -13456,6 +13501,10 @@ msgstr "" msgid "Is Global" msgstr "" +#: frappe/public/js/frappe/views/treeview.js:418 +msgid "Is Group" +msgstr "É grupo" + #. Label of the is_hidden (Check) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "Is Hidden" @@ -13544,7 +13593,7 @@ 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/core/doctype/doctype/doctype_list.js:65 #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Is Single" msgstr "" @@ -13580,7 +13629,7 @@ msgstr "" #. Label of the is_submittable (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:39 +#: frappe/core/doctype/doctype/doctype_list.js:40 msgid "Is Submittable" msgstr "" @@ -13786,11 +13835,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:388 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:402 msgid "Kanban Board Name" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:265 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:279 msgctxt "Button in kanban view menu" msgid "Kanban Settings" msgstr "" @@ -14088,10 +14137,13 @@ msgstr "" #. 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' +#. Label of a field in the edit-profile Web Form #: 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:117 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/printing/page/print/print.js:117 #: frappe/public/js/frappe/form/templates/print_layout.html:11 msgid "Language" msgstr "" @@ -14179,9 +14231,12 @@ msgstr "" #. Label of the last_name (Data) field in DocType 'Contact' #. Label of the last_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json #: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:45 -#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:19 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:19 msgid "Last Name" msgstr "" @@ -14422,7 +14477,7 @@ msgstr "" #: 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/public/js/frappe/roles_editor.js:68 #: frappe/website/doctype/help_article/help_article.json msgid "Level" msgstr "" @@ -14715,7 +14770,7 @@ msgstr "" msgid "List Settings" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1991 +#: frappe/public/js/frappe/list/list_view.js:1993 msgctxt "Button in list view menu" msgid "List Settings" msgstr "" @@ -14766,7 +14821,7 @@ msgid "Load Balancing" msgstr "" #: frappe/public/js/frappe/list/base_list.js:399 -#: frappe/public/js/frappe/web_form/web_form_list.js:305 +#: frappe/public/js/frappe/web_form/web_form_list.js:306 #: frappe/website/doctype/help_article/templates/help_article_list.html:30 msgid "Load More" msgstr "Carregue mais" @@ -14786,7 +14841,7 @@ msgstr "" #: frappe/public/js/frappe/list/base_list.js:526 #: frappe/public/js/frappe/list/list_view.js:363 #: frappe/public/js/frappe/ui/listing.html:16 -#: frappe/public/js/frappe/views/reports/query_report.js:1089 +#: frappe/public/js/frappe/views/reports/query_report.js:1097 msgid "Loading" msgstr "" @@ -14929,7 +14984,7 @@ msgstr "" msgid "Login and view in Browser" msgstr "" -#: frappe/website/doctype/web_form/web_form.js:367 +#: frappe/website/doctype/web_form/web_form.js:368 msgid "Login is required to see web form list view. Enable {0} to see list settings" msgstr "" @@ -14937,7 +14992,7 @@ msgstr "" msgid "Login link sent to your email" msgstr "" -#: frappe/auth.py:339 frappe/auth.py:342 +#: frappe/auth.py:342 frappe/auth.py:345 msgid "Login not allowed at this time" msgstr "" @@ -14990,7 +15045,7 @@ msgstr "" msgid "Login with email link expiry (in minutes)" msgstr "" -#: frappe/auth.py:144 +#: frappe/auth.py:147 msgid "Login with username and password is not allowed." msgstr "" @@ -15009,7 +15064,7 @@ msgstr "" msgid "Logout" msgstr "" -#: frappe/core/doctype/user/user.js:202 +#: frappe/core/doctype/user/user.js:190 msgid "Logout All Sessions" msgstr "" @@ -15113,7 +15168,10 @@ msgid "Major" msgstr "" #. Label of the show_name_in_global_search (Check) field in DocType 'DocType' +#. Label of the show_name_in_global_search (Check) field in DocType 'Customize +#. Form' #: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Make \"name\" searchable in Global Search" msgstr "" @@ -15189,7 +15247,7 @@ msgstr "" msgid "Mandatory Depends On (JS)" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:509 +#: frappe/website/doctype/web_form/web_form.py:536 msgid "Mandatory Information missing:" msgstr "" @@ -15646,6 +15704,11 @@ msgstr "" msgid "Middle Name" msgstr "" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Middle Name (Optional)" +msgstr "" + #. Name of a DocType #. Label of a Link in the Tools Workspace #: frappe/automation/doctype/milestone/milestone.json @@ -15752,6 +15815,11 @@ msgstr "" msgid "Mobile No" msgstr "Nr. de Telemóvel" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Mobile Number" +msgstr "" + #. 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" @@ -15777,7 +15845,7 @@ msgstr "" #. 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/doctype/doctype_list.js:31 #: 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 @@ -15953,10 +16021,12 @@ msgstr "" #. Label of the additional_info (Section Break) field in DocType #. 'Communication' #. Label of the short_bio (Tab Break) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: 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 +#: frappe/core/web_form/edit_profile/edit_profile.json msgid "More Information" msgstr "" @@ -15986,7 +16056,7 @@ msgstr "" msgid "Move" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:193 +#: frappe/public/js/frappe/form/grid_row.js:194 msgid "Move To" msgstr "" @@ -16022,7 +16092,7 @@ msgstr "" msgid "Move the current field and the following fields to a new column" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:168 +#: frappe/public/js/frappe/form/grid_row.js:169 msgid "Move to Row Number" msgstr "" @@ -16090,7 +16160,7 @@ msgid "Mx" msgstr "" #: frappe/templates/includes/web_sidebar.html:41 -#: frappe/website/doctype/web_form/web_form.py:498 +#: frappe/website/doctype/web_form/web_form.py:525 #: 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" @@ -16232,12 +16302,12 @@ msgstr "" msgid "Navbar Template Values" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1378 +#: frappe/public/js/frappe/list/list_view.js:1380 msgctxt "Description of a list view shortcut" msgid "Navigate list down" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1385 +#: frappe/public/js/frappe/list/list_view.js:1387 msgctxt "Description of a list view shortcut" msgid "Navigate list up" msgstr "" @@ -16252,6 +16322,10 @@ msgstr "" msgid "Navigation Settings" msgstr "" +#: frappe/public/js/frappe/list/list_view.js:485 +msgid "Need Help?" +msgstr "" + #: frappe/desk/doctype/workspace/workspace.py:322 msgid "Need Workspace Manager role to edit private workspace of other users" msgstr "" @@ -16260,7 +16334,7 @@ msgstr "" msgid "Negative Value" msgstr "" -#: frappe/database/query.py:333 +#: frappe/database/query.py:335 msgid "Nested filters must be provided as a list or tuple." msgstr "" @@ -16273,6 +16347,12 @@ msgstr "" msgid "Network Printer Settings" msgstr "" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Never" +msgstr "" + #. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/core/doctype/success_action/success_action.js:57 @@ -16281,7 +16361,7 @@ msgstr "" #: 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/treeview.js:473 #: frappe/public/js/frappe/views/workspace/workspace.js:64 #: frappe/website/doctype/web_form/templates/web_list.html:15 #: frappe/www/list.html:19 @@ -16342,7 +16422,7 @@ msgstr "" msgid "New Folder" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 msgid "New Kanban Board" msgstr "" @@ -16377,7 +16457,7 @@ msgstr "" msgid "New Onboarding" msgstr "" -#: frappe/core/doctype/user/user.js:190 frappe/www/update-password.html:43 +#: frappe/core/doctype/user/user.js:178 frappe/www/update-password.html:43 msgid "New Password" msgstr "" @@ -16473,7 +16553,7 @@ msgstr "" #: frappe/public/js/frappe/ui/toolbar/search_utils.js:227 #: 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:411 +#: frappe/website/doctype/web_form/web_form.py:438 msgid "New {0}" msgstr "" @@ -16625,7 +16705,7 @@ msgstr "" #: frappe/public/js/form_builder/utils.js:341 #: frappe/public/js/frappe/form/controls/link.js:498 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1665 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 #: frappe/website/doctype/help_article/templates/help_article.html:26 msgid "No" msgstr "Não" @@ -16774,7 +16854,7 @@ msgstr "" msgid "No Roles Specified" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 msgid "No Select Field Found" msgstr "" @@ -16858,7 +16938,7 @@ msgstr "" msgid "No failed logs" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:371 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:385 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 "" @@ -16882,7 +16962,7 @@ msgstr "" msgid "No matching records. Search something new" msgstr "" -#: frappe/public/js/frappe/web_form/web_form_list.js:161 +#: frappe/public/js/frappe/web_form/web_form_list.js:162 msgid "No more items to display" msgstr "" @@ -16926,7 +17006,7 @@ msgctxt "{0} = verb, {1} = object" msgid "No permission to '{0}' {1}" msgstr "" -#: frappe/model/db_query.py:948 +#: frappe/model/db_query.py:949 msgid "No permission to read {0}" msgstr "" @@ -16974,11 +17054,11 @@ msgstr "" msgid "No {0} Found" msgstr "" -#: frappe/public/js/frappe/web_form/web_form_list.js:233 +#: frappe/public/js/frappe/web_form/web_form_list.js:234 msgid "No {0} found" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:497 +#: frappe/public/js/frappe/list/list_view.js:499 msgid "No {0} found with matching filters. Clear filters to see all {0}." msgstr "" @@ -16987,7 +17067,7 @@ msgid "No {0} mail" msgstr "" #: frappe/public/js/form_builder/utils.js:117 -#: frappe/public/js/frappe/form/grid_row.js:256 +#: frappe/public/js/frappe/form/grid_row.js:257 msgctxt "Title of the 'row number' column" msgid "No." msgstr "" @@ -17051,7 +17131,7 @@ msgstr "" msgid "Not Equals" msgstr "" -#: frappe/app.py:387 frappe/www/404.html:3 +#: frappe/app.py:390 frappe/www/404.html:3 msgid "Not Found" msgstr "" @@ -17077,9 +17157,9 @@ msgstr "" msgid "Not Nullable" msgstr "" -#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26 +#: frappe/__init__.py:550 frappe/app.py:383 frappe/desk/calendar.py:26 #: frappe/public/js/frappe/web_form/webform_script.js:15 -#: frappe/website/doctype/web_form/web_form.py:747 +#: frappe/website/doctype/web_form/web_form.py:774 #: 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 @@ -17098,7 +17178,7 @@ msgstr "" #: 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/kanban/kanban_view.js:183 #: frappe/public/js/frappe/views/reports/report_view.js:209 #: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39 #: frappe/website/doctype/web_form/templates/web_form.html:85 @@ -17149,7 +17229,7 @@ msgstr "" msgid "Not allowed for {0}: {1}" msgstr "" -#: frappe/email/doctype/notification/notification.py:637 +#: frappe/email/doctype/notification/notification.py:639 msgid "Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings" msgstr "" @@ -17181,12 +17261,12 @@ msgstr "" msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType." msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:216 +#: frappe/core/doctype/system_settings/system_settings.py:217 #: 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:760 +#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:787 #: frappe/website/js/website.js:97 msgid "Not permitted" msgstr "" @@ -17232,7 +17312,7 @@ msgstr "" msgid "Note: Multiple sessions will be allowed in case of mobile device" msgstr "" -#: frappe/core/doctype/user/user.js:399 +#: frappe/core/doctype/user/user.js:387 msgid "Note: This will be shared with user." msgstr "" @@ -17304,15 +17384,15 @@ msgstr "" msgid "Notification sent to" msgstr "" -#: frappe/email/doctype/notification/notification.py:542 +#: frappe/email/doctype/notification/notification.py:544 msgid "Notification: customer {0} has no Mobile number set" msgstr "" -#: frappe/email/doctype/notification/notification.py:528 +#: frappe/email/doctype/notification/notification.py:530 msgid "Notification: document {0} has no {1} number set (field: {2})" msgstr "" -#: frappe/email/doctype/notification/notification.py:537 +#: frappe/email/doctype/notification/notification.py:539 msgid "Notification: user {0} has no Mobile number set" msgstr "" @@ -17426,7 +17506,7 @@ msgstr "" msgid "Number of attachment fields are more than {}, limit updated to {}." msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:171 +#: frappe/core/doctype/system_settings/system_settings.py:172 msgid "Number of backups must be greater than zero." msgstr "" @@ -17698,7 +17778,7 @@ msgstr "" #. Description of the 'Is Submittable' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:42 +#: frappe/core/doctype/doctype/doctype_list.js:43 msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended." msgstr "" @@ -17787,11 +17867,11 @@ msgstr "" msgid "Only reports of type Report Builder can be edited" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:129 +#: frappe/custom/doctype/customize_form/customize_form.py:131 msgid "Only standard DocTypes are allowed to be customized from Customize Form." msgstr "" -#: frappe/model/delete_doc.py:241 +#: frappe/model/delete_doc.py:281 msgid "Only the Administrator can delete a standard DocType." msgstr "" @@ -17887,7 +17967,7 @@ msgstr "" msgid "Open in a new tab" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1431 +#: frappe/public/js/frappe/list/list_view.js:1433 msgctxt "Description of a list view shortcut" msgid "Open list item" msgstr "" @@ -17936,7 +18016,7 @@ msgstr "" msgid "Operation" msgstr "" -#: frappe/utils/data.py:2146 +#: frappe/utils/data.py:2172 msgid "Operator must be one of {0}" msgstr "" @@ -17982,6 +18062,7 @@ msgstr "" #. 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 (Text) field in DocType 'Web Form List Column' #. 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 @@ -17990,6 +18071,7 @@ msgstr "" #: 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_form_list_column/web_form_list_column.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Options" msgstr "" @@ -18035,7 +18117,7 @@ msgstr "" msgid "Order" msgstr "" -#: frappe/database/query.py:767 +#: frappe/database/query.py:769 msgid "Order By must be a string" msgstr "" @@ -18133,7 +18215,7 @@ msgstr "" #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/printing/page/print/print.js:84 #: frappe/public/js/frappe/form/templates/print_layout.html:44 -#: frappe/public/js/frappe/views/reports/query_report.js:1804 +#: frappe/public/js/frappe/views/reports/query_report.js:1812 msgid "PDF" msgstr "" @@ -18481,8 +18563,8 @@ msgstr "" #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/system_settings/system_settings.json -#: frappe/core/doctype/user/user.js:177 frappe/core/doctype/user/user.js:224 -#: frappe/core/doctype/user/user.js:244 +#: frappe/core/doctype/user/user.js:165 frappe/core/doctype/user/user.js:212 +#: frappe/core/doctype/user/user.js:232 #: 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 @@ -18505,7 +18587,7 @@ msgstr "" msgid "Password Reset Link Generation Limit" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:896 +#: frappe/public/js/frappe/form/grid_row.js:897 msgid "Password cannot be filtered" msgstr "" @@ -18542,7 +18624,7 @@ msgstr "" msgid "Password set" msgstr "" -#: frappe/auth.py:258 +#: frappe/auth.py:261 msgid "Password size exceeded the maximum allowed size" msgstr "" @@ -18554,7 +18636,7 @@ msgstr "" msgid "Passwords do not match" msgstr "" -#: frappe/core/doctype/user/user.js:210 +#: frappe/core/doctype/user/user.js:198 msgid "Passwords do not match!" msgstr "" @@ -18705,7 +18787,7 @@ msgstr "" msgid "Permanently delete {0}?" msgstr "" -#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533 +#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:535 msgid "Permission Error" msgstr "" @@ -18765,8 +18847,8 @@ msgstr "" #: 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:143 frappe/core/doctype/user/user.js:152 -#: frappe/core/doctype/user/user.js:161 +#: frappe/core/doctype/user/user.js:131 frappe/core/doctype/user/user.js:140 +#: frappe/core/doctype/user/user.js:149 #: 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 @@ -18836,6 +18918,7 @@ msgstr "" #. Option for the 'Type' (Select) field in DocType 'Communication' #. Option for the 'Type' (Select) field in DocType 'DocField' #. Label of the phone (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #. 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' @@ -18846,6 +18929,7 @@ msgstr "" #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.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 @@ -19020,7 +19104,7 @@ msgstr "" msgid "Please duplicate this to make changes" msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:164 +#: frappe/core/doctype/system_settings/system_settings.py:165 msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login." msgstr "" @@ -19152,11 +19236,11 @@ msgstr "" msgid "Please select Entity Type first" msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:115 +#: frappe/core/doctype/system_settings/system_settings.py:116 msgid "Please select Minimum Password Score" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1185 +#: frappe/public/js/frappe/views/reports/query_report.js:1193 msgid "Please select X and Y fields" msgstr "" @@ -19184,7 +19268,7 @@ msgstr "" msgid "Please select applicable Doctypes" msgstr "" -#: frappe/model/db_query.py:1157 +#: frappe/model/db_query.py:1163 msgid "Please select atleast 1 column from {0} to sort/group" msgstr "" @@ -19214,7 +19298,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:1408 +#: frappe/public/js/frappe/views/reports/query_report.js:1416 msgid "Please set filters" msgstr "" @@ -19234,7 +19318,7 @@ msgstr "" msgid "Please set the series to be used." msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:128 +#: frappe/core/doctype/system_settings/system_settings.py:129 msgid "Please setup SMS before setting it as an authentication method, via SMS Settings" msgstr "" @@ -19386,7 +19470,7 @@ msgstr "" msgid "Posting Timestamp" msgstr "" -#: frappe/database/query.py:1518 +#: frappe/database/query.py:1520 msgid "Potentially dangerous content in string literal: {0}" msgstr "" @@ -19588,13 +19672,13 @@ msgstr "" #: 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:1789 +#: frappe/public/js/frappe/views/reports/query_report.js:1797 #: frappe/public/js/frappe/views/reports/report_view.js:1539 -#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18 +#: frappe/public/js/frappe/views/treeview.js:492 frappe/www/printview.html:18 msgid "Print" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2164 +#: frappe/public/js/frappe/list/list_view.js:2166 msgctxt "Button in list view actions menu" msgid "Print" msgstr "" @@ -19664,7 +19748,7 @@ msgstr "" msgid "Print Format Type" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1578 +#: frappe/public/js/frappe/views/reports/query_report.js:1586 msgid "Print Format not found" msgstr "" @@ -19845,11 +19929,11 @@ msgstr "" msgid "Proceed" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:932 +#: frappe/public/js/frappe/views/reports/query_report.js:940 msgid "Proceed Anyway" msgstr "" -#: frappe/public/js/frappe/form/controls/table.js:123 +#: frappe/public/js/frappe/form/controls/table.js:104 msgid "Processing" msgstr "" @@ -19866,11 +19950,21 @@ msgstr "" msgid "Profile" msgstr "" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile Picture" +msgstr "" + +#. Success message of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile updated successfully." +msgstr "Perfil atualizado com sucesso." + #: frappe/public/js/frappe/socketio_client.js:82 msgid "Progress" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:408 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:422 msgid "Project" msgstr "" @@ -19914,7 +20008,7 @@ msgstr "" msgid "Protect Attached Files" msgstr "" -#: frappe/core/doctype/file/file.py:523 +#: frappe/core/doctype/file/file.py:526 msgid "Protected File" msgstr "" @@ -20420,11 +20514,11 @@ msgstr "" msgid "Reason" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:886 +#: frappe/public/js/frappe/views/reports/query_report.js:894 msgid "Rebuild" msgstr "" -#: frappe/public/js/frappe/views/treeview.js:509 +#: frappe/public/js/frappe/views/treeview.js:511 msgid "Rebuild Tree" msgstr "" @@ -20805,8 +20899,8 @@ 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:1778 -#: frappe/public/js/frappe/views/treeview.js:496 +#: frappe/public/js/frappe/views/reports/query_report.js:1786 +#: frappe/public/js/frappe/views/treeview.js:498 #: frappe/public/js/frappe/widgets/chart_widget.js:291 #: frappe/public/js/frappe/widgets/number_card_widget.js:352 #: frappe/public/js/print_format_builder/Preview.vue:24 @@ -20837,13 +20931,13 @@ msgstr "" msgid "Refresh Token" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:534 +#: frappe/public/js/frappe/list/list_view.js:536 msgctxt "Document count in list view" msgid "Refreshing" msgstr "" #: frappe/core/doctype/system_settings/system_settings.js:57 -#: frappe/core/doctype/user/user.js:374 +#: frappe/core/doctype/user/user.js:362 #: frappe/desk/page/setup_wizard/setup_wizard.js:211 msgid "Refreshing..." msgstr "" @@ -21228,7 +21322,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:1965 +#: frappe/public/js/frappe/views/reports/query_report.js:1973 msgid "Report Name" msgstr "" @@ -21280,7 +21374,7 @@ msgstr "" msgid "Report has no numeric fields, please change the Report Name" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1013 +#: frappe/public/js/frappe/views/reports/query_report.js:1021 msgid "Report initiated, click to view status" msgstr "" @@ -21300,7 +21394,7 @@ msgstr "" msgid "Report was not saved (there were errors)" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2003 +#: frappe/public/js/frappe/views/reports/query_report.js:2011 msgid "Report with more than 10 columns looks better in Landscape mode." msgstr "" @@ -21336,7 +21430,7 @@ msgstr "" msgid "Reports & Masters" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:929 +#: frappe/public/js/frappe/views/reports/query_report.js:937 msgid "Reports already in Queue" msgstr "" @@ -21355,7 +21449,10 @@ msgid "Request Body" msgstr "" #. Label of the data (Code) field in DocType 'Integration Request' +#. Title of the request-data Web Form +#. Button label of the request-data Web Form #: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/website/web_form/request_data/request_data.json msgid "Request Data" msgstr "" @@ -21407,6 +21504,11 @@ msgstr "" msgid "Request URL" msgstr "" +#. Title of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "Request for Account Deletion" +msgstr "" + #. Label of the requested_numbers (Code) field in DocType 'SMS Log' #: frappe/core/doctype/sms_log/sms_log.json msgid "Requested Numbers" @@ -21462,7 +21564,7 @@ msgstr "" msgid "Reset Fields" msgstr "" -#: frappe/core/doctype/user/user.js:184 frappe/core/doctype/user/user.js:187 +#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:175 msgid "Reset LDAP Password" msgstr "" @@ -21470,11 +21572,11 @@ msgstr "" msgid "Reset Layout" msgstr "" -#: frappe/core/doctype/user/user.js:235 +#: frappe/core/doctype/user/user.js:223 msgid "Reset OTP Secret" msgstr "" -#: frappe/core/doctype/user/user.js:168 frappe/www/login.html:199 +#: frappe/core/doctype/user/user.js:156 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" @@ -21509,7 +21611,7 @@ msgstr "" msgid "Reset sorting" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:433 +#: frappe/public/js/frappe/form/grid_row.js:434 msgid "Reset to default" msgstr "" @@ -21761,7 +21863,7 @@ 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 +#: frappe/public/js/frappe/roles_editor.js:114 msgid "Role Permissions" msgstr "" @@ -21771,7 +21873,7 @@ msgstr "" msgid "Role Permissions Manager" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1933 +#: frappe/public/js/frappe/list/list_view.js:1935 msgctxt "Button in list view menu" msgid "Role Permissions Manager" msgstr "" @@ -21964,11 +22066,11 @@ msgstr "" msgid "Row {0}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:353 +#: frappe/custom/doctype/customize_form/customize_form.py:357 msgid "Row {0}: Not allowed to disable Mandatory for standard fields" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:342 +#: frappe/custom/doctype/customize_form/customize_form.py:346 msgid "Row {0}: Not allowed to enable Allow on Submit for standard fields" msgstr "" @@ -21987,7 +22089,10 @@ msgid "Rows Removed" msgstr "" #. Label of the rows_threshold_for_grid_search (Int) field in DocType 'DocType' +#. Label of the rows_threshold_for_grid_search (Int) field in DocType +#. 'Customize Form' #: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Rows Threshold for Grid Search" msgstr "" @@ -22195,8 +22300,8 @@ msgstr "" #: 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:1957 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 +#: frappe/public/js/frappe/views/reports/query_report.js:1965 #: frappe/public/js/frappe/views/reports/report_view.js:1735 #: frappe/public/js/frappe/views/workspace/workspace.js:335 #: frappe/public/js/frappe/widgets/base_widget.js:142 @@ -22219,11 +22324,11 @@ msgstr "" msgid "Save Customizations" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1960 +#: frappe/public/js/frappe/views/reports/query_report.js:1968 msgid "Save Report" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:97 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:107 msgid "Save filters" msgstr "" @@ -22595,7 +22700,7 @@ msgstr "" msgid "See all Activity" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:855 +#: frappe/public/js/frappe/views/reports/query_report.js:863 msgid "See all past reports." msgstr "" @@ -22659,7 +22764,7 @@ msgstr "" #: 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:497 +#: frappe/public/js/frappe/form/grid_row.js:498 msgid "Select All" msgstr "" @@ -22739,7 +22844,7 @@ msgstr "" msgid "Select Field..." msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:489 +#: frappe/public/js/frappe/form/grid_row.js:490 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:181 msgid "Select Fields" msgstr "" @@ -22859,7 +22964,7 @@ msgid "Select a field to edit its properties." msgstr "" #: frappe/public/js/frappe/views/treeview.js:358 -msgid "Select a group node first." +msgid "Select a group {0} first." msgstr "" #: frappe/core/doctype/doctype/doctype.py:1956 @@ -22896,13 +23001,13 @@ msgstr "" msgid "Select atleast 2 actions" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1445 +#: frappe/public/js/frappe/list/list_view.js:1447 msgctxt "Description of a list view shortcut" msgid "Select list item" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1397 -#: frappe/public/js/frappe/list/list_view.js:1413 +#: frappe/public/js/frappe/list/list_view.js:1399 +#: frappe/public/js/frappe/list/list_view.js:1415 msgctxt "Description of a list view shortcut" msgid "Select multiple list items" msgstr "" @@ -23224,7 +23329,7 @@ msgstr "" msgid "Server Action" msgstr "" -#: frappe/app.py:396 frappe/public/js/frappe/request.js:611 +#: frappe/app.py:399 frappe/public/js/frappe/request.js:611 #: frappe/www/error.html:36 frappe/www/error.py:15 msgid "Server Error" msgstr "" @@ -23290,7 +23395,7 @@ msgstr "" msgid "Session Defaults Saved" msgstr "" -#: frappe/app.py:373 +#: frappe/app.py:376 msgid "Session Expired" msgstr "" @@ -23299,7 +23404,7 @@ msgstr "" msgid "Session Expiry (idle timeout)" msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:122 +#: frappe/core/doctype/system_settings/system_settings.py:123 msgid "Session Expiry must be in format {0}" msgstr "" @@ -23348,7 +23453,7 @@ msgstr "" msgid "Set Filters for {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2113 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 msgid "Set Level" msgstr "" @@ -23402,7 +23507,7 @@ msgstr "" msgid "Set Role For" msgstr "" -#: frappe/core/doctype/user/user.js:136 +#: frappe/core/doctype/user/user.js:124 #: frappe/core/page/permission_manager/permission_manager.js:72 msgid "Set User Permissions" msgstr "" @@ -23564,7 +23669,7 @@ msgstr "" msgid "Setup > User Permissions" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1826 +#: frappe/public/js/frappe/views/reports/query_report.js:1834 #: frappe/public/js/frappe/views/reports/report_view.js:1713 msgid "Setup Auto Email" msgstr "" @@ -23705,6 +23810,12 @@ msgstr "" msgid "Show Error" msgstr "" +#. Label of the show_external_link_warning (Select) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Show External Link Warning" +msgstr "" + #: frappe/public/js/frappe/form/layout.js:578 msgid "Show Fieldname (click to copy on clipboard)" msgstr "" @@ -23833,7 +23944,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:1849 +#: frappe/public/js/frappe/list/list_view.js:1851 msgid "Show Tags" msgstr "" @@ -24040,22 +24151,22 @@ msgstr "" msgid "Signups have been disabled for this website." msgstr "" -#. 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 "" - #. 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\")" +msgid "Simple Python Expression, Example: status == \"Invalid\"" msgstr "" #. 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'" +msgid "Simple Python Expression, Example: status == 'Open' and issue_type == 'Bug'" +msgstr "" + +#. 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 "" #. Label of the simultaneous_sessions (Int) field in DocType 'User' @@ -24063,13 +24174,13 @@ msgstr "" msgid "Simultaneous Sessions" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:126 +#: frappe/custom/doctype/customize_form/customize_form.py:128 msgid "Single DocTypes cannot be customized." 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 +#: frappe/core/doctype/doctype/doctype_list.js:68 msgid "Single Types have only one record no tables associated. Values are stored in tabSingles" msgstr "" @@ -24405,7 +24516,7 @@ msgid "Splash Image" msgstr "" #: frappe/desk/reportview.py:455 -#: frappe/public/js/frappe/web_form/web_form_list.js:175 +#: frappe/public/js/frappe/web_form/web_form_list.js:176 #: frappe/templates/print_formats/standard_macros.html:44 msgid "Sr" msgstr "" @@ -24437,7 +24548,7 @@ msgstr "" msgid "Standard" msgstr "" -#: frappe/model/delete_doc.py:79 +#: frappe/model/delete_doc.py:119 msgid "Standard DocType can not be deleted." msgstr "" @@ -24707,7 +24818,7 @@ msgstr "" #. Label of the sticky (Check) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json -#: frappe/public/js/frappe/form/grid_row.js:454 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Sticky" msgstr "" @@ -24737,7 +24848,7 @@ msgstr "" msgid "Store Attached PDF Document" msgstr "" -#: frappe/core/doctype/user/user.js:490 +#: frappe/core/doctype/user/user.js:497 msgid "Store the API secret securely. It won't be displayed again." msgstr "" @@ -24849,6 +24960,7 @@ msgstr "" #. 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' +#. Button label of the request-to-delete-data Web Form #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/docshare/docshare.json @@ -24857,10 +24969,11 @@ msgstr "" #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/quick_entry.js:225 #: frappe/public/js/frappe/ui/capture.js:307 +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json msgid "Submit" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2231 +#: frappe/public/js/frappe/list/list_view.js:2233 msgctxt "Button in list view actions menu" msgid "Submit" msgstr "" @@ -24870,7 +24983,7 @@ msgctxt "Button in web form" msgid "Submit" msgstr "" -#: frappe/public/js/frappe/ui/dialog.js:63 +#: frappe/public/js/frappe/ui/dialog.js:64 msgctxt "Primary action in dialog" msgid "Submit" msgstr "" @@ -24918,7 +25031,7 @@ msgstr "" msgid "Submit this document to confirm" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2236 +#: frappe/public/js/frappe/list/list_view.js:2238 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "" @@ -24968,7 +25081,7 @@ msgstr "" #: 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:1171 +#: frappe/public/js/frappe/form/grid.js:1172 #: frappe/public/js/frappe/views/translation_manager.js:21 #: frappe/templates/includes/login/login.js:230 #: frappe/templates/includes/login/login.js:236 @@ -25183,7 +25296,7 @@ msgstr "" msgid "Syncing {0} of {1}" msgstr "" -#: frappe/utils/data.py:2547 +#: frappe/utils/data.py:2573 msgid "Syntax Error" msgstr "" @@ -25494,7 +25607,7 @@ msgstr "" msgid "Table Trimmed" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1170 +#: frappe/public/js/frappe/form/grid.js:1171 msgid "Table updated" msgstr "" @@ -25709,7 +25822,7 @@ msgstr "" msgid "The Auto Repeat for this document has been disabled." msgstr "" -#: frappe/public/js/frappe/form/grid.js:1193 +#: frappe/public/js/frappe/form/grid.js:1194 msgid "The CSV format is case sensitive" msgstr "" @@ -25777,7 +25890,7 @@ msgstr "" 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:685 +#: frappe/public/js/frappe/list/list_view.js:687 msgid "The count shown is an estimated count. Click here to see the accurate count." msgstr "" @@ -25889,7 +26002,7 @@ msgstr "" msgid "The reset password link has either been used before or is invalid" msgstr "" -#: frappe/app.py:388 frappe/public/js/frappe/request.js:149 +#: frappe/app.py:391 frappe/public/js/frappe/request.js:149 msgid "The resource you are looking for is not available" msgstr "" @@ -25962,12 +26075,12 @@ 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:965 +#: frappe/public/js/frappe/views/reports/query_report.js:973 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 +#: frappe/website/doctype/web_form/web_form.js:318 msgid "There can be only 9 Page Break fields in a Web Form" msgstr "" @@ -25991,11 +26104,11 @@ msgstr "" msgid "There is nothing new to show you right now." msgstr "" -#: frappe/core/doctype/file/file.py:640 frappe/utils/file_manager.py:372 +#: frappe/core/doctype/file/file.py:643 frappe/utils/file_manager.py:372 msgid "There is some problem with the file url: {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:962 +#: frappe/public/js/frappe/views/reports/query_report.js:970 msgid "There is {0} with the same filters already in the queue:" msgstr "" @@ -26007,7 +26120,7 @@ msgstr "" msgid "There was an error building this page" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:182 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:196 msgid "There was an error saving filters" msgstr "" @@ -26064,7 +26177,7 @@ msgstr "" msgid "This Currency is disabled. Enable to use in transactions" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:391 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:405 msgid "This Kanban Board will be private" msgstr "" @@ -26101,7 +26214,7 @@ msgstr "" msgid "This cannot be undone" msgstr "" -#: frappe/desk/doctype/number_card/number_card.js:480 +#: frappe/desk/doctype/number_card/number_card.js:484 msgctxt "Number Card" msgid "This card is visible only to Administrator and System Managers by default. Set a DocType to share with users who have read access." msgstr "" @@ -26124,7 +26237,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:113 +#: frappe/model/delete_doc.py:153 msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time." msgstr "" @@ -26166,7 +26279,7 @@ msgid "This field will appear only if the fieldname defined here has value OR th "eval:doc.age>18" msgstr "" -#: frappe/core/doctype/file/file.py:522 +#: frappe/core/doctype/file/file.py:525 msgid "This file is attached to a protected document and cannot be deleted." msgstr "" @@ -26201,7 +26314,7 @@ msgstr "" msgid "This goes above the slideshow." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2189 +#: frappe/public/js/frappe/views/reports/query_report.js:2197 msgid "This is a background report. Please set the appropriate filters and then generate a new one." msgstr "" @@ -26251,7 +26364,7 @@ msgstr "" msgid "This month" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1037 +#: frappe/public/js/frappe/views/reports/query_report.js:1045 msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead." msgstr "" @@ -26259,7 +26372,7 @@ msgstr "" msgid "This report was generated on {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:853 +#: frappe/public/js/frappe/views/reports/query_report.js:861 msgid "This report was generated {0}." msgstr "" @@ -26401,9 +26514,11 @@ msgstr "" #. Label of the time_zone (Select) field in DocType 'System Settings' #. Label of the time_zone (Autocomplete) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #. 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/core/web_form/edit_profile/edit_profile.json #: frappe/desk/page/setup_wizard/setup_wizard.js:407 #: frappe/website/doctype/web_page_view/web_page_view.json msgid "Time Zone" @@ -26664,7 +26779,7 @@ msgstr "" msgid "To generate password click {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:854 +#: frappe/public/js/frappe/views/reports/query_report.js:862 msgid "To get the updated report, click on {0}." msgstr "" @@ -26739,7 +26854,7 @@ msgstr "" msgid "Toggle Sidebar" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1964 +#: frappe/public/js/frappe/list/list_view.js:1966 msgctxt "Button in list view menu" msgid "Toggle Sidebar" msgstr "" @@ -26865,7 +26980,7 @@ msgstr "" #: frappe/desk/query_report.py:587 #: frappe/public/js/frappe/views/reports/print_grid.html:45 -#: frappe/public/js/frappe/views/reports/query_report.js:1324 +#: frappe/public/js/frappe/views/reports/query_report.js:1332 #: frappe/public/js/frappe/views/reports/report_view.js:1553 msgid "Total" msgstr "" @@ -27022,7 +27137,7 @@ msgstr "" msgid "Translatable" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2244 +#: frappe/public/js/frappe/views/reports/query_report.js:2252 msgid "Translate Data" msgstr "" @@ -27380,7 +27495,7 @@ msgstr "" msgid "Unable to update event" msgstr "" -#: frappe/core/doctype/file/file.py:486 +#: frappe/core/doctype/file/file.py:489 msgid "Unable to write file format for {0}" msgstr "" @@ -27389,7 +27504,7 @@ msgstr "" msgid "Unassign Condition" msgstr "" -#: frappe/app.py:396 +#: frappe/app.py:399 msgid "Uncaught Exception" msgstr "" @@ -27405,7 +27520,7 @@ msgstr "" msgid "Undo last action" msgstr "" -#: frappe/database/query.py:1495 +#: frappe/database/query.py:1497 msgid "Unescaped quotes in string literal: {0}" msgstr "" @@ -27452,7 +27567,7 @@ msgstr "" msgid "Unknown Rounding Method: {}" msgstr "" -#: frappe/auth.py:316 +#: frappe/auth.py:319 msgid "Unknown User" msgstr "" @@ -27518,8 +27633,8 @@ msgstr "" msgid "Unsubscribed" msgstr "" -#: frappe/database/query.py:653 frappe/database/query.py:1387 -#: frappe/database/query.py:1397 +#: frappe/database/query.py:655 frappe/database/query.py:1389 +#: frappe/database/query.py:1399 msgid "Unsupported function or invalid field name: {0}" msgstr "" @@ -27553,7 +27668,7 @@ msgstr "" #: 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:427 +#: frappe/public/js/frappe/form/grid_row.js:428 msgid "Update" msgstr "Atualizar" @@ -27587,6 +27702,11 @@ msgstr "" msgid "Update Password" msgstr "" +#. Title of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Update Profile" +msgstr "" + #. Label of the update_series (Section Break) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -27802,11 +27922,7 @@ msgstr "" msgid "Use if the default settings don't seem to detect your data correctly" msgstr "" -#: frappe/model/db_query.py:436 -msgid "Use of function {0} in field is restricted" -msgstr "" - -#: frappe/model/db_query.py:413 +#: frappe/model/db_query.py:411 msgid "Use of sub-query or function is restricted" msgstr "" @@ -28028,12 +28144,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:1944 +#: frappe/public/js/frappe/views/reports/query_report.js:1952 #: frappe/public/js/frappe/views/reports/report_view.js:1761 msgid "User Permissions" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1922 +#: frappe/public/js/frappe/list/list_view.js:1924 msgctxt "Button in list view menu" msgid "User Permissions" msgstr "" @@ -28177,7 +28293,7 @@ msgstr "" msgid "User {0} is disabled" msgstr "" -#: frappe/sessions.py:242 +#: frappe/sessions.py:243 msgid "User {0} is disabled. Please contact your System Manager." msgstr "" @@ -28354,7 +28470,7 @@ msgstr "" msgid "Value for a check field can be either 0 or 1" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:612 +#: frappe/custom/doctype/customize_form/customize_form.py:616 msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters" msgstr "" @@ -28475,7 +28591,7 @@ msgstr "" msgid "View Audit Trail" msgstr "" -#: frappe/core/doctype/user/user.js:156 +#: frappe/core/doctype/user/user.js:144 msgid "View Doctype Permissions" msgstr "" @@ -28487,7 +28603,7 @@ msgstr "" msgid "View Full Log" msgstr "" -#: frappe/public/js/frappe/views/treeview.js:484 +#: frappe/public/js/frappe/views/treeview.js:486 #: frappe/public/js/frappe/widgets/quick_list_widget.js:258 msgid "View List" msgstr "" @@ -28497,7 +28613,7 @@ msgstr "" msgid "View Log" msgstr "" -#: frappe/core/doctype/user/user.js:147 +#: frappe/core/doctype/user/user.js:135 #: frappe/core/doctype/user_permission/user_permission.js:24 msgid "View Permitted Documents" msgstr "" @@ -28613,6 +28729,7 @@ msgid "Warehouse" msgstr "" #. Option for the 'Style' (Select) field in DocType 'Workflow State' +#: frappe/public/js/frappe/router.js:613 #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Warning" msgstr "" @@ -29258,7 +29375,7 @@ msgstr "" msgid "Workspace" msgstr "" -#: frappe/public/js/frappe/router.js:175 +#: frappe/public/js/frappe/router.js:180 msgid "Workspace {0} does not exist" msgstr "" @@ -29380,7 +29497,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:1225 +#: frappe/public/js/frappe/views/reports/query_report.js:1233 msgid "Y Field" msgstr "" @@ -29442,7 +29559,7 @@ msgstr "" #: frappe/public/js/form_builder/utils.js:336 #: frappe/public/js/frappe/form/controls/link.js:498 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1665 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 #: frappe/website/doctype/help_article/templates/help_article.html:25 msgid "Yes" msgstr "Sim" @@ -29478,6 +29595,10 @@ msgstr "" msgid "You added {0} rows to {1}" msgstr "" +#: frappe/public/js/frappe/router.js:642 +msgid "You are about to open an external link. To confirm, click the link again." +msgstr "" + #: frappe/public/js/frappe/dom.js:438 msgid "You are connected to internet." msgstr "" @@ -29521,7 +29642,7 @@ msgstr "" msgid "You are not allowed to export {} doctype" msgstr "" -#: frappe/public/js/frappe/views/treeview.js:448 +#: frappe/public/js/frappe/views/treeview.js:450 msgid "You are not allowed to print this report" msgstr "" @@ -29529,7 +29650,7 @@ msgstr "" msgid "You are not allowed to send emails related to this document" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:605 +#: frappe/website/doctype/web_form/web_form.py:632 msgid "You are not allowed to update this Web Form Document" msgstr "" @@ -29602,11 +29723,11 @@ msgstr "" msgid "You can continue with the onboarding after exploring this page" msgstr "" -#: frappe/model/delete_doc.py:137 +#: frappe/model/delete_doc.py:177 msgid "You can disable this {0} instead of deleting it." msgstr "" -#: frappe/core/doctype/file/file.py:758 +#: frappe/core/doctype/file/file.py:761 msgid "You can increase the limit from System Settings." msgstr "" @@ -29656,11 +29777,11 @@ msgstr "" msgid "You can use wildcard %" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:390 +#: frappe/custom/doctype/customize_form/customize_form.py:394 msgid "You can't set 'Options' for field {0}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:394 +#: frappe/custom/doctype/customize_form/customize_form.py:398 msgid "You can't set 'Translatable' for field {0}" msgstr "" @@ -29678,7 +29799,7 @@ msgstr "" msgid "You cannot create a dashboard chart from single DocTypes" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:386 +#: frappe/custom/doctype/customize_form/customize_form.py:390 msgid "You cannot unset 'Read Only' for field {0}" msgstr "" @@ -29721,11 +29842,11 @@ msgstr "" msgid "You do not have enough permissions to access this resource. Please contact your manager to get access." msgstr "" -#: frappe/app.py:381 +#: frappe/app.py:384 msgid "You do not have enough permissions to complete the action" msgstr "" -#: frappe/database/query.py:529 +#: frappe/database/query.py:531 msgid "You do not have permission to access field: {0}" msgstr "" @@ -29741,7 +29862,7 @@ msgstr "" msgid "You don't have access to Report: {0}" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:808 +#: frappe/website/doctype/web_form/web_form.py:835 msgid "You don't have permission to access the {0} DocType." msgstr "" @@ -29765,7 +29886,7 @@ msgstr "" msgid "You have been successfully logged out" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:245 +#: frappe/custom/doctype/customize_form/customize_form.py:247 msgid "You have hit the row size limit on database table: {0}" msgstr "" @@ -29793,7 +29914,7 @@ msgstr "" msgid "You haven't added any Dashboard Charts or Number Cards yet." msgstr "" -#: frappe/public/js/frappe/list/list_view.js:501 +#: frappe/public/js/frappe/list/list_view.js:503 msgid "You haven't created a {0} yet" msgstr "" @@ -29810,11 +29931,11 @@ msgstr "" msgid "You must add atleast one link." msgstr "" -#: frappe/website/doctype/web_form/web_form.py:804 +#: frappe/website/doctype/web_form/web_form.py:831 msgid "You must be logged in to use this form." msgstr "" -#: frappe/website/doctype/web_form/web_form.py:645 +#: frappe/website/doctype/web_form/web_form.py:672 msgid "You must login to submit this form" msgstr "" @@ -29929,6 +30050,10 @@ msgstr "" msgid "You viewed this" msgstr "" +#: frappe/public/js/frappe/router.js:653 +msgid "You will be redirected to:" +msgstr "" + #: frappe/core/doctype/user_invitation/user_invitation.py:113 msgid "You've been invited to join {0}" msgstr "" @@ -29974,7 +30099,7 @@ msgstr "" msgid "Your account has been deleted" msgstr "" -#: frappe/auth.py:514 +#: frappe/auth.py:517 msgid "Your account has been locked and will resume after {0} seconds" msgstr "" @@ -30040,7 +30165,7 @@ msgstr "" msgid "Your report is being generated in the background. You will receive an email on {0} with a download link once it is ready." msgstr "" -#: frappe/app.py:374 +#: frappe/app.py:377 msgid "Your session has expired, please login again to continue." msgstr "" @@ -30377,7 +30502,7 @@ msgstr "" msgid "logged in" msgstr "" -#: frappe/website/doctype/web_form/web_form.js:362 +#: frappe/website/doctype/web_form/web_form.js:363 msgid "login_required" msgstr "" @@ -30715,7 +30840,7 @@ msgstr "" msgid "via Google Meet" msgstr "" -#: frappe/email/doctype/notification/notification.py:403 +#: frappe/email/doctype/notification/notification.py:405 msgid "via Notification" msgstr "" @@ -30825,7 +30950,7 @@ msgstr "" msgid "{0} Dashboard" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:486 +#: frappe/public/js/frappe/form/grid_row.js:487 #: frappe/public/js/frappe/list/list_settings.js:225 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:178 msgid "{0} Fields" @@ -30876,7 +31001,7 @@ msgstr "" msgid "{0} Report" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:956 +#: frappe/public/js/frappe/views/reports/query_report.js:964 msgid "{0} Reports" msgstr "" @@ -30949,7 +31074,7 @@ msgctxt "Form timeline" msgid "{0} attached {1}" msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:152 +#: frappe/core/doctype/system_settings/system_settings.py:153 msgid "{0} can not be more than {1}" msgstr "" @@ -31026,7 +31151,7 @@ msgstr "" msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values" msgstr "" -#: frappe/database/query.py:708 +#: frappe/database/query.py:710 msgid "{0} fields cannot contain backticks (`): {1}" msgstr "" @@ -31071,7 +31196,7 @@ msgstr "" msgid "{0} is a mandatory field" msgstr "{0} é um campo obrigatório" -#: frappe/core/doctype/file/file.py:566 +#: frappe/core/doctype/file/file.py:569 msgid "{0} is a not a valid zip file" msgstr "" @@ -31120,7 +31245,7 @@ msgstr "" msgid "{0} is mandatory" msgstr "{0} é obrigatório" -#: frappe/database/query.py:485 +#: frappe/database/query.py:487 msgid "{0} is not a child table of {1}" msgstr "" @@ -31140,7 +31265,7 @@ msgstr "" msgid "{0} is not a valid Cron expression." msgstr "" -#: frappe/public/js/frappe/form/controls/dynamic_link.js:27 +#: frappe/public/js/frappe/form/controls/dynamic_link.js:23 msgid "{0} is not a valid DocType for Dynamic Link" msgstr "" @@ -31177,7 +31302,7 @@ msgstr "" 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}" -#: frappe/core/doctype/file/file.py:546 +#: frappe/core/doctype/file/file.py:549 msgid "{0} is not a zip file" msgstr "" @@ -31225,7 +31350,7 @@ msgstr "" msgid "{0} is within {1}" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1839 +#: frappe/public/js/frappe/list/list_view.js:1841 msgid "{0} items selected" msgstr "{0} itens selecionados" @@ -31311,11 +31436,11 @@ msgid "{0} not found" msgstr "{0} não foi encontrado" #: frappe/core/doctype/report/report.py:427 -#: frappe/public/js/frappe/list/list_view.js:1211 +#: frappe/public/js/frappe/list/list_view.js:1213 msgid "{0} of {1}" msgstr "{0} de {1}" -#: frappe/public/js/frappe/list/list_view.js:1213 +#: frappe/public/js/frappe/list/list_view.js:1215 msgid "{0} of {1} ({2} rows with children)" msgstr "" @@ -31365,7 +31490,7 @@ msgstr "" msgid "{0} removed {1} rows from {2}" msgstr "" -#: frappe/public/js/frappe/roles_editor.js:62 +#: frappe/public/js/frappe/roles_editor.js:64 msgid "{0} role does not have permission on any doctype" msgstr "" @@ -31439,7 +31564,7 @@ msgstr "" msgid "{0} un-shared this document with {1}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:254 +#: frappe/custom/doctype/customize_form/customize_form.py:256 msgid "{0} updated" msgstr "" @@ -31499,7 +31624,7 @@ msgstr "" msgid "{0} {1} not found" msgstr "{0} {1} não foi encontrado" -#: frappe/model/delete_doc.py:248 +#: frappe/model/delete_doc.py:288 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." @@ -31612,7 +31737,7 @@ msgstr "" msgid "{0}: {1} is set to state {2}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1283 +#: frappe/public/js/frappe/views/reports/query_report.js:1291 msgid "{0}: {1} vs {2}" msgstr "" @@ -31648,11 +31773,11 @@ msgstr "" msgid "{} Complete" msgstr "{} Concluído" -#: frappe/utils/data.py:2541 +#: frappe/utils/data.py:2567 msgid "{} Invalid python code on line {}" msgstr "" -#: frappe/utils/data.py:2550 +#: frappe/utils/data.py:2576 msgid "{} Possibly invalid python code.
{}" msgstr "" @@ -31678,7 +31803,7 @@ msgstr "" msgid "{} is not a valid date string." msgstr "" -#: frappe/commands/utils.py:562 +#: frappe/commands/utils.py:561 msgid "{} not found in PATH! This is required to access the console." msgstr "" diff --git a/frappe/locale/pt_BR.po b/frappe/locale/pt_BR.po index 8b3fb2b115..92acb4f896 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-09-21 09:33+0000\n" -"PO-Revision-Date: 2025-09-21 19:57\n" +"POT-Creation-Date: 2025-10-05 09:33+0000\n" +"PO-Revision-Date: 2025-10-06 22:59\n" "Last-Translator: developers@frappe.io\n" "Language-Team: Portuguese, Brazilian\n" "MIME-Version: 1.0\n" @@ -78,7 +78,7 @@ msgstr "" msgid "'In List View' is not allowed for field {0} of type {1}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:363 +#: frappe/custom/doctype/customize_form/customize_form.py:367 msgid "'In List View' not allowed for type {0} in row {1}" msgstr "" @@ -122,7 +122,7 @@ msgstr "" msgid "0 is highest" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:892 +#: frappe/public/js/frappe/form/grid_row.js:893 msgid "1 = True & 0 = False" msgstr "" @@ -140,11 +140,11 @@ msgstr "" msgid "1 Google Calendar Event synced." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:955 +#: frappe/public/js/frappe/views/reports/query_report.js:963 msgid "1 Report" msgstr "" -#: frappe/tests/test_utils.py:739 +#: frappe/tests/test_utils.py:845 msgid "1 day ago" msgstr "" @@ -153,17 +153,17 @@ msgid "1 hour" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:52 -#: frappe/tests/test_utils.py:737 +#: frappe/tests/test_utils.py:843 msgid "1 hour ago" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:48 -#: frappe/tests/test_utils.py:735 +#: frappe/tests/test_utils.py:841 msgid "1 minute ago" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:66 -#: frappe/tests/test_utils.py:743 +#: frappe/tests/test_utils.py:849 msgid "1 month ago" msgstr "" @@ -185,37 +185,37 @@ msgctxt "User added row to child table" msgid "1 row to {0}" msgstr "" -#: frappe/tests/test_utils.py:734 +#: frappe/tests/test_utils.py:840 msgid "1 second ago" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:62 -#: frappe/tests/test_utils.py:741 +#: frappe/tests/test_utils.py:847 msgid "1 week ago" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:70 -#: frappe/tests/test_utils.py:745 +#: frappe/tests/test_utils.py:851 msgid "1 year ago" msgstr "" -#: frappe/tests/test_utils.py:738 +#: frappe/tests/test_utils.py:844 msgid "2 hours ago" msgstr "" -#: frappe/tests/test_utils.py:744 +#: frappe/tests/test_utils.py:850 msgid "2 months ago" msgstr "" -#: frappe/tests/test_utils.py:742 +#: frappe/tests/test_utils.py:848 msgid "2 weeks ago" msgstr "" -#: frappe/tests/test_utils.py:746 +#: frappe/tests/test_utils.py:852 msgid "2 years ago" msgstr "" -#: frappe/tests/test_utils.py:736 +#: frappe/tests/test_utils.py:842 msgid "3 minutes ago" msgstr "" @@ -231,7 +231,7 @@ msgstr "" msgid "5 Records" msgstr "" -#: frappe/tests/test_utils.py:740 +#: frappe/tests/test_utils.py:846 msgid "5 days ago" msgstr "" @@ -267,6 +267,16 @@ msgstr "" 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 "" +#. Introduction text of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "

Request a file containing your personally identifiable information (PII) that is saved on our system. The file will be in JSON format and is sent to you by email. If you would like to have your PII deleted from our system, please make a request to delete data.

" +msgstr "" + +#. Introduction text of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "

Send a request to delete your account and personally identifiable information (PII) that is stored on our system. You will receive an email to verify your request. Once the request is verified we will take care of deleting your PII. If you just want to check what PII we have stored, you can request your data.

" +msgstr "" + #. Content of the 'Help HTML' (HTML) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -568,6 +578,11 @@ msgstr "" msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three." msgstr "" +#. Success message of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "A download link with your data will be sent to the email address associated with your account." +msgstr "" + #: frappe/custom/doctype/custom_field/custom_field.py:175 msgid "A field with the name {0} already exists in {1}" msgstr "" @@ -694,7 +709,7 @@ msgstr "" #. 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.js:452 frappe/core/doctype/user/user.json +#: frappe/core/doctype/user/user.js:459 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 @@ -713,7 +728,7 @@ msgstr "" msgid "API Key cannot be regenerated" msgstr "" -#: frappe/core/doctype/user/user.js:449 +#: frappe/core/doctype/user/user.js:456 msgid "API Keys" msgstr "" @@ -737,7 +752,7 @@ msgstr "" #. 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.js:459 frappe/core/doctype/user/user.json +#: frappe/core/doctype/user/user.js:466 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" @@ -823,7 +838,7 @@ msgstr "" msgid "Access Token URL" msgstr "" -#: frappe/auth.py:491 +#: frappe/auth.py:494 msgid "Access not allowed from this IP Address" msgstr "" @@ -939,7 +954,7 @@ msgstr "" #: 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:842 +#: frappe/public/js/frappe/views/reports/query_report.js:850 msgid "Actions" msgstr "Ações" @@ -996,7 +1011,7 @@ msgstr "" #: 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:501 +#: frappe/public/js/frappe/form/grid_row.js:502 #: 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 @@ -1007,7 +1022,7 @@ msgstr "" msgid "Add" msgstr "Adicionar" -#: frappe/public/js/frappe/form/grid_row.js:454 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Add / Remove Columns" msgstr "" @@ -1052,8 +1067,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:1832 -#: frappe/public/js/frappe/views/reports/query_report.js:1835 +#: frappe/public/js/frappe/views/reports/query_report.js:1840 +#: frappe/public/js/frappe/views/reports/query_report.js:1843 #: frappe/public/js/frappe/views/reports/report_view.js:360 #: frappe/public/js/frappe/views/reports/report_view.js:385 #: frappe/public/js/print_format_builder/Field.vue:112 @@ -1147,7 +1162,7 @@ msgstr "" msgid "Add Tags" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2149 +#: frappe/public/js/frappe/list/list_view.js:2151 msgctxt "Button in list view actions menu" msgid "Add Tags" msgstr "" @@ -1528,11 +1543,11 @@ msgstr "Alerta" msgid "Alerts and Notifications" msgstr "" -#: frappe/database/query.py:1608 +#: frappe/database/query.py:1610 msgid "Alias cannot be a SQL keyword: {0}" msgstr "" -#: frappe/database/query.py:1533 +#: frappe/database/query.py:1535 msgid "Alias must be a string" msgstr "" @@ -1979,6 +1994,12 @@ msgstr "" msgid "Alternative Email ID" msgstr "" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Always" +msgstr "" + #. Label of the always_bcc (Data) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Always BCC Address" @@ -2055,6 +2076,11 @@ msgstr "" msgid "Amendment naming rules updated." msgstr "" +#. Success message of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "An email to verify your request has been sent to your email address. Please verify your request to complete the process." +msgstr "" + #: frappe/public/js/frappe/ui/toolbar/toolbar.js:354 msgid "An error occurred while setting Session Defaults" msgstr "" @@ -2237,7 +2263,7 @@ msgstr "Aplicado em" msgid "Apply" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2134 +#: frappe/public/js/frappe/list/list_view.js:2136 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" msgstr "" @@ -2322,7 +2348,7 @@ msgstr "" msgid "Are you sure you want to cancel the invitation?" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2113 +#: frappe/public/js/frappe/list/list_view.js:2115 msgid "Are you sure you want to clear the assignments?" msgstr "" @@ -2358,7 +2384,7 @@ msgstr "" msgid "Are you sure you want to discard the changes?" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:969 +#: frappe/public/js/frappe/views/reports/query_report.js:977 msgid "Are you sure you want to generate a new report?" msgstr "" @@ -2366,7 +2392,7 @@ msgstr "" msgid "Are you sure you want to merge {0} with {1}?" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:108 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:118 msgid "Are you sure you want to proceed?" msgstr "" @@ -2421,6 +2447,12 @@ msgstr "" msgid "As per your request, your account and data on {0} associated with email {1} has been permanently deleted" msgstr "" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Ask" +msgstr "" + #. Label of the assign_condition (Code) field in DocType 'Assignment Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Assign Condition" @@ -2430,7 +2462,7 @@ msgstr "Atribuir condição" msgid "Assign To" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2095 +#: frappe/public/js/frappe/list/list_view.js:2097 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "" @@ -2573,7 +2605,7 @@ msgstr "" msgid "Asynchronous" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:696 +#: frappe/public/js/frappe/form/grid_row.js:697 msgid "At least one column is required to show in the grid." msgstr "" @@ -3553,7 +3585,7 @@ msgstr "" msgid "Bulk Edit" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1189 +#: frappe/public/js/frappe/form/grid.js:1190 msgid "Bulk Edit {0}" msgstr "" @@ -3845,7 +3877,7 @@ msgstr "" #. 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/doctype/doctype_list.js:131 #: frappe/core/doctype/user_document_type/user_document_type.json #: frappe/core/doctype/user_invitation/user_invitation.js:17 #: frappe/email/doctype/notification/notification.json @@ -3853,7 +3885,7 @@ msgstr "" msgid "Cancel" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2204 +#: frappe/public/js/frappe/list/list_view.js:2206 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "" @@ -3871,7 +3903,7 @@ msgstr "" msgid "Cancel All Documents" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2209 +#: frappe/public/js/frappe/list/list_view.js:2211 msgctxt "Title of confirmation dialog" msgid "Cancel {0} documents?" msgstr "" @@ -3924,7 +3956,7 @@ msgstr "" msgid "Cannot Update After Submit" msgstr "" -#: frappe/core/doctype/file/file.py:643 +#: frappe/core/doctype/file/file.py:646 msgid "Cannot access file path {0}" msgstr "" @@ -3972,7 +4004,7 @@ msgstr "" msgid "Cannot delete Home and Attachments folders" msgstr "" -#: frappe/model/delete_doc.py:379 +#: frappe/model/delete_doc.py:419 msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}" msgstr "" @@ -4052,7 +4084,7 @@ msgstr "" msgid "Cannot find file {} on disk" msgstr "" -#: frappe/core/doctype/file/file.py:583 +#: frappe/core/doctype/file/file.py:586 msgid "Cannot get file contents of a Folder" msgstr "" @@ -4060,7 +4092,7 @@ msgstr "" msgid "Cannot have multiple printers mapped to a single print format." msgstr "" -#: frappe/public/js/frappe/form/grid.js:1133 +#: frappe/public/js/frappe/form/grid.js:1134 msgid "Cannot import table with more than 5000 rows." msgstr "" @@ -4076,7 +4108,7 @@ msgstr "" msgid "Cannot match column {0} with any field" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:175 +#: frappe/public/js/frappe/form/grid_row.js:176 msgid "Cannot move row" msgstr "" @@ -4105,11 +4137,11 @@ msgstr "" msgid "Cannot update {0}" msgstr "" -#: frappe/model/db_query.py:1130 +#: frappe/model/db_query.py:1136 msgid "Cannot use sub-query here." msgstr "" -#: frappe/model/db_query.py:1162 +#: frappe/model/db_query.py:1168 msgid "Cannot use {0} in order/group by" msgstr "" @@ -4381,11 +4413,11 @@ msgstr "" #. Description of the 'Is Child Table' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:52 +#: frappe/core/doctype/doctype/doctype_list.js:53 msgid "Child Tables are shown as a Grid in other DocTypes" msgstr "" -#: frappe/database/query.py:660 +#: frappe/database/query.py:662 msgid "Child query fields for '{0}' must be a list or tuple." msgstr "" @@ -4441,7 +4473,7 @@ msgstr "" msgid "Clear All" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2110 +#: frappe/public/js/frappe/list/list_view.js:2112 msgctxt "Button in list view actions menu" msgid "Clear Assignment" msgstr "" @@ -4535,7 +4567,7 @@ msgstr "" msgid "Click to Set Filters" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:739 +#: frappe/public/js/frappe/list/list_view.js:741 msgid "Click to sort by {0}" msgstr "" @@ -4713,7 +4745,7 @@ msgctxt "Shrink code field." msgid "Collapse" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2113 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 #: frappe/public/js/frappe/views/treeview.js:123 msgid "Collapse All" msgstr "Recolher Todos" @@ -4768,7 +4800,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:1233 +#: frappe/public/js/frappe/views/reports/query_report.js:1241 #: frappe/public/js/frappe/widgets/widget_dialog.js:546 #: frappe/public/js/frappe/widgets/widget_dialog.js:694 #: frappe/website/doctype/color/color.json @@ -4824,11 +4856,11 @@ msgstr "" msgid "Column Name cannot be empty" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:454 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Column Width" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:661 +#: frappe/public/js/frappe/form/grid_row.js:662 msgid "Column width cannot be zero." msgstr "" @@ -4855,7 +4887,7 @@ msgstr "Colunas" msgid "Columns / Fields" msgstr "Colunas / Campos" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:397 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:411 msgid "Columns based on" msgstr "" @@ -5119,7 +5151,7 @@ msgstr "" msgid "Configure Chart" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:406 +#: frappe/public/js/frappe/form/grid_row.js:407 msgid "Configure Columns" msgstr "" @@ -5144,7 +5176,7 @@ msgstr "" msgid "Configure various aspects of how document naming works like naming series, current counter." msgstr "" -#: frappe/core/doctype/user/user.js:412 frappe/public/js/frappe/dom.js:345 +#: frappe/core/doctype/user/user.js:400 frappe/public/js/frappe/dom.js:345 #: frappe/www/update-password.html:66 msgid "Confirm" msgstr "" @@ -5163,7 +5195,7 @@ msgstr "" msgid "Confirm Deletion of Account" msgstr "" -#: frappe/core/doctype/user/user.js:196 +#: frappe/core/doctype/user/user.js:184 msgid "Confirm New Password" msgstr "" @@ -5416,7 +5448,7 @@ msgstr "" msgid "Copy to Clipboard" msgstr "" -#: frappe/core/doctype/user/user.js:480 +#: frappe/core/doctype/user/user.js:487 msgid "Copy token to clipboard" msgstr "" @@ -5425,7 +5457,7 @@ msgstr "" msgid "Copyright" msgstr "Direitos autorais" -#: frappe/custom/doctype/customize_form/customize_form.py:123 +#: frappe/custom/doctype/customize_form/customize_form.py:125 msgid "Core DocTypes cannot be customized." msgstr "" @@ -5449,7 +5481,7 @@ msgstr "" msgid "Could not map column {0} to field {1}" msgstr "" -#: frappe/database/query.py:564 +#: frappe/database/query.py:566 msgid "Could not parse field: {0}" msgstr "" @@ -5541,13 +5573,13 @@ 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:1265 +#: frappe/public/js/frappe/views/reports/query_report.js:1273 #: frappe/public/js/frappe/views/workspace/workspace.js:469 #: frappe/workflow/page/workflow_builder/workflow_builder.js:46 msgid "Create" msgstr "Criar" -#: frappe/core/doctype/doctype/doctype_list.js:102 +#: frappe/core/doctype/doctype/doctype_list.js:103 msgid "Create & Continue" msgstr "" @@ -5561,7 +5593,7 @@ msgid "Create Card" msgstr "" #: frappe/public/js/frappe/views/reports/query_report.js:285 -#: frappe/public/js/frappe/views/reports/query_report.js:1192 +#: frappe/public/js/frappe/views/reports/query_report.js:1200 msgid "Create Chart" msgstr "" @@ -5595,12 +5627,12 @@ msgstr "" msgid "Create New" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:512 +#: frappe/public/js/frappe/list/list_view.js:514 msgctxt "Create a new document from list view" msgid "Create New" msgstr "" -#: frappe/core/doctype/doctype/doctype_list.js:100 +#: frappe/core/doctype/doctype/doctype_list.js:101 msgid "Create New DocType" msgstr "" @@ -5608,7 +5640,7 @@ msgstr "" msgid "Create New Kanban Board" msgstr "" -#: frappe/core/doctype/user/user.js:276 +#: frappe/core/doctype/user/user.js:264 msgid "Create User Email" msgstr "" @@ -5631,8 +5663,8 @@ msgstr "" #: frappe/public/js/frappe/form/controls/link.js:315 #: frappe/public/js/frappe/form/controls/link.js:317 #: frappe/public/js/frappe/form/link_selector.js:139 -#: frappe/public/js/frappe/list/list_view.js:504 -#: frappe/public/js/frappe/web_form/web_form_list.js:225 +#: frappe/public/js/frappe/list/list_view.js:506 +#: frappe/public/js/frappe/web_form/web_form_list.js:226 msgid "Create a new {0}" msgstr "" @@ -5648,7 +5680,7 @@ msgstr "" msgid "Create or Edit Workflow" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:507 +#: frappe/public/js/frappe/list/list_view.js:509 msgid "Create your first {0}" msgstr "" @@ -5995,7 +6027,7 @@ 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/core/doctype/doctype/doctype_list.js:83 #: frappe/website/doctype/website_theme/website_theme.json msgid "Custom?" msgstr "" @@ -6030,7 +6062,7 @@ msgstr "" msgid "Customize" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1947 +#: frappe/public/js/frappe/list/list_view.js:1949 msgctxt "Button in list view menu" msgid "Customize" msgstr "" @@ -6049,7 +6081,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:343 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 msgid "Customize Form" msgstr "" @@ -6280,7 +6312,7 @@ msgstr "" msgid "Data Import Template" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:615 +#: frappe/custom/doctype/customize_form/customize_form.py:619 msgid "Data Too Long" msgstr "" @@ -6311,7 +6343,7 @@ msgstr "" msgid "Database Storage Usage By Tables" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:249 +#: frappe/custom/doctype/customize_form/customize_form.py:251 msgid "Database Table Row Size Limit" msgstr "" @@ -6681,13 +6713,13 @@ msgstr "" #: frappe/public/js/frappe/form/toolbar.js:464 #: frappe/public/js/frappe/views/reports/report_view.js:1749 #: frappe/public/js/frappe/views/treeview.js:329 -#: frappe/public/js/frappe/web_form/web_form_list.js:282 +#: frappe/public/js/frappe/web_form/web_form_list.js:283 #: frappe/templates/discussions/reply_card.html:35 #: frappe/templates/discussions/reply_section.html:29 msgid "Delete" msgstr "Excluir" -#: frappe/public/js/frappe/list/list_view.js:2172 +#: frappe/public/js/frappe/list/list_view.js:2174 msgctxt "Button in list view actions menu" msgid "Delete" msgstr "Excluir" @@ -6720,7 +6752,7 @@ msgstr "" msgid "Delete Data" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:106 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:116 msgid "Delete Kanban Board" msgstr "" @@ -6734,7 +6766,7 @@ msgctxt "Title of confirmation dialog" msgid "Delete Tab" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:936 +#: frappe/public/js/frappe/views/reports/query_report.js:944 msgid "Delete and Generate New" msgstr "" @@ -6776,12 +6808,12 @@ msgstr "" msgid "Delete this record to allow sending to this email address" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2177 +#: frappe/public/js/frappe/list/list_view.js:2179 msgctxt "Title of confirmation dialog" msgid "Delete {0} item permanently?" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2183 +#: frappe/public/js/frappe/list/list_view.js:2185 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "" @@ -7278,10 +7310,14 @@ msgstr "Não criar novo usuário" msgid "Do not create new user if user with email does not exist in the system" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1194 +#: frappe/public/js/frappe/form/grid.js:1195 msgid "Do not edit headers which are preset in the template" msgstr "" +#: frappe/public/js/frappe/router.js:624 +msgid "Do not warn me again about {0}" +msgstr "" + #: frappe/core/doctype/system_settings/system_settings.js:71 msgid "Do you still want to proceed?" msgstr "" @@ -7705,7 +7741,7 @@ msgstr "Título do documento" #: 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/public/js/frappe/roles_editor.js:68 #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json #: frappe/workflow/doctype/workflow/workflow.json msgid "Document Type" @@ -7756,15 +7792,15 @@ msgstr "" msgid "Document follow is not enabled for this user." msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1300 +#: frappe/public/js/frappe/list/list_view.js:1302 msgid "Document has been cancelled" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1299 +#: frappe/public/js/frappe/list/list_view.js:1301 msgid "Document has been submitted" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1298 +#: frappe/public/js/frappe/list/list_view.js:1300 msgid "Document is in draft state" msgstr "" @@ -7906,7 +7942,7 @@ msgstr "Rosquinha" msgid "Double click to edit label" msgstr "" -#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:467 +#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:474 #: frappe/email/doctype/auto_email_report/auto_email_report.js:8 #: frappe/public/js/frappe/form/grid.js:66 msgid "Download" @@ -7939,7 +7975,7 @@ msgstr "" msgid "Download PDF" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:832 +#: frappe/public/js/frappe/views/reports/query_report.js:840 msgid "Download Report" msgstr "" @@ -8139,8 +8175,8 @@ msgstr "" #: 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:880 -#: frappe/public/js/frappe/views/reports/query_report.js:1783 +#: frappe/public/js/frappe/views/reports/query_report.js:888 +#: frappe/public/js/frappe/views/reports/query_report.js:1791 #: 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 @@ -8152,7 +8188,7 @@ msgstr "" msgid "Edit" msgstr "Editar" -#: frappe/public/js/frappe/list/list_view.js:2258 +#: frappe/public/js/frappe/list/list_view.js:2260 msgctxt "Button in list view actions menu" msgid "Edit" msgstr "Editar" @@ -8162,7 +8198,7 @@ msgctxt "Button in web form" msgid "Edit" msgstr "Editar" -#: frappe/public/js/frappe/form/grid_row.js:349 +#: frappe/public/js/frappe/form/grid_row.js:350 msgctxt "Edit grid row" msgid "Edit" msgstr "Editar" @@ -8191,7 +8227,7 @@ msgstr "" msgid "Edit DocType" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1974 +#: frappe/public/js/frappe/list/list_view.js:1976 msgctxt "Button in list view menu" msgid "Edit DocType" msgstr "" @@ -8311,7 +8347,7 @@ msgstr "" #. 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/core/doctype/doctype/doctype_list.js:58 #: frappe/custom/doctype/customize_form/customize_form.json msgid "Editable Grid" msgstr "" @@ -8356,6 +8392,8 @@ msgstr "" #. 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' +#. Label of a field in the request-data Web Form +#. Label of a field in the request-to-delete-data Web Form #: frappe/automation/workspace/tools/tools.json #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/custom_docperm/custom_docperm.json @@ -8374,6 +8412,8 @@ msgstr "" #: 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/website/web_form/request_data/request_data.json +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json #: frappe/www/login.html:8 frappe/www/login.py:104 msgid "Email" msgstr "" @@ -8605,7 +8645,7 @@ msgstr "" msgid "Email has been moved to trash" msgstr "" -#: frappe/core/doctype/user/user.js:278 +#: frappe/core/doctype/user/user.js:266 msgid "Email is mandatory to create User Email" msgstr "" @@ -8648,7 +8688,7 @@ msgstr "" msgid "Embed code copied" msgstr "" -#: frappe/database/query.py:1537 +#: frappe/database/query.py:1539 msgid "Empty alias is not allowed" msgstr "" @@ -8656,7 +8696,7 @@ msgstr "" msgid "Empty column" msgstr "" -#: frappe/database/query.py:1455 +#: frappe/database/query.py:1457 msgid "Empty string arguments are not allowed" msgstr "" @@ -9112,9 +9152,9 @@ msgstr "" msgid "Error in Header/Footer Script" msgstr "" -#: frappe/email/doctype/notification/notification.py:640 -#: frappe/email/doctype/notification/notification.py:780 -#: frappe/email/doctype/notification/notification.py:786 +#: frappe/email/doctype/notification/notification.py:642 +#: frappe/email/doctype/notification/notification.py:782 +#: frappe/email/doctype/notification/notification.py:788 msgid "Error in Notification" msgstr "" @@ -9134,7 +9174,7 @@ msgstr "" msgid "Error while connecting to email account {0}" msgstr "" -#: frappe/email/doctype/notification/notification.py:777 +#: frappe/email/doctype/notification/notification.py:779 msgid "Error while evaluating Notification {0}. Please fix your template." msgstr "" @@ -9295,7 +9335,7 @@ msgstr "" msgid "Executing..." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2132 +#: frappe/public/js/frappe/views/reports/query_report.js:2140 msgid "Execution Time: {0} sec" msgstr "" @@ -9321,12 +9361,12 @@ msgctxt "Enlarge code field." msgid "Expand" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2113 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 #: frappe/public/js/frappe/views/treeview.js:133 msgid "Expand All" msgstr "Expandir Todos" -#: frappe/database/query.py:352 +#: frappe/database/query.py:354 msgid "Expected 'and' or 'or' operator, found: {0}" msgstr "" @@ -9384,13 +9424,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:1820 +#: frappe/public/js/frappe/views/reports/query_report.js:1828 #: frappe/public/js/frappe/views/reports/report_view.js:1629 #: frappe/public/js/frappe/widgets/chart_widget.js:315 msgid "Export" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2280 +#: frappe/public/js/frappe/list/list_view.js:2282 msgctxt "Button in list view actions menu" msgid "Export" msgstr "" @@ -9583,7 +9623,7 @@ msgstr "" msgid "Failed to connect to server" msgstr "" -#: frappe/auth.py:698 +#: frappe/auth.py:701 msgid "Failed to decode token, please provide a valid base64-encoded token." msgstr "" @@ -9747,7 +9787,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:236 -#: frappe/public/js/frappe/views/reports/query_report.js:1879 +#: frappe/public/js/frappe/views/reports/query_report.js:1887 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_form_list_column/web_form_list_column.json msgid "Field" @@ -9830,7 +9870,7 @@ msgstr "" msgid "Field {0} not found." msgstr "" -#: frappe/email/doctype/notification/notification.py:545 +#: frappe/email/doctype/notification/notification.py:547 msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link" msgstr "" @@ -9848,7 +9888,7 @@ msgstr "" #: 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:454 +#: frappe/public/js/frappe/form/grid_row.js:455 #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Fieldname" msgstr "" @@ -9929,7 +9969,7 @@ msgstr "" msgid "Fields must be a list or tuple when as_list is enabled" msgstr "" -#: frappe/database/query.py:611 +#: frappe/database/query.py:613 msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function" msgstr "" @@ -9957,7 +9997,7 @@ msgstr "" msgid "Fieldtype cannot be changed from {0} to {1}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:589 +#: frappe/custom/doctype/customize_form/customize_form.py:593 msgid "Fieldtype cannot be changed from {0} to {1} in row {2}" msgstr "" @@ -10023,7 +10063,7 @@ msgstr "URL do arquivo" msgid "File backup is ready" msgstr "" -#: frappe/core/doctype/file/file.py:646 +#: frappe/core/doctype/file/file.py:649 msgid "File name cannot have {0}" msgstr "" @@ -10031,7 +10071,7 @@ msgstr "" msgid "File not attached" msgstr "" -#: frappe/core/doctype/file/file.py:756 frappe/public/js/frappe/request.js:200 +#: frappe/core/doctype/file/file.py:759 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 "" @@ -10044,7 +10084,7 @@ msgstr "" msgid "File type of {0} is not allowed" msgstr "" -#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:448 +#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:451 msgid "File {0} does not exist" msgstr "" @@ -10098,11 +10138,11 @@ msgstr "" msgid "Filter Values" msgstr "Valores de filtro" -#: frappe/database/query.py:358 +#: frappe/database/query.py:360 msgid "Filter condition missing after operator: {0}" msgstr "" -#: frappe/database/query.py:425 +#: frappe/database/query.py:427 msgid "Filter fields cannot contain backticks (`)." msgstr "" @@ -10179,7 +10219,7 @@ msgstr "Seção de Filtros" msgid "Filters applied for {0}" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:188 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:202 msgid "Filters saved" msgstr "" @@ -10227,9 +10267,12 @@ msgstr "" #. Label of the first_name (Data) field in DocType 'Contact' #. Label of the first_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json #: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:44 -#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:15 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:15 msgid "First Name" msgstr "" @@ -10310,7 +10353,7 @@ msgstr "" msgid "Folder name should not include '/' (slash)" msgstr "" -#: frappe/core/doctype/file/file.py:494 +#: frappe/core/doctype/file/file.py:497 msgid "Folder {0} is not empty" msgstr "" @@ -10512,7 +10555,7 @@ msgstr "" msgid "For Value" msgstr "Por valor" -#: frappe/public/js/frappe/views/reports/query_report.js:2129 +#: frappe/public/js/frappe/views/reports/query_report.js:2137 #: frappe/public/js/frappe/views/reports/report_view.js:108 msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)." msgstr "" @@ -10797,7 +10840,7 @@ msgstr "Data De" msgid "From Date Field" msgstr "Do campo de data" -#: frappe/public/js/frappe/views/reports/query_report.js:1840 +#: frappe/public/js/frappe/views/reports/query_report.js:1848 msgid "From Document Type" msgstr "" @@ -10859,12 +10902,12 @@ msgstr "" msgid "Function {0} is not whitelisted." msgstr "" -#: frappe/database/query.py:1417 +#: frappe/database/query.py:1419 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" +msgid "Further sub-groups can only be created under records marked as 'Group'" msgstr "" #: frappe/core/doctype/communication/communication.js:291 @@ -10924,7 +10967,7 @@ msgstr "" msgid "Generate Keys" msgstr "Gerar Chaves" -#: frappe/public/js/frappe/views/reports/query_report.js:874 +#: frappe/public/js/frappe/views/reports/query_report.js:882 msgid "Generate New Report" msgstr "" @@ -11340,14 +11383,10 @@ msgstr "Agrupar por tipo" msgid "Group By field is required to create a dashboard chart" msgstr "" -#: frappe/database/query.py:750 +#: frappe/database/query.py:752 msgid "Group By must be a string" msgstr "" -#: frappe/public/js/frappe/views/treeview.js:418 -msgid "Group Node" -msgstr "Grupo de Nós" - #. Label of the ldap_group_objectclass (Data) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Group Object Class" @@ -11677,7 +11716,7 @@ msgstr "" msgid "Hidden Fields" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1642 +#: frappe/public/js/frappe/views/reports/query_report.js:1650 msgid "Hidden columns include: {0}" msgstr "" @@ -11789,7 +11828,7 @@ msgstr "" msgid "Hide Standard Menu" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1849 +#: frappe/public/js/frappe/list/list_view.js:1851 msgid "Hide Tags" msgstr "" @@ -12048,7 +12087,7 @@ msgstr "" #: frappe/core/doctype/doctype/doctype.py:1777 #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45 -#: frappe/public/js/frappe/roles_editor.js:66 +#: frappe/public/js/frappe/roles_editor.js:68 msgid "If Owner" msgstr "" @@ -12276,8 +12315,8 @@ msgstr "Aplicativos ignorados" msgid "Illegal Document Status for {0}" msgstr "" -#: frappe/model/db_query.py:453 frappe/model/db_query.py:456 -#: frappe/model/db_query.py:1121 +#: frappe/model/db_query.py:454 frappe/model/db_query.py:457 +#: frappe/model/db_query.py:1122 msgid "Illegal SQL Query" msgstr "" @@ -12364,11 +12403,11 @@ msgstr "" #. Option for the 'Operation' (Select) field in DocType 'Activity Log' #: frappe/core/doctype/activity_log/activity_log.json -#: frappe/core/doctype/user/user.js:384 +#: frappe/core/doctype/user/user.js:372 msgid "Impersonate" msgstr "" -#: frappe/core/doctype/user/user.js:411 +#: frappe/core/doctype/user/user.js:399 msgid "Impersonate as {0}" msgstr "" @@ -12398,7 +12437,7 @@ msgstr "Implícito" msgid "Import" msgstr "Importar" -#: frappe/public/js/frappe/list/list_view.js:1911 +#: frappe/public/js/frappe/list/list_view.js:1913 msgctxt "Button in list view menu" msgid "Import" msgstr "Importar" @@ -12627,15 +12666,15 @@ msgid "Include Web View Link in Email" msgstr "" #: frappe/public/js/frappe/form/print_utils.js:59 -#: frappe/public/js/frappe/views/reports/query_report.js:1620 +#: frappe/public/js/frappe/views/reports/query_report.js:1628 msgid "Include filters" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1640 +#: frappe/public/js/frappe/views/reports/query_report.js:1648 msgid "Include hidden columns" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1612 +#: frappe/public/js/frappe/views/reports/query_report.js:1620 msgid "Include indentation" msgstr "" @@ -12682,7 +12721,7 @@ msgstr "" msgid "Incomplete Virtual Doctype Implementation" msgstr "" -#: frappe/auth.py:255 +#: frappe/auth.py:258 msgid "Incomplete login details" msgstr "" @@ -12793,7 +12832,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:1885 +#: frappe/public/js/frappe/views/reports/query_report.js:1893 msgid "Insert After" msgstr "" @@ -12866,7 +12905,7 @@ msgstr "" msgid "Insufficient Permission Level for {0}" msgstr "" -#: frappe/database/query.py:806 frappe/database/query.py:1052 +#: frappe/database/query.py:808 frappe/database/query.py:1054 msgid "Insufficient Permission for {0}" msgstr "" @@ -12982,7 +13021,7 @@ msgid "Invalid" msgstr "" #: frappe/public/js/form_builder/utils.js:221 -#: frappe/public/js/frappe/form/grid_row.js:849 +#: frappe/public/js/frappe/form/grid_row.js:850 #: frappe/public/js/frappe/form/layout.js:810 #: frappe/public/js/frappe/views/reports/report_view.js:721 msgid "Invalid \"depends_on\" expression" @@ -13040,8 +13079,8 @@ 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 +#: frappe/database/query.py:429 frappe/database/query.py:456 +#: frappe/database/query.py:466 frappe/database/query.py:489 msgid "Invalid Filter" msgstr "" @@ -13113,7 +13152,7 @@ msgstr "" msgid "Invalid Phone Number" msgstr "" -#: frappe/auth.py:94 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 +#: frappe/auth.py:97 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 #: frappe/www/login.py:128 msgid "Invalid Request" msgstr "" @@ -13153,7 +13192,7 @@ msgstr "" msgid "Invalid aggregate function" msgstr "" -#: frappe/database/query.py:1542 +#: frappe/database/query.py:1544 msgid "Invalid alias format: {0}. Alias must be a simple identifier." msgstr "" @@ -13161,19 +13200,19 @@ msgstr "" msgid "Invalid app" msgstr "" -#: frappe/database/query.py:1468 +#: frappe/database/query.py:1470 msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed." msgstr "" -#: frappe/database/query.py:1444 +#: frappe/database/query.py:1446 msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed." msgstr "" -#: frappe/database/query.py:460 +#: frappe/database/query.py:462 msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed." msgstr "" -#: frappe/database/query.py:575 +#: frappe/database/query.py:577 msgid "Invalid characters in table name: {0}" msgstr "" @@ -13181,11 +13220,11 @@ msgstr "" msgid "Invalid column" msgstr "" -#: frappe/database/query.py:381 +#: frappe/database/query.py:383 msgid "Invalid condition type in nested filters: {0}" msgstr "" -#: frappe/database/query.py:787 +#: frappe/database/query.py:789 msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'." msgstr "" @@ -13201,23 +13240,23 @@ msgstr "" msgid "Invalid expression set in filter {0} ({1})" msgstr "" -#: frappe/database/query.py:1301 +#: frappe/database/query.py:1303 msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'." msgstr "" -#: frappe/database/query.py:734 +#: frappe/database/query.py:736 msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'." msgstr "" -#: frappe/database/query.py:1620 +#: frappe/database/query.py:1622 msgid "Invalid field name in function: {0}. Only simple field names are allowed." msgstr "" -#: frappe/utils/data.py:2215 +#: frappe/utils/data.py:2241 msgid "Invalid field name {0}" msgstr "" -#: frappe/database/query.py:668 +#: frappe/database/query.py:670 msgid "Invalid field type: {0}" msgstr "" @@ -13229,11 +13268,11 @@ msgstr "" msgid "Invalid file path: {0}" msgstr "" -#: frappe/database/query.py:364 +#: frappe/database/query.py:366 msgid "Invalid filter condition: {0}. Expected a list or tuple." msgstr "" -#: frappe/database/query.py:450 +#: frappe/database/query.py:452 msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'." msgstr "" @@ -13241,11 +13280,11 @@ msgstr "" msgid "Invalid filter: {0}" msgstr "" -#: frappe/database/query.py:1422 +#: frappe/database/query.py:1424 msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed." msgstr "" -#: frappe/database/query.py:1383 +#: frappe/database/query.py:1385 msgid "Invalid function dictionary format" msgstr "" @@ -13282,23 +13321,27 @@ msgstr "" msgid "Invalid redirect regex in row #{}: {}" msgstr "" -#: frappe/app.py:337 +#: frappe/app.py:340 msgid "Invalid request arguments" msgstr "" +#: frappe/app.py:327 +msgid "Invalid request body" +msgstr "" + #: frappe/core/doctype/user_invitation/user_invitation.py:181 msgid "Invalid role" msgstr "" -#: frappe/database/query.py:410 +#: frappe/database/query.py:412 msgid "Invalid simple filter format: {0}" msgstr "" -#: frappe/database/query.py:341 +#: frappe/database/query.py:343 msgid "Invalid start for filter condition: {0}. Expected a list or tuple." msgstr "" -#: frappe/database/query.py:1489 +#: frappe/database/query.py:1491 msgid "Invalid string literal format: {0}" msgstr "" @@ -13402,7 +13445,7 @@ msgstr "" #. 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/doctype_list.js:50 #: frappe/core/doctype/doctype_link/doctype_link.json msgid "Is Child Table" msgstr "" @@ -13455,6 +13498,10 @@ msgstr "É Pasta" msgid "Is Global" msgstr "" +#: frappe/public/js/frappe/views/treeview.js:418 +msgid "Is Group" +msgstr "É Grupo" + #. Label of the is_hidden (Check) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "Is Hidden" @@ -13543,7 +13590,7 @@ 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/core/doctype/doctype/doctype_list.js:65 #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Is Single" msgstr "" @@ -13579,7 +13626,7 @@ msgstr "É Padrão" #. Label of the is_submittable (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:39 +#: frappe/core/doctype/doctype/doctype_list.js:40 msgid "Is Submittable" msgstr "" @@ -13785,11 +13832,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:388 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:402 msgid "Kanban Board Name" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:265 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:279 msgctxt "Button in kanban view menu" msgid "Kanban Settings" msgstr "" @@ -14087,10 +14134,13 @@ msgstr "" #. 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' +#. Label of a field in the edit-profile Web Form #: 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:117 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/printing/page/print/print.js:117 #: frappe/public/js/frappe/form/templates/print_layout.html:11 msgid "Language" msgstr "" @@ -14178,9 +14228,12 @@ msgstr "Mês passado" #. Label of the last_name (Data) field in DocType 'Contact' #. Label of the last_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json #: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:45 -#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:19 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:19 msgid "Last Name" msgstr "" @@ -14421,7 +14474,7 @@ msgstr "Cabeça Carta em HTML" #: 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/public/js/frappe/roles_editor.js:68 #: frappe/website/doctype/help_article/help_article.json msgid "Level" msgstr "" @@ -14714,7 +14767,7 @@ msgstr "" msgid "List Settings" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1991 +#: frappe/public/js/frappe/list/list_view.js:1993 msgctxt "Button in list view menu" msgid "List Settings" msgstr "" @@ -14765,7 +14818,7 @@ msgid "Load Balancing" msgstr "Balanceamento de carga" #: frappe/public/js/frappe/list/base_list.js:399 -#: frappe/public/js/frappe/web_form/web_form_list.js:305 +#: frappe/public/js/frappe/web_form/web_form_list.js:306 #: frappe/website/doctype/help_article/templates/help_article_list.html:30 msgid "Load More" msgstr "" @@ -14785,7 +14838,7 @@ msgstr "" #: frappe/public/js/frappe/list/base_list.js:526 #: frappe/public/js/frappe/list/list_view.js:363 #: frappe/public/js/frappe/ui/listing.html:16 -#: frappe/public/js/frappe/views/reports/query_report.js:1089 +#: frappe/public/js/frappe/views/reports/query_report.js:1097 msgid "Loading" msgstr "" @@ -14928,7 +14981,7 @@ msgstr "" msgid "Login and view in Browser" msgstr "" -#: frappe/website/doctype/web_form/web_form.js:367 +#: frappe/website/doctype/web_form/web_form.js:368 msgid "Login is required to see web form list view. Enable {0} to see list settings" msgstr "" @@ -14936,7 +14989,7 @@ msgstr "" msgid "Login link sent to your email" msgstr "" -#: frappe/auth.py:339 frappe/auth.py:342 +#: frappe/auth.py:342 frappe/auth.py:345 msgid "Login not allowed at this time" msgstr "" @@ -14989,7 +15042,7 @@ msgstr "" msgid "Login with email link expiry (in minutes)" msgstr "" -#: frappe/auth.py:144 +#: frappe/auth.py:147 msgid "Login with username and password is not allowed." msgstr "" @@ -15008,7 +15061,7 @@ msgstr "" msgid "Logout" msgstr "Sair" -#: frappe/core/doctype/user/user.js:202 +#: frappe/core/doctype/user/user.js:190 msgid "Logout All Sessions" msgstr "" @@ -15112,7 +15165,10 @@ msgid "Major" msgstr "" #. Label of the show_name_in_global_search (Check) field in DocType 'DocType' +#. Label of the show_name_in_global_search (Check) field in DocType 'Customize +#. Form' #: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Make \"name\" searchable in Global Search" msgstr "" @@ -15188,7 +15244,7 @@ msgstr "Obrigatório Depende" msgid "Mandatory Depends On (JS)" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:509 +#: frappe/website/doctype/web_form/web_form.py:536 msgid "Mandatory Information missing:" msgstr "" @@ -15645,6 +15701,11 @@ msgstr "" msgid "Middle Name" msgstr "Nome do Meio" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Middle Name (Optional)" +msgstr "" + #. Name of a DocType #. Label of a Link in the Tools Workspace #: frappe/automation/doctype/milestone/milestone.json @@ -15751,6 +15812,11 @@ msgstr "Móvel" msgid "Mobile No" msgstr "Telefone Celular" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Mobile Number" +msgstr "Número de Celular" + #. 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" @@ -15776,7 +15842,7 @@ msgstr "" #. 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/doctype/doctype_list.js:31 #: 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 @@ -15952,10 +16018,12 @@ msgstr "" #. Label of the additional_info (Section Break) field in DocType #. 'Communication' #. Label of the short_bio (Tab Break) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: 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 +#: frappe/core/web_form/edit_profile/edit_profile.json msgid "More Information" msgstr "Mais Informações" @@ -15985,7 +16053,7 @@ msgstr "" msgid "Move" msgstr "Mover" -#: frappe/public/js/frappe/form/grid_row.js:193 +#: frappe/public/js/frappe/form/grid_row.js:194 msgid "Move To" msgstr "" @@ -16021,7 +16089,7 @@ msgstr "" msgid "Move the current field and the following fields to a new column" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:168 +#: frappe/public/js/frappe/form/grid_row.js:169 msgid "Move to Row Number" msgstr "" @@ -16089,7 +16157,7 @@ msgid "Mx" msgstr "" #: frappe/templates/includes/web_sidebar.html:41 -#: frappe/website/doctype/web_form/web_form.py:498 +#: frappe/website/doctype/web_form/web_form.py:525 #: 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" @@ -16231,12 +16299,12 @@ msgstr "" msgid "Navbar Template Values" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1378 +#: frappe/public/js/frappe/list/list_view.js:1380 msgctxt "Description of a list view shortcut" msgid "Navigate list down" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1385 +#: frappe/public/js/frappe/list/list_view.js:1387 msgctxt "Description of a list view shortcut" msgid "Navigate list up" msgstr "" @@ -16251,6 +16319,10 @@ msgstr "" msgid "Navigation Settings" msgstr "" +#: frappe/public/js/frappe/list/list_view.js:485 +msgid "Need Help?" +msgstr "" + #: frappe/desk/doctype/workspace/workspace.py:322 msgid "Need Workspace Manager role to edit private workspace of other users" msgstr "" @@ -16259,7 +16331,7 @@ msgstr "" msgid "Negative Value" msgstr "" -#: frappe/database/query.py:333 +#: frappe/database/query.py:335 msgid "Nested filters must be provided as a list or tuple." msgstr "" @@ -16272,6 +16344,12 @@ msgstr "" msgid "Network Printer Settings" msgstr "" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Never" +msgstr "" + #. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/core/doctype/success_action/success_action.js:57 @@ -16280,7 +16358,7 @@ msgstr "" #: 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/treeview.js:473 #: frappe/public/js/frappe/views/workspace/workspace.js:64 #: frappe/website/doctype/web_form/templates/web_list.html:15 #: frappe/www/list.html:19 @@ -16341,7 +16419,7 @@ msgstr "" msgid "New Folder" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 msgid "New Kanban Board" msgstr "" @@ -16376,7 +16454,7 @@ msgstr "" msgid "New Onboarding" msgstr "" -#: frappe/core/doctype/user/user.js:190 frappe/www/update-password.html:43 +#: frappe/core/doctype/user/user.js:178 frappe/www/update-password.html:43 msgid "New Password" msgstr "" @@ -16472,7 +16550,7 @@ msgstr "Novo valor a ser definido" #: frappe/public/js/frappe/ui/toolbar/search_utils.js:227 #: 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:411 +#: frappe/website/doctype/web_form/web_form.py:438 msgid "New {0}" msgstr "" @@ -16624,7 +16702,7 @@ msgstr "" #: frappe/public/js/form_builder/utils.js:341 #: frappe/public/js/frappe/form/controls/link.js:498 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1665 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 #: frappe/website/doctype/help_article/templates/help_article.html:26 msgid "No" msgstr "Não" @@ -16773,7 +16851,7 @@ msgstr "" msgid "No Roles Specified" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 msgid "No Select Field Found" msgstr "" @@ -16857,7 +16935,7 @@ msgstr "" msgid "No failed logs" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:371 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:385 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 "" @@ -16881,7 +16959,7 @@ msgstr "" msgid "No matching records. Search something new" msgstr "" -#: frappe/public/js/frappe/web_form/web_form_list.js:161 +#: frappe/public/js/frappe/web_form/web_form_list.js:162 msgid "No more items to display" msgstr "" @@ -16925,7 +17003,7 @@ msgctxt "{0} = verb, {1} = object" msgid "No permission to '{0}' {1}" msgstr "" -#: frappe/model/db_query.py:948 +#: frappe/model/db_query.py:949 msgid "No permission to read {0}" msgstr "" @@ -16973,11 +17051,11 @@ msgstr "" msgid "No {0} Found" msgstr "" -#: frappe/public/js/frappe/web_form/web_form_list.js:233 +#: frappe/public/js/frappe/web_form/web_form_list.js:234 msgid "No {0} found" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:497 +#: frappe/public/js/frappe/list/list_view.js:499 msgid "No {0} found with matching filters. Clear filters to see all {0}." msgstr "" @@ -16986,7 +17064,7 @@ msgid "No {0} mail" msgstr "" #: frappe/public/js/form_builder/utils.js:117 -#: frappe/public/js/frappe/form/grid_row.js:256 +#: frappe/public/js/frappe/form/grid_row.js:257 msgctxt "Title of the 'row number' column" msgid "No." msgstr "" @@ -17050,7 +17128,7 @@ msgstr "" msgid "Not Equals" msgstr "" -#: frappe/app.py:387 frappe/www/404.html:3 +#: frappe/app.py:390 frappe/www/404.html:3 msgid "Not Found" msgstr "" @@ -17076,9 +17154,9 @@ msgstr "" msgid "Not Nullable" msgstr "" -#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26 +#: frappe/__init__.py:550 frappe/app.py:383 frappe/desk/calendar.py:26 #: frappe/public/js/frappe/web_form/webform_script.js:15 -#: frappe/website/doctype/web_form/web_form.py:747 +#: frappe/website/doctype/web_form/web_form.py:774 #: 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 @@ -17097,7 +17175,7 @@ msgstr "" #: 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/kanban/kanban_view.js:183 #: frappe/public/js/frappe/views/reports/report_view.js:209 #: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39 #: frappe/website/doctype/web_form/templates/web_form.html:85 @@ -17148,7 +17226,7 @@ msgstr "Inativo" msgid "Not allowed for {0}: {1}" msgstr "" -#: frappe/email/doctype/notification/notification.py:637 +#: frappe/email/doctype/notification/notification.py:639 msgid "Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings" msgstr "" @@ -17180,12 +17258,12 @@ msgstr "" msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType." msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:216 +#: frappe/core/doctype/system_settings/system_settings.py:217 #: 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:760 +#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:787 #: frappe/website/js/website.js:97 msgid "Not permitted" msgstr "Não Permitido" @@ -17231,7 +17309,7 @@ msgstr "Nota: Para obter melhores resultados, as imagens devem ter o mesmo taman msgid "Note: Multiple sessions will be allowed in case of mobile device" msgstr "Observação: Serão permitidas múltiplas sessões no caso de dispositivo móvel" -#: frappe/core/doctype/user/user.js:399 +#: frappe/core/doctype/user/user.js:387 msgid "Note: This will be shared with user." msgstr "" @@ -17303,15 +17381,15 @@ msgstr "" msgid "Notification sent to" msgstr "" -#: frappe/email/doctype/notification/notification.py:542 +#: frappe/email/doctype/notification/notification.py:544 msgid "Notification: customer {0} has no Mobile number set" msgstr "" -#: frappe/email/doctype/notification/notification.py:528 +#: frappe/email/doctype/notification/notification.py:530 msgid "Notification: document {0} has no {1} number set (field: {2})" msgstr "" -#: frappe/email/doctype/notification/notification.py:537 +#: frappe/email/doctype/notification/notification.py:539 msgid "Notification: user {0} has no Mobile number set" msgstr "" @@ -17425,7 +17503,7 @@ msgstr "" msgid "Number of attachment fields are more than {}, limit updated to {}." msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:171 +#: frappe/core/doctype/system_settings/system_settings.py:172 msgid "Number of backups must be greater than zero." msgstr "" @@ -17697,7 +17775,7 @@ msgstr "" #. Description of the 'Is Submittable' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:42 +#: frappe/core/doctype/doctype/doctype_list.js:43 msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended." msgstr "" @@ -17786,11 +17864,11 @@ msgstr "" msgid "Only reports of type Report Builder can be edited" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:129 +#: frappe/custom/doctype/customize_form/customize_form.py:131 msgid "Only standard DocTypes are allowed to be customized from Customize Form." msgstr "" -#: frappe/model/delete_doc.py:241 +#: frappe/model/delete_doc.py:281 msgid "Only the Administrator can delete a standard DocType." msgstr "" @@ -17886,7 +17964,7 @@ msgstr "" msgid "Open in a new tab" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1431 +#: frappe/public/js/frappe/list/list_view.js:1433 msgctxt "Description of a list view shortcut" msgid "Open list item" msgstr "" @@ -17935,7 +18013,7 @@ msgstr "Inaugurado" msgid "Operation" msgstr "Operação" -#: frappe/utils/data.py:2146 +#: frappe/utils/data.py:2172 msgid "Operator must be one of {0}" msgstr "" @@ -17981,6 +18059,7 @@ msgstr "Opcional: O alerta será enviado se essa expressão é verdadeira" #. 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 (Text) field in DocType 'Web Form List Column' #. 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 @@ -17989,6 +18068,7 @@ msgstr "Opcional: O alerta será enviado se essa expressão é verdadeira" #: 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_form_list_column/web_form_list_column.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Options" msgstr "" @@ -18034,7 +18114,7 @@ msgstr "" msgid "Order" msgstr "Pedido" -#: frappe/database/query.py:767 +#: frappe/database/query.py:769 msgid "Order By must be a string" msgstr "" @@ -18132,7 +18212,7 @@ msgstr "" #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/printing/page/print/print.js:84 #: frappe/public/js/frappe/form/templates/print_layout.html:44 -#: frappe/public/js/frappe/views/reports/query_report.js:1804 +#: frappe/public/js/frappe/views/reports/query_report.js:1812 msgid "PDF" msgstr "" @@ -18480,8 +18560,8 @@ msgstr "Passivo" #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/system_settings/system_settings.json -#: frappe/core/doctype/user/user.js:177 frappe/core/doctype/user/user.js:224 -#: frappe/core/doctype/user/user.js:244 +#: frappe/core/doctype/user/user.js:165 frappe/core/doctype/user/user.js:212 +#: frappe/core/doctype/user/user.js:232 #: 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 @@ -18504,7 +18584,7 @@ msgstr "" msgid "Password Reset Link Generation Limit" msgstr "Limite de geração de link de redefinição de senha" -#: frappe/public/js/frappe/form/grid_row.js:896 +#: frappe/public/js/frappe/form/grid_row.js:897 msgid "Password cannot be filtered" msgstr "" @@ -18541,7 +18621,7 @@ msgstr "" msgid "Password set" msgstr "" -#: frappe/auth.py:258 +#: frappe/auth.py:261 msgid "Password size exceeded the maximum allowed size" msgstr "" @@ -18553,7 +18633,7 @@ msgstr "" msgid "Passwords do not match" msgstr "" -#: frappe/core/doctype/user/user.js:210 +#: frappe/core/doctype/user/user.js:198 msgid "Passwords do not match!" msgstr "" @@ -18704,7 +18784,7 @@ msgstr "" msgid "Permanently delete {0}?" msgstr "" -#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533 +#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:535 msgid "Permission Error" msgstr "" @@ -18764,8 +18844,8 @@ msgstr "" #: 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:143 frappe/core/doctype/user/user.js:152 -#: frappe/core/doctype/user/user.js:161 +#: frappe/core/doctype/user/user.js:131 frappe/core/doctype/user/user.js:140 +#: frappe/core/doctype/user/user.js:149 #: 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 @@ -18835,6 +18915,7 @@ msgstr "" #. Option for the 'Type' (Select) field in DocType 'Communication' #. Option for the 'Type' (Select) field in DocType 'DocField' #. Label of the phone (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #. 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' @@ -18845,6 +18926,7 @@ msgstr "" #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.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 @@ -19019,7 +19101,7 @@ msgstr "" msgid "Please duplicate this to make changes" msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:164 +#: frappe/core/doctype/system_settings/system_settings.py:165 msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login." msgstr "" @@ -19151,11 +19233,11 @@ msgstr "" msgid "Please select Entity Type first" msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:115 +#: frappe/core/doctype/system_settings/system_settings.py:116 msgid "Please select Minimum Password Score" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1185 +#: frappe/public/js/frappe/views/reports/query_report.js:1193 msgid "Please select X and Y fields" msgstr "" @@ -19183,7 +19265,7 @@ msgstr "" msgid "Please select applicable Doctypes" msgstr "" -#: frappe/model/db_query.py:1157 +#: frappe/model/db_query.py:1163 msgid "Please select atleast 1 column from {0} to sort/group" msgstr "" @@ -19213,7 +19295,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:1408 +#: frappe/public/js/frappe/views/reports/query_report.js:1416 msgid "Please set filters" msgstr "" @@ -19233,7 +19315,7 @@ msgstr "" msgid "Please set the series to be used." msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:128 +#: frappe/core/doctype/system_settings/system_settings.py:129 msgid "Please setup SMS before setting it as an authentication method, via SMS Settings" msgstr "" @@ -19385,7 +19467,7 @@ msgstr "" msgid "Posting Timestamp" msgstr "" -#: frappe/database/query.py:1518 +#: frappe/database/query.py:1520 msgid "Potentially dangerous content in string literal: {0}" msgstr "" @@ -19587,13 +19669,13 @@ msgstr "" #: 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:1789 +#: frappe/public/js/frappe/views/reports/query_report.js:1797 #: frappe/public/js/frappe/views/reports/report_view.js:1539 -#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18 +#: frappe/public/js/frappe/views/treeview.js:492 frappe/www/printview.html:18 msgid "Print" msgstr "Impressão" -#: frappe/public/js/frappe/list/list_view.js:2164 +#: frappe/public/js/frappe/list/list_view.js:2166 msgctxt "Button in list view actions menu" msgid "Print" msgstr "Impressão" @@ -19663,7 +19745,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:1578 +#: frappe/public/js/frappe/views/reports/query_report.js:1586 msgid "Print Format not found" msgstr "" @@ -19844,11 +19926,11 @@ msgstr "" msgid "Proceed" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:932 +#: frappe/public/js/frappe/views/reports/query_report.js:940 msgid "Proceed Anyway" msgstr "" -#: frappe/public/js/frappe/form/controls/table.js:123 +#: frappe/public/js/frappe/form/controls/table.js:104 msgid "Processing" msgstr "" @@ -19865,11 +19947,21 @@ msgstr "" msgid "Profile" msgstr "" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile Picture" +msgstr "" + +#. Success message of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile updated successfully." +msgstr "Perfil atualizado com sucesso." + #: frappe/public/js/frappe/socketio_client.js:82 msgid "Progress" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:408 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:422 msgid "Project" msgstr "Projeto" @@ -19913,7 +20005,7 @@ msgstr "" msgid "Protect Attached Files" msgstr "" -#: frappe/core/doctype/file/file.py:523 +#: frappe/core/doctype/file/file.py:526 msgid "Protected File" msgstr "" @@ -20419,11 +20511,11 @@ msgstr "" msgid "Reason" msgstr "Motivo" -#: frappe/public/js/frappe/views/reports/query_report.js:886 +#: frappe/public/js/frappe/views/reports/query_report.js:894 msgid "Rebuild" msgstr "" -#: frappe/public/js/frappe/views/treeview.js:509 +#: frappe/public/js/frappe/views/treeview.js:511 msgid "Rebuild Tree" msgstr "" @@ -20804,8 +20896,8 @@ 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:1778 -#: frappe/public/js/frappe/views/treeview.js:496 +#: frappe/public/js/frappe/views/reports/query_report.js:1786 +#: frappe/public/js/frappe/views/treeview.js:498 #: frappe/public/js/frappe/widgets/chart_widget.js:291 #: frappe/public/js/frappe/widgets/number_card_widget.js:352 #: frappe/public/js/print_format_builder/Preview.vue:24 @@ -20836,13 +20928,13 @@ msgstr "" msgid "Refresh Token" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:534 +#: frappe/public/js/frappe/list/list_view.js:536 msgctxt "Document count in list view" msgid "Refreshing" msgstr "" #: frappe/core/doctype/system_settings/system_settings.js:57 -#: frappe/core/doctype/user/user.js:374 +#: frappe/core/doctype/user/user.js:362 #: frappe/desk/page/setup_wizard/setup_wizard.js:211 msgid "Refreshing..." msgstr "" @@ -21227,7 +21319,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:1965 +#: frappe/public/js/frappe/views/reports/query_report.js:1973 msgid "Report Name" msgstr "" @@ -21279,7 +21371,7 @@ msgstr "" msgid "Report has no numeric fields, please change the Report Name" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1013 +#: frappe/public/js/frappe/views/reports/query_report.js:1021 msgid "Report initiated, click to view status" msgstr "" @@ -21299,7 +21391,7 @@ msgstr "" msgid "Report was not saved (there were errors)" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2003 +#: frappe/public/js/frappe/views/reports/query_report.js:2011 msgid "Report with more than 10 columns looks better in Landscape mode." msgstr "" @@ -21335,7 +21427,7 @@ msgstr "Relatórios" msgid "Reports & Masters" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:929 +#: frappe/public/js/frappe/views/reports/query_report.js:937 msgid "Reports already in Queue" msgstr "" @@ -21354,7 +21446,10 @@ msgid "Request Body" msgstr "" #. Label of the data (Code) field in DocType 'Integration Request' +#. Title of the request-data Web Form +#. Button label of the request-data Web Form #: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/website/web_form/request_data/request_data.json msgid "Request Data" msgstr "Solicitar Dados" @@ -21406,6 +21501,11 @@ msgstr "" msgid "Request URL" msgstr "URL do pedido" +#. Title of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "Request for Account Deletion" +msgstr "" + #. Label of the requested_numbers (Code) field in DocType 'SMS Log' #: frappe/core/doctype/sms_log/sms_log.json msgid "Requested Numbers" @@ -21461,7 +21561,7 @@ msgstr "" msgid "Reset Fields" msgstr "" -#: frappe/core/doctype/user/user.js:184 frappe/core/doctype/user/user.js:187 +#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:175 msgid "Reset LDAP Password" msgstr "" @@ -21469,11 +21569,11 @@ msgstr "" msgid "Reset Layout" msgstr "" -#: frappe/core/doctype/user/user.js:235 +#: frappe/core/doctype/user/user.js:223 msgid "Reset OTP Secret" msgstr "" -#: frappe/core/doctype/user/user.js:168 frappe/www/login.html:199 +#: frappe/core/doctype/user/user.js:156 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" @@ -21508,7 +21608,7 @@ msgstr "" msgid "Reset sorting" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:433 +#: frappe/public/js/frappe/form/grid_row.js:434 msgid "Reset to default" msgstr "" @@ -21760,7 +21860,7 @@ 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 +#: frappe/public/js/frappe/roles_editor.js:114 msgid "Role Permissions" msgstr "" @@ -21770,7 +21870,7 @@ msgstr "" msgid "Role Permissions Manager" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1933 +#: frappe/public/js/frappe/list/list_view.js:1935 msgctxt "Button in list view menu" msgid "Role Permissions Manager" msgstr "" @@ -21963,11 +22063,11 @@ msgstr "" msgid "Row {0}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:353 +#: frappe/custom/doctype/customize_form/customize_form.py:357 msgid "Row {0}: Not allowed to disable Mandatory for standard fields" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:342 +#: frappe/custom/doctype/customize_form/customize_form.py:346 msgid "Row {0}: Not allowed to enable Allow on Submit for standard fields" msgstr "" @@ -21986,7 +22086,10 @@ msgid "Rows Removed" msgstr "" #. Label of the rows_threshold_for_grid_search (Int) field in DocType 'DocType' +#. Label of the rows_threshold_for_grid_search (Int) field in DocType +#. 'Customize Form' #: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Rows Threshold for Grid Search" msgstr "" @@ -22194,8 +22297,8 @@ msgstr "" #: 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:1957 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 +#: frappe/public/js/frappe/views/reports/query_report.js:1965 #: frappe/public/js/frappe/views/reports/report_view.js:1735 #: frappe/public/js/frappe/views/workspace/workspace.js:335 #: frappe/public/js/frappe/widgets/base_widget.js:142 @@ -22218,11 +22321,11 @@ msgstr "" msgid "Save Customizations" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1960 +#: frappe/public/js/frappe/views/reports/query_report.js:1968 msgid "Save Report" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:97 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:107 msgid "Save filters" msgstr "" @@ -22594,7 +22697,7 @@ msgstr "Configurações de Segurança" msgid "See all Activity" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:855 +#: frappe/public/js/frappe/views/reports/query_report.js:863 msgid "See all past reports." msgstr "" @@ -22658,7 +22761,7 @@ msgstr "Selecionar" #: 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:497 +#: frappe/public/js/frappe/form/grid_row.js:498 msgid "Select All" msgstr "" @@ -22738,7 +22841,7 @@ msgstr "" msgid "Select Field..." msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:489 +#: frappe/public/js/frappe/form/grid_row.js:490 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:181 msgid "Select Fields" msgstr "" @@ -22858,7 +22961,7 @@ msgid "Select a field to edit its properties." msgstr "" #: frappe/public/js/frappe/views/treeview.js:358 -msgid "Select a group node first." +msgid "Select a group {0} first." msgstr "" #: frappe/core/doctype/doctype/doctype.py:1956 @@ -22895,13 +22998,13 @@ msgstr "" msgid "Select atleast 2 actions" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1445 +#: frappe/public/js/frappe/list/list_view.js:1447 msgctxt "Description of a list view shortcut" msgid "Select list item" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1397 -#: frappe/public/js/frappe/list/list_view.js:1413 +#: frappe/public/js/frappe/list/list_view.js:1399 +#: frappe/public/js/frappe/list/list_view.js:1415 msgctxt "Description of a list view shortcut" msgid "Select multiple list items" msgstr "" @@ -23223,7 +23326,7 @@ msgstr "" msgid "Server Action" msgstr "Ação do Servidor" -#: frappe/app.py:396 frappe/public/js/frappe/request.js:611 +#: frappe/app.py:399 frappe/public/js/frappe/request.js:611 #: frappe/www/error.html:36 frappe/www/error.py:15 msgid "Server Error" msgstr "" @@ -23289,7 +23392,7 @@ msgstr "" msgid "Session Defaults Saved" msgstr "" -#: frappe/app.py:373 +#: frappe/app.py:376 msgid "Session Expired" msgstr "" @@ -23298,7 +23401,7 @@ msgstr "" msgid "Session Expiry (idle timeout)" msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:122 +#: frappe/core/doctype/system_settings/system_settings.py:123 msgid "Session Expiry must be in format {0}" msgstr "" @@ -23347,7 +23450,7 @@ msgstr "" msgid "Set Filters for {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2113 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 msgid "Set Level" msgstr "" @@ -23401,7 +23504,7 @@ msgstr "" msgid "Set Role For" msgstr "Definir papel para" -#: frappe/core/doctype/user/user.js:136 +#: frappe/core/doctype/user/user.js:124 #: frappe/core/page/permission_manager/permission_manager.js:72 msgid "Set User Permissions" msgstr "" @@ -23563,7 +23666,7 @@ msgstr "" msgid "Setup > User Permissions" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1826 +#: frappe/public/js/frappe/views/reports/query_report.js:1834 #: frappe/public/js/frappe/views/reports/report_view.js:1713 msgid "Setup Auto Email" msgstr "" @@ -23704,6 +23807,12 @@ msgstr "" msgid "Show Error" msgstr "" +#. Label of the show_external_link_warning (Select) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Show External Link Warning" +msgstr "" + #: frappe/public/js/frappe/form/layout.js:578 msgid "Show Fieldname (click to copy on clipboard)" msgstr "" @@ -23832,7 +23941,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:1849 +#: frappe/public/js/frappe/list/list_view.js:1851 msgid "Show Tags" msgstr "" @@ -24039,22 +24148,22 @@ msgstr "" msgid "Signups have been disabled for this website." msgstr "" -#. 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 "" - #. 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\")" +msgid "Simple Python Expression, Example: status == \"Invalid\"" msgstr "" #. 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'" +msgid "Simple Python Expression, Example: status == 'Open' and issue_type == 'Bug'" +msgstr "" + +#. 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 "" #. Label of the simultaneous_sessions (Int) field in DocType 'User' @@ -24062,13 +24171,13 @@ msgstr "" msgid "Simultaneous Sessions" msgstr "Sessões simultâneas" -#: frappe/custom/doctype/customize_form/customize_form.py:126 +#: frappe/custom/doctype/customize_form/customize_form.py:128 msgid "Single DocTypes cannot be customized." 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 +#: frappe/core/doctype/doctype/doctype_list.js:68 msgid "Single Types have only one record no tables associated. Values are stored in tabSingles" msgstr "" @@ -24404,7 +24513,7 @@ msgid "Splash Image" msgstr "" #: frappe/desk/reportview.py:455 -#: frappe/public/js/frappe/web_form/web_form_list.js:175 +#: frappe/public/js/frappe/web_form/web_form_list.js:176 #: frappe/templates/print_formats/standard_macros.html:44 msgid "Sr" msgstr "" @@ -24436,7 +24545,7 @@ msgstr "" msgid "Standard" msgstr "" -#: frappe/model/delete_doc.py:79 +#: frappe/model/delete_doc.py:119 msgid "Standard DocType can not be deleted." msgstr "" @@ -24706,7 +24815,7 @@ msgstr "" #. Label of the sticky (Check) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json -#: frappe/public/js/frappe/form/grid_row.js:454 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Sticky" msgstr "" @@ -24736,7 +24845,7 @@ msgstr "" msgid "Store Attached PDF Document" msgstr "" -#: frappe/core/doctype/user/user.js:490 +#: frappe/core/doctype/user/user.js:497 msgid "Store the API secret securely. It won't be displayed again." msgstr "" @@ -24848,6 +24957,7 @@ msgstr "" #. 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' +#. Button label of the request-to-delete-data Web Form #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/docshare/docshare.json @@ -24856,10 +24966,11 @@ msgstr "" #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/quick_entry.js:225 #: frappe/public/js/frappe/ui/capture.js:307 +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json msgid "Submit" msgstr "Enviar" -#: frappe/public/js/frappe/list/list_view.js:2231 +#: frappe/public/js/frappe/list/list_view.js:2233 msgctxt "Button in list view actions menu" msgid "Submit" msgstr "Enviar" @@ -24869,7 +24980,7 @@ msgctxt "Button in web form" msgid "Submit" msgstr "Enviar" -#: frappe/public/js/frappe/ui/dialog.js:63 +#: frappe/public/js/frappe/ui/dialog.js:64 msgctxt "Primary action in dialog" msgid "Submit" msgstr "Enviar" @@ -24917,7 +25028,7 @@ msgstr "" msgid "Submit this document to confirm" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2236 +#: frappe/public/js/frappe/list/list_view.js:2238 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "" @@ -24967,7 +25078,7 @@ msgstr "Subtítulo" #: 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:1171 +#: frappe/public/js/frappe/form/grid.js:1172 #: frappe/public/js/frappe/views/translation_manager.js:21 #: frappe/templates/includes/login/login.js:230 #: frappe/templates/includes/login/login.js:236 @@ -25182,7 +25293,7 @@ msgstr "" msgid "Syncing {0} of {1}" msgstr "" -#: frappe/utils/data.py:2547 +#: frappe/utils/data.py:2573 msgid "Syntax Error" msgstr "" @@ -25493,7 +25604,7 @@ msgstr "" msgid "Table Trimmed" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1170 +#: frappe/public/js/frappe/form/grid.js:1171 msgid "Table updated" msgstr "" @@ -25708,7 +25819,7 @@ msgstr "" msgid "The Auto Repeat for this document has been disabled." msgstr "" -#: frappe/public/js/frappe/form/grid.js:1193 +#: frappe/public/js/frappe/form/grid.js:1194 msgid "The CSV format is case sensitive" msgstr "" @@ -25776,7 +25887,7 @@ msgstr "" 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:685 +#: frappe/public/js/frappe/list/list_view.js:687 msgid "The count shown is an estimated count. Click here to see the accurate count." msgstr "" @@ -25888,7 +25999,7 @@ msgstr "" msgid "The reset password link has either been used before or is invalid" msgstr "" -#: frappe/app.py:388 frappe/public/js/frappe/request.js:149 +#: frappe/app.py:391 frappe/public/js/frappe/request.js:149 msgid "The resource you are looking for is not available" msgstr "" @@ -25961,12 +26072,12 @@ 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:965 +#: frappe/public/js/frappe/views/reports/query_report.js:973 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 +#: frappe/website/doctype/web_form/web_form.js:318 msgid "There can be only 9 Page Break fields in a Web Form" msgstr "" @@ -25990,11 +26101,11 @@ msgstr "" msgid "There is nothing new to show you right now." msgstr "" -#: frappe/core/doctype/file/file.py:640 frappe/utils/file_manager.py:372 +#: frappe/core/doctype/file/file.py:643 frappe/utils/file_manager.py:372 msgid "There is some problem with the file url: {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:962 +#: frappe/public/js/frappe/views/reports/query_report.js:970 msgid "There is {0} with the same filters already in the queue:" msgstr "" @@ -26006,7 +26117,7 @@ msgstr "" msgid "There was an error building this page" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:182 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:196 msgid "There was an error saving filters" msgstr "" @@ -26063,7 +26174,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:391 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:405 msgid "This Kanban Board will be private" msgstr "" @@ -26100,7 +26211,7 @@ msgstr "" msgid "This cannot be undone" msgstr "" -#: frappe/desk/doctype/number_card/number_card.js:480 +#: frappe/desk/doctype/number_card/number_card.js:484 msgctxt "Number Card" msgid "This card is visible only to Administrator and System Managers by default. Set a DocType to share with users who have read access." msgstr "" @@ -26123,7 +26234,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:113 +#: frappe/model/delete_doc.py:153 msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time." msgstr "" @@ -26165,7 +26276,7 @@ msgid "This field will appear only if the fieldname defined here has value OR th "eval:doc.age>18" msgstr "" -#: frappe/core/doctype/file/file.py:522 +#: frappe/core/doctype/file/file.py:525 msgid "This file is attached to a protected document and cannot be deleted." msgstr "" @@ -26200,7 +26311,7 @@ msgstr "" msgid "This goes above the slideshow." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2189 +#: frappe/public/js/frappe/views/reports/query_report.js:2197 msgid "This is a background report. Please set the appropriate filters and then generate a new one." msgstr "" @@ -26250,7 +26361,7 @@ msgstr "" msgid "This month" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1037 +#: frappe/public/js/frappe/views/reports/query_report.js:1045 msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead." msgstr "" @@ -26258,7 +26369,7 @@ msgstr "" msgid "This report was generated on {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:853 +#: frappe/public/js/frappe/views/reports/query_report.js:861 msgid "This report was generated {0}." msgstr "" @@ -26400,9 +26511,11 @@ msgstr "" #. Label of the time_zone (Select) field in DocType 'System Settings' #. Label of the time_zone (Autocomplete) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #. 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/core/web_form/edit_profile/edit_profile.json #: frappe/desk/page/setup_wizard/setup_wizard.js:407 #: frappe/website/doctype/web_page_view/web_page_view.json msgid "Time Zone" @@ -26663,7 +26776,7 @@ msgstr "" msgid "To generate password click {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:854 +#: frappe/public/js/frappe/views/reports/query_report.js:862 msgid "To get the updated report, click on {0}." msgstr "" @@ -26738,7 +26851,7 @@ msgstr "" msgid "Toggle Sidebar" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1964 +#: frappe/public/js/frappe/list/list_view.js:1966 msgctxt "Button in list view menu" msgid "Toggle Sidebar" msgstr "" @@ -26864,7 +26977,7 @@ msgstr "Tópico" #: frappe/desk/query_report.py:587 #: frappe/public/js/frappe/views/reports/print_grid.html:45 -#: frappe/public/js/frappe/views/reports/query_report.js:1324 +#: frappe/public/js/frappe/views/reports/query_report.js:1332 #: frappe/public/js/frappe/views/reports/report_view.js:1553 msgid "Total" msgstr "" @@ -27021,7 +27134,7 @@ msgstr "Transições" msgid "Translatable" msgstr "Traduzível" -#: frappe/public/js/frappe/views/reports/query_report.js:2244 +#: frappe/public/js/frappe/views/reports/query_report.js:2252 msgid "Translate Data" msgstr "" @@ -27379,7 +27492,7 @@ msgstr "" msgid "Unable to update event" msgstr "" -#: frappe/core/doctype/file/file.py:486 +#: frappe/core/doctype/file/file.py:489 msgid "Unable to write file format for {0}" msgstr "" @@ -27388,7 +27501,7 @@ msgstr "" msgid "Unassign Condition" msgstr "Desatribuir condição" -#: frappe/app.py:396 +#: frappe/app.py:399 msgid "Uncaught Exception" msgstr "" @@ -27404,7 +27517,7 @@ msgstr "" msgid "Undo last action" msgstr "" -#: frappe/database/query.py:1495 +#: frappe/database/query.py:1497 msgid "Unescaped quotes in string literal: {0}" msgstr "" @@ -27451,7 +27564,7 @@ msgstr "" msgid "Unknown Rounding Method: {}" msgstr "" -#: frappe/auth.py:316 +#: frappe/auth.py:319 msgid "Unknown User" msgstr "" @@ -27517,8 +27630,8 @@ msgstr "" msgid "Unsubscribed" msgstr "" -#: frappe/database/query.py:653 frappe/database/query.py:1387 -#: frappe/database/query.py:1397 +#: frappe/database/query.py:655 frappe/database/query.py:1389 +#: frappe/database/query.py:1399 msgid "Unsupported function or invalid field name: {0}" msgstr "" @@ -27552,7 +27665,7 @@ msgstr "" #: 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:427 +#: frappe/public/js/frappe/form/grid_row.js:428 msgid "Update" msgstr "Atualizar" @@ -27586,6 +27699,11 @@ msgstr "" msgid "Update Password" msgstr "" +#. Title of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Update Profile" +msgstr "" + #. Label of the update_series (Section Break) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -27801,11 +27919,7 @@ msgstr "" msgid "Use if the default settings don't seem to detect your data correctly" msgstr "" -#: frappe/model/db_query.py:436 -msgid "Use of function {0} in field is restricted" -msgstr "" - -#: frappe/model/db_query.py:413 +#: frappe/model/db_query.py:411 msgid "Use of sub-query or function is restricted" msgstr "" @@ -28027,12 +28141,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:1944 +#: frappe/public/js/frappe/views/reports/query_report.js:1952 #: frappe/public/js/frappe/views/reports/report_view.js:1761 msgid "User Permissions" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1922 +#: frappe/public/js/frappe/list/list_view.js:1924 msgctxt "Button in list view menu" msgid "User Permissions" msgstr "" @@ -28176,7 +28290,7 @@ msgstr "" msgid "User {0} is disabled" msgstr "Usuário {0} está desativado" -#: frappe/sessions.py:242 +#: frappe/sessions.py:243 msgid "User {0} is disabled. Please contact your System Manager." msgstr "" @@ -28353,7 +28467,7 @@ msgstr "" msgid "Value for a check field can be either 0 or 1" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:612 +#: frappe/custom/doctype/customize_form/customize_form.py:616 msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters" msgstr "" @@ -28474,7 +28588,7 @@ msgstr "" msgid "View Audit Trail" msgstr "" -#: frappe/core/doctype/user/user.js:156 +#: frappe/core/doctype/user/user.js:144 msgid "View Doctype Permissions" msgstr "" @@ -28486,7 +28600,7 @@ msgstr "" msgid "View Full Log" msgstr "" -#: frappe/public/js/frappe/views/treeview.js:484 +#: frappe/public/js/frappe/views/treeview.js:486 #: frappe/public/js/frappe/widgets/quick_list_widget.js:258 msgid "View List" msgstr "" @@ -28496,7 +28610,7 @@ msgstr "" msgid "View Log" msgstr "" -#: frappe/core/doctype/user/user.js:147 +#: frappe/core/doctype/user/user.js:135 #: frappe/core/doctype/user_permission/user_permission.js:24 msgid "View Permitted Documents" msgstr "" @@ -28612,6 +28726,7 @@ msgid "Warehouse" msgstr "Armazém" #. Option for the 'Style' (Select) field in DocType 'Workflow State' +#: frappe/public/js/frappe/router.js:613 #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Warning" msgstr "Aviso" @@ -29257,7 +29372,7 @@ msgstr "" msgid "Workspace" msgstr "" -#: frappe/public/js/frappe/router.js:175 +#: frappe/public/js/frappe/router.js:180 msgid "Workspace {0} does not exist" msgstr "" @@ -29379,7 +29494,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:1225 +#: frappe/public/js/frappe/views/reports/query_report.js:1233 msgid "Y Field" msgstr "" @@ -29441,7 +29556,7 @@ msgstr "" #: frappe/public/js/form_builder/utils.js:336 #: frappe/public/js/frappe/form/controls/link.js:498 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1665 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 #: frappe/website/doctype/help_article/templates/help_article.html:25 msgid "Yes" msgstr "" @@ -29477,6 +29592,10 @@ msgstr "" msgid "You added {0} rows to {1}" msgstr "" +#: frappe/public/js/frappe/router.js:642 +msgid "You are about to open an external link. To confirm, click the link again." +msgstr "" + #: frappe/public/js/frappe/dom.js:438 msgid "You are connected to internet." msgstr "" @@ -29520,7 +29639,7 @@ msgstr "" msgid "You are not allowed to export {} doctype" msgstr "" -#: frappe/public/js/frappe/views/treeview.js:448 +#: frappe/public/js/frappe/views/treeview.js:450 msgid "You are not allowed to print this report" msgstr "" @@ -29528,7 +29647,7 @@ msgstr "" msgid "You are not allowed to send emails related to this document" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:605 +#: frappe/website/doctype/web_form/web_form.py:632 msgid "You are not allowed to update this Web Form Document" msgstr "" @@ -29601,11 +29720,11 @@ msgstr "" msgid "You can continue with the onboarding after exploring this page" msgstr "" -#: frappe/model/delete_doc.py:137 +#: frappe/model/delete_doc.py:177 msgid "You can disable this {0} instead of deleting it." msgstr "" -#: frappe/core/doctype/file/file.py:758 +#: frappe/core/doctype/file/file.py:761 msgid "You can increase the limit from System Settings." msgstr "" @@ -29655,11 +29774,11 @@ msgstr "" msgid "You can use wildcard %" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:390 +#: frappe/custom/doctype/customize_form/customize_form.py:394 msgid "You can't set 'Options' for field {0}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:394 +#: frappe/custom/doctype/customize_form/customize_form.py:398 msgid "You can't set 'Translatable' for field {0}" msgstr "" @@ -29677,7 +29796,7 @@ msgstr "" msgid "You cannot create a dashboard chart from single DocTypes" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:386 +#: frappe/custom/doctype/customize_form/customize_form.py:390 msgid "You cannot unset 'Read Only' for field {0}" msgstr "" @@ -29720,11 +29839,11 @@ msgstr "" msgid "You do not have enough permissions to access this resource. Please contact your manager to get access." msgstr "" -#: frappe/app.py:381 +#: frappe/app.py:384 msgid "You do not have enough permissions to complete the action" msgstr "" -#: frappe/database/query.py:529 +#: frappe/database/query.py:531 msgid "You do not have permission to access field: {0}" msgstr "" @@ -29740,7 +29859,7 @@ msgstr "" msgid "You don't have access to Report: {0}" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:808 +#: frappe/website/doctype/web_form/web_form.py:835 msgid "You don't have permission to access the {0} DocType." msgstr "" @@ -29764,7 +29883,7 @@ msgstr "Você tem uma nova mensagem de:" msgid "You have been successfully logged out" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:245 +#: frappe/custom/doctype/customize_form/customize_form.py:247 msgid "You have hit the row size limit on database table: {0}" msgstr "" @@ -29792,7 +29911,7 @@ msgstr "" msgid "You haven't added any Dashboard Charts or Number Cards yet." msgstr "" -#: frappe/public/js/frappe/list/list_view.js:501 +#: frappe/public/js/frappe/list/list_view.js:503 msgid "You haven't created a {0} yet" msgstr "" @@ -29809,11 +29928,11 @@ msgstr "" msgid "You must add atleast one link." msgstr "" -#: frappe/website/doctype/web_form/web_form.py:804 +#: frappe/website/doctype/web_form/web_form.py:831 msgid "You must be logged in to use this form." msgstr "" -#: frappe/website/doctype/web_form/web_form.py:645 +#: frappe/website/doctype/web_form/web_form.py:672 msgid "You must login to submit this form" msgstr "" @@ -29928,6 +30047,10 @@ msgstr "" msgid "You viewed this" msgstr "" +#: frappe/public/js/frappe/router.js:653 +msgid "You will be redirected to:" +msgstr "" + #: frappe/core/doctype/user_invitation/user_invitation.py:113 msgid "You've been invited to join {0}" msgstr "" @@ -29973,7 +30096,7 @@ msgstr "" msgid "Your account has been deleted" msgstr "" -#: frappe/auth.py:514 +#: frappe/auth.py:517 msgid "Your account has been locked and will resume after {0} seconds" msgstr "" @@ -30039,7 +30162,7 @@ msgstr "" msgid "Your report is being generated in the background. You will receive an email on {0} with a download link once it is ready." msgstr "" -#: frappe/app.py:374 +#: frappe/app.py:377 msgid "Your session has expired, please login again to continue." msgstr "" @@ -30376,7 +30499,7 @@ msgstr "" msgid "logged in" msgstr "" -#: frappe/website/doctype/web_form/web_form.js:362 +#: frappe/website/doctype/web_form/web_form.js:363 msgid "login_required" msgstr "" @@ -30714,7 +30837,7 @@ msgstr "" msgid "via Google Meet" msgstr "" -#: frappe/email/doctype/notification/notification.py:403 +#: frappe/email/doctype/notification/notification.py:405 msgid "via Notification" msgstr "" @@ -30824,7 +30947,7 @@ msgstr "" msgid "{0} Dashboard" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:486 +#: frappe/public/js/frappe/form/grid_row.js:487 #: frappe/public/js/frappe/list/list_settings.js:225 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:178 msgid "{0} Fields" @@ -30875,7 +30998,7 @@ msgstr "" msgid "{0} Report" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:956 +#: frappe/public/js/frappe/views/reports/query_report.js:964 msgid "{0} Reports" msgstr "" @@ -30948,7 +31071,7 @@ msgctxt "Form timeline" msgid "{0} attached {1}" msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:152 +#: frappe/core/doctype/system_settings/system_settings.py:153 msgid "{0} can not be more than {1}" msgstr "" @@ -31025,7 +31148,7 @@ msgstr "" msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values" msgstr "" -#: frappe/database/query.py:708 +#: frappe/database/query.py:710 msgid "{0} fields cannot contain backticks (`): {1}" msgstr "" @@ -31070,7 +31193,7 @@ msgstr "" msgid "{0} is a mandatory field" msgstr "" -#: frappe/core/doctype/file/file.py:566 +#: frappe/core/doctype/file/file.py:569 msgid "{0} is a not a valid zip file" msgstr "" @@ -31119,7 +31242,7 @@ msgstr "" msgid "{0} is mandatory" msgstr "{0} é obrigatório" -#: frappe/database/query.py:485 +#: frappe/database/query.py:487 msgid "{0} is not a child table of {1}" msgstr "" @@ -31139,7 +31262,7 @@ msgstr "" msgid "{0} is not a valid Cron expression." msgstr "" -#: frappe/public/js/frappe/form/controls/dynamic_link.js:27 +#: frappe/public/js/frappe/form/controls/dynamic_link.js:23 msgid "{0} is not a valid DocType for Dynamic Link" msgstr "" @@ -31176,7 +31299,7 @@ msgstr "" msgid "{0} is not a valid report format. Report format should one of the following {1}" msgstr "" -#: frappe/core/doctype/file/file.py:546 +#: frappe/core/doctype/file/file.py:549 msgid "{0} is not a zip file" msgstr "" @@ -31224,7 +31347,7 @@ msgstr "" msgid "{0} is within {1}" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1839 +#: frappe/public/js/frappe/list/list_view.js:1841 msgid "{0} items selected" msgstr "" @@ -31310,11 +31433,11 @@ msgid "{0} not found" msgstr "" #: frappe/core/doctype/report/report.py:427 -#: frappe/public/js/frappe/list/list_view.js:1211 +#: frappe/public/js/frappe/list/list_view.js:1213 msgid "{0} of {1}" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1213 +#: frappe/public/js/frappe/list/list_view.js:1215 msgid "{0} of {1} ({2} rows with children)" msgstr "" @@ -31364,7 +31487,7 @@ msgstr "" msgid "{0} removed {1} rows from {2}" msgstr "" -#: frappe/public/js/frappe/roles_editor.js:62 +#: frappe/public/js/frappe/roles_editor.js:64 msgid "{0} role does not have permission on any doctype" msgstr "" @@ -31438,7 +31561,7 @@ msgstr "" msgid "{0} un-shared this document with {1}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:254 +#: frappe/custom/doctype/customize_form/customize_form.py:256 msgid "{0} updated" msgstr "" @@ -31498,7 +31621,7 @@ msgstr "" msgid "{0} {1} not found" msgstr "" -#: frappe/model/delete_doc.py:248 +#: frappe/model/delete_doc.py:288 msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first." msgstr "" @@ -31611,7 +31734,7 @@ msgstr "" msgid "{0}: {1} is set to state {2}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1283 +#: frappe/public/js/frappe/views/reports/query_report.js:1291 msgid "{0}: {1} vs {2}" msgstr "" @@ -31647,11 +31770,11 @@ msgstr "" msgid "{} Complete" msgstr "" -#: frappe/utils/data.py:2541 +#: frappe/utils/data.py:2567 msgid "{} Invalid python code on line {}" msgstr "" -#: frappe/utils/data.py:2550 +#: frappe/utils/data.py:2576 msgid "{} Possibly invalid python code.
{}" msgstr "" @@ -31677,7 +31800,7 @@ msgstr "" msgid "{} is not a valid date string." msgstr "" -#: frappe/commands/utils.py:562 +#: frappe/commands/utils.py:561 msgid "{} not found in PATH! This is required to access the console." msgstr "" diff --git a/frappe/locale/ru.po b/frappe/locale/ru.po index 64dad0c096..ff74f68be0 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-09-21 09:33+0000\n" -"PO-Revision-Date: 2025-09-21 19:57\n" +"POT-Creation-Date: 2025-10-05 09:33+0000\n" +"PO-Revision-Date: 2025-10-06 22:59\n" "Last-Translator: developers@frappe.io\n" "Language-Team: Russian\n" "MIME-Version: 1.0\n" @@ -78,7 +78,7 @@ msgstr "" msgid "'In List View' is not allowed for field {0} of type {1}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:363 +#: frappe/custom/doctype/customize_form/customize_form.py:367 msgid "'In List View' not allowed for type {0} in row {1}" msgstr "" @@ -122,7 +122,7 @@ msgstr "" msgid "0 is highest" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:892 +#: frappe/public/js/frappe/form/grid_row.js:893 msgid "1 = True & 0 = False" msgstr "" @@ -140,11 +140,11 @@ msgstr "" msgid "1 Google Calendar Event synced." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:955 +#: frappe/public/js/frappe/views/reports/query_report.js:963 msgid "1 Report" msgstr "" -#: frappe/tests/test_utils.py:739 +#: frappe/tests/test_utils.py:845 msgid "1 day ago" msgstr "" @@ -153,17 +153,17 @@ msgid "1 hour" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:52 -#: frappe/tests/test_utils.py:737 +#: frappe/tests/test_utils.py:843 msgid "1 hour ago" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:48 -#: frappe/tests/test_utils.py:735 +#: frappe/tests/test_utils.py:841 msgid "1 minute ago" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:66 -#: frappe/tests/test_utils.py:743 +#: frappe/tests/test_utils.py:849 msgid "1 month ago" msgstr "" @@ -185,37 +185,37 @@ msgctxt "User added row to child table" msgid "1 row to {0}" msgstr "" -#: frappe/tests/test_utils.py:734 +#: frappe/tests/test_utils.py:840 msgid "1 second ago" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:62 -#: frappe/tests/test_utils.py:741 +#: frappe/tests/test_utils.py:847 msgid "1 week ago" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:70 -#: frappe/tests/test_utils.py:745 +#: frappe/tests/test_utils.py:851 msgid "1 year ago" msgstr "" -#: frappe/tests/test_utils.py:738 +#: frappe/tests/test_utils.py:844 msgid "2 hours ago" msgstr "" -#: frappe/tests/test_utils.py:744 +#: frappe/tests/test_utils.py:850 msgid "2 months ago" msgstr "" -#: frappe/tests/test_utils.py:742 +#: frappe/tests/test_utils.py:848 msgid "2 weeks ago" msgstr "" -#: frappe/tests/test_utils.py:746 +#: frappe/tests/test_utils.py:852 msgid "2 years ago" msgstr "" -#: frappe/tests/test_utils.py:736 +#: frappe/tests/test_utils.py:842 msgid "3 minutes ago" msgstr "" @@ -231,7 +231,7 @@ msgstr "" msgid "5 Records" msgstr "" -#: frappe/tests/test_utils.py:740 +#: frappe/tests/test_utils.py:846 msgid "5 days ago" msgstr "" @@ -267,6 +267,16 @@ msgstr "" 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 "" +#. Introduction text of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "

Request a file containing your personally identifiable information (PII) that is saved on our system. The file will be in JSON format and is sent to you by email. If you would like to have your PII deleted from our system, please make a request to delete data.

" +msgstr "" + +#. Introduction text of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "

Send a request to delete your account and personally identifiable information (PII) that is stored on our system. You will receive an email to verify your request. Once the request is verified we will take care of deleting your PII. If you just want to check what PII we have stored, you can request your data.

" +msgstr "" + #. Content of the 'Help HTML' (HTML) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -568,6 +578,11 @@ msgstr "" msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three." msgstr "" +#. Success message of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "A download link with your data will be sent to the email address associated with your account." +msgstr "" + #: frappe/custom/doctype/custom_field/custom_field.py:175 msgid "A field with the name {0} already exists in {1}" msgstr "" @@ -694,7 +709,7 @@ msgstr "" #. 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.js:452 frappe/core/doctype/user/user.json +#: frappe/core/doctype/user/user.js:459 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 @@ -713,7 +728,7 @@ msgstr "" msgid "API Key cannot be regenerated" msgstr "" -#: frappe/core/doctype/user/user.js:449 +#: frappe/core/doctype/user/user.js:456 msgid "API Keys" msgstr "" @@ -737,7 +752,7 @@ msgstr "" #. 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.js:459 frappe/core/doctype/user/user.json +#: frappe/core/doctype/user/user.js:466 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" @@ -823,7 +838,7 @@ msgstr "" msgid "Access Token URL" msgstr "" -#: frappe/auth.py:491 +#: frappe/auth.py:494 msgid "Access not allowed from this IP Address" msgstr "" @@ -939,7 +954,7 @@ msgstr "" #: 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:842 +#: frappe/public/js/frappe/views/reports/query_report.js:850 msgid "Actions" msgstr "" @@ -996,7 +1011,7 @@ msgstr "" #: 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:501 +#: frappe/public/js/frappe/form/grid_row.js:502 #: 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 @@ -1007,7 +1022,7 @@ msgstr "" msgid "Add" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:454 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Add / Remove Columns" msgstr "" @@ -1052,8 +1067,8 @@ msgid "Add Child" msgstr "" #: frappe/public/js/frappe/views/kanban/kanban_board.html:4 -#: frappe/public/js/frappe/views/reports/query_report.js:1832 -#: frappe/public/js/frappe/views/reports/query_report.js:1835 +#: frappe/public/js/frappe/views/reports/query_report.js:1840 +#: frappe/public/js/frappe/views/reports/query_report.js:1843 #: frappe/public/js/frappe/views/reports/report_view.js:360 #: frappe/public/js/frappe/views/reports/report_view.js:385 #: frappe/public/js/print_format_builder/Field.vue:112 @@ -1147,7 +1162,7 @@ msgstr "" msgid "Add Tags" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2149 +#: frappe/public/js/frappe/list/list_view.js:2151 msgctxt "Button in list view actions menu" msgid "Add Tags" msgstr "" @@ -1528,11 +1543,11 @@ msgstr "" msgid "Alerts and Notifications" msgstr "" -#: frappe/database/query.py:1608 +#: frappe/database/query.py:1610 msgid "Alias cannot be a SQL keyword: {0}" msgstr "" -#: frappe/database/query.py:1533 +#: frappe/database/query.py:1535 msgid "Alias must be a string" msgstr "" @@ -1979,6 +1994,12 @@ msgstr "" msgid "Alternative Email ID" msgstr "" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Always" +msgstr "" + #. Label of the always_bcc (Data) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Always BCC Address" @@ -2055,6 +2076,11 @@ msgstr "" msgid "Amendment naming rules updated." msgstr "" +#. Success message of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "An email to verify your request has been sent to your email address. Please verify your request to complete the process." +msgstr "" + #: frappe/public/js/frappe/ui/toolbar/toolbar.js:354 msgid "An error occurred while setting Session Defaults" msgstr "" @@ -2237,7 +2263,7 @@ msgstr "" msgid "Apply" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2134 +#: frappe/public/js/frappe/list/list_view.js:2136 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" msgstr "" @@ -2322,7 +2348,7 @@ msgstr "" msgid "Are you sure you want to cancel the invitation?" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2113 +#: frappe/public/js/frappe/list/list_view.js:2115 msgid "Are you sure you want to clear the assignments?" msgstr "" @@ -2358,7 +2384,7 @@ msgstr "" msgid "Are you sure you want to discard the changes?" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:969 +#: frappe/public/js/frappe/views/reports/query_report.js:977 msgid "Are you sure you want to generate a new report?" msgstr "" @@ -2366,7 +2392,7 @@ msgstr "" msgid "Are you sure you want to merge {0} with {1}?" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:108 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:118 msgid "Are you sure you want to proceed?" msgstr "" @@ -2421,6 +2447,12 @@ msgstr "" msgid "As per your request, your account and data on {0} associated with email {1} has been permanently deleted" msgstr "" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Ask" +msgstr "" + #. Label of the assign_condition (Code) field in DocType 'Assignment Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Assign Condition" @@ -2430,7 +2462,7 @@ msgstr "" msgid "Assign To" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2095 +#: frappe/public/js/frappe/list/list_view.js:2097 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "" @@ -2573,7 +2605,7 @@ msgstr "" msgid "Asynchronous" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:696 +#: frappe/public/js/frappe/form/grid_row.js:697 msgid "At least one column is required to show in the grid." msgstr "" @@ -3553,7 +3585,7 @@ msgstr "" msgid "Bulk Edit" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1189 +#: frappe/public/js/frappe/form/grid.js:1190 msgid "Bulk Edit {0}" msgstr "" @@ -3845,7 +3877,7 @@ msgstr "" #. 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/doctype/doctype_list.js:131 #: frappe/core/doctype/user_document_type/user_document_type.json #: frappe/core/doctype/user_invitation/user_invitation.js:17 #: frappe/email/doctype/notification/notification.json @@ -3853,7 +3885,7 @@ msgstr "" msgid "Cancel" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2204 +#: frappe/public/js/frappe/list/list_view.js:2206 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "" @@ -3871,7 +3903,7 @@ msgstr "" msgid "Cancel All Documents" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2209 +#: frappe/public/js/frappe/list/list_view.js:2211 msgctxt "Title of confirmation dialog" msgid "Cancel {0} documents?" msgstr "" @@ -3924,7 +3956,7 @@ msgstr "" msgid "Cannot Update After Submit" msgstr "" -#: frappe/core/doctype/file/file.py:643 +#: frappe/core/doctype/file/file.py:646 msgid "Cannot access file path {0}" msgstr "" @@ -3972,7 +4004,7 @@ msgstr "" msgid "Cannot delete Home and Attachments folders" msgstr "" -#: frappe/model/delete_doc.py:379 +#: frappe/model/delete_doc.py:419 msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}" msgstr "" @@ -4052,7 +4084,7 @@ msgstr "" msgid "Cannot find file {} on disk" msgstr "" -#: frappe/core/doctype/file/file.py:583 +#: frappe/core/doctype/file/file.py:586 msgid "Cannot get file contents of a Folder" msgstr "" @@ -4060,7 +4092,7 @@ msgstr "" msgid "Cannot have multiple printers mapped to a single print format." msgstr "" -#: frappe/public/js/frappe/form/grid.js:1133 +#: frappe/public/js/frappe/form/grid.js:1134 msgid "Cannot import table with more than 5000 rows." msgstr "" @@ -4076,7 +4108,7 @@ msgstr "" msgid "Cannot match column {0} with any field" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:175 +#: frappe/public/js/frappe/form/grid_row.js:176 msgid "Cannot move row" msgstr "" @@ -4105,11 +4137,11 @@ msgstr "" msgid "Cannot update {0}" msgstr "" -#: frappe/model/db_query.py:1130 +#: frappe/model/db_query.py:1136 msgid "Cannot use sub-query here." msgstr "" -#: frappe/model/db_query.py:1162 +#: frappe/model/db_query.py:1168 msgid "Cannot use {0} in order/group by" msgstr "" @@ -4382,11 +4414,11 @@ msgstr "" #. Description of the 'Is Child Table' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:52 +#: frappe/core/doctype/doctype/doctype_list.js:53 msgid "Child Tables are shown as a Grid in other DocTypes" msgstr "" -#: frappe/database/query.py:660 +#: frappe/database/query.py:662 msgid "Child query fields for '{0}' must be a list or tuple." msgstr "" @@ -4442,7 +4474,7 @@ msgstr "" msgid "Clear All" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2110 +#: frappe/public/js/frappe/list/list_view.js:2112 msgctxt "Button in list view actions menu" msgid "Clear Assignment" msgstr "" @@ -4536,7 +4568,7 @@ msgstr "" msgid "Click to Set Filters" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:739 +#: frappe/public/js/frappe/list/list_view.js:741 msgid "Click to sort by {0}" msgstr "" @@ -4714,7 +4746,7 @@ msgctxt "Shrink code field." msgid "Collapse" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2113 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 #: frappe/public/js/frappe/views/treeview.js:123 msgid "Collapse All" msgstr "" @@ -4769,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:1233 +#: frappe/public/js/frappe/views/reports/query_report.js:1241 #: frappe/public/js/frappe/widgets/widget_dialog.js:546 #: frappe/public/js/frappe/widgets/widget_dialog.js:694 #: frappe/website/doctype/color/color.json @@ -4825,11 +4857,11 @@ msgstr "" msgid "Column Name cannot be empty" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:454 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Column Width" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:661 +#: frappe/public/js/frappe/form/grid_row.js:662 msgid "Column width cannot be zero." msgstr "" @@ -4856,7 +4888,7 @@ msgstr "" msgid "Columns / Fields" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:397 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:411 msgid "Columns based on" msgstr "" @@ -5120,7 +5152,7 @@ msgstr "" msgid "Configure Chart" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:406 +#: frappe/public/js/frappe/form/grid_row.js:407 msgid "Configure Columns" msgstr "" @@ -5145,7 +5177,7 @@ msgstr "" msgid "Configure various aspects of how document naming works like naming series, current counter." msgstr "" -#: frappe/core/doctype/user/user.js:412 frappe/public/js/frappe/dom.js:345 +#: frappe/core/doctype/user/user.js:400 frappe/public/js/frappe/dom.js:345 #: frappe/www/update-password.html:66 msgid "Confirm" msgstr "" @@ -5164,7 +5196,7 @@ msgstr "Подтвердите доступ" msgid "Confirm Deletion of Account" msgstr "" -#: frappe/core/doctype/user/user.js:196 +#: frappe/core/doctype/user/user.js:184 msgid "Confirm New Password" msgstr "" @@ -5417,7 +5449,7 @@ msgstr "" msgid "Copy to Clipboard" msgstr "" -#: frappe/core/doctype/user/user.js:480 +#: frappe/core/doctype/user/user.js:487 msgid "Copy token to clipboard" msgstr "" @@ -5426,7 +5458,7 @@ msgstr "" msgid "Copyright" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:123 +#: frappe/custom/doctype/customize_form/customize_form.py:125 msgid "Core DocTypes cannot be customized." msgstr "" @@ -5450,7 +5482,7 @@ msgstr "" msgid "Could not map column {0} to field {1}" msgstr "" -#: frappe/database/query.py:564 +#: frappe/database/query.py:566 msgid "Could not parse field: {0}" msgstr "" @@ -5542,13 +5574,13 @@ 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:1265 +#: frappe/public/js/frappe/views/reports/query_report.js:1273 #: frappe/public/js/frappe/views/workspace/workspace.js:469 #: frappe/workflow/page/workflow_builder/workflow_builder.js:46 msgid "Create" msgstr "" -#: frappe/core/doctype/doctype/doctype_list.js:102 +#: frappe/core/doctype/doctype/doctype_list.js:103 msgid "Create & Continue" msgstr "" @@ -5562,7 +5594,7 @@ msgid "Create Card" msgstr "" #: frappe/public/js/frappe/views/reports/query_report.js:285 -#: frappe/public/js/frappe/views/reports/query_report.js:1192 +#: frappe/public/js/frappe/views/reports/query_report.js:1200 msgid "Create Chart" msgstr "" @@ -5596,12 +5628,12 @@ msgstr "" msgid "Create New" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:512 +#: frappe/public/js/frappe/list/list_view.js:514 msgctxt "Create a new document from list view" msgid "Create New" msgstr "" -#: frappe/core/doctype/doctype/doctype_list.js:100 +#: frappe/core/doctype/doctype/doctype_list.js:101 msgid "Create New DocType" msgstr "" @@ -5609,7 +5641,7 @@ msgstr "" msgid "Create New Kanban Board" msgstr "" -#: frappe/core/doctype/user/user.js:276 +#: frappe/core/doctype/user/user.js:264 msgid "Create User Email" msgstr "" @@ -5632,8 +5664,8 @@ msgstr "" #: frappe/public/js/frappe/form/controls/link.js:315 #: frappe/public/js/frappe/form/controls/link.js:317 #: frappe/public/js/frappe/form/link_selector.js:139 -#: frappe/public/js/frappe/list/list_view.js:504 -#: frappe/public/js/frappe/web_form/web_form_list.js:225 +#: frappe/public/js/frappe/list/list_view.js:506 +#: frappe/public/js/frappe/web_form/web_form_list.js:226 msgid "Create a new {0}" msgstr "" @@ -5649,7 +5681,7 @@ msgstr "" msgid "Create or Edit Workflow" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:507 +#: frappe/public/js/frappe/list/list_view.js:509 msgid "Create your first {0}" msgstr "" @@ -5996,7 +6028,7 @@ 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/core/doctype/doctype/doctype_list.js:83 #: frappe/website/doctype/website_theme/website_theme.json msgid "Custom?" msgstr "" @@ -6031,7 +6063,7 @@ msgstr "" msgid "Customize" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1947 +#: frappe/public/js/frappe/list/list_view.js:1949 msgctxt "Button in list view menu" msgid "Customize" msgstr "" @@ -6050,7 +6082,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:343 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 msgid "Customize Form" msgstr "" @@ -6281,7 +6313,7 @@ msgstr "" msgid "Data Import Template" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:615 +#: frappe/custom/doctype/customize_form/customize_form.py:619 msgid "Data Too Long" msgstr "" @@ -6312,7 +6344,7 @@ msgstr "" msgid "Database Storage Usage By Tables" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:249 +#: frappe/custom/doctype/customize_form/customize_form.py:251 msgid "Database Table Row Size Limit" msgstr "" @@ -6682,13 +6714,13 @@ msgstr "" #: frappe/public/js/frappe/form/toolbar.js:464 #: frappe/public/js/frappe/views/reports/report_view.js:1749 #: frappe/public/js/frappe/views/treeview.js:329 -#: frappe/public/js/frappe/web_form/web_form_list.js:282 +#: frappe/public/js/frappe/web_form/web_form_list.js:283 #: frappe/templates/discussions/reply_card.html:35 #: frappe/templates/discussions/reply_section.html:29 msgid "Delete" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2172 +#: frappe/public/js/frappe/list/list_view.js:2174 msgctxt "Button in list view actions menu" msgid "Delete" msgstr "" @@ -6721,7 +6753,7 @@ msgstr "" msgid "Delete Data" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:106 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:116 msgid "Delete Kanban Board" msgstr "" @@ -6735,7 +6767,7 @@ msgctxt "Title of confirmation dialog" msgid "Delete Tab" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:936 +#: frappe/public/js/frappe/views/reports/query_report.js:944 msgid "Delete and Generate New" msgstr "" @@ -6777,12 +6809,12 @@ msgstr "" msgid "Delete this record to allow sending to this email address" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2177 +#: frappe/public/js/frappe/list/list_view.js:2179 msgctxt "Title of confirmation dialog" msgid "Delete {0} item permanently?" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2183 +#: frappe/public/js/frappe/list/list_view.js:2185 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "" @@ -7279,10 +7311,14 @@ msgstr "Не создавать нового пользователя" msgid "Do not create new user if user with email does not exist in the system" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1194 +#: frappe/public/js/frappe/form/grid.js:1195 msgid "Do not edit headers which are preset in the template" msgstr "" +#: frappe/public/js/frappe/router.js:624 +msgid "Do not warn me again about {0}" +msgstr "" + #: frappe/core/doctype/system_settings/system_settings.js:71 msgid "Do you still want to proceed?" msgstr "" @@ -7706,7 +7742,7 @@ msgstr "" #: 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/public/js/frappe/roles_editor.js:68 #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json #: frappe/workflow/doctype/workflow/workflow.json msgid "Document Type" @@ -7757,15 +7793,15 @@ msgstr "" msgid "Document follow is not enabled for this user." msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1300 +#: frappe/public/js/frappe/list/list_view.js:1302 msgid "Document has been cancelled" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1299 +#: frappe/public/js/frappe/list/list_view.js:1301 msgid "Document has been submitted" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1298 +#: frappe/public/js/frappe/list/list_view.js:1300 msgid "Document is in draft state" msgstr "" @@ -7907,7 +7943,7 @@ msgstr "" msgid "Double click to edit label" msgstr "" -#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:467 +#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:474 #: frappe/email/doctype/auto_email_report/auto_email_report.js:8 #: frappe/public/js/frappe/form/grid.js:66 msgid "Download" @@ -7940,7 +7976,7 @@ msgstr "" msgid "Download PDF" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:832 +#: frappe/public/js/frappe/views/reports/query_report.js:840 msgid "Download Report" msgstr "" @@ -8140,8 +8176,8 @@ msgstr "" #: 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:880 -#: frappe/public/js/frappe/views/reports/query_report.js:1783 +#: frappe/public/js/frappe/views/reports/query_report.js:888 +#: frappe/public/js/frappe/views/reports/query_report.js:1791 #: 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 @@ -8153,7 +8189,7 @@ msgstr "" msgid "Edit" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2258 +#: frappe/public/js/frappe/list/list_view.js:2260 msgctxt "Button in list view actions menu" msgid "Edit" msgstr "" @@ -8163,7 +8199,7 @@ msgctxt "Button in web form" msgid "Edit" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:349 +#: frappe/public/js/frappe/form/grid_row.js:350 msgctxt "Edit grid row" msgid "Edit" msgstr "" @@ -8192,7 +8228,7 @@ msgstr "" msgid "Edit DocType" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1974 +#: frappe/public/js/frappe/list/list_view.js:1976 msgctxt "Button in list view menu" msgid "Edit DocType" msgstr "" @@ -8312,7 +8348,7 @@ msgstr "" #. 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/core/doctype/doctype/doctype_list.js:58 #: frappe/custom/doctype/customize_form/customize_form.json msgid "Editable Grid" msgstr "" @@ -8357,6 +8393,8 @@ msgstr "" #. 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' +#. Label of a field in the request-data Web Form +#. Label of a field in the request-to-delete-data Web Form #: frappe/automation/workspace/tools/tools.json #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/custom_docperm/custom_docperm.json @@ -8375,6 +8413,8 @@ msgstr "" #: 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/website/web_form/request_data/request_data.json +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json #: frappe/www/login.html:8 frappe/www/login.py:104 msgid "Email" msgstr "" @@ -8606,7 +8646,7 @@ msgstr "" msgid "Email has been moved to trash" msgstr "" -#: frappe/core/doctype/user/user.js:278 +#: frappe/core/doctype/user/user.js:266 msgid "Email is mandatory to create User Email" msgstr "" @@ -8649,7 +8689,7 @@ msgstr "" msgid "Embed code copied" msgstr "" -#: frappe/database/query.py:1537 +#: frappe/database/query.py:1539 msgid "Empty alias is not allowed" msgstr "" @@ -8657,7 +8697,7 @@ msgstr "" msgid "Empty column" msgstr "" -#: frappe/database/query.py:1455 +#: frappe/database/query.py:1457 msgid "Empty string arguments are not allowed" msgstr "" @@ -9113,9 +9153,9 @@ msgstr "" msgid "Error in Header/Footer Script" msgstr "" -#: frappe/email/doctype/notification/notification.py:640 -#: frappe/email/doctype/notification/notification.py:780 -#: frappe/email/doctype/notification/notification.py:786 +#: frappe/email/doctype/notification/notification.py:642 +#: frappe/email/doctype/notification/notification.py:782 +#: frappe/email/doctype/notification/notification.py:788 msgid "Error in Notification" msgstr "" @@ -9135,7 +9175,7 @@ msgstr "" msgid "Error while connecting to email account {0}" msgstr "" -#: frappe/email/doctype/notification/notification.py:777 +#: frappe/email/doctype/notification/notification.py:779 msgid "Error while evaluating Notification {0}. Please fix your template." msgstr "" @@ -9296,7 +9336,7 @@ msgstr "" msgid "Executing..." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2132 +#: frappe/public/js/frappe/views/reports/query_report.js:2140 msgid "Execution Time: {0} sec" msgstr "" @@ -9322,12 +9362,12 @@ msgctxt "Enlarge code field." msgid "Expand" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2113 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 #: frappe/public/js/frappe/views/treeview.js:133 msgid "Expand All" msgstr "" -#: frappe/database/query.py:352 +#: frappe/database/query.py:354 msgid "Expected 'and' or 'or' operator, found: {0}" msgstr "" @@ -9385,13 +9425,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:1820 +#: frappe/public/js/frappe/views/reports/query_report.js:1828 #: frappe/public/js/frappe/views/reports/report_view.js:1629 #: frappe/public/js/frappe/widgets/chart_widget.js:315 msgid "Export" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2280 +#: frappe/public/js/frappe/list/list_view.js:2282 msgctxt "Button in list view actions menu" msgid "Export" msgstr "" @@ -9584,7 +9624,7 @@ msgstr "" msgid "Failed to connect to server" msgstr "" -#: frappe/auth.py:698 +#: frappe/auth.py:701 msgid "Failed to decode token, please provide a valid base64-encoded token." msgstr "" @@ -9748,7 +9788,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:236 -#: frappe/public/js/frappe/views/reports/query_report.js:1879 +#: frappe/public/js/frappe/views/reports/query_report.js:1887 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_form_list_column/web_form_list_column.json msgid "Field" @@ -9831,7 +9871,7 @@ msgstr "" msgid "Field {0} not found." msgstr "" -#: frappe/email/doctype/notification/notification.py:545 +#: frappe/email/doctype/notification/notification.py:547 msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link" msgstr "" @@ -9849,7 +9889,7 @@ msgstr "" #: 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:454 +#: frappe/public/js/frappe/form/grid_row.js:455 #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Fieldname" msgstr "" @@ -9930,7 +9970,7 @@ msgstr "" msgid "Fields must be a list or tuple when as_list is enabled" msgstr "" -#: frappe/database/query.py:611 +#: frappe/database/query.py:613 msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function" msgstr "" @@ -9958,7 +9998,7 @@ msgstr "" msgid "Fieldtype cannot be changed from {0} to {1}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:589 +#: frappe/custom/doctype/customize_form/customize_form.py:593 msgid "Fieldtype cannot be changed from {0} to {1} in row {2}" msgstr "" @@ -10024,7 +10064,7 @@ msgstr "" msgid "File backup is ready" msgstr "" -#: frappe/core/doctype/file/file.py:646 +#: frappe/core/doctype/file/file.py:649 msgid "File name cannot have {0}" msgstr "" @@ -10032,7 +10072,7 @@ msgstr "" msgid "File not attached" msgstr "" -#: frappe/core/doctype/file/file.py:756 frappe/public/js/frappe/request.js:200 +#: frappe/core/doctype/file/file.py:759 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 "" @@ -10045,7 +10085,7 @@ msgstr "" msgid "File type of {0} is not allowed" msgstr "" -#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:448 +#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:451 msgid "File {0} does not exist" msgstr "" @@ -10099,11 +10139,11 @@ msgstr "" msgid "Filter Values" msgstr "" -#: frappe/database/query.py:358 +#: frappe/database/query.py:360 msgid "Filter condition missing after operator: {0}" msgstr "" -#: frappe/database/query.py:425 +#: frappe/database/query.py:427 msgid "Filter fields cannot contain backticks (`)." msgstr "" @@ -10180,7 +10220,7 @@ msgstr "" msgid "Filters applied for {0}" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:188 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:202 msgid "Filters saved" msgstr "" @@ -10228,9 +10268,12 @@ msgstr "" #. Label of the first_name (Data) field in DocType 'Contact' #. Label of the first_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json #: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:44 -#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:15 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:15 msgid "First Name" msgstr "" @@ -10311,7 +10354,7 @@ msgstr "" msgid "Folder name should not include '/' (slash)" msgstr "" -#: frappe/core/doctype/file/file.py:494 +#: frappe/core/doctype/file/file.py:497 msgid "Folder {0} is not empty" msgstr "" @@ -10513,7 +10556,7 @@ msgstr "" msgid "For Value" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2129 +#: frappe/public/js/frappe/views/reports/query_report.js:2137 #: frappe/public/js/frappe/views/reports/report_view.js:108 msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)." msgstr "" @@ -10798,7 +10841,7 @@ msgstr "" msgid "From Date Field" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1840 +#: frappe/public/js/frappe/views/reports/query_report.js:1848 msgid "From Document Type" msgstr "" @@ -10860,12 +10903,12 @@ msgstr "" msgid "Function {0} is not whitelisted." msgstr "" -#: frappe/database/query.py:1417 +#: frappe/database/query.py:1419 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" +msgid "Further sub-groups can only be created under records marked as 'Group'" msgstr "" #: frappe/core/doctype/communication/communication.js:291 @@ -10925,7 +10968,7 @@ msgstr "" msgid "Generate Keys" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:874 +#: frappe/public/js/frappe/views/reports/query_report.js:882 msgid "Generate New Report" msgstr "" @@ -11341,14 +11384,10 @@ msgstr "" msgid "Group By field is required to create a dashboard chart" msgstr "" -#: frappe/database/query.py:750 +#: frappe/database/query.py:752 msgid "Group By must be a string" msgstr "" -#: frappe/public/js/frappe/views/treeview.js:418 -msgid "Group Node" -msgstr "" - #. Label of the ldap_group_objectclass (Data) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Group Object Class" @@ -11678,7 +11717,7 @@ msgstr "" msgid "Hidden Fields" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1642 +#: frappe/public/js/frappe/views/reports/query_report.js:1650 msgid "Hidden columns include: {0}" msgstr "" @@ -11790,7 +11829,7 @@ msgstr "" msgid "Hide Standard Menu" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1849 +#: frappe/public/js/frappe/list/list_view.js:1851 msgid "Hide Tags" msgstr "" @@ -12049,7 +12088,7 @@ msgstr "" #: frappe/core/doctype/doctype/doctype.py:1777 #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45 -#: frappe/public/js/frappe/roles_editor.js:66 +#: frappe/public/js/frappe/roles_editor.js:68 msgid "If Owner" msgstr "" @@ -12277,8 +12316,8 @@ msgstr "" msgid "Illegal Document Status for {0}" msgstr "" -#: frappe/model/db_query.py:453 frappe/model/db_query.py:456 -#: frappe/model/db_query.py:1121 +#: frappe/model/db_query.py:454 frappe/model/db_query.py:457 +#: frappe/model/db_query.py:1122 msgid "Illegal SQL Query" msgstr "" @@ -12365,11 +12404,11 @@ msgstr "" #. Option for the 'Operation' (Select) field in DocType 'Activity Log' #: frappe/core/doctype/activity_log/activity_log.json -#: frappe/core/doctype/user/user.js:384 +#: frappe/core/doctype/user/user.js:372 msgid "Impersonate" msgstr "" -#: frappe/core/doctype/user/user.js:411 +#: frappe/core/doctype/user/user.js:399 msgid "Impersonate as {0}" msgstr "" @@ -12399,7 +12438,7 @@ msgstr "" msgid "Import" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1911 +#: frappe/public/js/frappe/list/list_view.js:1913 msgctxt "Button in list view menu" msgid "Import" msgstr "" @@ -12628,15 +12667,15 @@ msgid "Include Web View Link in Email" msgstr "" #: frappe/public/js/frappe/form/print_utils.js:59 -#: frappe/public/js/frappe/views/reports/query_report.js:1620 +#: frappe/public/js/frappe/views/reports/query_report.js:1628 msgid "Include filters" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1640 +#: frappe/public/js/frappe/views/reports/query_report.js:1648 msgid "Include hidden columns" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1612 +#: frappe/public/js/frappe/views/reports/query_report.js:1620 msgid "Include indentation" msgstr "" @@ -12683,7 +12722,7 @@ msgstr "" msgid "Incomplete Virtual Doctype Implementation" msgstr "" -#: frappe/auth.py:255 +#: frappe/auth.py:258 msgid "Incomplete login details" msgstr "" @@ -12794,7 +12833,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:1885 +#: frappe/public/js/frappe/views/reports/query_report.js:1893 msgid "Insert After" msgstr "" @@ -12867,7 +12906,7 @@ msgstr "" msgid "Insufficient Permission Level for {0}" msgstr "" -#: frappe/database/query.py:806 frappe/database/query.py:1052 +#: frappe/database/query.py:808 frappe/database/query.py:1054 msgid "Insufficient Permission for {0}" msgstr "" @@ -12983,7 +13022,7 @@ msgid "Invalid" msgstr "" #: frappe/public/js/form_builder/utils.js:221 -#: frappe/public/js/frappe/form/grid_row.js:849 +#: frappe/public/js/frappe/form/grid_row.js:850 #: frappe/public/js/frappe/form/layout.js:810 #: frappe/public/js/frappe/views/reports/report_view.js:721 msgid "Invalid \"depends_on\" expression" @@ -13041,8 +13080,8 @@ 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 +#: frappe/database/query.py:429 frappe/database/query.py:456 +#: frappe/database/query.py:466 frappe/database/query.py:489 msgid "Invalid Filter" msgstr "" @@ -13114,7 +13153,7 @@ msgstr "" msgid "Invalid Phone Number" msgstr "" -#: frappe/auth.py:94 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 +#: frappe/auth.py:97 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 #: frappe/www/login.py:128 msgid "Invalid Request" msgstr "" @@ -13154,7 +13193,7 @@ msgstr "" msgid "Invalid aggregate function" msgstr "" -#: frappe/database/query.py:1542 +#: frappe/database/query.py:1544 msgid "Invalid alias format: {0}. Alias must be a simple identifier." msgstr "" @@ -13162,19 +13201,19 @@ msgstr "" msgid "Invalid app" msgstr "" -#: frappe/database/query.py:1468 +#: frappe/database/query.py:1470 msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed." msgstr "" -#: frappe/database/query.py:1444 +#: frappe/database/query.py:1446 msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed." msgstr "" -#: frappe/database/query.py:460 +#: frappe/database/query.py:462 msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed." msgstr "" -#: frappe/database/query.py:575 +#: frappe/database/query.py:577 msgid "Invalid characters in table name: {0}" msgstr "" @@ -13182,11 +13221,11 @@ msgstr "" msgid "Invalid column" msgstr "" -#: frappe/database/query.py:381 +#: frappe/database/query.py:383 msgid "Invalid condition type in nested filters: {0}" msgstr "" -#: frappe/database/query.py:787 +#: frappe/database/query.py:789 msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'." msgstr "" @@ -13202,23 +13241,23 @@ msgstr "" msgid "Invalid expression set in filter {0} ({1})" msgstr "" -#: frappe/database/query.py:1301 +#: frappe/database/query.py:1303 msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'." msgstr "" -#: frappe/database/query.py:734 +#: frappe/database/query.py:736 msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'." msgstr "" -#: frappe/database/query.py:1620 +#: frappe/database/query.py:1622 msgid "Invalid field name in function: {0}. Only simple field names are allowed." msgstr "" -#: frappe/utils/data.py:2215 +#: frappe/utils/data.py:2241 msgid "Invalid field name {0}" msgstr "" -#: frappe/database/query.py:668 +#: frappe/database/query.py:670 msgid "Invalid field type: {0}" msgstr "" @@ -13230,11 +13269,11 @@ msgstr "" msgid "Invalid file path: {0}" msgstr "" -#: frappe/database/query.py:364 +#: frappe/database/query.py:366 msgid "Invalid filter condition: {0}. Expected a list or tuple." msgstr "" -#: frappe/database/query.py:450 +#: frappe/database/query.py:452 msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'." msgstr "" @@ -13242,11 +13281,11 @@ msgstr "" msgid "Invalid filter: {0}" msgstr "" -#: frappe/database/query.py:1422 +#: frappe/database/query.py:1424 msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed." msgstr "" -#: frappe/database/query.py:1383 +#: frappe/database/query.py:1385 msgid "Invalid function dictionary format" msgstr "" @@ -13283,23 +13322,27 @@ msgstr "" msgid "Invalid redirect regex in row #{}: {}" msgstr "" -#: frappe/app.py:337 +#: frappe/app.py:340 msgid "Invalid request arguments" msgstr "" +#: frappe/app.py:327 +msgid "Invalid request body" +msgstr "" + #: frappe/core/doctype/user_invitation/user_invitation.py:181 msgid "Invalid role" msgstr "" -#: frappe/database/query.py:410 +#: frappe/database/query.py:412 msgid "Invalid simple filter format: {0}" msgstr "" -#: frappe/database/query.py:341 +#: frappe/database/query.py:343 msgid "Invalid start for filter condition: {0}. Expected a list or tuple." msgstr "" -#: frappe/database/query.py:1489 +#: frappe/database/query.py:1491 msgid "Invalid string literal format: {0}" msgstr "" @@ -13403,7 +13446,7 @@ msgstr "" #. 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/doctype_list.js:50 #: frappe/core/doctype/doctype_link/doctype_link.json msgid "Is Child Table" msgstr "" @@ -13456,6 +13499,10 @@ msgstr "" msgid "Is Global" msgstr "" +#: frappe/public/js/frappe/views/treeview.js:418 +msgid "Is Group" +msgstr "" + #. Label of the is_hidden (Check) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "Is Hidden" @@ -13544,7 +13591,7 @@ 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/core/doctype/doctype/doctype_list.js:65 #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Is Single" msgstr "" @@ -13580,7 +13627,7 @@ msgstr "" #. Label of the is_submittable (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:39 +#: frappe/core/doctype/doctype/doctype_list.js:40 msgid "Is Submittable" msgstr "" @@ -13786,11 +13833,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:388 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:402 msgid "Kanban Board Name" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:265 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:279 msgctxt "Button in kanban view menu" msgid "Kanban Settings" msgstr "" @@ -14088,10 +14135,13 @@ msgstr "" #. 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' +#. Label of a field in the edit-profile Web Form #: 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:117 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/printing/page/print/print.js:117 #: frappe/public/js/frappe/form/templates/print_layout.html:11 msgid "Language" msgstr "" @@ -14179,9 +14229,12 @@ msgstr "" #. Label of the last_name (Data) field in DocType 'Contact' #. Label of the last_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json #: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:45 -#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:19 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:19 msgid "Last Name" msgstr "" @@ -14422,7 +14475,7 @@ msgstr "" #: 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/public/js/frappe/roles_editor.js:68 #: frappe/website/doctype/help_article/help_article.json msgid "Level" msgstr "" @@ -14715,7 +14768,7 @@ msgstr "" msgid "List Settings" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1991 +#: frappe/public/js/frappe/list/list_view.js:1993 msgctxt "Button in list view menu" msgid "List Settings" msgstr "" @@ -14766,7 +14819,7 @@ msgid "Load Balancing" msgstr "" #: frappe/public/js/frappe/list/base_list.js:399 -#: frappe/public/js/frappe/web_form/web_form_list.js:305 +#: frappe/public/js/frappe/web_form/web_form_list.js:306 #: frappe/website/doctype/help_article/templates/help_article_list.html:30 msgid "Load More" msgstr "" @@ -14786,7 +14839,7 @@ msgstr "" #: frappe/public/js/frappe/list/base_list.js:526 #: frappe/public/js/frappe/list/list_view.js:363 #: frappe/public/js/frappe/ui/listing.html:16 -#: frappe/public/js/frappe/views/reports/query_report.js:1089 +#: frappe/public/js/frappe/views/reports/query_report.js:1097 msgid "Loading" msgstr "" @@ -14929,7 +14982,7 @@ msgstr "" msgid "Login and view in Browser" msgstr "" -#: frappe/website/doctype/web_form/web_form.js:367 +#: frappe/website/doctype/web_form/web_form.js:368 msgid "Login is required to see web form list view. Enable {0} to see list settings" msgstr "" @@ -14937,7 +14990,7 @@ msgstr "" msgid "Login link sent to your email" msgstr "" -#: frappe/auth.py:339 frappe/auth.py:342 +#: frappe/auth.py:342 frappe/auth.py:345 msgid "Login not allowed at this time" msgstr "" @@ -14990,7 +15043,7 @@ msgstr "" msgid "Login with email link expiry (in minutes)" msgstr "" -#: frappe/auth.py:144 +#: frappe/auth.py:147 msgid "Login with username and password is not allowed." msgstr "" @@ -15009,7 +15062,7 @@ msgstr "" msgid "Logout" msgstr "" -#: frappe/core/doctype/user/user.js:202 +#: frappe/core/doctype/user/user.js:190 msgid "Logout All Sessions" msgstr "" @@ -15113,7 +15166,10 @@ msgid "Major" msgstr "" #. Label of the show_name_in_global_search (Check) field in DocType 'DocType' +#. Label of the show_name_in_global_search (Check) field in DocType 'Customize +#. Form' #: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Make \"name\" searchable in Global Search" msgstr "" @@ -15189,7 +15245,7 @@ msgstr "" msgid "Mandatory Depends On (JS)" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:509 +#: frappe/website/doctype/web_form/web_form.py:536 msgid "Mandatory Information missing:" msgstr "" @@ -15646,6 +15702,11 @@ msgstr "" msgid "Middle Name" msgstr "" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Middle Name (Optional)" +msgstr "" + #. Name of a DocType #. Label of a Link in the Tools Workspace #: frappe/automation/doctype/milestone/milestone.json @@ -15752,6 +15813,11 @@ msgstr "" msgid "Mobile No" msgstr "" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Mobile Number" +msgstr "" + #. 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" @@ -15777,7 +15843,7 @@ msgstr "" #. 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/doctype/doctype_list.js:31 #: 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 @@ -15953,10 +16019,12 @@ msgstr "" #. Label of the additional_info (Section Break) field in DocType #. 'Communication' #. Label of the short_bio (Tab Break) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: 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 +#: frappe/core/web_form/edit_profile/edit_profile.json msgid "More Information" msgstr "" @@ -15986,7 +16054,7 @@ msgstr "" msgid "Move" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:193 +#: frappe/public/js/frappe/form/grid_row.js:194 msgid "Move To" msgstr "" @@ -16022,7 +16090,7 @@ msgstr "" msgid "Move the current field and the following fields to a new column" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:168 +#: frappe/public/js/frappe/form/grid_row.js:169 msgid "Move to Row Number" msgstr "" @@ -16090,7 +16158,7 @@ msgid "Mx" msgstr "" #: frappe/templates/includes/web_sidebar.html:41 -#: frappe/website/doctype/web_form/web_form.py:498 +#: frappe/website/doctype/web_form/web_form.py:525 #: 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" @@ -16232,12 +16300,12 @@ msgstr "" msgid "Navbar Template Values" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1378 +#: frappe/public/js/frappe/list/list_view.js:1380 msgctxt "Description of a list view shortcut" msgid "Navigate list down" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1385 +#: frappe/public/js/frappe/list/list_view.js:1387 msgctxt "Description of a list view shortcut" msgid "Navigate list up" msgstr "" @@ -16252,6 +16320,10 @@ msgstr "" msgid "Navigation Settings" msgstr "" +#: frappe/public/js/frappe/list/list_view.js:485 +msgid "Need Help?" +msgstr "" + #: frappe/desk/doctype/workspace/workspace.py:322 msgid "Need Workspace Manager role to edit private workspace of other users" msgstr "" @@ -16260,7 +16332,7 @@ msgstr "" msgid "Negative Value" msgstr "" -#: frappe/database/query.py:333 +#: frappe/database/query.py:335 msgid "Nested filters must be provided as a list or tuple." msgstr "" @@ -16273,6 +16345,12 @@ msgstr "" msgid "Network Printer Settings" msgstr "" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Never" +msgstr "" + #. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/core/doctype/success_action/success_action.js:57 @@ -16281,7 +16359,7 @@ msgstr "" #: 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/treeview.js:473 #: frappe/public/js/frappe/views/workspace/workspace.js:64 #: frappe/website/doctype/web_form/templates/web_list.html:15 #: frappe/www/list.html:19 @@ -16342,7 +16420,7 @@ msgstr "" msgid "New Folder" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 msgid "New Kanban Board" msgstr "" @@ -16377,7 +16455,7 @@ msgstr "" msgid "New Onboarding" msgstr "" -#: frappe/core/doctype/user/user.js:190 frappe/www/update-password.html:43 +#: frappe/core/doctype/user/user.js:178 frappe/www/update-password.html:43 msgid "New Password" msgstr "" @@ -16473,7 +16551,7 @@ msgstr "" #: frappe/public/js/frappe/ui/toolbar/search_utils.js:227 #: 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:411 +#: frappe/website/doctype/web_form/web_form.py:438 msgid "New {0}" msgstr "" @@ -16625,7 +16703,7 @@ msgstr "" #: frappe/public/js/form_builder/utils.js:341 #: frappe/public/js/frappe/form/controls/link.js:498 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1665 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 #: frappe/website/doctype/help_article/templates/help_article.html:26 msgid "No" msgstr "" @@ -16774,7 +16852,7 @@ msgstr "" msgid "No Roles Specified" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 msgid "No Select Field Found" msgstr "" @@ -16858,7 +16936,7 @@ msgstr "" msgid "No failed logs" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:371 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:385 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 "" @@ -16882,7 +16960,7 @@ msgstr "" msgid "No matching records. Search something new" msgstr "" -#: frappe/public/js/frappe/web_form/web_form_list.js:161 +#: frappe/public/js/frappe/web_form/web_form_list.js:162 msgid "No more items to display" msgstr "" @@ -16926,7 +17004,7 @@ msgctxt "{0} = verb, {1} = object" msgid "No permission to '{0}' {1}" msgstr "" -#: frappe/model/db_query.py:948 +#: frappe/model/db_query.py:949 msgid "No permission to read {0}" msgstr "" @@ -16974,11 +17052,11 @@ msgstr "" msgid "No {0} Found" msgstr "" -#: frappe/public/js/frappe/web_form/web_form_list.js:233 +#: frappe/public/js/frappe/web_form/web_form_list.js:234 msgid "No {0} found" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:497 +#: frappe/public/js/frappe/list/list_view.js:499 msgid "No {0} found with matching filters. Clear filters to see all {0}." msgstr "" @@ -16987,7 +17065,7 @@ msgid "No {0} mail" msgstr "" #: frappe/public/js/form_builder/utils.js:117 -#: frappe/public/js/frappe/form/grid_row.js:256 +#: frappe/public/js/frappe/form/grid_row.js:257 msgctxt "Title of the 'row number' column" msgid "No." msgstr "" @@ -17051,7 +17129,7 @@ msgstr "" msgid "Not Equals" msgstr "" -#: frappe/app.py:387 frappe/www/404.html:3 +#: frappe/app.py:390 frappe/www/404.html:3 msgid "Not Found" msgstr "" @@ -17077,9 +17155,9 @@ msgstr "" msgid "Not Nullable" msgstr "" -#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26 +#: frappe/__init__.py:550 frappe/app.py:383 frappe/desk/calendar.py:26 #: frappe/public/js/frappe/web_form/webform_script.js:15 -#: frappe/website/doctype/web_form/web_form.py:747 +#: frappe/website/doctype/web_form/web_form.py:774 #: 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 @@ -17098,7 +17176,7 @@ msgstr "" #: 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/kanban/kanban_view.js:183 #: frappe/public/js/frappe/views/reports/report_view.js:209 #: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39 #: frappe/website/doctype/web_form/templates/web_form.html:85 @@ -17149,7 +17227,7 @@ msgstr "" msgid "Not allowed for {0}: {1}" msgstr "" -#: frappe/email/doctype/notification/notification.py:637 +#: frappe/email/doctype/notification/notification.py:639 msgid "Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings" msgstr "" @@ -17181,12 +17259,12 @@ msgstr "" msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType." msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:216 +#: frappe/core/doctype/system_settings/system_settings.py:217 #: 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:760 +#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:787 #: frappe/website/js/website.js:97 msgid "Not permitted" msgstr "" @@ -17232,7 +17310,7 @@ msgstr "" msgid "Note: Multiple sessions will be allowed in case of mobile device" msgstr "" -#: frappe/core/doctype/user/user.js:399 +#: frappe/core/doctype/user/user.js:387 msgid "Note: This will be shared with user." msgstr "" @@ -17304,15 +17382,15 @@ msgstr "" msgid "Notification sent to" msgstr "" -#: frappe/email/doctype/notification/notification.py:542 +#: frappe/email/doctype/notification/notification.py:544 msgid "Notification: customer {0} has no Mobile number set" msgstr "" -#: frappe/email/doctype/notification/notification.py:528 +#: frappe/email/doctype/notification/notification.py:530 msgid "Notification: document {0} has no {1} number set (field: {2})" msgstr "" -#: frappe/email/doctype/notification/notification.py:537 +#: frappe/email/doctype/notification/notification.py:539 msgid "Notification: user {0} has no Mobile number set" msgstr "" @@ -17426,7 +17504,7 @@ msgstr "" msgid "Number of attachment fields are more than {}, limit updated to {}." msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:171 +#: frappe/core/doctype/system_settings/system_settings.py:172 msgid "Number of backups must be greater than zero." msgstr "" @@ -17698,7 +17776,7 @@ msgstr "" #. Description of the 'Is Submittable' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:42 +#: frappe/core/doctype/doctype/doctype_list.js:43 msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended." msgstr "" @@ -17787,11 +17865,11 @@ msgstr "" msgid "Only reports of type Report Builder can be edited" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:129 +#: frappe/custom/doctype/customize_form/customize_form.py:131 msgid "Only standard DocTypes are allowed to be customized from Customize Form." msgstr "" -#: frappe/model/delete_doc.py:241 +#: frappe/model/delete_doc.py:281 msgid "Only the Administrator can delete a standard DocType." msgstr "" @@ -17887,7 +17965,7 @@ msgstr "" msgid "Open in a new tab" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1431 +#: frappe/public/js/frappe/list/list_view.js:1433 msgctxt "Description of a list view shortcut" msgid "Open list item" msgstr "" @@ -17936,7 +18014,7 @@ msgstr "" msgid "Operation" msgstr "" -#: frappe/utils/data.py:2146 +#: frappe/utils/data.py:2172 msgid "Operator must be one of {0}" msgstr "" @@ -17982,6 +18060,7 @@ msgstr "" #. 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 (Text) field in DocType 'Web Form List Column' #. 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 @@ -17990,6 +18069,7 @@ msgstr "" #: 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_form_list_column/web_form_list_column.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Options" msgstr "" @@ -18035,7 +18115,7 @@ msgstr "" msgid "Order" msgstr "" -#: frappe/database/query.py:767 +#: frappe/database/query.py:769 msgid "Order By must be a string" msgstr "" @@ -18133,7 +18213,7 @@ msgstr "" #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/printing/page/print/print.js:84 #: frappe/public/js/frappe/form/templates/print_layout.html:44 -#: frappe/public/js/frappe/views/reports/query_report.js:1804 +#: frappe/public/js/frappe/views/reports/query_report.js:1812 msgid "PDF" msgstr "" @@ -18481,8 +18561,8 @@ msgstr "" #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/system_settings/system_settings.json -#: frappe/core/doctype/user/user.js:177 frappe/core/doctype/user/user.js:224 -#: frappe/core/doctype/user/user.js:244 +#: frappe/core/doctype/user/user.js:165 frappe/core/doctype/user/user.js:212 +#: frappe/core/doctype/user/user.js:232 #: 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 @@ -18505,7 +18585,7 @@ msgstr "" msgid "Password Reset Link Generation Limit" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:896 +#: frappe/public/js/frappe/form/grid_row.js:897 msgid "Password cannot be filtered" msgstr "" @@ -18542,7 +18622,7 @@ msgstr "" msgid "Password set" msgstr "" -#: frappe/auth.py:258 +#: frappe/auth.py:261 msgid "Password size exceeded the maximum allowed size" msgstr "" @@ -18554,7 +18634,7 @@ msgstr "" msgid "Passwords do not match" msgstr "" -#: frappe/core/doctype/user/user.js:210 +#: frappe/core/doctype/user/user.js:198 msgid "Passwords do not match!" msgstr "" @@ -18705,7 +18785,7 @@ msgstr "" msgid "Permanently delete {0}?" msgstr "" -#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533 +#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:535 msgid "Permission Error" msgstr "" @@ -18765,8 +18845,8 @@ msgstr "" #: 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:143 frappe/core/doctype/user/user.js:152 -#: frappe/core/doctype/user/user.js:161 +#: frappe/core/doctype/user/user.js:131 frappe/core/doctype/user/user.js:140 +#: frappe/core/doctype/user/user.js:149 #: 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 @@ -18836,6 +18916,7 @@ msgstr "" #. Option for the 'Type' (Select) field in DocType 'Communication' #. Option for the 'Type' (Select) field in DocType 'DocField' #. Label of the phone (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #. 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' @@ -18846,6 +18927,7 @@ msgstr "" #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.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 @@ -19020,7 +19102,7 @@ msgstr "" msgid "Please duplicate this to make changes" msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:164 +#: frappe/core/doctype/system_settings/system_settings.py:165 msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login." msgstr "" @@ -19152,11 +19234,11 @@ msgstr "" msgid "Please select Entity Type first" msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:115 +#: frappe/core/doctype/system_settings/system_settings.py:116 msgid "Please select Minimum Password Score" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1185 +#: frappe/public/js/frappe/views/reports/query_report.js:1193 msgid "Please select X and Y fields" msgstr "" @@ -19184,7 +19266,7 @@ msgstr "" msgid "Please select applicable Doctypes" msgstr "" -#: frappe/model/db_query.py:1157 +#: frappe/model/db_query.py:1163 msgid "Please select atleast 1 column from {0} to sort/group" msgstr "" @@ -19214,7 +19296,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:1408 +#: frappe/public/js/frappe/views/reports/query_report.js:1416 msgid "Please set filters" msgstr "" @@ -19234,7 +19316,7 @@ msgstr "" msgid "Please set the series to be used." msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:128 +#: frappe/core/doctype/system_settings/system_settings.py:129 msgid "Please setup SMS before setting it as an authentication method, via SMS Settings" msgstr "" @@ -19386,7 +19468,7 @@ msgstr "" msgid "Posting Timestamp" msgstr "" -#: frappe/database/query.py:1518 +#: frappe/database/query.py:1520 msgid "Potentially dangerous content in string literal: {0}" msgstr "" @@ -19588,13 +19670,13 @@ msgstr "" #: 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:1789 +#: frappe/public/js/frappe/views/reports/query_report.js:1797 #: frappe/public/js/frappe/views/reports/report_view.js:1539 -#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18 +#: frappe/public/js/frappe/views/treeview.js:492 frappe/www/printview.html:18 msgid "Print" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2164 +#: frappe/public/js/frappe/list/list_view.js:2166 msgctxt "Button in list view actions menu" msgid "Print" msgstr "" @@ -19664,7 +19746,7 @@ msgstr "" msgid "Print Format Type" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1578 +#: frappe/public/js/frappe/views/reports/query_report.js:1586 msgid "Print Format not found" msgstr "" @@ -19845,11 +19927,11 @@ msgstr "" msgid "Proceed" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:932 +#: frappe/public/js/frappe/views/reports/query_report.js:940 msgid "Proceed Anyway" msgstr "" -#: frappe/public/js/frappe/form/controls/table.js:123 +#: frappe/public/js/frappe/form/controls/table.js:104 msgid "Processing" msgstr "" @@ -19866,11 +19948,21 @@ msgstr "" msgid "Profile" msgstr "" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile Picture" +msgstr "" + +#. Success message of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile updated successfully." +msgstr "Профиль успешно обновлен." + #: frappe/public/js/frappe/socketio_client.js:82 msgid "Progress" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:408 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:422 msgid "Project" msgstr "" @@ -19914,7 +20006,7 @@ msgstr "" msgid "Protect Attached Files" msgstr "" -#: frappe/core/doctype/file/file.py:523 +#: frappe/core/doctype/file/file.py:526 msgid "Protected File" msgstr "" @@ -20420,11 +20512,11 @@ msgstr "" msgid "Reason" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:886 +#: frappe/public/js/frappe/views/reports/query_report.js:894 msgid "Rebuild" msgstr "" -#: frappe/public/js/frappe/views/treeview.js:509 +#: frappe/public/js/frappe/views/treeview.js:511 msgid "Rebuild Tree" msgstr "" @@ -20805,8 +20897,8 @@ 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:1778 -#: frappe/public/js/frappe/views/treeview.js:496 +#: frappe/public/js/frappe/views/reports/query_report.js:1786 +#: frappe/public/js/frappe/views/treeview.js:498 #: frappe/public/js/frappe/widgets/chart_widget.js:291 #: frappe/public/js/frappe/widgets/number_card_widget.js:352 #: frappe/public/js/print_format_builder/Preview.vue:24 @@ -20837,13 +20929,13 @@ msgstr "" msgid "Refresh Token" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:534 +#: frappe/public/js/frappe/list/list_view.js:536 msgctxt "Document count in list view" msgid "Refreshing" msgstr "" #: frappe/core/doctype/system_settings/system_settings.js:57 -#: frappe/core/doctype/user/user.js:374 +#: frappe/core/doctype/user/user.js:362 #: frappe/desk/page/setup_wizard/setup_wizard.js:211 msgid "Refreshing..." msgstr "" @@ -21228,7 +21320,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:1965 +#: frappe/public/js/frappe/views/reports/query_report.js:1973 msgid "Report Name" msgstr "" @@ -21280,7 +21372,7 @@ msgstr "" msgid "Report has no numeric fields, please change the Report Name" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1013 +#: frappe/public/js/frappe/views/reports/query_report.js:1021 msgid "Report initiated, click to view status" msgstr "" @@ -21300,7 +21392,7 @@ msgstr "" msgid "Report was not saved (there were errors)" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2003 +#: frappe/public/js/frappe/views/reports/query_report.js:2011 msgid "Report with more than 10 columns looks better in Landscape mode." msgstr "" @@ -21336,7 +21428,7 @@ msgstr "" msgid "Reports & Masters" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:929 +#: frappe/public/js/frappe/views/reports/query_report.js:937 msgid "Reports already in Queue" msgstr "" @@ -21355,7 +21447,10 @@ msgid "Request Body" msgstr "" #. Label of the data (Code) field in DocType 'Integration Request' +#. Title of the request-data Web Form +#. Button label of the request-data Web Form #: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/website/web_form/request_data/request_data.json msgid "Request Data" msgstr "" @@ -21407,6 +21502,11 @@ msgstr "" msgid "Request URL" msgstr "" +#. Title of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "Request for Account Deletion" +msgstr "" + #. Label of the requested_numbers (Code) field in DocType 'SMS Log' #: frappe/core/doctype/sms_log/sms_log.json msgid "Requested Numbers" @@ -21462,7 +21562,7 @@ msgstr "" msgid "Reset Fields" msgstr "" -#: frappe/core/doctype/user/user.js:184 frappe/core/doctype/user/user.js:187 +#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:175 msgid "Reset LDAP Password" msgstr "" @@ -21470,11 +21570,11 @@ msgstr "" msgid "Reset Layout" msgstr "" -#: frappe/core/doctype/user/user.js:235 +#: frappe/core/doctype/user/user.js:223 msgid "Reset OTP Secret" msgstr "" -#: frappe/core/doctype/user/user.js:168 frappe/www/login.html:199 +#: frappe/core/doctype/user/user.js:156 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" @@ -21509,7 +21609,7 @@ msgstr "" msgid "Reset sorting" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:433 +#: frappe/public/js/frappe/form/grid_row.js:434 msgid "Reset to default" msgstr "" @@ -21761,7 +21861,7 @@ 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 +#: frappe/public/js/frappe/roles_editor.js:114 msgid "Role Permissions" msgstr "" @@ -21771,7 +21871,7 @@ msgstr "" msgid "Role Permissions Manager" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1933 +#: frappe/public/js/frappe/list/list_view.js:1935 msgctxt "Button in list view menu" msgid "Role Permissions Manager" msgstr "" @@ -21964,11 +22064,11 @@ msgstr "" msgid "Row {0}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:353 +#: frappe/custom/doctype/customize_form/customize_form.py:357 msgid "Row {0}: Not allowed to disable Mandatory for standard fields" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:342 +#: frappe/custom/doctype/customize_form/customize_form.py:346 msgid "Row {0}: Not allowed to enable Allow on Submit for standard fields" msgstr "" @@ -21987,7 +22087,10 @@ msgid "Rows Removed" msgstr "" #. Label of the rows_threshold_for_grid_search (Int) field in DocType 'DocType' +#. Label of the rows_threshold_for_grid_search (Int) field in DocType +#. 'Customize Form' #: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Rows Threshold for Grid Search" msgstr "" @@ -22195,8 +22298,8 @@ msgstr "" #: 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:1957 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 +#: frappe/public/js/frappe/views/reports/query_report.js:1965 #: frappe/public/js/frappe/views/reports/report_view.js:1735 #: frappe/public/js/frappe/views/workspace/workspace.js:335 #: frappe/public/js/frappe/widgets/base_widget.js:142 @@ -22219,11 +22322,11 @@ msgstr "" msgid "Save Customizations" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1960 +#: frappe/public/js/frappe/views/reports/query_report.js:1968 msgid "Save Report" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:97 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:107 msgid "Save filters" msgstr "" @@ -22595,7 +22698,7 @@ msgstr "" msgid "See all Activity" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:855 +#: frappe/public/js/frappe/views/reports/query_report.js:863 msgid "See all past reports." msgstr "" @@ -22659,7 +22762,7 @@ msgstr "" #: 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:497 +#: frappe/public/js/frappe/form/grid_row.js:498 msgid "Select All" msgstr "" @@ -22739,7 +22842,7 @@ msgstr "" msgid "Select Field..." msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:489 +#: frappe/public/js/frappe/form/grid_row.js:490 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:181 msgid "Select Fields" msgstr "" @@ -22859,7 +22962,7 @@ msgid "Select a field to edit its properties." msgstr "" #: frappe/public/js/frappe/views/treeview.js:358 -msgid "Select a group node first." +msgid "Select a group {0} first." msgstr "" #: frappe/core/doctype/doctype/doctype.py:1956 @@ -22896,13 +22999,13 @@ msgstr "" msgid "Select atleast 2 actions" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1445 +#: frappe/public/js/frappe/list/list_view.js:1447 msgctxt "Description of a list view shortcut" msgid "Select list item" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1397 -#: frappe/public/js/frappe/list/list_view.js:1413 +#: frappe/public/js/frappe/list/list_view.js:1399 +#: frappe/public/js/frappe/list/list_view.js:1415 msgctxt "Description of a list view shortcut" msgid "Select multiple list items" msgstr "" @@ -23224,7 +23327,7 @@ msgstr "" msgid "Server Action" msgstr "" -#: frappe/app.py:396 frappe/public/js/frappe/request.js:611 +#: frappe/app.py:399 frappe/public/js/frappe/request.js:611 #: frappe/www/error.html:36 frappe/www/error.py:15 msgid "Server Error" msgstr "" @@ -23290,7 +23393,7 @@ msgstr "" msgid "Session Defaults Saved" msgstr "" -#: frappe/app.py:373 +#: frappe/app.py:376 msgid "Session Expired" msgstr "" @@ -23299,7 +23402,7 @@ msgstr "" msgid "Session Expiry (idle timeout)" msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:122 +#: frappe/core/doctype/system_settings/system_settings.py:123 msgid "Session Expiry must be in format {0}" msgstr "" @@ -23348,7 +23451,7 @@ msgstr "" msgid "Set Filters for {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2113 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 msgid "Set Level" msgstr "" @@ -23402,7 +23505,7 @@ msgstr "" msgid "Set Role For" msgstr "" -#: frappe/core/doctype/user/user.js:136 +#: frappe/core/doctype/user/user.js:124 #: frappe/core/page/permission_manager/permission_manager.js:72 msgid "Set User Permissions" msgstr "" @@ -23564,7 +23667,7 @@ msgstr "" msgid "Setup > User Permissions" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1826 +#: frappe/public/js/frappe/views/reports/query_report.js:1834 #: frappe/public/js/frappe/views/reports/report_view.js:1713 msgid "Setup Auto Email" msgstr "" @@ -23705,6 +23808,12 @@ msgstr "" msgid "Show Error" msgstr "" +#. Label of the show_external_link_warning (Select) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Show External Link Warning" +msgstr "" + #: frappe/public/js/frappe/form/layout.js:578 msgid "Show Fieldname (click to copy on clipboard)" msgstr "" @@ -23833,7 +23942,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:1849 +#: frappe/public/js/frappe/list/list_view.js:1851 msgid "Show Tags" msgstr "" @@ -24040,22 +24149,22 @@ msgstr "" msgid "Signups have been disabled for this website." msgstr "" -#. 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 "" - #. 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\")" +msgid "Simple Python Expression, Example: status == \"Invalid\"" msgstr "" #. 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'" +msgid "Simple Python Expression, Example: status == 'Open' and issue_type == 'Bug'" +msgstr "" + +#. 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 "" #. Label of the simultaneous_sessions (Int) field in DocType 'User' @@ -24063,13 +24172,13 @@ msgstr "" msgid "Simultaneous Sessions" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:126 +#: frappe/custom/doctype/customize_form/customize_form.py:128 msgid "Single DocTypes cannot be customized." 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 +#: frappe/core/doctype/doctype/doctype_list.js:68 msgid "Single Types have only one record no tables associated. Values are stored in tabSingles" msgstr "" @@ -24405,7 +24514,7 @@ msgid "Splash Image" msgstr "" #: frappe/desk/reportview.py:455 -#: frappe/public/js/frappe/web_form/web_form_list.js:175 +#: frappe/public/js/frappe/web_form/web_form_list.js:176 #: frappe/templates/print_formats/standard_macros.html:44 msgid "Sr" msgstr "" @@ -24437,7 +24546,7 @@ msgstr "" msgid "Standard" msgstr "" -#: frappe/model/delete_doc.py:79 +#: frappe/model/delete_doc.py:119 msgid "Standard DocType can not be deleted." msgstr "" @@ -24707,7 +24816,7 @@ msgstr "" #. Label of the sticky (Check) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json -#: frappe/public/js/frappe/form/grid_row.js:454 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Sticky" msgstr "" @@ -24737,7 +24846,7 @@ msgstr "" msgid "Store Attached PDF Document" msgstr "" -#: frappe/core/doctype/user/user.js:490 +#: frappe/core/doctype/user/user.js:497 msgid "Store the API secret securely. It won't be displayed again." msgstr "" @@ -24849,6 +24958,7 @@ msgstr "" #. 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' +#. Button label of the request-to-delete-data Web Form #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/docshare/docshare.json @@ -24857,10 +24967,11 @@ msgstr "" #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/quick_entry.js:225 #: frappe/public/js/frappe/ui/capture.js:307 +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json msgid "Submit" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2231 +#: frappe/public/js/frappe/list/list_view.js:2233 msgctxt "Button in list view actions menu" msgid "Submit" msgstr "" @@ -24870,7 +24981,7 @@ msgctxt "Button in web form" msgid "Submit" msgstr "" -#: frappe/public/js/frappe/ui/dialog.js:63 +#: frappe/public/js/frappe/ui/dialog.js:64 msgctxt "Primary action in dialog" msgid "Submit" msgstr "" @@ -24918,7 +25029,7 @@ msgstr "" msgid "Submit this document to confirm" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2236 +#: frappe/public/js/frappe/list/list_view.js:2238 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "" @@ -24968,7 +25079,7 @@ msgstr "" #: 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:1171 +#: frappe/public/js/frappe/form/grid.js:1172 #: frappe/public/js/frappe/views/translation_manager.js:21 #: frappe/templates/includes/login/login.js:230 #: frappe/templates/includes/login/login.js:236 @@ -25183,7 +25294,7 @@ msgstr "" msgid "Syncing {0} of {1}" msgstr "" -#: frappe/utils/data.py:2547 +#: frappe/utils/data.py:2573 msgid "Syntax Error" msgstr "" @@ -25494,7 +25605,7 @@ msgstr "" msgid "Table Trimmed" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1170 +#: frappe/public/js/frappe/form/grid.js:1171 msgid "Table updated" msgstr "" @@ -25709,7 +25820,7 @@ msgstr "" msgid "The Auto Repeat for this document has been disabled." msgstr "" -#: frappe/public/js/frappe/form/grid.js:1193 +#: frappe/public/js/frappe/form/grid.js:1194 msgid "The CSV format is case sensitive" msgstr "" @@ -25777,7 +25888,7 @@ msgstr "" 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:685 +#: frappe/public/js/frappe/list/list_view.js:687 msgid "The count shown is an estimated count. Click here to see the accurate count." msgstr "" @@ -25889,7 +26000,7 @@ msgstr "" msgid "The reset password link has either been used before or is invalid" msgstr "" -#: frappe/app.py:388 frappe/public/js/frappe/request.js:149 +#: frappe/app.py:391 frappe/public/js/frappe/request.js:149 msgid "The resource you are looking for is not available" msgstr "" @@ -25962,12 +26073,12 @@ 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:965 +#: frappe/public/js/frappe/views/reports/query_report.js:973 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 +#: frappe/website/doctype/web_form/web_form.js:318 msgid "There can be only 9 Page Break fields in a Web Form" msgstr "" @@ -25991,11 +26102,11 @@ msgstr "" msgid "There is nothing new to show you right now." msgstr "" -#: frappe/core/doctype/file/file.py:640 frappe/utils/file_manager.py:372 +#: frappe/core/doctype/file/file.py:643 frappe/utils/file_manager.py:372 msgid "There is some problem with the file url: {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:962 +#: frappe/public/js/frappe/views/reports/query_report.js:970 msgid "There is {0} with the same filters already in the queue:" msgstr "" @@ -26007,7 +26118,7 @@ msgstr "" msgid "There was an error building this page" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:182 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:196 msgid "There was an error saving filters" msgstr "" @@ -26064,7 +26175,7 @@ msgstr "" msgid "This Currency is disabled. Enable to use in transactions" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:391 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:405 msgid "This Kanban Board will be private" msgstr "" @@ -26101,7 +26212,7 @@ msgstr "" msgid "This cannot be undone" msgstr "" -#: frappe/desk/doctype/number_card/number_card.js:480 +#: frappe/desk/doctype/number_card/number_card.js:484 msgctxt "Number Card" msgid "This card is visible only to Administrator and System Managers by default. Set a DocType to share with users who have read access." msgstr "" @@ -26124,7 +26235,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:113 +#: frappe/model/delete_doc.py:153 msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time." msgstr "" @@ -26166,7 +26277,7 @@ msgid "This field will appear only if the fieldname defined here has value OR th "eval:doc.age>18" msgstr "" -#: frappe/core/doctype/file/file.py:522 +#: frappe/core/doctype/file/file.py:525 msgid "This file is attached to a protected document and cannot be deleted." msgstr "" @@ -26201,7 +26312,7 @@ msgstr "" msgid "This goes above the slideshow." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2189 +#: frappe/public/js/frappe/views/reports/query_report.js:2197 msgid "This is a background report. Please set the appropriate filters and then generate a new one." msgstr "" @@ -26251,7 +26362,7 @@ msgstr "" msgid "This month" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1037 +#: frappe/public/js/frappe/views/reports/query_report.js:1045 msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead." msgstr "" @@ -26259,7 +26370,7 @@ msgstr "" msgid "This report was generated on {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:853 +#: frappe/public/js/frappe/views/reports/query_report.js:861 msgid "This report was generated {0}." msgstr "" @@ -26401,9 +26512,11 @@ msgstr "" #. Label of the time_zone (Select) field in DocType 'System Settings' #. Label of the time_zone (Autocomplete) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #. 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/core/web_form/edit_profile/edit_profile.json #: frappe/desk/page/setup_wizard/setup_wizard.js:407 #: frappe/website/doctype/web_page_view/web_page_view.json msgid "Time Zone" @@ -26664,7 +26777,7 @@ msgstr "" msgid "To generate password click {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:854 +#: frappe/public/js/frappe/views/reports/query_report.js:862 msgid "To get the updated report, click on {0}." msgstr "" @@ -26739,7 +26852,7 @@ msgstr "" msgid "Toggle Sidebar" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1964 +#: frappe/public/js/frappe/list/list_view.js:1966 msgctxt "Button in list view menu" msgid "Toggle Sidebar" msgstr "" @@ -26865,7 +26978,7 @@ msgstr "" #: frappe/desk/query_report.py:587 #: frappe/public/js/frappe/views/reports/print_grid.html:45 -#: frappe/public/js/frappe/views/reports/query_report.js:1324 +#: frappe/public/js/frappe/views/reports/query_report.js:1332 #: frappe/public/js/frappe/views/reports/report_view.js:1553 msgid "Total" msgstr "" @@ -27022,7 +27135,7 @@ msgstr "" msgid "Translatable" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2244 +#: frappe/public/js/frappe/views/reports/query_report.js:2252 msgid "Translate Data" msgstr "Перевести данные" @@ -27380,7 +27493,7 @@ msgstr "" msgid "Unable to update event" msgstr "" -#: frappe/core/doctype/file/file.py:486 +#: frappe/core/doctype/file/file.py:489 msgid "Unable to write file format for {0}" msgstr "" @@ -27389,7 +27502,7 @@ msgstr "" msgid "Unassign Condition" msgstr "" -#: frappe/app.py:396 +#: frappe/app.py:399 msgid "Uncaught Exception" msgstr "" @@ -27405,7 +27518,7 @@ msgstr "" msgid "Undo last action" msgstr "" -#: frappe/database/query.py:1495 +#: frappe/database/query.py:1497 msgid "Unescaped quotes in string literal: {0}" msgstr "" @@ -27452,7 +27565,7 @@ msgstr "" msgid "Unknown Rounding Method: {}" msgstr "" -#: frappe/auth.py:316 +#: frappe/auth.py:319 msgid "Unknown User" msgstr "" @@ -27518,8 +27631,8 @@ msgstr "" msgid "Unsubscribed" msgstr "" -#: frappe/database/query.py:653 frappe/database/query.py:1387 -#: frappe/database/query.py:1397 +#: frappe/database/query.py:655 frappe/database/query.py:1389 +#: frappe/database/query.py:1399 msgid "Unsupported function or invalid field name: {0}" msgstr "" @@ -27553,7 +27666,7 @@ msgstr "" #: 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:427 +#: frappe/public/js/frappe/form/grid_row.js:428 msgid "Update" msgstr "" @@ -27587,6 +27700,11 @@ msgstr "" msgid "Update Password" msgstr "" +#. Title of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Update Profile" +msgstr "" + #. Label of the update_series (Section Break) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -27802,11 +27920,7 @@ msgstr "" msgid "Use if the default settings don't seem to detect your data correctly" msgstr "" -#: frappe/model/db_query.py:436 -msgid "Use of function {0} in field is restricted" -msgstr "" - -#: frappe/model/db_query.py:413 +#: frappe/model/db_query.py:411 msgid "Use of sub-query or function is restricted" msgstr "" @@ -28028,12 +28142,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:1944 +#: frappe/public/js/frappe/views/reports/query_report.js:1952 #: frappe/public/js/frappe/views/reports/report_view.js:1761 msgid "User Permissions" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1922 +#: frappe/public/js/frappe/list/list_view.js:1924 msgctxt "Button in list view menu" msgid "User Permissions" msgstr "" @@ -28177,7 +28291,7 @@ msgstr "" msgid "User {0} is disabled" msgstr "" -#: frappe/sessions.py:242 +#: frappe/sessions.py:243 msgid "User {0} is disabled. Please contact your System Manager." msgstr "" @@ -28354,7 +28468,7 @@ msgstr "" msgid "Value for a check field can be either 0 or 1" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:612 +#: frappe/custom/doctype/customize_form/customize_form.py:616 msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters" msgstr "" @@ -28475,7 +28589,7 @@ msgstr "" msgid "View Audit Trail" msgstr "" -#: frappe/core/doctype/user/user.js:156 +#: frappe/core/doctype/user/user.js:144 msgid "View Doctype Permissions" msgstr "" @@ -28487,7 +28601,7 @@ msgstr "Просмотр файла" msgid "View Full Log" msgstr "" -#: frappe/public/js/frappe/views/treeview.js:484 +#: frappe/public/js/frappe/views/treeview.js:486 #: frappe/public/js/frappe/widgets/quick_list_widget.js:258 msgid "View List" msgstr "" @@ -28497,7 +28611,7 @@ msgstr "" msgid "View Log" msgstr "" -#: frappe/core/doctype/user/user.js:147 +#: frappe/core/doctype/user/user.js:135 #: frappe/core/doctype/user_permission/user_permission.js:24 msgid "View Permitted Documents" msgstr "" @@ -28613,6 +28727,7 @@ msgid "Warehouse" msgstr "" #. Option for the 'Style' (Select) field in DocType 'Workflow State' +#: frappe/public/js/frappe/router.js:613 #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Warning" msgstr "" @@ -29258,7 +29373,7 @@ msgstr "" msgid "Workspace" msgstr "" -#: frappe/public/js/frappe/router.js:175 +#: frappe/public/js/frappe/router.js:180 msgid "Workspace {0} does not exist" msgstr "" @@ -29380,7 +29495,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:1225 +#: frappe/public/js/frappe/views/reports/query_report.js:1233 msgid "Y Field" msgstr "" @@ -29442,7 +29557,7 @@ msgstr "" #: frappe/public/js/form_builder/utils.js:336 #: frappe/public/js/frappe/form/controls/link.js:498 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1665 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 #: frappe/website/doctype/help_article/templates/help_article.html:25 msgid "Yes" msgstr "" @@ -29478,6 +29593,10 @@ msgstr "" msgid "You added {0} rows to {1}" msgstr "" +#: frappe/public/js/frappe/router.js:642 +msgid "You are about to open an external link. To confirm, click the link again." +msgstr "" + #: frappe/public/js/frappe/dom.js:438 msgid "You are connected to internet." msgstr "" @@ -29521,7 +29640,7 @@ msgstr "" msgid "You are not allowed to export {} doctype" msgstr "" -#: frappe/public/js/frappe/views/treeview.js:448 +#: frappe/public/js/frappe/views/treeview.js:450 msgid "You are not allowed to print this report" msgstr "" @@ -29529,7 +29648,7 @@ msgstr "" msgid "You are not allowed to send emails related to this document" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:605 +#: frappe/website/doctype/web_form/web_form.py:632 msgid "You are not allowed to update this Web Form Document" msgstr "" @@ -29602,11 +29721,11 @@ msgstr "" msgid "You can continue with the onboarding after exploring this page" msgstr "" -#: frappe/model/delete_doc.py:137 +#: frappe/model/delete_doc.py:177 msgid "You can disable this {0} instead of deleting it." msgstr "" -#: frappe/core/doctype/file/file.py:758 +#: frappe/core/doctype/file/file.py:761 msgid "You can increase the limit from System Settings." msgstr "" @@ -29656,11 +29775,11 @@ msgstr "" msgid "You can use wildcard %" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:390 +#: frappe/custom/doctype/customize_form/customize_form.py:394 msgid "You can't set 'Options' for field {0}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:394 +#: frappe/custom/doctype/customize_form/customize_form.py:398 msgid "You can't set 'Translatable' for field {0}" msgstr "" @@ -29678,7 +29797,7 @@ msgstr "" msgid "You cannot create a dashboard chart from single DocTypes" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:386 +#: frappe/custom/doctype/customize_form/customize_form.py:390 msgid "You cannot unset 'Read Only' for field {0}" msgstr "" @@ -29721,11 +29840,11 @@ msgstr "" msgid "You do not have enough permissions to access this resource. Please contact your manager to get access." msgstr "" -#: frappe/app.py:381 +#: frappe/app.py:384 msgid "You do not have enough permissions to complete the action" msgstr "" -#: frappe/database/query.py:529 +#: frappe/database/query.py:531 msgid "You do not have permission to access field: {0}" msgstr "" @@ -29741,7 +29860,7 @@ msgstr "" msgid "You don't have access to Report: {0}" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:808 +#: frappe/website/doctype/web_form/web_form.py:835 msgid "You don't have permission to access the {0} DocType." msgstr "" @@ -29765,7 +29884,7 @@ msgstr "У вас новое сообщение от:" msgid "You have been successfully logged out" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:245 +#: frappe/custom/doctype/customize_form/customize_form.py:247 msgid "You have hit the row size limit on database table: {0}" msgstr "" @@ -29793,7 +29912,7 @@ msgstr "" msgid "You haven't added any Dashboard Charts or Number Cards yet." msgstr "" -#: frappe/public/js/frappe/list/list_view.js:501 +#: frappe/public/js/frappe/list/list_view.js:503 msgid "You haven't created a {0} yet" msgstr "" @@ -29810,11 +29929,11 @@ msgstr "" msgid "You must add atleast one link." msgstr "" -#: frappe/website/doctype/web_form/web_form.py:804 +#: frappe/website/doctype/web_form/web_form.py:831 msgid "You must be logged in to use this form." msgstr "" -#: frappe/website/doctype/web_form/web_form.py:645 +#: frappe/website/doctype/web_form/web_form.py:672 msgid "You must login to submit this form" msgstr "" @@ -29929,6 +30048,10 @@ msgstr "" msgid "You viewed this" msgstr "" +#: frappe/public/js/frappe/router.js:653 +msgid "You will be redirected to:" +msgstr "" + #: frappe/core/doctype/user_invitation/user_invitation.py:113 msgid "You've been invited to join {0}" msgstr "" @@ -29974,7 +30097,7 @@ msgstr "" msgid "Your account has been deleted" msgstr "" -#: frappe/auth.py:514 +#: frappe/auth.py:517 msgid "Your account has been locked and will resume after {0} seconds" msgstr "" @@ -30040,7 +30163,7 @@ msgstr "" msgid "Your report is being generated in the background. You will receive an email on {0} with a download link once it is ready." msgstr "" -#: frappe/app.py:374 +#: frappe/app.py:377 msgid "Your session has expired, please login again to continue." msgstr "" @@ -30377,7 +30500,7 @@ msgstr "" msgid "logged in" msgstr "" -#: frappe/website/doctype/web_form/web_form.js:362 +#: frappe/website/doctype/web_form/web_form.js:363 msgid "login_required" msgstr "" @@ -30715,7 +30838,7 @@ msgstr "" msgid "via Google Meet" msgstr "" -#: frappe/email/doctype/notification/notification.py:403 +#: frappe/email/doctype/notification/notification.py:405 msgid "via Notification" msgstr "" @@ -30825,7 +30948,7 @@ msgstr "" msgid "{0} Dashboard" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:486 +#: frappe/public/js/frappe/form/grid_row.js:487 #: frappe/public/js/frappe/list/list_settings.js:225 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:178 msgid "{0} Fields" @@ -30876,7 +30999,7 @@ msgstr "" msgid "{0} Report" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:956 +#: frappe/public/js/frappe/views/reports/query_report.js:964 msgid "{0} Reports" msgstr "" @@ -30949,7 +31072,7 @@ msgctxt "Form timeline" msgid "{0} attached {1}" msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:152 +#: frappe/core/doctype/system_settings/system_settings.py:153 msgid "{0} can not be more than {1}" msgstr "" @@ -31026,7 +31149,7 @@ msgstr "" msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values" msgstr "" -#: frappe/database/query.py:708 +#: frappe/database/query.py:710 msgid "{0} fields cannot contain backticks (`): {1}" msgstr "" @@ -31071,7 +31194,7 @@ msgstr "" msgid "{0} is a mandatory field" msgstr "" -#: frappe/core/doctype/file/file.py:566 +#: frappe/core/doctype/file/file.py:569 msgid "{0} is a not a valid zip file" msgstr "" @@ -31120,7 +31243,7 @@ msgstr "" msgid "{0} is mandatory" msgstr "" -#: frappe/database/query.py:485 +#: frappe/database/query.py:487 msgid "{0} is not a child table of {1}" msgstr "" @@ -31140,7 +31263,7 @@ msgstr "" msgid "{0} is not a valid Cron expression." msgstr "" -#: frappe/public/js/frappe/form/controls/dynamic_link.js:27 +#: frappe/public/js/frappe/form/controls/dynamic_link.js:23 msgid "{0} is not a valid DocType for Dynamic Link" msgstr "" @@ -31177,7 +31300,7 @@ msgstr "" msgid "{0} is not a valid report format. Report format should one of the following {1}" msgstr "" -#: frappe/core/doctype/file/file.py:546 +#: frappe/core/doctype/file/file.py:549 msgid "{0} is not a zip file" msgstr "" @@ -31225,7 +31348,7 @@ msgstr "" msgid "{0} is within {1}" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1839 +#: frappe/public/js/frappe/list/list_view.js:1841 msgid "{0} items selected" msgstr "" @@ -31311,11 +31434,11 @@ msgid "{0} not found" msgstr "" #: frappe/core/doctype/report/report.py:427 -#: frappe/public/js/frappe/list/list_view.js:1211 +#: frappe/public/js/frappe/list/list_view.js:1213 msgid "{0} of {1}" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1213 +#: frappe/public/js/frappe/list/list_view.js:1215 msgid "{0} of {1} ({2} rows with children)" msgstr "" @@ -31365,7 +31488,7 @@ msgstr "" msgid "{0} removed {1} rows from {2}" msgstr "" -#: frappe/public/js/frappe/roles_editor.js:62 +#: frappe/public/js/frappe/roles_editor.js:64 msgid "{0} role does not have permission on any doctype" msgstr "" @@ -31439,7 +31562,7 @@ msgstr "" msgid "{0} un-shared this document with {1}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:254 +#: frappe/custom/doctype/customize_form/customize_form.py:256 msgid "{0} updated" msgstr "" @@ -31499,7 +31622,7 @@ msgstr "" msgid "{0} {1} not found" msgstr "" -#: frappe/model/delete_doc.py:248 +#: frappe/model/delete_doc.py:288 msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first." msgstr "" @@ -31612,7 +31735,7 @@ msgstr "" msgid "{0}: {1} is set to state {2}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1283 +#: frappe/public/js/frappe/views/reports/query_report.js:1291 msgid "{0}: {1} vs {2}" msgstr "" @@ -31648,11 +31771,11 @@ msgstr "" msgid "{} Complete" msgstr "" -#: frappe/utils/data.py:2541 +#: frappe/utils/data.py:2567 msgid "{} Invalid python code on line {}" msgstr "" -#: frappe/utils/data.py:2550 +#: frappe/utils/data.py:2576 msgid "{} Possibly invalid python code.
{}" msgstr "" @@ -31678,7 +31801,7 @@ msgstr "" msgid "{} is not a valid date string." msgstr "" -#: frappe/commands/utils.py:562 +#: frappe/commands/utils.py:561 msgid "{} not found in PATH! This is required to access the console." msgstr "" diff --git a/frappe/locale/sr.po b/frappe/locale/sr.po index bbbb059968..4c9b847c32 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-09-21 09:33+0000\n" -"PO-Revision-Date: 2025-09-21 19:57\n" +"POT-Creation-Date: 2025-10-05 09:33+0000\n" +"PO-Revision-Date: 2025-10-07 23:26\n" "Last-Translator: developers@frappe.io\n" "Language-Team: Serbian (Cyrillic)\n" "MIME-Version: 1.0\n" @@ -78,7 +78,7 @@ msgstr "'У глобалној претрази' није дозвољено з msgid "'In List View' is not allowed for field {0} of type {1}" msgstr "'У приказу листе' није дозвољено за поље {0} врсте {1}" -#: frappe/custom/doctype/customize_form/customize_form.py:363 +#: frappe/custom/doctype/customize_form/customize_form.py:367 msgid "'In List View' not allowed for type {0} in row {1}" msgstr "'У приказу листе' није дозвољено за врсту {0} у реду {1}" @@ -122,7 +122,7 @@ msgstr "0 - Нацрт; 1 - Поднето; 2 - Отказано" msgid "0 is highest" msgstr "0 је највише" -#: frappe/public/js/frappe/form/grid_row.js:892 +#: frappe/public/js/frappe/form/grid_row.js:893 msgid "1 = True & 0 = False" msgstr "1 = тачно и 0 = нетачно" @@ -141,11 +141,11 @@ msgstr "1 дан" msgid "1 Google Calendar Event synced." msgstr "1 догађај из Google Calendar-а је синхронизован." -#: frappe/public/js/frappe/views/reports/query_report.js:955 +#: frappe/public/js/frappe/views/reports/query_report.js:963 msgid "1 Report" msgstr "1 извештај" -#: frappe/tests/test_utils.py:739 +#: frappe/tests/test_utils.py:845 msgid "1 day ago" msgstr "пре 1 дан" @@ -154,17 +154,17 @@ msgid "1 hour" msgstr "1 сат" #: frappe/public/js/frappe/utils/pretty_date.js:52 -#: frappe/tests/test_utils.py:737 +#: frappe/tests/test_utils.py:843 msgid "1 hour ago" msgstr "пре 1 сата" #: frappe/public/js/frappe/utils/pretty_date.js:48 -#: frappe/tests/test_utils.py:735 +#: frappe/tests/test_utils.py:841 msgid "1 minute ago" msgstr "пре 1 минут" #: frappe/public/js/frappe/utils/pretty_date.js:66 -#: frappe/tests/test_utils.py:743 +#: frappe/tests/test_utils.py:849 msgid "1 month ago" msgstr "пре 1 месец" @@ -186,37 +186,37 @@ msgctxt "User added row to child table" msgid "1 row to {0}" msgstr "1 ред у {0}" -#: frappe/tests/test_utils.py:734 +#: frappe/tests/test_utils.py:840 msgid "1 second ago" msgstr "пре 1 секунде" #: frappe/public/js/frappe/utils/pretty_date.js:62 -#: frappe/tests/test_utils.py:741 +#: frappe/tests/test_utils.py:847 msgid "1 week ago" msgstr "пре 1 недељу" #: frappe/public/js/frappe/utils/pretty_date.js:70 -#: frappe/tests/test_utils.py:745 +#: frappe/tests/test_utils.py:851 msgid "1 year ago" msgstr "пре 1 годину" -#: frappe/tests/test_utils.py:738 +#: frappe/tests/test_utils.py:844 msgid "2 hours ago" msgstr "пре 2 сата" -#: frappe/tests/test_utils.py:744 +#: frappe/tests/test_utils.py:850 msgid "2 months ago" msgstr "пре 2 месеца" -#: frappe/tests/test_utils.py:742 +#: frappe/tests/test_utils.py:848 msgid "2 weeks ago" msgstr "пре 2 недеље" -#: frappe/tests/test_utils.py:746 +#: frappe/tests/test_utils.py:852 msgid "2 years ago" msgstr "пре 2 године" -#: frappe/tests/test_utils.py:736 +#: frappe/tests/test_utils.py:842 msgid "3 minutes ago" msgstr "пре 3 минута" @@ -232,7 +232,7 @@ msgstr "4 сата" msgid "5 Records" msgstr "5 записа" -#: frappe/tests/test_utils.py:740 +#: frappe/tests/test_utils.py:846 msgid "5 days ago" msgstr "пре 5 дана" @@ -268,6 +268,16 @@ msgstr "{0} није важећи URL" 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 "
Молимо Вас да не ажурирате јер то може пореметити Ваш образац. Користите поље прилагоди приказ обрасца или прилагођена поља да бисте поставили својства!
" +#. Introduction text of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "

Request a file containing your personally identifiable information (PII) that is saved on our system. The file will be in JSON format and is sent to you by email. If you would like to have your PII deleted from our system, please make a request to delete data.

" +msgstr "

Затражите фајл који садржи Ваше личне податке сачуване у нашем систему. Фајл ће бити у JSON формату и биће Вам послат путем имејла. Уколико желите да се Ваши лични подаци избришу из нашег система, молимо Вас да поднесете захтев за брисање података.

" + +#. Introduction text of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "

Send a request to delete your account and personally identifiable information (PII) that is stored on our system. You will receive an email to verify your request. Once the request is verified we will take care of deleting your PII. If you just want to check what PII we have stored, you can request your data.

" +msgstr "

Пошаљите захтев за брисање Вашег налога и личних података који су сачувани у нашем систему. Добићете имејл за потврду Вашег захтева. Након потврде сви Ваши лични подаци биће обрисани. Уколико само желите да проверите које личне податке имамо сачуване, можете затражити своје податке.

" + #. Content of the 'Help HTML' (HTML) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -753,6 +763,11 @@ msgstr "Назив DocType-а треба да почне са словом и м 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 Framework може функционисати и као OAuth клијент, ресурс или ауторизациони сервер. Овај DocType садржи подешавања везана за сва три." +#. Success message of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "A download link with your data will be sent to the email address associated with your account." +msgstr "Линк за преузимање Ваших података биће послат на имејл адресу повезану са Вашим налогом." + #: frappe/custom/doctype/custom_field/custom_field.py:175 msgid "A field with the name {0} already exists in {1}" msgstr "Поље са називом {0} већ постоји у {1}" @@ -880,7 +895,7 @@ msgstr "API Endpoint Args морају бити валидан JSON" #. 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.js:452 frappe/core/doctype/user/user.json +#: frappe/core/doctype/user/user.js:459 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 @@ -899,7 +914,7 @@ msgstr "API кључ и тајна за интеракцију са релаy с msgid "API Key cannot be regenerated" msgstr "API кључ се не може поново генерисати" -#: frappe/core/doctype/user/user.js:449 +#: frappe/core/doctype/user/user.js:456 msgid "API Keys" msgstr "API кључеви" @@ -923,7 +938,7 @@ msgstr "Евиденција API захтева" #. 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.js:459 frappe/core/doctype/user/user.json +#: frappe/core/doctype/user/user.js:466 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" @@ -1009,7 +1024,7 @@ msgstr "Приступни токен" msgid "Access Token URL" msgstr "URL приступног токена" -#: frappe/auth.py:491 +#: frappe/auth.py:494 msgid "Access not allowed from this IP Address" msgstr "Приступ није дозвољен са ове IP адресе" @@ -1125,7 +1140,7 @@ msgstr "Радње {0} није успела на {1} {2}. Прегледајт #: 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:842 +#: frappe/public/js/frappe/views/reports/query_report.js:850 msgid "Actions" msgstr "Радње" @@ -1182,7 +1197,7 @@ msgstr "Дневник активности" #: 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:501 +#: frappe/public/js/frappe/form/grid_row.js:502 #: 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 @@ -1193,7 +1208,7 @@ msgstr "Дневник активности" msgid "Add" msgstr "Додај" -#: frappe/public/js/frappe/form/grid_row.js:454 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Add / Remove Columns" msgstr "Додај / Уклони колоне" @@ -1238,8 +1253,8 @@ msgid "Add Child" msgstr "Додај зависни елемент" #: frappe/public/js/frappe/views/kanban/kanban_board.html:4 -#: frappe/public/js/frappe/views/reports/query_report.js:1832 -#: frappe/public/js/frappe/views/reports/query_report.js:1835 +#: frappe/public/js/frappe/views/reports/query_report.js:1840 +#: frappe/public/js/frappe/views/reports/query_report.js:1843 #: frappe/public/js/frappe/views/reports/report_view.js:360 #: frappe/public/js/frappe/views/reports/report_view.js:385 #: frappe/public/js/print_format_builder/Field.vue:112 @@ -1333,7 +1348,7 @@ msgstr "Додај претплатнике" msgid "Add Tags" msgstr "Додај ознаке" -#: frappe/public/js/frappe/list/list_view.js:2149 +#: frappe/public/js/frappe/list/list_view.js:2151 msgctxt "Button in list view actions menu" msgid "Add Tags" msgstr "Додај ознаке" @@ -1714,11 +1729,11 @@ msgstr "Упозорење" msgid "Alerts and Notifications" msgstr "Упозорења и обавештења" -#: frappe/database/query.py:1608 +#: frappe/database/query.py:1610 msgid "Alias cannot be a SQL keyword: {0}" msgstr "Псеудоним не може бити SQL резервисана реч: {0}" -#: frappe/database/query.py:1533 +#: frappe/database/query.py:1535 msgid "Alias must be a string" msgstr "Псеудоним мора бити текст" @@ -2166,6 +2181,12 @@ msgstr "Такође додавање поља од зависности ста msgid "Alternative Email ID" msgstr "Алтернативни имејл ИД" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Always" +msgstr "Увек" + #. Label of the always_bcc (Data) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Always BCC Address" @@ -2242,6 +2263,11 @@ msgstr "Измена није дозвољена" msgid "Amendment naming rules updated." msgstr "Правила именовања измена ажурирана." +#. Success message of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "An email to verify your request has been sent to your email address. Please verify your request to complete the process." +msgstr "Имејл за потврду Вашег захтева је послат на Вашу имејл адресу. Молимо Вас да потврдите захтев како бисте завршили процес." + #: frappe/public/js/frappe/ui/toolbar/toolbar.js:354 msgid "An error occurred while setting Session Defaults" msgstr "Дошло је до грешке приликом постављања подразумеваних подешавања сесије" @@ -2424,7 +2450,7 @@ msgstr "Примењено на" msgid "Apply" msgstr "Примени" -#: frappe/public/js/frappe/list/list_view.js:2134 +#: frappe/public/js/frappe/list/list_view.js:2136 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" msgstr "Примени правило доделе" @@ -2509,7 +2535,7 @@ msgstr "Архивиране колоне" msgid "Are you sure you want to cancel the invitation?" msgstr "Да ли сте сигурни да желите да откажете позивницу?" -#: frappe/public/js/frappe/list/list_view.js:2113 +#: frappe/public/js/frappe/list/list_view.js:2115 msgid "Are you sure you want to clear the assignments?" msgstr "Да ли сте сигурни да желите да очистите додељене задатке?" @@ -2545,7 +2571,7 @@ msgstr "Да ли сте сигурни да желите да обришете msgid "Are you sure you want to discard the changes?" msgstr "Да ли сте сигурни да желите да одбаците промене?" -#: frappe/public/js/frappe/views/reports/query_report.js:969 +#: frappe/public/js/frappe/views/reports/query_report.js:977 msgid "Are you sure you want to generate a new report?" msgstr "Да ли сте сигурни да желите да генеришете нови извештај?" @@ -2553,7 +2579,7 @@ msgstr "Да ли сте сигурни да желите да генерише msgid "Are you sure you want to merge {0} with {1}?" msgstr "Да ли сте сигурни да желите да спојите {0} са {1}?" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:108 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:118 msgid "Are you sure you want to proceed?" msgstr "Да ли сте сигурни да желите да наставите?" @@ -2608,6 +2634,12 @@ msgstr "Пошто је дељење докумената онемогућено msgid "As per your request, your account and data on {0} associated with email {1} has been permanently deleted" msgstr "Према Вашем захтеву, Ваш налог и подаци на {0} повезани са имејл адресом {1} су трајно обрисани" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Ask" +msgstr "Питај" + #. Label of the assign_condition (Code) field in DocType 'Assignment Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Assign Condition" @@ -2617,7 +2649,7 @@ msgstr "Додели услов" msgid "Assign To" msgstr "Додели" -#: frappe/public/js/frappe/list/list_view.js:2095 +#: frappe/public/js/frappe/list/list_view.js:2097 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "Додели" @@ -2760,7 +2792,7 @@ msgstr "Додељени задаци" msgid "Asynchronous" msgstr "Асинхроно" -#: frappe/public/js/frappe/form/grid_row.js:696 +#: frappe/public/js/frappe/form/grid_row.js:697 msgid "At least one column is required to show in the grid." msgstr "Барем једна колона је обавезна за приказ у табели." @@ -3741,7 +3773,7 @@ msgstr "Масовно брисање" msgid "Bulk Edit" msgstr "Масовно уређивање" -#: frappe/public/js/frappe/form/grid.js:1189 +#: frappe/public/js/frappe/form/grid.js:1190 msgid "Bulk Edit {0}" msgstr "Масовно уређивање {0}" @@ -4033,7 +4065,7 @@ msgstr "Не може се преименовати из {0} у {1} јер {0} #. 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/doctype/doctype_list.js:131 #: frappe/core/doctype/user_document_type/user_document_type.json #: frappe/core/doctype/user_invitation/user_invitation.js:17 #: frappe/email/doctype/notification/notification.json @@ -4041,7 +4073,7 @@ msgstr "Не може се преименовати из {0} у {1} јер {0} msgid "Cancel" msgstr "Откажи" -#: frappe/public/js/frappe/list/list_view.js:2204 +#: frappe/public/js/frappe/list/list_view.js:2206 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "Откажи" @@ -4059,7 +4091,7 @@ msgstr "Откажи све" msgid "Cancel All Documents" msgstr "Откажи све документе" -#: frappe/public/js/frappe/list/list_view.js:2209 +#: frappe/public/js/frappe/list/list_view.js:2211 msgctxt "Title of confirmation dialog" msgid "Cancel {0} documents?" msgstr "Откажи {0} документа?" @@ -4112,7 +4144,7 @@ msgstr "Није могуће уклонити" msgid "Cannot Update After Submit" msgstr "Није могуће ажурирати након подношења" -#: frappe/core/doctype/file/file.py:643 +#: frappe/core/doctype/file/file.py:646 msgid "Cannot access file path {0}" msgstr "Није могуће приступити путањи фајла {0}" @@ -4160,7 +4192,7 @@ msgstr "Није могуће креирати приватни радни пр msgid "Cannot delete Home and Attachments folders" msgstr "Није могуће обрисати почетне и приложене датотеке" -#: frappe/model/delete_doc.py:379 +#: frappe/model/delete_doc.py:419 msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}" msgstr "Није могуће обрисати или отказати јер је {0} {1} повезано са {2} {3} {4}" @@ -4240,7 +4272,7 @@ msgstr "Није могуће дозволити {0} за доцтyпе који msgid "Cannot find file {} on disk" msgstr "Није могуће пронаћи фајл {} на диску" -#: frappe/core/doctype/file/file.py:583 +#: frappe/core/doctype/file/file.py:586 msgid "Cannot get file contents of a Folder" msgstr "Није могуће преузети садржај фајла из датотеке" @@ -4248,7 +4280,7 @@ msgstr "Није могуће преузети садржај фајла из д msgid "Cannot have multiple printers mapped to a single print format." msgstr "Није могуће мапирати више штампача на један формат за штампу." -#: frappe/public/js/frappe/form/grid.js:1133 +#: frappe/public/js/frappe/form/grid.js:1134 msgid "Cannot import table with more than 5000 rows." msgstr "Није могуће увозити табелу са више од 5000 редова." @@ -4264,7 +4296,7 @@ msgstr "Није могуће мапирање јер следећи услов msgid "Cannot match column {0} with any field" msgstr "Није могуће упарити колону {0} ни са једним пољем" -#: frappe/public/js/frappe/form/grid_row.js:175 +#: frappe/public/js/frappe/form/grid_row.js:176 msgid "Cannot move row" msgstr "Није могуће померити ред" @@ -4293,11 +4325,11 @@ msgstr "Није могуће поднети {0}." msgid "Cannot update {0}" msgstr "Није могуће ажурирати {0}" -#: frappe/model/db_query.py:1130 +#: frappe/model/db_query.py:1136 msgid "Cannot use sub-query here." msgstr "Није могуће користити подупит овде." -#: frappe/model/db_query.py:1162 +#: frappe/model/db_query.py:1168 msgid "Cannot use {0} in order/group by" msgstr "Није могуће користити {0} у команди сортирај/групиши по" @@ -4570,11 +4602,11 @@ msgstr "Зависна табела {0} за поље {1}" #. Description of the 'Is Child Table' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:52 +#: frappe/core/doctype/doctype/doctype_list.js:53 msgid "Child Tables are shown as a Grid in other DocTypes" msgstr "Зависне табеле се приказују као табеле у другим DocType-овима" -#: frappe/database/query.py:660 +#: frappe/database/query.py:662 msgid "Child query fields for '{0}' must be a list or tuple." msgstr "Зависна поља упита за '{0}' морају бити врсте листа или tuple." @@ -4630,7 +4662,7 @@ msgstr "Очисти и додај шаблон" msgid "Clear All" msgstr "Очисти све" -#: frappe/public/js/frappe/list/list_view.js:2110 +#: frappe/public/js/frappe/list/list_view.js:2112 msgctxt "Button in list view actions menu" msgid "Clear Assignment" msgstr "Очисти додељене задатке" @@ -4724,7 +4756,7 @@ msgstr "Кликните да поставите динамичке филтер msgid "Click to Set Filters" msgstr "Кликните да поставите филтере" -#: frappe/public/js/frappe/list/list_view.js:739 +#: frappe/public/js/frappe/list/list_view.js:741 msgid "Click to sort by {0}" msgstr "Кликните да сортирате по {0}" @@ -4902,7 +4934,7 @@ msgctxt "Shrink code field." msgid "Collapse" msgstr "Сажми" -#: frappe/public/js/frappe/views/reports/query_report.js:2113 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 #: frappe/public/js/frappe/views/treeview.js:123 msgid "Collapse All" msgstr "Сажми све" @@ -4957,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:1233 +#: frappe/public/js/frappe/views/reports/query_report.js:1241 #: frappe/public/js/frappe/widgets/widget_dialog.js:546 #: frappe/public/js/frappe/widgets/widget_dialog.js:694 #: frappe/website/doctype/color/color.json @@ -5013,11 +5045,11 @@ msgstr "Назив колоне" msgid "Column Name cannot be empty" msgstr "Назив колоне не може бити празан" -#: frappe/public/js/frappe/form/grid_row.js:454 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Column Width" msgstr "Ширина колоне" -#: frappe/public/js/frappe/form/grid_row.js:661 +#: frappe/public/js/frappe/form/grid_row.js:662 msgid "Column width cannot be zero." msgstr "Ширина колоне не може бити нула." @@ -5044,7 +5076,7 @@ msgstr "Колоне" msgid "Columns / Fields" msgstr "Колоне / Поља" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:397 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:411 msgid "Columns based on" msgstr "Колоне засноване на" @@ -5308,7 +5340,7 @@ msgstr "Конфигурација" msgid "Configure Chart" msgstr "Конфигуришите дијаграм" -#: frappe/public/js/frappe/form/grid_row.js:406 +#: frappe/public/js/frappe/form/grid_row.js:407 msgid "Configure Columns" msgstr "Конфигуришите колоне" @@ -5335,7 +5367,7 @@ msgstr "Конфигуришите како ће се називати изме msgid "Configure various aspects of how document naming works like naming series, current counter." msgstr "Конфигуришите различите аспекте како функционише именовање докумената, као што су серије именовања, тренутни бројач." -#: frappe/core/doctype/user/user.js:412 frappe/public/js/frappe/dom.js:345 +#: frappe/core/doctype/user/user.js:400 frappe/public/js/frappe/dom.js:345 #: frappe/www/update-password.html:66 msgid "Confirm" msgstr "Потврди" @@ -5354,7 +5386,7 @@ msgstr "Потврди приступ" msgid "Confirm Deletion of Account" msgstr "Потврди уклањање налога" -#: frappe/core/doctype/user/user.js:196 +#: frappe/core/doctype/user/user.js:184 msgid "Confirm New Password" msgstr "Потврди нову лозинку" @@ -5607,7 +5639,7 @@ msgstr "Копирај грешку у међуспремник" msgid "Copy to Clipboard" msgstr "Копирај у међуспремник" -#: frappe/core/doctype/user/user.js:480 +#: frappe/core/doctype/user/user.js:487 msgid "Copy token to clipboard" msgstr "Копирајте токен у међуспремник" @@ -5616,7 +5648,7 @@ msgstr "Копирајте токен у међуспремник" msgid "Copyright" msgstr "Ауторска права" -#: frappe/custom/doctype/customize_form/customize_form.py:123 +#: frappe/custom/doctype/customize_form/customize_form.py:125 msgid "Core DocTypes cannot be customized." msgstr "Основни DocType-ови не могу бити прилагођени." @@ -5640,7 +5672,7 @@ msgstr "Није било могуће пронаћи {0}" msgid "Could not map column {0} to field {1}" msgstr "Није било могуће мапирати колону {0} на поље {1}" -#: frappe/database/query.py:564 +#: frappe/database/query.py:566 msgid "Could not parse field: {0}" msgstr "Није могуће обрадити поље: {0}" @@ -5732,13 +5764,13 @@ 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:1265 +#: frappe/public/js/frappe/views/reports/query_report.js:1273 #: frappe/public/js/frappe/views/workspace/workspace.js:469 #: frappe/workflow/page/workflow_builder/workflow_builder.js:46 msgid "Create" msgstr "Креирај" -#: frappe/core/doctype/doctype/doctype_list.js:102 +#: frappe/core/doctype/doctype/doctype_list.js:103 msgid "Create & Continue" msgstr "Креирај и настави" @@ -5752,7 +5784,7 @@ msgid "Create Card" msgstr "Креирај картицу" #: frappe/public/js/frappe/views/reports/query_report.js:285 -#: frappe/public/js/frappe/views/reports/query_report.js:1192 +#: frappe/public/js/frappe/views/reports/query_report.js:1200 msgid "Create Chart" msgstr "Креирај графикон" @@ -5786,12 +5818,12 @@ msgstr "Креирај евиденцију" msgid "Create New" msgstr "Креирај нови" -#: frappe/public/js/frappe/list/list_view.js:512 +#: frappe/public/js/frappe/list/list_view.js:514 msgctxt "Create a new document from list view" msgid "Create New" msgstr "Креирај нови" -#: frappe/core/doctype/doctype/doctype_list.js:100 +#: frappe/core/doctype/doctype/doctype_list.js:101 msgid "Create New DocType" msgstr "Креирај нови DocType" @@ -5799,7 +5831,7 @@ msgstr "Креирај нови DocType" msgid "Create New Kanban Board" msgstr "Креирај нову Канбан таблу" -#: frappe/core/doctype/user/user.js:276 +#: frappe/core/doctype/user/user.js:264 msgid "Create User Email" msgstr "Креирај кориснички имејл" @@ -5822,8 +5854,8 @@ msgstr "Креирај нови запис" #: frappe/public/js/frappe/form/controls/link.js:315 #: frappe/public/js/frappe/form/controls/link.js:317 #: frappe/public/js/frappe/form/link_selector.js:139 -#: frappe/public/js/frappe/list/list_view.js:504 -#: frappe/public/js/frappe/web_form/web_form_list.js:225 +#: frappe/public/js/frappe/list/list_view.js:506 +#: frappe/public/js/frappe/web_form/web_form_list.js:226 msgid "Create a new {0}" msgstr "Креирај нови {0}" @@ -5839,7 +5871,7 @@ msgstr "Креирај или уреди формат штампе" msgid "Create or Edit Workflow" msgstr "Креирај или уреди радни ток" -#: frappe/public/js/frappe/list/list_view.js:507 +#: frappe/public/js/frappe/list/list_view.js:509 msgid "Create your first {0}" msgstr "Креирај свој први {0}" @@ -6186,7 +6218,7 @@ msgstr "Прилагођена get_list метода за {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 -#: frappe/core/doctype/doctype/doctype_list.js:82 +#: frappe/core/doctype/doctype/doctype_list.js:83 #: frappe/website/doctype/website_theme/website_theme.json msgid "Custom?" msgstr "Прилагођени?" @@ -6221,7 +6253,7 @@ msgstr "Прилагођавање за {0} су извезена:
{1} msgid "Customize" msgstr "Прилагоди" -#: frappe/public/js/frappe/list/list_view.js:1947 +#: frappe/public/js/frappe/list/list_view.js:1949 msgctxt "Button in list view menu" msgid "Customize" msgstr "Прилагоди" @@ -6240,7 +6272,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:343 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 msgid "Customize Form" msgstr "Прилагоди образац" @@ -6471,7 +6503,7 @@ msgstr "Евиденција увоза података" msgid "Data Import Template" msgstr "Шаблон за увоз податка" -#: frappe/custom/doctype/customize_form/customize_form.py:615 +#: frappe/custom/doctype/customize_form/customize_form.py:619 msgid "Data Too Long" msgstr "Подаци су преобимни" @@ -6502,7 +6534,7 @@ msgstr "Искоришћеност величине реда базе подат msgid "Database Storage Usage By Tables" msgstr "Искоришћеност простора базе података по табелама" -#: frappe/custom/doctype/customize_form/customize_form.py:249 +#: frappe/custom/doctype/customize_form/customize_form.py:251 msgid "Database Table Row Size Limit" msgstr "Ограничење величине реда табеле базе података" @@ -6872,13 +6904,13 @@ msgstr "Кашњење" #: frappe/public/js/frappe/form/toolbar.js:464 #: frappe/public/js/frappe/views/reports/report_view.js:1749 #: frappe/public/js/frappe/views/treeview.js:329 -#: frappe/public/js/frappe/web_form/web_form_list.js:282 +#: frappe/public/js/frappe/web_form/web_form_list.js:283 #: frappe/templates/discussions/reply_card.html:35 #: frappe/templates/discussions/reply_section.html:29 msgid "Delete" msgstr "Обриши" -#: frappe/public/js/frappe/list/list_view.js:2172 +#: frappe/public/js/frappe/list/list_view.js:2174 msgctxt "Button in list view actions menu" msgid "Delete" msgstr "Обриши" @@ -6911,7 +6943,7 @@ msgstr "Обриши колону" msgid "Delete Data" msgstr "Обриши податке" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:106 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:116 msgid "Delete Kanban Board" msgstr "Обриши Канбан таблу" @@ -6925,7 +6957,7 @@ msgctxt "Title of confirmation dialog" msgid "Delete Tab" msgstr "Обриши картицу" -#: frappe/public/js/frappe/views/reports/query_report.js:936 +#: frappe/public/js/frappe/views/reports/query_report.js:944 msgid "Delete and Generate New" msgstr "Обриши и генериши нови" @@ -6967,12 +6999,12 @@ msgstr "Обриши картицу" msgid "Delete this record to allow sending to this email address" msgstr "Обриши овај запис да би омогућио слање на ову имејл адресу" -#: frappe/public/js/frappe/list/list_view.js:2177 +#: frappe/public/js/frappe/list/list_view.js:2179 msgctxt "Title of confirmation dialog" msgid "Delete {0} item permanently?" msgstr "Трајно обриши {0} ставку?" -#: frappe/public/js/frappe/list/list_view.js:2183 +#: frappe/public/js/frappe/list/list_view.js:2185 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "Трајно обриши {0} ставке?" @@ -7469,10 +7501,14 @@ msgstr "Немој креирати новог корисника" msgid "Do not create new user if user with email does not exist in the system" msgstr "Немој креирати новог корисника уколико корисник са тим имејлом не постоји у систему" -#: frappe/public/js/frappe/form/grid.js:1194 +#: frappe/public/js/frappe/form/grid.js:1195 msgid "Do not edit headers which are preset in the template" msgstr "Немој уређивати заглавља која су унапред постављена у шаблону" +#: frappe/public/js/frappe/router.js:624 +msgid "Do not warn me again about {0}" +msgstr "Не упозоравај ме више на {0}" + #: frappe/core/doctype/system_settings/system_settings.js:71 msgid "Do you still want to proceed?" msgstr "Да ли још увек желите да наставите?" @@ -7899,7 +7935,7 @@ msgstr "Наслов документа" #: 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/public/js/frappe/roles_editor.js:68 #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json #: frappe/workflow/doctype/workflow/workflow.json msgid "Document Type" @@ -7950,15 +7986,15 @@ msgstr "Документ је откључан" msgid "Document follow is not enabled for this user." msgstr "Праћење документа није омогућено за овог корисника." -#: frappe/public/js/frappe/list/list_view.js:1300 +#: frappe/public/js/frappe/list/list_view.js:1302 msgid "Document has been cancelled" msgstr "Документ је отказан" -#: frappe/public/js/frappe/list/list_view.js:1299 +#: frappe/public/js/frappe/list/list_view.js:1301 msgid "Document has been submitted" msgstr "Документ је поднет" -#: frappe/public/js/frappe/list/list_view.js:1298 +#: frappe/public/js/frappe/list/list_view.js:1300 msgid "Document is in draft state" msgstr "Документ у стању нацрта" @@ -8100,7 +8136,7 @@ msgstr "Кружни" msgid "Double click to edit label" msgstr "Кликни два пута да уредиш ознаку" -#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:467 +#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:474 #: frappe/email/doctype/auto_email_report/auto_email_report.js:8 #: frappe/public/js/frappe/form/grid.js:66 msgid "Download" @@ -8133,7 +8169,7 @@ msgstr "Преузми линк" msgid "Download PDF" msgstr "Преузми PDF" -#: frappe/public/js/frappe/views/reports/query_report.js:832 +#: frappe/public/js/frappe/views/reports/query_report.js:840 msgid "Download Report" msgstr "Преузми извештај" @@ -8333,8 +8369,8 @@ msgstr "ИЗЛАЗ" #: 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:880 -#: frappe/public/js/frappe/views/reports/query_report.js:1783 +#: frappe/public/js/frappe/views/reports/query_report.js:888 +#: frappe/public/js/frappe/views/reports/query_report.js:1791 #: 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 @@ -8346,7 +8382,7 @@ msgstr "ИЗЛАЗ" msgid "Edit" msgstr "Уреди" -#: frappe/public/js/frappe/list/list_view.js:2258 +#: frappe/public/js/frappe/list/list_view.js:2260 msgctxt "Button in list view actions menu" msgid "Edit" msgstr "Уреди" @@ -8356,7 +8392,7 @@ msgctxt "Button in web form" msgid "Edit" msgstr "Уреди" -#: frappe/public/js/frappe/form/grid_row.js:349 +#: frappe/public/js/frappe/form/grid_row.js:350 msgctxt "Edit grid row" msgid "Edit" msgstr "Уреди" @@ -8385,7 +8421,7 @@ msgstr "Уреди прилагођени HTML" msgid "Edit DocType" msgstr "Уреди DocType" -#: frappe/public/js/frappe/list/list_view.js:1974 +#: frappe/public/js/frappe/list/list_view.js:1976 msgctxt "Button in list view menu" msgid "Edit DocType" msgstr "Уреди DocType" @@ -8505,7 +8541,7 @@ msgstr "Уреди {0}" #. 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/core/doctype/doctype/doctype_list.js:58 #: frappe/custom/doctype/customize_form/customize_form.json msgid "Editable Grid" msgstr "Табела која се може уређивати" @@ -8550,6 +8586,8 @@ msgstr "Избор елемента" #. 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' +#. Label of a field in the request-data Web Form +#. Label of a field in the request-to-delete-data Web Form #: frappe/automation/workspace/tools/tools.json #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/custom_docperm/custom_docperm.json @@ -8568,6 +8606,8 @@ msgstr "Избор елемента" #: 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/website/web_form/request_data/request_data.json +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json #: frappe/www/login.html:8 frappe/www/login.py:104 msgid "Email" msgstr "Имејл" @@ -8799,7 +8839,7 @@ msgstr "Имејл је означен као спам" msgid "Email has been moved to trash" msgstr "Имејл је премештен у отпад" -#: frappe/core/doctype/user/user.js:278 +#: frappe/core/doctype/user/user.js:266 msgid "Email is mandatory to create User Email" msgstr "Имејл је обавезан за креирање корисничког имејла" @@ -8842,7 +8882,7 @@ msgstr "Имејлови ће бити послати са следећим мо msgid "Embed code copied" msgstr "Код за уградњу је копиран" -#: frappe/database/query.py:1537 +#: frappe/database/query.py:1539 msgid "Empty alias is not allowed" msgstr "Празан псеудоним није дозвољен" @@ -8850,7 +8890,7 @@ msgstr "Празан псеудоним није дозвољен" msgid "Empty column" msgstr "Празна колона" -#: frappe/database/query.py:1455 +#: frappe/database/query.py:1457 msgid "Empty string arguments are not allowed" msgstr "Аргументи као празан текст нису дозвољени" @@ -9307,9 +9347,9 @@ msgstr "Грешка у клијентској скрипти." msgid "Error in Header/Footer Script" msgstr "Грешка у скрипти заглавља/подножја" -#: frappe/email/doctype/notification/notification.py:640 -#: frappe/email/doctype/notification/notification.py:780 -#: frappe/email/doctype/notification/notification.py:786 +#: frappe/email/doctype/notification/notification.py:642 +#: frappe/email/doctype/notification/notification.py:782 +#: frappe/email/doctype/notification/notification.py:788 msgid "Error in Notification" msgstr "Грешка у обавештењу" @@ -9329,7 +9369,7 @@ msgstr "Грешка приликом обраде угњеждених филт msgid "Error while connecting to email account {0}" msgstr "Грешка при повезивању са имејл налогом {0}" -#: frappe/email/doctype/notification/notification.py:777 +#: frappe/email/doctype/notification/notification.py:779 msgid "Error while evaluating Notification {0}. Please fix your template." msgstr "Грешка при обради обавештења {0}. Молимо Вас да исправите Ваш шаблон." @@ -9490,7 +9530,7 @@ msgstr "Извршавање кода" msgid "Executing..." msgstr "Извршавање..." -#: frappe/public/js/frappe/views/reports/query_report.js:2132 +#: frappe/public/js/frappe/views/reports/query_report.js:2140 msgid "Execution Time: {0} sec" msgstr "Време извршавања: {0} секунди" @@ -9516,12 +9556,12 @@ msgctxt "Enlarge code field." msgid "Expand" msgstr "Прошири" -#: frappe/public/js/frappe/views/reports/query_report.js:2113 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 #: frappe/public/js/frappe/views/treeview.js:133 msgid "Expand All" msgstr "Прошири све" -#: frappe/database/query.py:352 +#: frappe/database/query.py:354 msgid "Expected 'and' or 'or' operator, found: {0}" msgstr "Очекиван је оператор 'and' или 'or', пронађено: {0}" @@ -9579,13 +9619,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:1820 +#: frappe/public/js/frappe/views/reports/query_report.js:1828 #: frappe/public/js/frappe/views/reports/report_view.js:1629 #: frappe/public/js/frappe/widgets/chart_widget.js:315 msgid "Export" msgstr "Извоз" -#: frappe/public/js/frappe/list/list_view.js:2280 +#: frappe/public/js/frappe/list/list_view.js:2282 msgctxt "Button in list view actions menu" msgid "Export" msgstr "Извоз" @@ -9778,7 +9818,7 @@ msgstr "Неуспешно израчунавање тела захтева: {}" msgid "Failed to connect to server" msgstr "Неуспешно повезивање са сервером" -#: frappe/auth.py:698 +#: frappe/auth.py:701 msgid "Failed to decode token, please provide a valid base64-encoded token." msgstr "Неуспешно декодирање токена, молимо Вас да пружите валидан басе64-енкодирани токен." @@ -9942,7 +9982,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:236 -#: frappe/public/js/frappe/views/reports/query_report.js:1879 +#: frappe/public/js/frappe/views/reports/query_report.js:1887 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_form_list_column/web_form_list_column.json msgid "Field" @@ -10025,7 +10065,7 @@ msgstr "Поље {0} се односи на непостојећи доцтyпе msgid "Field {0} not found." msgstr "Поље {0} није пронађено." -#: frappe/email/doctype/notification/notification.py:545 +#: frappe/email/doctype/notification/notification.py:547 msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link" msgstr "Поље {0} у документу {1} није ни поље за мобилни број, ни линк за купца или корисника" @@ -10043,7 +10083,7 @@ msgstr "Поље {0} у документу {1} није ни поље за мо #: 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:454 +#: frappe/public/js/frappe/form/grid_row.js:455 #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Fieldname" msgstr "Назив поља" @@ -10124,7 +10164,7 @@ msgstr "Поља `file_name` или `file_url` морају бити поста msgid "Fields must be a list or tuple when as_list is enabled" msgstr "Поља морају бити листа или тупле када је опција аслист омогућена" -#: frappe/database/query.py:611 +#: frappe/database/query.py:613 msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function" msgstr "Поља морају бити текст, листа, tuple, pypika поље или pypika функција" @@ -10152,7 +10192,7 @@ msgstr "Врста поља" msgid "Fieldtype cannot be changed from {0} to {1}" msgstr "Врста поља не може бити промењена са {0} на {1}" -#: frappe/custom/doctype/customize_form/customize_form.py:589 +#: frappe/custom/doctype/customize_form/customize_form.py:593 msgid "Fieldtype cannot be changed from {0} to {1} in row {2}" msgstr "Врста поља не може бити промењена са {0} на {1} у реду {2}" @@ -10218,7 +10258,7 @@ msgstr "URL фајла" msgid "File backup is ready" msgstr "Резервна копија фајла је спремна" -#: frappe/core/doctype/file/file.py:646 +#: frappe/core/doctype/file/file.py:649 msgid "File name cannot have {0}" msgstr "Назив фајла не може садржати {0}" @@ -10226,7 +10266,7 @@ msgstr "Назив фајла не може садржати {0}" msgid "File not attached" msgstr "Фајл није приложен" -#: frappe/core/doctype/file/file.py:756 frappe/public/js/frappe/request.js:200 +#: frappe/core/doctype/file/file.py:759 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 "Величина фајла је премашила максималну дозвољену величину од {0} MB" @@ -10239,7 +10279,7 @@ msgstr "Фајл је превелики" msgid "File type of {0} is not allowed" msgstr "Врста фајла {0} није дозвољена" -#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:448 +#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:451 msgid "File {0} does not exist" msgstr "Фајл {0} не постоји" @@ -10293,11 +10333,11 @@ msgstr "Филтер назива" msgid "Filter Values" msgstr "Филтер вредности" -#: frappe/database/query.py:358 +#: frappe/database/query.py:360 msgid "Filter condition missing after operator: {0}" msgstr "Недостаје услов филтера након оператора: {0}" -#: frappe/database/query.py:425 +#: frappe/database/query.py:427 msgid "Filter fields cannot contain backticks (`)." msgstr "Поља филтера не могу садржати backticks (`)." @@ -10374,7 +10414,7 @@ msgstr "Одељак филтера" msgid "Filters applied for {0}" msgstr "Филтери примењени за {0}" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:188 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:202 msgid "Filters saved" msgstr "Филтери сачувани" @@ -10422,9 +10462,12 @@ msgstr "Први дан у недељи" #. Label of the first_name (Data) field in DocType 'Contact' #. Label of the first_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json #: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:44 -#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:15 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:15 msgid "First Name" msgstr "Име" @@ -10505,7 +10548,7 @@ msgstr "Назив датотеке" msgid "Folder name should not include '/' (slash)" msgstr "Назив датотеке не би требало да укључује '/' (косу црту)" -#: frappe/core/doctype/file/file.py:494 +#: frappe/core/doctype/file/file.py:497 msgid "Folder {0} is not empty" msgstr "Датотека {0} није празна" @@ -10708,7 +10751,7 @@ msgstr "За корисника" msgid "For Value" msgstr "За вредност" -#: frappe/public/js/frappe/views/reports/query_report.js:2129 +#: frappe/public/js/frappe/views/reports/query_report.js:2137 #: frappe/public/js/frappe/views/reports/report_view.js:108 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)." @@ -10993,7 +11036,7 @@ msgstr "Датум почетка" msgid "From Date Field" msgstr "Поље за датум почетка" -#: frappe/public/js/frappe/views/reports/query_report.js:1840 +#: frappe/public/js/frappe/views/reports/query_report.js:1848 msgid "From Document Type" msgstr "Од врсте документа" @@ -11055,13 +11098,13 @@ msgstr "Функција заснована на" msgid "Function {0} is not whitelisted." msgstr "Функција {0} није на листи дозвољених." -#: frappe/database/query.py:1417 +#: frappe/database/query.py:1419 msgid "Function {0} requires arguments but none were provided" msgstr "Функција {0} захтева аргументе, али ни један није наведен" #: frappe/public/js/frappe/views/treeview.js:419 -msgid "Further nodes can be only created under 'Group' type nodes" -msgstr "Даље чворове је могуће креирати само у оквиру чворова врсте 'Група'" +msgid "Further sub-groups can only be created under records marked as 'Group'" +msgstr "Даље подгрупе могу се креирати само унутар записа означених као 'Група'" #: frappe/core/doctype/communication/communication.js:291 msgid "Fw: {0}" @@ -11120,7 +11163,7 @@ msgstr "Опште" msgid "Generate Keys" msgstr "Генериши кључеве" -#: frappe/public/js/frappe/views/reports/query_report.js:874 +#: frappe/public/js/frappe/views/reports/query_report.js:882 msgid "Generate New Report" msgstr "Генериши нови извештај" @@ -11536,14 +11579,10 @@ msgstr "Врста Груписано по" msgid "Group By field is required to create a dashboard chart" msgstr "Поље Груписано по је неопходно за креирање графикона на контролној табли" -#: frappe/database/query.py:750 +#: frappe/database/query.py:752 msgid "Group By must be a string" msgstr "Груписано по мора бити текст" -#: frappe/public/js/frappe/views/treeview.js:418 -msgid "Group Node" -msgstr "Чвор групе" - #. Label of the ldap_group_objectclass (Data) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Group Object Class" @@ -11873,7 +11912,7 @@ msgstr "Сакривено" msgid "Hidden Fields" msgstr "Сакривена поља" -#: frappe/public/js/frappe/views/reports/query_report.js:1642 +#: frappe/public/js/frappe/views/reports/query_report.js:1650 msgid "Hidden columns include: {0}" msgstr "Сакривене колоне укључују: {0}" @@ -11985,7 +12024,7 @@ msgstr "Сакриј бочну траку, мени и коментаре" msgid "Hide Standard Menu" msgstr "Сакриј стандардни мени" -#: frappe/public/js/frappe/list/list_view.js:1849 +#: frappe/public/js/frappe/list/list_view.js:1851 msgid "Hide Tags" msgstr "Сакриј ознаке" @@ -12244,7 +12283,7 @@ msgstr "Уколико је означено статус радног тока #: frappe/core/doctype/doctype/doctype.py:1777 #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45 -#: frappe/public/js/frappe/roles_editor.js:66 +#: frappe/public/js/frappe/roles_editor.js:68 msgid "If Owner" msgstr "Уколико је власник" @@ -12472,8 +12511,8 @@ msgstr "Игнорисане апликације" msgid "Illegal Document Status for {0}" msgstr "Неважећи статус документа за {0}" -#: frappe/model/db_query.py:453 frappe/model/db_query.py:456 -#: frappe/model/db_query.py:1121 +#: frappe/model/db_query.py:454 frappe/model/db_query.py:457 +#: frappe/model/db_query.py:1122 msgid "Illegal SQL Query" msgstr "Неважећи SQL упит" @@ -12560,11 +12599,11 @@ msgstr "Слике" #. Option for the 'Operation' (Select) field in DocType 'Activity Log' #: frappe/core/doctype/activity_log/activity_log.json -#: frappe/core/doctype/user/user.js:384 +#: frappe/core/doctype/user/user.js:372 msgid "Impersonate" msgstr "Замени идентитет" -#: frappe/core/doctype/user/user.js:411 +#: frappe/core/doctype/user/user.js:399 msgid "Impersonate as {0}" msgstr "Замени идентитет као {0}" @@ -12594,7 +12633,7 @@ msgstr "Имплицитно" msgid "Import" msgstr "Увоз" -#: frappe/public/js/frappe/list/list_view.js:1911 +#: frappe/public/js/frappe/list/list_view.js:1913 msgctxt "Button in list view menu" msgid "Import" msgstr "Увоз" @@ -12823,15 +12862,15 @@ msgid "Include Web View Link in Email" msgstr "Укључи линк ка веб-приказу у имејлу" #: frappe/public/js/frappe/form/print_utils.js:59 -#: frappe/public/js/frappe/views/reports/query_report.js:1620 +#: frappe/public/js/frappe/views/reports/query_report.js:1628 msgid "Include filters" msgstr "Укључи филтере" -#: frappe/public/js/frappe/views/reports/query_report.js:1640 +#: frappe/public/js/frappe/views/reports/query_report.js:1648 msgid "Include hidden columns" msgstr "Укључи сакривене колоне" -#: frappe/public/js/frappe/views/reports/query_report.js:1612 +#: frappe/public/js/frappe/views/reports/query_report.js:1620 msgid "Include indentation" msgstr "Укључи индентацију" @@ -12878,7 +12917,7 @@ msgstr "Налог за улазну пошту није исправан" msgid "Incomplete Virtual Doctype Implementation" msgstr "Непотпуна имплементација виртуелног DocType-а" -#: frappe/auth.py:255 +#: frappe/auth.py:258 msgid "Incomplete login details" msgstr "Непотпуни подаци за пријаву" @@ -12989,7 +13028,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:1885 +#: frappe/public/js/frappe/views/reports/query_report.js:1893 msgid "Insert After" msgstr "Унеси након" @@ -13062,7 +13101,7 @@ msgstr "Упутства послата имејлом" msgid "Insufficient Permission Level for {0}" msgstr "Недовољан ниво овлашћења за {0}" -#: frappe/database/query.py:806 frappe/database/query.py:1052 +#: frappe/database/query.py:808 frappe/database/query.py:1054 msgid "Insufficient Permission for {0}" msgstr "Недовољна овлашћења за {0}" @@ -13178,7 +13217,7 @@ msgid "Invalid" msgstr "Неважеће" #: frappe/public/js/form_builder/utils.js:221 -#: frappe/public/js/frappe/form/grid_row.js:849 +#: frappe/public/js/frappe/form/grid_row.js:850 #: frappe/public/js/frappe/form/layout.js:810 #: frappe/public/js/frappe/views/reports/report_view.js:721 msgid "Invalid \"depends_on\" expression" @@ -13236,8 +13275,8 @@ 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 +#: frappe/database/query.py:429 frappe/database/query.py:456 +#: frappe/database/query.py:466 frappe/database/query.py:489 msgid "Invalid Filter" msgstr "Неважећи филтер" @@ -13309,7 +13348,7 @@ msgstr "Неважећа лозинка" msgid "Invalid Phone Number" msgstr "Неважећи број телефона" -#: frappe/auth.py:94 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 +#: frappe/auth.py:97 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 #: frappe/www/login.py:128 msgid "Invalid Request" msgstr "Неважећи захтев" @@ -13349,7 +13388,7 @@ msgstr "Неважећа тајна за Webhook" msgid "Invalid aggregate function" msgstr "Неважећа агрегатна функција" -#: frappe/database/query.py:1542 +#: frappe/database/query.py:1544 msgid "Invalid alias format: {0}. Alias must be a simple identifier." msgstr "Неважећи формат псеудонима: {0}. Псеудоним мора бити једноставан идентификатор." @@ -13357,19 +13396,19 @@ msgstr "Неважећи формат псеудонима: {0}. Псеудон msgid "Invalid app" msgstr "Неважећа апликација" -#: frappe/database/query.py:1468 +#: frappe/database/query.py:1470 msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed." msgstr "Неважећи формат аргумента: {0}. Дозвољени су само наводницима обухваћени текстови или једноставни називи поља." -#: frappe/database/query.py:1444 +#: frappe/database/query.py:1446 msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed." msgstr "Неважећа врста аргумента: {0}. Дозвољени су текст, број и None." -#: frappe/database/query.py:460 +#: frappe/database/query.py:462 msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed." msgstr "Неважећи карактери у називу поља: {0}. Дозвољена су слова, бројеви и доње црте." -#: frappe/database/query.py:575 +#: frappe/database/query.py:577 msgid "Invalid characters in table name: {0}" msgstr "Неважећи карактери у називу табеле: {0}" @@ -13377,11 +13416,11 @@ msgstr "Неважећи карактери у називу табеле: {0}" msgid "Invalid column" msgstr "Неважећа колона" -#: frappe/database/query.py:381 +#: frappe/database/query.py:383 msgid "Invalid condition type in nested filters: {0}" msgstr "Неважећа врста услова у угњежденим филтерима: {0}" -#: frappe/database/query.py:787 +#: frappe/database/query.py:789 msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'." msgstr "Неважећи смер у Сортирај по: {0}. Мора бити 'РАСТУЋЕ' или 'ОПАДАЈУЋЕ'." @@ -13397,23 +13436,23 @@ msgstr "Неважећи израз постављен у филтеру {0}" msgid "Invalid expression set in filter {0} ({1})" msgstr "Неважећи израз постављен у филтеру {0} ({1})" -#: frappe/database/query.py:1301 +#: frappe/database/query.py:1303 msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'." msgstr "Неважећи формат поља за SELECT: {0}. Називи поља морају бити једноставни, у оквиру backticks, са префиксом табеле, са псеудонимом или '*'." -#: frappe/database/query.py:734 +#: frappe/database/query.py:736 msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'." msgstr "Неважећи формат поља у {0}: {1}. Користите 'field', 'link_field.field', or 'child_table.field'." -#: frappe/database/query.py:1620 +#: frappe/database/query.py:1622 msgid "Invalid field name in function: {0}. Only simple field names are allowed." msgstr "Неважећи назив поља у функцији: {0}. Дозвољени су само једноставни називи поља." -#: frappe/utils/data.py:2215 +#: frappe/utils/data.py:2241 msgid "Invalid field name {0}" msgstr "Неважећи назив поља {0}" -#: frappe/database/query.py:668 +#: frappe/database/query.py:670 msgid "Invalid field type: {0}" msgstr "Неважећа врста поља: {0}" @@ -13425,11 +13464,11 @@ msgstr "Неважећи назив поља '{0}' у аутоматском и msgid "Invalid file path: {0}" msgstr "Неважећа путања фајла: {0}" -#: frappe/database/query.py:364 +#: frappe/database/query.py:366 msgid "Invalid filter condition: {0}. Expected a list or tuple." msgstr "Неважећи услов филтера: {0}. Очекивана је листа или tuple." -#: frappe/database/query.py:450 +#: frappe/database/query.py:452 msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'." msgstr "Неважећи формат поља за филтер: {0}. Користите 'fieldname' или 'link_fieldname.target_fieldname'." @@ -13437,11 +13476,11 @@ msgstr "Неважећи формат поља за филтер: {0}. Кори msgid "Invalid filter: {0}" msgstr "Неважећи филтер: {0}" -#: frappe/database/query.py:1422 +#: frappe/database/query.py:1424 msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed." msgstr "Неважећа врста аргумента функције: {0}. Дозвољени су искључиво текстови, бројеви, листе и None." -#: frappe/database/query.py:1383 +#: frappe/database/query.py:1385 msgid "Invalid function dictionary format" msgstr "Неважећи формат речника функције" @@ -13478,23 +13517,27 @@ msgstr "Неважећи или оштећен садржај за увоз" msgid "Invalid redirect regex in row #{}: {}" msgstr "Неважеће преусмерење регеx функције у реду #{}: {}" -#: frappe/app.py:337 +#: frappe/app.py:340 msgid "Invalid request arguments" msgstr "Неважећи аргументи захтева" +#: frappe/app.py:327 +msgid "Invalid request body" +msgstr "Неважеће тело захтева" + #: frappe/core/doctype/user_invitation/user_invitation.py:181 msgid "Invalid role" msgstr "Неважећа улога" -#: frappe/database/query.py:410 +#: frappe/database/query.py:412 msgid "Invalid simple filter format: {0}" msgstr "Неважећи једноставни формат филтера: {0}" -#: frappe/database/query.py:341 +#: frappe/database/query.py:343 msgid "Invalid start for filter condition: {0}. Expected a list or tuple." msgstr "Неважећи почетак услова за филтер: {0}. Очекивана је листа или tuple." -#: frappe/database/query.py:1489 +#: frappe/database/query.py:1491 msgid "Invalid string literal format: {0}" msgstr "Неважећи формат текстуалног израза: {0}" @@ -13598,7 +13641,7 @@ msgstr "Календар и гантограм" #. 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/doctype_list.js:50 #: frappe/core/doctype/doctype_link/doctype_link.json msgid "Is Child Table" msgstr "Зависна табела" @@ -13651,6 +13694,10 @@ msgstr "Датотека" msgid "Is Global" msgstr "Глобално" +#: frappe/public/js/frappe/views/treeview.js:418 +msgid "Is Group" +msgstr "Група" + #. Label of the is_hidden (Check) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "Is Hidden" @@ -13739,7 +13786,7 @@ 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/core/doctype/doctype/doctype_list.js:65 #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Is Single" msgstr "Јединствени запис" @@ -13775,7 +13822,7 @@ msgstr "Стандардно" #. Label of the is_submittable (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:39 +#: frappe/core/doctype/doctype/doctype_list.js:40 msgid "Is Submittable" msgstr "Могуће поднети" @@ -13981,11 +14028,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:388 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:402 msgid "Kanban Board Name" msgstr "Назив Канбан табле" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:265 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:279 msgctxt "Button in kanban view menu" msgid "Kanban Settings" msgstr "Канбан подешавање" @@ -14283,10 +14330,13 @@ msgstr "Пејзажни" #. 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' +#. Label of a field in the edit-profile Web Form #: 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:117 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/printing/page/print/print.js:117 #: frappe/public/js/frappe/form/templates/print_layout.html:11 msgid "Language" msgstr "Језик" @@ -14374,9 +14424,12 @@ msgstr "Прошли месец" #. Label of the last_name (Data) field in DocType 'Contact' #. Label of the last_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json #: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:45 -#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:19 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:19 msgid "Last Name" msgstr "Презиме" @@ -14617,7 +14670,7 @@ msgstr "Заглавље у HTML-у" #: 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/public/js/frappe/roles_editor.js:68 #: frappe/website/doctype/help_article/help_article.json msgid "Level" msgstr "Ниво" @@ -14910,7 +14963,7 @@ msgstr "Филтер листе" msgid "List Settings" msgstr "Подешавање листе" -#: frappe/public/js/frappe/list/list_view.js:1991 +#: frappe/public/js/frappe/list/list_view.js:1993 msgctxt "Button in list view menu" msgid "List Settings" msgstr "Подешавање листе" @@ -14961,7 +15014,7 @@ msgid "Load Balancing" msgstr "Балансирање оптерећења" #: frappe/public/js/frappe/list/base_list.js:399 -#: frappe/public/js/frappe/web_form/web_form_list.js:305 +#: frappe/public/js/frappe/web_form/web_form_list.js:306 #: frappe/website/doctype/help_article/templates/help_article_list.html:30 msgid "Load More" msgstr "Учитај више" @@ -14981,7 +15034,7 @@ msgstr "Учита више" #: frappe/public/js/frappe/list/base_list.js:526 #: frappe/public/js/frappe/list/list_view.js:363 #: frappe/public/js/frappe/ui/listing.html:16 -#: frappe/public/js/frappe/views/reports/query_report.js:1089 +#: frappe/public/js/frappe/views/reports/query_report.js:1097 msgid "Loading" msgstr "Учитавање" @@ -15124,7 +15177,7 @@ msgstr "Верификациони код за пријаву од {}" msgid "Login and view in Browser" msgstr "Пријавите се и погледајте у интернет претраживачу" -#: frappe/website/doctype/web_form/web_form.js:367 +#: frappe/website/doctype/web_form/web_form.js:368 msgid "Login is required to see web form list view. Enable {0} to see list settings" msgstr "Пријављивање је неопходно да бисте видели листу веб-образаца. Омогућите {0} да бисте видели подешавања листе" @@ -15132,7 +15185,7 @@ msgstr "Пријављивање је неопходно да бисте вид msgid "Login link sent to your email" msgstr "Линк за пријављивање је послат на Вашу имејл адресу" -#: frappe/auth.py:339 frappe/auth.py:342 +#: frappe/auth.py:342 frappe/auth.py:345 msgid "Login not allowed at this time" msgstr "Пријављивање тренутно није дозвољено" @@ -15185,7 +15238,7 @@ msgstr "Пријављивање путем линка из имејла" msgid "Login with email link expiry (in minutes)" msgstr "Истицање линка за пријављивање (у минутима)" -#: frappe/auth.py:144 +#: frappe/auth.py:147 msgid "Login with username and password is not allowed." msgstr "Пријављивање путем корисничког имена и лозинке није дозвољено." @@ -15204,7 +15257,7 @@ msgstr "Лого URI" msgid "Logout" msgstr "Одјава" -#: frappe/core/doctype/user/user.js:202 +#: frappe/core/doctype/user/user.js:190 msgid "Logout All Sessions" msgstr "Одјава из свих сесија" @@ -15308,7 +15361,10 @@ msgid "Major" msgstr "Главно" #. Label of the show_name_in_global_search (Check) field in DocType 'DocType' +#. Label of the show_name_in_global_search (Check) field in DocType 'Customize +#. Form' #: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Make \"name\" searchable in Global Search" msgstr "Омогући \"назив\" доступним за претрагу у глобалној претрази" @@ -15384,7 +15440,7 @@ msgstr "Обавезно зависи од" msgid "Mandatory Depends On (JS)" msgstr "Обавезно зависи од (JS)" -#: frappe/website/doctype/web_form/web_form.py:509 +#: frappe/website/doctype/web_form/web_form.py:536 msgid "Mandatory Information missing:" msgstr "Недостају обавезни подаци:" @@ -15841,6 +15897,11 @@ msgstr "Центрирано" msgid "Middle Name" msgstr "Средње име" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Middle Name (Optional)" +msgstr "Средње име (опционо)" + #. Name of a DocType #. Label of a Link in the Tools Workspace #: frappe/automation/doctype/milestone/milestone.json @@ -15947,6 +16008,11 @@ msgstr "Мобилни" msgid "Mobile No" msgstr "Број мобилног телефона" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Mobile Number" +msgstr "Број мобилног телефона" + #. 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" @@ -15972,7 +16038,7 @@ msgstr "Покретач модалног прозора" #. 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/doctype/doctype_list.js:31 #: 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 @@ -16148,10 +16214,12 @@ msgstr "Више информација" #. Label of the additional_info (Section Break) field in DocType #. 'Communication' #. Label of the short_bio (Tab Break) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: 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 +#: frappe/core/web_form/edit_profile/edit_profile.json msgid "More Information" msgstr "Више информација" @@ -16181,7 +16249,7 @@ msgstr "Вероватно је Ваша лозинка предугачка." msgid "Move" msgstr "Премести" -#: frappe/public/js/frappe/form/grid_row.js:193 +#: frappe/public/js/frappe/form/grid_row.js:194 msgid "Move To" msgstr "Премести у" @@ -16217,7 +16285,7 @@ msgstr "Премести одељке у нову картицу" msgid "Move the current field and the following fields to a new column" msgstr "Премести тренутно поље и следећа поља у нову колону" -#: frappe/public/js/frappe/form/grid_row.js:168 +#: frappe/public/js/frappe/form/grid_row.js:169 msgid "Move to Row Number" msgstr "Премести на број реда" @@ -16285,7 +16353,7 @@ msgid "Mx" msgstr "Mx" #: frappe/templates/includes/web_sidebar.html:41 -#: frappe/website/doctype/web_form/web_form.py:498 +#: frappe/website/doctype/web_form/web_form.py:525 #: 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" @@ -16429,12 +16497,12 @@ msgstr "Шаблон навигационе траке" msgid "Navbar Template Values" msgstr "Вредности шаблона навигационе траке" -#: frappe/public/js/frappe/list/list_view.js:1378 +#: frappe/public/js/frappe/list/list_view.js:1380 msgctxt "Description of a list view shortcut" msgid "Navigate list down" msgstr "Помери листу према доле" -#: frappe/public/js/frappe/list/list_view.js:1385 +#: frappe/public/js/frappe/list/list_view.js:1387 msgctxt "Description of a list view shortcut" msgid "Navigate list up" msgstr "Помери листу према горе" @@ -16449,6 +16517,10 @@ msgstr "Иди на главни садржај" msgid "Navigation Settings" msgstr "Подешавање навигације" +#: frappe/public/js/frappe/list/list_view.js:485 +msgid "Need Help?" +msgstr "Треба Вам помоћ?" + #: frappe/desk/doctype/workspace/workspace.py:322 msgid "Need Workspace Manager role to edit private workspace of other users" msgstr "Неопходна је улога менаџера радног простора да бисте уређивали приватни радни простор других корисника" @@ -16457,7 +16529,7 @@ msgstr "Неопходна је улога менаџера радног про msgid "Negative Value" msgstr "Негативна вредност" -#: frappe/database/query.py:333 +#: frappe/database/query.py:335 msgid "Nested filters must be provided as a list or tuple." msgstr "Угњеждени филтери морају бити предати као листа или tuple." @@ -16470,6 +16542,12 @@ msgstr "Грешка у угњежденом сету. Молимо Вас да msgid "Network Printer Settings" msgstr "Подешавање мрежног штампача" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Never" +msgstr "Никада" + #. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/core/doctype/success_action/success_action.js:57 @@ -16478,7 +16556,7 @@ msgstr "Подешавање мрежног штампача" #: 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/treeview.js:473 #: frappe/public/js/frappe/views/workspace/workspace.js:64 #: frappe/website/doctype/web_form/templates/web_list.html:15 #: frappe/www/list.html:19 @@ -16539,7 +16617,7 @@ msgstr "Нови догађај" msgid "New Folder" msgstr "Нова датотека" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 msgid "New Kanban Board" msgstr "Нова Канбан табла" @@ -16574,7 +16652,7 @@ msgstr "Нова бројчана картица" msgid "New Onboarding" msgstr "Нова уводна обука" -#: frappe/core/doctype/user/user.js:190 frappe/www/update-password.html:43 +#: frappe/core/doctype/user/user.js:178 frappe/www/update-password.html:43 msgid "New Password" msgstr "Нова лозинка" @@ -16672,7 +16750,7 @@ msgstr "Нова вредност треба да буде постављена" #: frappe/public/js/frappe/ui/toolbar/search_utils.js:227 #: 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:411 +#: frappe/website/doctype/web_form/web_form.py:438 msgid "New {0}" msgstr "Нови {0}" @@ -16824,7 +16902,7 @@ msgstr "Следеће на клик" #: frappe/public/js/form_builder/utils.js:341 #: frappe/public/js/frappe/form/controls/link.js:498 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1665 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 #: frappe/website/doctype/help_article/templates/help_article.html:26 msgid "No" msgstr "Не" @@ -16973,7 +17051,7 @@ msgstr "Ниједан резултат није пронађен" msgid "No Roles Specified" msgstr "Улоге нису наведене" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 msgid "No Select Field Found" msgstr "Није пронађено поље за избор" @@ -17057,7 +17135,7 @@ msgstr "Није пронађена имејл адреса за позивањ msgid "No failed logs" msgstr "Нема неуспешних евиденција" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:371 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:385 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 "Није пронађено поље које може бити коришћено као Канбан колона. Користите прилагоди образац да бисте додали прилагођено поље врсте \"Избор\"." @@ -17081,7 +17159,7 @@ msgstr "Нема додатних записа" msgid "No matching records. Search something new" msgstr "Нема одговарајућих записа. Покушајте другачију претрагу" -#: frappe/public/js/frappe/web_form/web_form_list.js:161 +#: frappe/public/js/frappe/web_form/web_form_list.js:162 msgid "No more items to display" msgstr "Нема више ставки за приказ" @@ -17125,7 +17203,7 @@ msgctxt "{0} = verb, {1} = object" msgid "No permission to '{0}' {1}" msgstr "Не постоји дозвола за '{0}' {1}" -#: frappe/model/db_query.py:948 +#: frappe/model/db_query.py:949 msgid "No permission to read {0}" msgstr "Не постоји дозвола за читање {0}" @@ -17173,11 +17251,11 @@ msgstr "Нема {0}" msgid "No {0} Found" msgstr "Није пронађен ниједан {0}" -#: frappe/public/js/frappe/web_form/web_form_list.js:233 +#: frappe/public/js/frappe/web_form/web_form_list.js:234 msgid "No {0} found" msgstr "Није пронађен ниједан {0}" -#: frappe/public/js/frappe/list/list_view.js:497 +#: frappe/public/js/frappe/list/list_view.js:499 msgid "No {0} found with matching filters. Clear filters to see all {0}." msgstr "Нема {0} који одговарају филтерима. Очистите филтере да видите све {0}." @@ -17186,7 +17264,7 @@ msgid "No {0} mail" msgstr "Нема {0} поште" #: frappe/public/js/form_builder/utils.js:117 -#: frappe/public/js/frappe/form/grid_row.js:256 +#: frappe/public/js/frappe/form/grid_row.js:257 msgctxt "Title of the 'row number' column" msgid "No." msgstr "Бр." @@ -17250,7 +17328,7 @@ msgstr "Нису потомци од" msgid "Not Equals" msgstr "Није једнако" -#: frappe/app.py:387 frappe/www/404.html:3 +#: frappe/app.py:390 frappe/www/404.html:3 msgid "Not Found" msgstr "Није пронађено" @@ -17276,9 +17354,9 @@ msgstr "Није повезани ни са једним записом" msgid "Not Nullable" msgstr "Не може бити празно" -#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26 +#: frappe/__init__.py:550 frappe/app.py:383 frappe/desk/calendar.py:26 #: frappe/public/js/frappe/web_form/webform_script.js:15 -#: frappe/website/doctype/web_form/web_form.py:747 +#: frappe/website/doctype/web_form/web_form.py:774 #: 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 @@ -17297,7 +17375,7 @@ msgstr "Није објављено" #: 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/kanban/kanban_view.js:183 #: frappe/public/js/frappe/views/reports/report_view.js:209 #: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39 #: frappe/website/doctype/web_form/templates/web_form.html:85 @@ -17348,7 +17426,7 @@ msgstr "Није активно" msgid "Not allowed for {0}: {1}" msgstr "Није дозвољено за {0}: {1}" -#: frappe/email/doctype/notification/notification.py:637 +#: frappe/email/doctype/notification/notification.py:639 msgid "Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings" msgstr "Није дозвољено приложити документа врсте {0}, молимо Вас да омогућите Дозволи штампу за {0} у подешавањима штампе" @@ -17380,12 +17458,12 @@ msgstr "Није у развојном режиму" msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType." msgstr "Није у развојном режиму! Поставите у ситецонфиг.јсон или направите 'Прилагођени' DocType." -#: frappe/core/doctype/system_settings/system_settings.py:216 +#: frappe/core/doctype/system_settings/system_settings.py:217 #: 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:760 +#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:787 #: frappe/website/js/website.js:97 msgid "Not permitted" msgstr "Није дозвољено" @@ -17431,7 +17509,7 @@ msgstr "Напомена: За најбоље резултате, слике м msgid "Note: Multiple sessions will be allowed in case of mobile device" msgstr "Напомена: Вишеструке сесије ће бити дозвољене на мобилним уређајима" -#: frappe/core/doctype/user/user.js:399 +#: frappe/core/doctype/user/user.js:387 msgid "Note: This will be shared with user." msgstr "Напомена: Ово ће бити подељено са корисником." @@ -17503,15 +17581,15 @@ msgstr "Документ на који је корисник претплаће msgid "Notification sent to" msgstr "Обавештење послато ка" -#: frappe/email/doctype/notification/notification.py:542 +#: frappe/email/doctype/notification/notification.py:544 msgid "Notification: customer {0} has no Mobile number set" msgstr "Обавештење: купац {0} нема подешен број мобилног телефона" -#: frappe/email/doctype/notification/notification.py:528 +#: frappe/email/doctype/notification/notification.py:530 msgid "Notification: document {0} has no {1} number set (field: {2})" msgstr "Обавештење: документ {0} нема подешен {1} број (поље: {2})" -#: frappe/email/doctype/notification/notification.py:537 +#: frappe/email/doctype/notification/notification.py:539 msgid "Notification: user {0} has no Mobile number set" msgstr "Обавештење: корисник {0} нема подешен број мобилног телефона" @@ -17625,7 +17703,7 @@ msgstr "Број упита" msgid "Number of attachment fields are more than {}, limit updated to {}." msgstr "Број поља за приложене фајлове је већи од {}, ограничење је ажурирано на {}." -#: frappe/core/doctype/system_settings/system_settings.py:171 +#: frappe/core/doctype/system_settings/system_settings.py:172 msgid "Number of backups must be greater than zero." msgstr "Број резервних копија мора бити већи од нуле." @@ -17897,7 +17975,7 @@ msgstr "Уводна обука завршена" #. Description of the 'Is Submittable' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:42 +#: frappe/core/doctype/doctype/doctype_list.js:43 msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended." msgstr "Једном када су поднети, документи који се могу поднети не могу се мењати. Могу се само отказати или изменити." @@ -17986,11 +18064,11 @@ msgstr "Могу се брисати само извештаји креиран msgid "Only reports of type Report Builder can be edited" msgstr "Могу се уређивати само извештаји креирани помоћу уређивача извештаја" -#: frappe/custom/doctype/customize_form/customize_form.py:129 +#: frappe/custom/doctype/customize_form/customize_form.py:131 msgid "Only standard DocTypes are allowed to be customized from Customize Form." msgstr "Само стандардни DocType-ови могу бити прилагођени путем поља прилагоди образац." -#: frappe/model/delete_doc.py:241 +#: frappe/model/delete_doc.py:281 msgid "Only the Administrator can delete a standard DocType." msgstr "Искључиво администратор може обрисати стандардни DocType." @@ -18086,7 +18164,7 @@ msgstr "Отвори конзолу" msgid "Open in a new tab" msgstr "Отвори у новој картици" -#: frappe/public/js/frappe/list/list_view.js:1431 +#: frappe/public/js/frappe/list/list_view.js:1433 msgctxt "Description of a list view shortcut" msgid "Open list item" msgstr "Отворене ставке" @@ -18135,7 +18213,7 @@ msgstr "Отворено" msgid "Operation" msgstr "Операција" -#: frappe/utils/data.py:2146 +#: frappe/utils/data.py:2172 msgid "Operator must be one of {0}" msgstr "Оператор мора бити један од следећих {0}" @@ -18181,6 +18259,7 @@ msgstr "Опционо: Упозорење ће бити послато укол #. 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 (Text) field in DocType 'Web Form List Column' #. 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 @@ -18189,6 +18268,7 @@ msgstr "Опционо: Упозорење ће бити послато укол #: 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_form_list_column/web_form_list_column.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Options" msgstr "Опције" @@ -18234,7 +18314,7 @@ msgstr "Наранџаста" msgid "Order" msgstr "Редослед" -#: frappe/database/query.py:767 +#: frappe/database/query.py:769 msgid "Order By must be a string" msgstr "Сортирај по мора бити текст" @@ -18332,7 +18412,7 @@ msgstr "PATCH" #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/printing/page/print/print.js:84 #: frappe/public/js/frappe/form/templates/print_layout.html:44 -#: frappe/public/js/frappe/views/reports/query_report.js:1804 +#: frappe/public/js/frappe/views/reports/query_report.js:1812 msgid "PDF" msgstr "PDF" @@ -18680,8 +18760,8 @@ msgstr "Пасиван" #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/system_settings/system_settings.json -#: frappe/core/doctype/user/user.js:177 frappe/core/doctype/user/user.js:224 -#: frappe/core/doctype/user/user.js:244 +#: frappe/core/doctype/user/user.js:165 frappe/core/doctype/user/user.js:212 +#: frappe/core/doctype/user/user.js:232 #: 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 @@ -18704,7 +18784,7 @@ msgstr "Ресетовање лозинке" msgid "Password Reset Link Generation Limit" msgstr "Ограничење за генерисање линкова за ресетовање лозинке" -#: frappe/public/js/frappe/form/grid_row.js:896 +#: frappe/public/js/frappe/form/grid_row.js:897 msgid "Password cannot be filtered" msgstr "Лозинка се не може филтрирати" @@ -18741,7 +18821,7 @@ msgstr "Упутство за ресетовање лозинке је посл msgid "Password set" msgstr "Лозинка постављена" -#: frappe/auth.py:258 +#: frappe/auth.py:261 msgid "Password size exceeded the maximum allowed size" msgstr "Величина лозинке премашује дозвољену границу" @@ -18753,7 +18833,7 @@ msgstr "Дужина лозинке премашује дозвољену гра msgid "Passwords do not match" msgstr "Лозинке се не подударају" -#: frappe/core/doctype/user/user.js:210 +#: frappe/core/doctype/user/user.js:198 msgid "Passwords do not match!" msgstr "Лозинке се не подударају!" @@ -18904,7 +18984,7 @@ msgstr "Трајно поднети {0}?" msgid "Permanently delete {0}?" msgstr "Трајно обрисати {0}?" -#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533 +#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:535 msgid "Permission Error" msgstr "Грешка у дозволама" @@ -18964,8 +19044,8 @@ msgstr "Врста дозволе" #: 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:143 frappe/core/doctype/user/user.js:152 -#: frappe/core/doctype/user/user.js:161 +#: frappe/core/doctype/user/user.js:131 frappe/core/doctype/user/user.js:140 +#: frappe/core/doctype/user/user.js:149 #: 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 @@ -19035,6 +19115,7 @@ msgstr "Захтев за преузимање личних података" #. Option for the 'Type' (Select) field in DocType 'Communication' #. Option for the 'Type' (Select) field in DocType 'DocField' #. Label of the phone (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #. 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' @@ -19045,6 +19126,7 @@ msgstr "Захтев за преузимање личних података" #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.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 @@ -19219,7 +19301,7 @@ msgstr "Молимо Вас да не мењате наслове шаблона msgid "Please duplicate this to make changes" msgstr "Молимо Вас да дуплирате ово како бисте направили измене" -#: frappe/core/doctype/system_settings/system_settings.py:164 +#: frappe/core/doctype/system_settings/system_settings.py:165 msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login." msgstr "Молимо Вас да омогућите барем један кључ за пријављивање путем друштвених мрежа или LDAP или пријављивање путем имејл линка пре него што онемогућите пријаву помоћу корисничког имена и лозинке." @@ -19351,11 +19433,11 @@ msgstr "Молимо Вас да прво изаберете DocType" msgid "Please select Entity Type first" msgstr "Молимо Вас да прво изаберете врсту ентитета" -#: frappe/core/doctype/system_settings/system_settings.py:115 +#: frappe/core/doctype/system_settings/system_settings.py:116 msgid "Please select Minimum Password Score" msgstr "Молимо Вас да одаберете минималну оцену јачине лозинке" -#: frappe/public/js/frappe/views/reports/query_report.js:1185 +#: frappe/public/js/frappe/views/reports/query_report.js:1193 msgid "Please select X and Y fields" msgstr "Молимо Вас да изаберете X и Y поља" @@ -19383,7 +19465,7 @@ msgstr "Молимо Вас да изаберете важећи филтер д msgid "Please select applicable Doctypes" msgstr "Молимо Вас да изаберете примењиве DocType-ове" -#: frappe/model/db_query.py:1157 +#: frappe/model/db_query.py:1163 msgid "Please select atleast 1 column from {0} to sort/group" msgstr "Молимо Вас да изаберете барем 1 колону из {0} за сортирање/груписање" @@ -19413,7 +19495,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:1408 +#: frappe/public/js/frappe/views/reports/query_report.js:1416 msgid "Please set filters" msgstr "Молимо Вас да поставите филтере" @@ -19433,7 +19515,7 @@ msgstr "Молимо Вас да прво поставите следећа до msgid "Please set the series to be used." msgstr "Молимо Вас да поставите серију која ће се користити." -#: frappe/core/doctype/system_settings/system_settings.py:128 +#: frappe/core/doctype/system_settings/system_settings.py:129 msgid "Please setup SMS before setting it as an authentication method, via SMS Settings" msgstr "Молимо Вас да поставите SMS пре него што га поставите као метод аутентификације, путем SMS подешавања" @@ -19585,7 +19667,7 @@ msgstr "Поштански број" msgid "Posting Timestamp" msgstr "Време објаве" -#: frappe/database/query.py:1518 +#: frappe/database/query.py:1520 msgid "Potentially dangerous content in string literal: {0}" msgstr "Потенцијално опасан садржај у текстуалном изразу: {0}" @@ -19602,7 +19684,7 @@ msgstr "Прецизност" #: frappe/core/doctype/doctype/doctype.py:1670 msgid "Precision ({0}) for {1} cannot be greater than its length ({2})." -msgstr "" +msgstr "Прецизност ({0}) за {1} не може бити већа од његове дужине ({2})." #: frappe/core/doctype/doctype/doctype.py:1401 msgid "Precision should be between 1 and 6" @@ -19787,13 +19869,13 @@ msgstr "Примарни кључ за DocType {0} не може бити про #: 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:1789 +#: frappe/public/js/frappe/views/reports/query_report.js:1797 #: frappe/public/js/frappe/views/reports/report_view.js:1539 -#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18 +#: frappe/public/js/frappe/views/treeview.js:492 frappe/www/printview.html:18 msgid "Print" msgstr "Штампа" -#: frappe/public/js/frappe/list/list_view.js:2164 +#: frappe/public/js/frappe/list/list_view.js:2166 msgctxt "Button in list view actions menu" msgid "Print" msgstr "Штампа" @@ -19863,7 +19945,7 @@ msgstr "Помоћ за формат штампе" msgid "Print Format Type" msgstr "Врста формата штампе" -#: frappe/public/js/frappe/views/reports/query_report.js:1578 +#: frappe/public/js/frappe/views/reports/query_report.js:1586 msgid "Print Format not found" msgstr "Формат штампе није пронађен" @@ -20044,11 +20126,11 @@ msgstr "Савет: Додаје Reference: {{ reference_doctype }} {{ ref msgid "Proceed" msgstr "Настави" -#: frappe/public/js/frappe/views/reports/query_report.js:932 +#: frappe/public/js/frappe/views/reports/query_report.js:940 msgid "Proceed Anyway" msgstr "Ипак настави" -#: frappe/public/js/frappe/form/controls/table.js:123 +#: frappe/public/js/frappe/form/controls/table.js:104 msgid "Processing" msgstr "Обрада" @@ -20065,11 +20147,21 @@ msgstr "Проф" msgid "Profile" msgstr "Профил" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile Picture" +msgstr "Профилна слика" + +#. Success message of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile updated successfully." +msgstr "Профил је успешно ажуриран." + #: frappe/public/js/frappe/socketio_client.js:82 msgid "Progress" msgstr "Напредак" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:408 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:422 msgid "Project" msgstr "Пројекат" @@ -20113,7 +20205,7 @@ msgstr "Врста својства" msgid "Protect Attached Files" msgstr "Заштити приложене фајлове" -#: frappe/core/doctype/file/file.py:523 +#: frappe/core/doctype/file/file.py:526 msgid "Protected File" msgstr "Заштићени фајл" @@ -20619,11 +20711,11 @@ msgstr "У реалном времену (SocketIO)" msgid "Reason" msgstr "Разлог" -#: frappe/public/js/frappe/views/reports/query_report.js:886 +#: frappe/public/js/frappe/views/reports/query_report.js:894 msgid "Rebuild" msgstr "Обнови" -#: frappe/public/js/frappe/views/treeview.js:509 +#: frappe/public/js/frappe/views/treeview.js:511 msgid "Rebuild Tree" msgstr "Обнови стабло" @@ -21004,8 +21096,8 @@ 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:1778 -#: frappe/public/js/frappe/views/treeview.js:496 +#: frappe/public/js/frappe/views/reports/query_report.js:1786 +#: frappe/public/js/frappe/views/treeview.js:498 #: frappe/public/js/frappe/widgets/chart_widget.js:291 #: frappe/public/js/frappe/widgets/number_card_widget.js:352 #: frappe/public/js/print_format_builder/Preview.vue:24 @@ -21036,13 +21128,13 @@ msgstr "Освежи преглед штампе" msgid "Refresh Token" msgstr "Токен за освежавање" -#: frappe/public/js/frappe/list/list_view.js:534 +#: frappe/public/js/frappe/list/list_view.js:536 msgctxt "Document count in list view" msgid "Refreshing" msgstr "Освежавање" #: frappe/core/doctype/system_settings/system_settings.js:57 -#: frappe/core/doctype/user/user.js:374 +#: frappe/core/doctype/user/user.js:362 #: frappe/desk/page/setup_wizard/setup_wizard.js:211 msgid "Refreshing..." msgstr "Освежавање..." @@ -21427,7 +21519,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:1965 +#: frappe/public/js/frappe/views/reports/query_report.js:1973 msgid "Report Name" msgstr "Назив извештаја" @@ -21479,7 +21571,7 @@ msgstr "Извештај нема података, молимо Вас да и msgid "Report has no numeric fields, please change the Report Name" msgstr "Извештај нема нумеричких поља, молимо Вас да промените назив извештаја" -#: frappe/public/js/frappe/views/reports/query_report.js:1013 +#: frappe/public/js/frappe/views/reports/query_report.js:1021 msgid "Report initiated, click to view status" msgstr "Извештај је покренут, кликните да бисте погледали статус" @@ -21499,7 +21591,7 @@ msgstr "Извештај је успешно ажуриран" msgid "Report was not saved (there were errors)" msgstr "Извештај није сачуван (догодиле су се грешке)" -#: frappe/public/js/frappe/views/reports/query_report.js:2003 +#: frappe/public/js/frappe/views/reports/query_report.js:2011 msgid "Report with more than 10 columns looks better in Landscape mode." msgstr "Извештај са више од 10 колона изгледа боље у пејзажном режиму." @@ -21535,7 +21627,7 @@ msgstr "Извештаји" msgid "Reports & Masters" msgstr "Извештаји и мастер подаци" -#: frappe/public/js/frappe/views/reports/query_report.js:929 +#: frappe/public/js/frappe/views/reports/query_report.js:937 msgid "Reports already in Queue" msgstr "Извештаји су већ у реду" @@ -21554,7 +21646,10 @@ msgid "Request Body" msgstr "Тело захтева" #. Label of the data (Code) field in DocType 'Integration Request' +#. Title of the request-data Web Form +#. Button label of the request-data Web Form #: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/website/web_form/request_data/request_data.json msgid "Request Data" msgstr "Подаци захтева" @@ -21606,6 +21701,11 @@ msgstr "Време за захтев је истекло" msgid "Request URL" msgstr "URL захтева" +#. Title of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "Request for Account Deletion" +msgstr "Захтев за брисање налога" + #. Label of the requested_numbers (Code) field in DocType 'SMS Log' #: frappe/core/doctype/sms_log/sms_log.json msgid "Requested Numbers" @@ -21661,7 +21761,7 @@ msgstr "Ресетуј прилагођавања контролне табле" msgid "Reset Fields" msgstr "Ресетуј поља" -#: frappe/core/doctype/user/user.js:184 frappe/core/doctype/user/user.js:187 +#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:175 msgid "Reset LDAP Password" msgstr "Ресетуј LDAP лозинку" @@ -21669,11 +21769,11 @@ msgstr "Ресетуј LDAP лозинку" msgid "Reset Layout" msgstr "Ресетуј распоред" -#: frappe/core/doctype/user/user.js:235 +#: frappe/core/doctype/user/user.js:223 msgid "Reset OTP Secret" msgstr "Ресетуј тајну једнократне лозинке" -#: frappe/core/doctype/user/user.js:168 frappe/www/login.html:199 +#: frappe/core/doctype/user/user.js:156 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" @@ -21708,7 +21808,7 @@ msgstr "Врати на подразумевано" msgid "Reset sorting" msgstr "Ресетуј сортирање" -#: frappe/public/js/frappe/form/grid_row.js:433 +#: frappe/public/js/frappe/form/grid_row.js:434 msgid "Reset to default" msgstr "Врати на подразумевано" @@ -21960,7 +22060,7 @@ 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 +#: frappe/public/js/frappe/roles_editor.js:114 msgid "Role Permissions" msgstr "Дозволе улога" @@ -21970,7 +22070,7 @@ msgstr "Дозволе улога" msgid "Role Permissions Manager" msgstr "Менаџер дозвола улога" -#: frappe/public/js/frappe/list/list_view.js:1933 +#: frappe/public/js/frappe/list/list_view.js:1935 msgctxt "Button in list view menu" msgid "Role Permissions Manager" msgstr "Менаџер дозвола улога" @@ -22163,11 +22263,11 @@ msgstr "Вредности у реду су измењене" msgid "Row {0}" msgstr "Ред {0}" -#: frappe/custom/doctype/customize_form/customize_form.py:353 +#: frappe/custom/doctype/customize_form/customize_form.py:357 msgid "Row {0}: Not allowed to disable Mandatory for standard fields" msgstr "Ред {0}: Није дозвољено онемогућити обавезно за стандардна поља" -#: frappe/custom/doctype/customize_form/customize_form.py:342 +#: frappe/custom/doctype/customize_form/customize_form.py:346 msgid "Row {0}: Not allowed to enable Allow on Submit for standard fields" msgstr "Ред {0}: Није дозвољено омогућити дозволу при подношењу за стандардна поља" @@ -22186,7 +22286,10 @@ msgid "Rows Removed" msgstr "Редови уклоњени" #. Label of the rows_threshold_for_grid_search (Int) field in DocType 'DocType' +#. Label of the rows_threshold_for_grid_search (Int) field in DocType +#. 'Customize Form' #: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Rows Threshold for Grid Search" msgstr "Праг редова за претрагу у табели" @@ -22394,8 +22497,8 @@ msgstr "Субота" #: 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:1957 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 +#: frappe/public/js/frappe/views/reports/query_report.js:1965 #: frappe/public/js/frappe/views/reports/report_view.js:1735 #: frappe/public/js/frappe/views/workspace/workspace.js:335 #: frappe/public/js/frappe/widgets/base_widget.js:142 @@ -22418,11 +22521,11 @@ msgstr "Сачувај као" msgid "Save Customizations" msgstr "Сачувај прилагођавања" -#: frappe/public/js/frappe/views/reports/query_report.js:1960 +#: frappe/public/js/frappe/views/reports/query_report.js:1968 msgid "Save Report" msgstr "Сачувај извештај" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:97 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:107 msgid "Save filters" msgstr "Сачувај филтере" @@ -22794,7 +22897,7 @@ msgstr "Подешавања безбедности" msgid "See all Activity" msgstr "Погледај све активности" -#: frappe/public/js/frappe/views/reports/query_report.js:855 +#: frappe/public/js/frappe/views/reports/query_report.js:863 msgid "See all past reports." msgstr "Погледај све претходне извештаје." @@ -22858,7 +22961,7 @@ msgstr "Изабери" #: 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:497 +#: frappe/public/js/frappe/form/grid_row.js:498 msgid "Select All" msgstr "Изабери све" @@ -22938,7 +23041,7 @@ msgstr "Изабери поље" msgid "Select Field..." msgstr "Изабери поље..." -#: frappe/public/js/frappe/form/grid_row.js:489 +#: frappe/public/js/frappe/form/grid_row.js:490 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:181 msgid "Select Fields" msgstr "Изабери поља" @@ -23058,8 +23161,8 @@ msgid "Select a field to edit its properties." msgstr "Изаберите поље да бисте уредили његова својства." #: frappe/public/js/frappe/views/treeview.js:358 -msgid "Select a group node first." -msgstr "Изабери групни чвор." +msgid "Select a group {0} first." +msgstr "Најпре изаберите групу {0}." #: frappe/core/doctype/doctype/doctype.py:1956 msgid "Select a valid Sender Field for creating documents from Email" @@ -23095,13 +23198,13 @@ msgstr "Изабери бар један запис за штампање" msgid "Select atleast 2 actions" msgstr "Изабери бар 2 радње" -#: frappe/public/js/frappe/list/list_view.js:1445 +#: frappe/public/js/frappe/list/list_view.js:1447 msgctxt "Description of a list view shortcut" msgid "Select list item" msgstr "Изабери ставку из листе" -#: frappe/public/js/frappe/list/list_view.js:1397 -#: frappe/public/js/frappe/list/list_view.js:1413 +#: frappe/public/js/frappe/list/list_view.js:1399 +#: frappe/public/js/frappe/list/list_view.js:1415 msgctxt "Description of a list view shortcut" msgid "Select multiple list items" msgstr "Изабери више ставки из листе" @@ -23423,7 +23526,7 @@ msgstr "Серија {0} је већ искоришћена у {1}" msgid "Server Action" msgstr "Серверска радња" -#: frappe/app.py:396 frappe/public/js/frappe/request.js:611 +#: frappe/app.py:399 frappe/public/js/frappe/request.js:611 #: frappe/www/error.html:36 frappe/www/error.py:15 msgid "Server Error" msgstr "Серверска грешка" @@ -23489,7 +23592,7 @@ msgstr "Подразумеване вредности сесије" msgid "Session Defaults Saved" msgstr "Подразумеване вредности сесије су сачуване" -#: frappe/app.py:373 +#: frappe/app.py:376 msgid "Session Expired" msgstr "Сесија је истекла" @@ -23498,7 +23601,7 @@ msgstr "Сесија је истекла" msgid "Session Expiry (idle timeout)" msgstr "Истек сесије (време неактивности)" -#: frappe/core/doctype/system_settings/system_settings.py:122 +#: frappe/core/doctype/system_settings/system_settings.py:123 msgid "Session Expiry must be in format {0}" msgstr "Истек сесије мора бити у формату {0}" @@ -23547,7 +23650,7 @@ msgstr "Постави филтере" msgid "Set Filters for {0}" msgstr "Постави филтере за {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:2113 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 msgid "Set Level" msgstr "Постави ниво" @@ -23601,7 +23704,7 @@ msgstr "Постави количину" msgid "Set Role For" msgstr "Постави улогу за" -#: frappe/core/doctype/user/user.js:136 +#: frappe/core/doctype/user/user.js:124 #: frappe/core/page/permission_manager/permission_manager.js:72 msgid "Set User Permissions" msgstr "Постави корисничке дозволе" @@ -23652,7 +23755,7 @@ msgstr "Поставите нестандардну прецизност за п #. Description of the 'Precision' (Select) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json msgid "Set non-standard precision for a Float, Currency or Percent field" -msgstr "" +msgstr "Подесите нестандардну прецизност за поља врсте децимални број, валута или проценат" #. Label of the set_only_once (Check) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json @@ -23787,7 +23890,7 @@ msgstr "Поставке > Корисник" msgid "Setup > User Permissions" msgstr "Поставке > Корисничке дозволе" -#: frappe/public/js/frappe/views/reports/query_report.js:1826 +#: frappe/public/js/frappe/views/reports/query_report.js:1834 #: frappe/public/js/frappe/views/reports/report_view.js:1713 msgid "Setup Auto Email" msgstr "Поставке аутоматског имејла" @@ -23928,6 +24031,12 @@ msgstr "Прикажи документ" msgid "Show Error" msgstr "Прикажи грешку" +#. Label of the show_external_link_warning (Select) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Show External Link Warning" +msgstr "Прикажи упозорење за екстерне линкове" + #: frappe/public/js/frappe/form/layout.js:578 msgid "Show Fieldname (click to copy on clipboard)" msgstr "Прикажи назив поља (кликни за копирање)" @@ -24056,7 +24165,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:1849 +#: frappe/public/js/frappe/list/list_view.js:1851 msgid "Show Tags" msgstr "Прикажи ознаке" @@ -24263,36 +24372,36 @@ msgstr "Регистрација онемогућена" msgid "Signups have been disabled for this website." msgstr "Регистрација је онемогућена за овај веб-сајт." -#. 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 "Једноставни пyтхон израз, пример: Статус ин (\"Затворено\", \"Отказано\")" - #. 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 "Једноставни пyтхон израз, пример: статус ин (\"Неважеће\")" +msgid "Simple Python Expression, Example: status == \"Invalid\"" +msgstr "Једноставни python израз, пример: status == \"Invalid\"" #. 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 "Једноставни пyтхон израз, пример: status == 'Open' and type == 'Bug'" +msgid "Simple Python Expression, Example: status == 'Open' and issue_type == 'Bug'" +msgstr "Једноставни python израз, пример: status == 'Open' and issue_type == 'Bug'" + +#. 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 "Једноставни python израз, пример: status in (\"Closed\", \"Cancelled\")" #. Label of the simultaneous_sessions (Int) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Simultaneous Sessions" msgstr "Истовремене сесије" -#: frappe/custom/doctype/customize_form/customize_form.py:126 +#: frappe/custom/doctype/customize_form/customize_form.py:128 msgid "Single DocTypes cannot be customized." msgstr "Јединствени DocType-ови се не могу прилагођавати." #. Description of the 'Is Single' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:67 +#: frappe/core/doctype/doctype/doctype_list.js:68 msgid "Single Types have only one record no tables associated. Values are stored in tabSingles" msgstr "Јединствене врсте имају само један запис, без повезаних табела. Вредности се чувају у табели tabSingles" @@ -24628,7 +24737,7 @@ msgid "Splash Image" msgstr "Спласх слика" #: frappe/desk/reportview.py:455 -#: frappe/public/js/frappe/web_form/web_form_list.js:175 +#: frappe/public/js/frappe/web_form/web_form_list.js:176 #: frappe/templates/print_formats/standard_macros.html:44 msgid "Sr" msgstr "Ср" @@ -24660,7 +24769,7 @@ msgstr "Stack Trace" msgid "Standard" msgstr "Стандардно" -#: frappe/model/delete_doc.py:79 +#: frappe/model/delete_doc.py:119 msgid "Standard DocType can not be deleted." msgstr "Стандардни DocType не може бити обрисан." @@ -24930,7 +25039,7 @@ msgstr "Кораци за верификацију Вашег пријављив #. Label of the sticky (Check) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json -#: frappe/public/js/frappe/form/grid_row.js:454 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Sticky" msgstr "Прикачен" @@ -24960,7 +25069,7 @@ msgstr "Искоришћеност простора по табелама" msgid "Store Attached PDF Document" msgstr "Спреми приложени PDF документ" -#: frappe/core/doctype/user/user.js:490 +#: frappe/core/doctype/user/user.js:497 msgid "Store the API secret securely. It won't be displayed again." msgstr "Сачувајте API тајну на сигурном месту. Неће бити више приказивана." @@ -25072,6 +25181,7 @@ msgstr "Ред чекања за подношење" #. 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' +#. Button label of the request-to-delete-data Web Form #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/docshare/docshare.json @@ -25080,10 +25190,11 @@ msgstr "Ред чекања за подношење" #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/quick_entry.js:225 #: frappe/public/js/frappe/ui/capture.js:307 +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json msgid "Submit" msgstr "Поднеси" -#: frappe/public/js/frappe/list/list_view.js:2231 +#: frappe/public/js/frappe/list/list_view.js:2233 msgctxt "Button in list view actions menu" msgid "Submit" msgstr "Поднеси" @@ -25093,7 +25204,7 @@ msgctxt "Button in web form" msgid "Submit" msgstr "Поднеси" -#: frappe/public/js/frappe/ui/dialog.js:63 +#: frappe/public/js/frappe/ui/dialog.js:64 msgctxt "Primary action in dialog" msgid "Submit" msgstr "Поднеси" @@ -25141,7 +25252,7 @@ msgstr "Поднесите овај документ да бисте заврш msgid "Submit this document to confirm" msgstr "Поднесите овај документ да бисте потврдили" -#: frappe/public/js/frappe/list/list_view.js:2236 +#: frappe/public/js/frappe/list/list_view.js:2238 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "Поднеси {0} докумената?" @@ -25191,7 +25302,7 @@ msgstr "Поднаслов" #: 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:1171 +#: frappe/public/js/frappe/form/grid.js:1172 #: frappe/public/js/frappe/views/translation_manager.js:21 #: frappe/templates/includes/login/login.js:230 #: frappe/templates/includes/login/login.js:236 @@ -25406,7 +25517,7 @@ msgstr "Синхронизовање" msgid "Syncing {0} of {1}" msgstr "Синхронизовање {0} од {1}" -#: frappe/utils/data.py:2547 +#: frappe/utils/data.py:2573 msgid "Syntax Error" msgstr "Грешка у синтакси" @@ -25717,7 +25828,7 @@ msgstr "Вишеструки одабир у табели" msgid "Table Trimmed" msgstr "Скраћена табела" -#: frappe/public/js/frappe/form/grid.js:1170 +#: frappe/public/js/frappe/form/grid.js:1171 msgid "Table updated" msgstr "Табела ажурирана" @@ -25934,7 +26045,7 @@ msgstr "Хвала" msgid "The Auto Repeat for this document has been disabled." msgstr "Аутоматско понављање за овај документ је онемогућено." -#: frappe/public/js/frappe/form/grid.js:1193 +#: frappe/public/js/frappe/form/grid.js:1194 msgid "The CSV format is case sensitive" msgstr "CSV формат разликује велика и мала слова" @@ -26006,7 +26117,7 @@ msgstr "Коментар не може бити празан" 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:685 +#: frappe/public/js/frappe/list/list_view.js:687 msgid "The count shown is an estimated count. Click here to see the accurate count." msgstr "Приказан број процена. Кликните овде да видите тачан број." @@ -26110,7 +26221,7 @@ msgstr "Број пројекта добијен путем Google Cloud кон #: frappe/desk/utils.py:106 msgid "The report you requested has been generated.

Click here to download:
{0}

This link will expire in {1} hours." -msgstr "" +msgstr "Извештај који сте затражили је генерисан.

Кликните овде за преузимање:
{0}

Овај линк истиче за {1} сата." #: frappe/core/doctype/user/user.py:1000 msgid "The reset password link has been expired" @@ -26120,7 +26231,7 @@ msgstr "Линк за ресетовање лозинке је истекао" msgid "The reset password link has either been used before or is invalid" msgstr "Линк за ресетовање лозинке је већ коришћен или је неважећи" -#: frappe/app.py:388 frappe/public/js/frappe/request.js:149 +#: frappe/app.py:391 frappe/public/js/frappe/request.js:149 msgid "The resource you are looking for is not available" msgstr "Ресурс који тражите није доступан" @@ -26193,12 +26304,12 @@ 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:965 +#: frappe/public/js/frappe/views/reports/query_report.js:973 msgid "There are {0} with the same filters already in the queue:" msgstr "Већ постоји {0} са истим филтерима у реду чекања:" #: frappe/website/doctype/web_form/web_form.js:81 -#: frappe/website/doctype/web_form/web_form.js:317 +#: frappe/website/doctype/web_form/web_form.js:318 msgid "There can be only 9 Page Break fields in a Web Form" msgstr "У веб-обрасцу може бити највише 9 поља за прелом странице" @@ -26222,11 +26333,11 @@ msgstr "Не постоји задатак под називом \"{}\"" msgid "There is nothing new to show you right now." msgstr "Тренутно нема ничег новог да се прикаже." -#: frappe/core/doctype/file/file.py:640 frappe/utils/file_manager.py:372 +#: frappe/core/doctype/file/file.py:643 frappe/utils/file_manager.py:372 msgid "There is some problem with the file url: {0}" msgstr "Дошло је до проблема са URL адресом фајла: {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:962 +#: frappe/public/js/frappe/views/reports/query_report.js:970 msgid "There is {0} with the same filters already in the queue:" msgstr "Већ постоји {0} са истим филтерима у реду чекања:" @@ -26238,7 +26349,7 @@ msgstr "Мора постојати барем једно правило доз msgid "There was an error building this page" msgstr "Дошло је до грешке приликом изградње ове странице" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:182 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:196 msgid "There was an error saving filters" msgstr "Дошло је до грешке приликом чувања филтера" @@ -26295,7 +26406,7 @@ msgstr "Аутентификација путем екстерних аплик msgid "This Currency is disabled. Enable to use in transactions" msgstr "Ова валута је онемогућена. Омогућите је да бисте је користили у трансакцијама" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:391 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:405 msgid "This Kanban Board will be private" msgstr "Ова Канбан табла ће бити приватна" @@ -26332,10 +26443,10 @@ msgstr "Ова радња је дозвољена само за {}" msgid "This cannot be undone" msgstr "Ово се не може опозвати" -#: frappe/desk/doctype/number_card/number_card.js:480 +#: frappe/desk/doctype/number_card/number_card.js:484 msgctxt "Number Card" msgid "This card is visible only to Administrator and System Managers by default. Set a DocType to share with users who have read access." -msgstr "" +msgstr "Ова картица је подразумевано видљива само администратору и систем менаџерима. Подесите DocType да је делите са корисницима који имају право читања." #. Description of the 'Is Public' (Check) field in DocType 'Number Card' #: frappe/desk/doctype/number_card/number_card.json @@ -26355,7 +26466,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:113 +#: frappe/model/delete_doc.py:153 msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time." msgstr "Овај документ се не може тренутно обрисати јер га други корисник уређује. Покушајте поново касније." @@ -26401,7 +26512,7 @@ msgstr "Ово поље ће се приказати само уколико п "eval:doc.myfield=='My Value'\n" "eval:doc.age>18" -#: frappe/core/doctype/file/file.py:522 +#: frappe/core/doctype/file/file.py:525 msgid "This file is attached to a protected document and cannot be deleted." msgstr "Овај фајл је приложен у заштићени документ и не може се обрисати." @@ -26436,7 +26547,7 @@ msgstr "Овај провајдер геолокације још увек ни msgid "This goes above the slideshow." msgstr "Ово се приказује изнад презентације." -#: frappe/public/js/frappe/views/reports/query_report.js:2189 +#: frappe/public/js/frappe/views/reports/query_report.js:2197 msgid "This is a background report. Please set the appropriate filters and then generate a new one." msgstr "Ово је извештај који се генерише у позадини. Поставите одговарајуће филтере и затим генеришите нови извештај." @@ -26486,7 +26597,7 @@ msgstr "Ово може бити одштампано на више страни msgid "This month" msgstr "Овај месец" -#: frappe/public/js/frappe/views/reports/query_report.js:1037 +#: frappe/public/js/frappe/views/reports/query_report.js:1045 msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead." msgstr "Овај извештај садржи {0} редова и превелики је за приказ у интернет претраживачу, уместо тога можете га {1}." @@ -26494,7 +26605,7 @@ msgstr "Овај извештај садржи {0} редова и превел msgid "This report was generated on {0}" msgstr "Овај извештај је генерисан на {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:853 +#: frappe/public/js/frappe/views/reports/query_report.js:861 msgid "This report was generated {0}." msgstr "Овај извештај је генерисан {0}." @@ -26636,9 +26747,11 @@ msgstr "Временски прозор (у секундама)" #. Label of the time_zone (Select) field in DocType 'System Settings' #. Label of the time_zone (Autocomplete) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #. 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/core/web_form/edit_profile/edit_profile.json #: frappe/desk/page/setup_wizard/setup_wizard.js:407 #: frappe/website/doctype/web_page_view/web_page_view.json msgid "Time Zone" @@ -26905,7 +27018,7 @@ msgstr "Да бисте извршили извоз овог корака као msgid "To generate password click {0}" msgstr "За генерисање лозинке кликните {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:854 +#: frappe/public/js/frappe/views/reports/query_report.js:862 msgid "To get the updated report, click on {0}." msgstr "За ажурирани извештај кликните на {0}." @@ -26980,7 +27093,7 @@ msgstr "Пребаци у приказ мреже" msgid "Toggle Sidebar" msgstr "Пребаци бочну траку" -#: frappe/public/js/frappe/list/list_view.js:1964 +#: frappe/public/js/frappe/list/list_view.js:1966 msgctxt "Button in list view menu" msgid "Toggle Sidebar" msgstr "Пребаци бочну траку" @@ -27106,7 +27219,7 @@ msgstr "Тема" #: frappe/desk/query_report.py:587 #: frappe/public/js/frappe/views/reports/print_grid.html:45 -#: frappe/public/js/frappe/views/reports/query_report.js:1324 +#: frappe/public/js/frappe/views/reports/query_report.js:1332 #: frappe/public/js/frappe/views/reports/report_view.js:1553 msgid "Total" msgstr "Укупно" @@ -27265,7 +27378,7 @@ msgstr "Транзиције" msgid "Translatable" msgstr "Могуће превођење" -#: frappe/public/js/frappe/views/reports/query_report.js:2244 +#: frappe/public/js/frappe/views/reports/query_report.js:2252 msgid "Translate Data" msgstr "Преведи податке" @@ -27624,7 +27737,7 @@ msgstr "Није могуће послати имејл због недоста msgid "Unable to update event" msgstr "Није могуће ажурирати догађај" -#: frappe/core/doctype/file/file.py:486 +#: frappe/core/doctype/file/file.py:489 msgid "Unable to write file format for {0}" msgstr "Није могуће уписати формат фајла за {0}" @@ -27633,7 +27746,7 @@ msgstr "Није могуће уписати формат фајла за {0}" msgid "Unassign Condition" msgstr "Уклони додељивање услова" -#: frappe/app.py:396 +#: frappe/app.py:399 msgid "Uncaught Exception" msgstr "Неухваћени изузетак" @@ -27649,7 +27762,7 @@ msgstr "Поништи" msgid "Undo last action" msgstr "Поништи последњу радњу" -#: frappe/database/query.py:1495 +#: frappe/database/query.py:1497 msgid "Unescaped quotes in string literal: {0}" msgstr "Наводници нису правилно избегнути у текстуалном изразу: {0}" @@ -27698,7 +27811,7 @@ msgstr "Непозната колона: {0}" msgid "Unknown Rounding Method: {}" msgstr "Непознат метод заокруживања: {}" -#: frappe/auth.py:316 +#: frappe/auth.py:319 msgid "Unknown User" msgstr "Непознати корисник" @@ -27764,8 +27877,8 @@ msgstr "Параметри отказивања претплате" msgid "Unsubscribed" msgstr "Отказана претплата" -#: frappe/database/query.py:653 frappe/database/query.py:1387 -#: frappe/database/query.py:1397 +#: frappe/database/query.py:655 frappe/database/query.py:1389 +#: frappe/database/query.py:1399 msgid "Unsupported function or invalid field name: {0}" msgstr "Неподржана функција или неисправан назив поља: {0}" @@ -27799,7 +27912,7 @@ msgstr "Предстојећи догађаји за данас" #: 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:427 +#: frappe/public/js/frappe/form/grid_row.js:428 msgid "Update" msgstr "Ажурирај" @@ -27833,6 +27946,11 @@ msgstr "Ажурирај редослед" msgid "Update Password" msgstr "Ажурирај лозинку" +#. Title of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Update Profile" +msgstr "Ажурирај профил" + #. Label of the update_series (Section Break) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -28048,11 +28166,7 @@ msgstr "Користите други ИД имејла" msgid "Use if the default settings don't seem to detect your data correctly" msgstr "Користите уколико подразумевана подешавања не препознају тачно Ваше податке" -#: frappe/model/db_query.py:436 -msgid "Use of function {0} in field is restricted" -msgstr "Коришћење функције {0} у пољу је ограничено" - -#: frappe/model/db_query.py:413 +#: frappe/model/db_query.py:411 msgid "Use of sub-query or function is restricted" msgstr "Коришћење подупита или функције је ограничено" @@ -28274,12 +28388,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:1944 +#: frappe/public/js/frappe/views/reports/query_report.js:1952 #: frappe/public/js/frappe/views/reports/report_view.js:1761 msgid "User Permissions" msgstr "Корисничке дозволе" -#: frappe/public/js/frappe/list/list_view.js:1922 +#: frappe/public/js/frappe/list/list_view.js:1924 msgctxt "Button in list view menu" msgid "User Permissions" msgstr "Корисничке дозволе" @@ -28423,7 +28537,7 @@ msgstr "Корисник {0} се представља као {1}" msgid "User {0} is disabled" msgstr "Корисник {0} је онемогућен" -#: frappe/sessions.py:242 +#: frappe/sessions.py:243 msgid "User {0} is disabled. Please contact your System Manager." msgstr "Корисник {0} је онемогућен. Молимо Вас да контактирате систем менаџера." @@ -28600,7 +28714,7 @@ msgstr "Вредност не може бити негативна за {0}: {1} msgid "Value for a check field can be either 0 or 1" msgstr "Вредност за поље избора може бити само 0 или 1" -#: frappe/custom/doctype/customize_form/customize_form.py:612 +#: frappe/custom/doctype/customize_form/customize_form.py:616 msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters" msgstr "Вредност за поље {0} у {1} је предугачка. Дужина треба да буде мања од {2} карактера" @@ -28721,7 +28835,7 @@ msgstr "Прикажи све" msgid "View Audit Trail" msgstr "Прикажи историју измена" -#: frappe/core/doctype/user/user.js:156 +#: frappe/core/doctype/user/user.js:144 msgid "View Doctype Permissions" msgstr "Прикажи DocType дозволе" @@ -28733,7 +28847,7 @@ msgstr "Прикажи фајл" msgid "View Full Log" msgstr "Прикажи целу евиденцију" -#: frappe/public/js/frappe/views/treeview.js:484 +#: frappe/public/js/frappe/views/treeview.js:486 #: frappe/public/js/frappe/widgets/quick_list_widget.js:258 msgid "View List" msgstr "Прикажи листу" @@ -28743,7 +28857,7 @@ msgstr "Прикажи листу" msgid "View Log" msgstr "Прикажи евиденцију" -#: frappe/core/doctype/user/user.js:147 +#: frappe/core/doctype/user/user.js:135 #: frappe/core/doctype/user_permission/user_permission.js:24 msgid "View Permitted Documents" msgstr "Прикажи дозвољена документа" @@ -28859,6 +28973,7 @@ msgid "Warehouse" msgstr "Складиште" #. Option for the 'Style' (Select) field in DocType 'Workflow State' +#: frappe/public/js/frappe/router.js:613 #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Warning" msgstr "Упозорење" @@ -29504,7 +29619,7 @@ msgstr "Радни ток је успешно ажуриран" msgid "Workspace" msgstr "Радни простор" -#: frappe/public/js/frappe/router.js:175 +#: frappe/public/js/frappe/router.js:180 msgid "Workspace {0} does not exist" msgstr "Радни простор {0} не постоји" @@ -29626,7 +29741,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:1225 +#: frappe/public/js/frappe/views/reports/query_report.js:1233 msgid "Y Field" msgstr "Y поље" @@ -29688,7 +29803,7 @@ msgstr "Жута" #: frappe/public/js/form_builder/utils.js:336 #: frappe/public/js/frappe/form/controls/link.js:498 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1665 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 #: frappe/website/doctype/help_article/templates/help_article.html:25 msgid "Yes" msgstr "Да" @@ -29724,6 +29839,10 @@ msgstr "Додали сте 1 ред у {0}" msgid "You added {0} rows to {1}" msgstr "Додали сте {0} редова у {1}" +#: frappe/public/js/frappe/router.js:642 +msgid "You are about to open an external link. To confirm, click the link again." +msgstr "Покушавате да отворите екстерни линк. Да потврдите, кликните поново на линк." + #: frappe/public/js/frappe/dom.js:438 msgid "You are connected to internet." msgstr "Повезани сте на интернет." @@ -29767,7 +29886,7 @@ msgstr "Немате дозволу да уређујете извештај." msgid "You are not allowed to export {} doctype" msgstr "Немате дозволу да извезете DocType {}" -#: frappe/public/js/frappe/views/treeview.js:448 +#: frappe/public/js/frappe/views/treeview.js:450 msgid "You are not allowed to print this report" msgstr "Немате дозволу да одштампате овај извештај" @@ -29775,7 +29894,7 @@ msgstr "Немате дозволу да одштампате овај изве msgid "You are not allowed to send emails related to this document" msgstr "Немате дозволу да пошаљете имејл везан за овај документ" -#: frappe/website/doctype/web_form/web_form.py:605 +#: frappe/website/doctype/web_form/web_form.py:632 msgid "You are not allowed to update this Web Form Document" msgstr "Немате дозволу да ажурирате овај документ веб-обрасца" @@ -29848,11 +29967,11 @@ msgstr "Можете променити политику чувања подат msgid "You can continue with the onboarding after exploring this page" msgstr "Можете наставити са уводном обуком након што истражите ову страницу" -#: frappe/model/delete_doc.py:137 +#: frappe/model/delete_doc.py:177 msgid "You can disable this {0} instead of deleting it." msgstr "Можете онемогућити овај {0} уместо да га обришете." -#: frappe/core/doctype/file/file.py:758 +#: frappe/core/doctype/file/file.py:761 msgid "You can increase the limit from System Settings." msgstr "Можете повећати ограничење у подешавањима система." @@ -29902,11 +30021,11 @@ msgstr "Можете користити прилагоди образац за msgid "You can use wildcard %" msgstr "Можете користити заменски симбол %" -#: frappe/custom/doctype/customize_form/customize_form.py:390 +#: frappe/custom/doctype/customize_form/customize_form.py:394 msgid "You can't set 'Options' for field {0}" msgstr "Не можете поставити 'Опције' за поље {0}" -#: frappe/custom/doctype/customize_form/customize_form.py:394 +#: frappe/custom/doctype/customize_form/customize_form.py:398 msgid "You can't set 'Translatable' for field {0}" msgstr "Не можете поставити 'Могуће превођење' за поље {0}" @@ -29924,7 +30043,7 @@ msgstr "Отказали сте овај документ {1}" msgid "You cannot create a dashboard chart from single DocTypes" msgstr "Не можете креирати графикон контролне табле из једног DocType-а" -#: frappe/custom/doctype/customize_form/customize_form.py:386 +#: frappe/custom/doctype/customize_form/customize_form.py:390 msgid "You cannot unset 'Read Only' for field {0}" msgstr "Не можете уклонити опцију 'Искључиво за читање' за поље {0}" @@ -29967,11 +30086,11 @@ msgstr "Немате дозволу за читање или избор за {}" msgid "You do not have enough permissions to access this resource. Please contact your manager to get access." msgstr "Немате довољно дозвола за приступ овом ресурсу. Обратите се свом менаџеру за приступ." -#: frappe/app.py:381 +#: frappe/app.py:384 msgid "You do not have enough permissions to complete the action" msgstr "Немате довољно дозвола да довршите ову радњу" -#: frappe/database/query.py:529 +#: frappe/database/query.py:531 msgid "You do not have permission to access field: {0}" msgstr "Немате дозволу за приступ пољу: {0}" @@ -29987,7 +30106,7 @@ msgstr "Немате дозволу да откажете све повезан msgid "You don't have access to Report: {0}" msgstr "Немате приступ извештају: {0}" -#: frappe/website/doctype/web_form/web_form.py:808 +#: frappe/website/doctype/web_form/web_form.py:835 msgid "You don't have permission to access the {0} DocType." msgstr "Немате дозволе за приступ DocType-у {0}." @@ -30011,7 +30130,7 @@ msgstr "Имате нову поруку од:" msgid "You have been successfully logged out" msgstr "Успешно сте ођављени" -#: frappe/custom/doctype/customize_form/customize_form.py:245 +#: frappe/custom/doctype/customize_form/customize_form.py:247 msgid "You have hit the row size limit on database table: {0}" msgstr "Достигли сте ограничење броја редова у табели базе података: {0}" @@ -30039,7 +30158,7 @@ msgstr "Имате непрочитано {0}" msgid "You haven't added any Dashboard Charts or Number Cards yet." msgstr "Још увек нисте додали графиконе или бројчане картице на контролну таблу." -#: frappe/public/js/frappe/list/list_view.js:501 +#: frappe/public/js/frappe/list/list_view.js:503 msgid "You haven't created a {0} yet" msgstr "Још увек нисте креирали {0}" @@ -30056,11 +30175,11 @@ msgstr "Ви сте последњи пут ово уредили" msgid "You must add atleast one link." msgstr "Морате додати барем један линк." -#: frappe/website/doctype/web_form/web_form.py:804 +#: frappe/website/doctype/web_form/web_form.py:831 msgid "You must be logged in to use this form." msgstr "Морате бити пријављени да бисте користили овај образац." -#: frappe/website/doctype/web_form/web_form.py:645 +#: frappe/website/doctype/web_form/web_form.py:672 msgid "You must login to submit this form" msgstr "Морате бити пријављени да бисте поднели овај образац" @@ -30175,6 +30294,10 @@ msgstr "Престали сте да пратите овај документ" msgid "You viewed this" msgstr "Прегледали сте ово" +#: frappe/public/js/frappe/router.js:653 +msgid "You will be redirected to:" +msgstr "Бићете преусмерени на:" + #: frappe/core/doctype/user_invitation/user_invitation.py:113 msgid "You've been invited to join {0}" msgstr "Позвани сте да се придружите {0}" @@ -30220,7 +30343,7 @@ msgstr "Ваше пречице" msgid "Your account has been deleted" msgstr "Ваш налог је обрисан" -#: frappe/auth.py:514 +#: frappe/auth.py:517 msgid "Your account has been locked and will resume after {0} seconds" msgstr "Ваш налог је закључан и биће поново омогућен након {0} секунди" @@ -30284,9 +30407,9 @@ msgstr "Ваш упит је примљен. Одговорићемо Вам у #: frappe/desk/query_report.py:342 frappe/desk/reportview.py:396 msgid "Your report is being generated in the background. You will receive an email on {0} with a download link once it is ready." -msgstr "" +msgstr "Ваш извештај се генерише у позадини. Добићете имејл на {0} са линком за преузимање када буде спреман." -#: frappe/app.py:374 +#: frappe/app.py:377 msgid "Your session has expired, please login again to continue." msgstr "Ваша сесија је истекла, молимо Вас да се пријавите поново да бисте наставили." @@ -30623,7 +30746,7 @@ msgstr "листа" msgid "logged in" msgstr "пријављен" -#: frappe/website/doctype/web_form/web_form.js:362 +#: frappe/website/doctype/web_form/web_form.js:363 msgid "login_required" msgstr "login_required" @@ -30961,7 +31084,7 @@ msgstr "путем увоза података" msgid "via Google Meet" msgstr "путем Google Meet" -#: frappe/email/doctype/notification/notification.py:403 +#: frappe/email/doctype/notification/notification.py:405 msgid "via Notification" msgstr "путем обавештења" @@ -31071,7 +31194,7 @@ msgstr "{0} графикон" msgid "{0} Dashboard" msgstr "{0} контролна табла" -#: frappe/public/js/frappe/form/grid_row.js:486 +#: frappe/public/js/frappe/form/grid_row.js:487 #: frappe/public/js/frappe/list/list_settings.js:225 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:178 msgid "{0} Fields" @@ -31122,7 +31245,7 @@ msgstr "{0} није дозвољено мењати {1}, након што је msgid "{0} Report" msgstr "{0} извештај" -#: frappe/public/js/frappe/views/reports/query_report.js:956 +#: frappe/public/js/frappe/views/reports/query_report.js:964 msgid "{0} Reports" msgstr "{0} извештаји" @@ -31195,7 +31318,7 @@ msgctxt "Form timeline" msgid "{0} attached {1}" msgstr "{0} приложен {1}" -#: frappe/core/doctype/system_settings/system_settings.py:152 +#: frappe/core/doctype/system_settings/system_settings.py:153 msgid "{0} can not be more than {1}" msgstr "{0} не може бити веће од {1}" @@ -31272,7 +31395,7 @@ 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 +#: frappe/database/query.py:710 msgid "{0} fields cannot contain backticks (`): {1}" msgstr "Поља {0} не смеју да садрже backticks (`): {1}" @@ -31317,7 +31440,7 @@ msgstr "{0} у реду {1} не може имати URL и зависне ст msgid "{0} is a mandatory field" msgstr "{0} је обавезно поље" -#: frappe/core/doctype/file/file.py:566 +#: frappe/core/doctype/file/file.py:569 msgid "{0} is a not a valid zip file" msgstr "{0} није важећи зип фајл" @@ -31366,7 +31489,7 @@ msgstr "{0} је као {1}" msgid "{0} is mandatory" msgstr "{0} је обавезно" -#: frappe/database/query.py:485 +#: frappe/database/query.py:487 msgid "{0} is not a child table of {1}" msgstr "{0} није зависна табела од {1}" @@ -31386,7 +31509,7 @@ msgstr "{0} није важећи календар. Преусмеравање msgid "{0} is not a valid Cron expression." msgstr "{0} није важећи Црон израз." -#: frappe/public/js/frappe/form/controls/dynamic_link.js:27 +#: frappe/public/js/frappe/form/controls/dynamic_link.js:23 msgid "{0} is not a valid DocType for Dynamic Link" msgstr "{0} није важећи DocType или динамички линк" @@ -31423,7 +31546,7 @@ msgstr "{0} није важеће матично поље за {1}" msgid "{0} is not a valid report format. Report format should one of the following {1}" msgstr "{0} није важећи формат извештаја. Формат извештаја треба да буде један од следећих {1}" -#: frappe/core/doctype/file/file.py:546 +#: frappe/core/doctype/file/file.py:549 msgid "{0} is not a zip file" msgstr "{0} није зип фајл" @@ -31471,7 +31594,7 @@ msgstr "{0} је постављено" msgid "{0} is within {1}" msgstr "{0} је унутар {1}" -#: frappe/public/js/frappe/list/list_view.js:1839 +#: frappe/public/js/frappe/list/list_view.js:1841 msgid "{0} items selected" msgstr "одабрано {0} ставки" @@ -31557,11 +31680,11 @@ msgid "{0} not found" msgstr "{0} није пронађено" #: frappe/core/doctype/report/report.py:427 -#: frappe/public/js/frappe/list/list_view.js:1211 +#: frappe/public/js/frappe/list/list_view.js:1213 msgid "{0} of {1}" msgstr "{0} од {1}" -#: frappe/public/js/frappe/list/list_view.js:1213 +#: frappe/public/js/frappe/list/list_view.js:1215 msgid "{0} of {1} ({2} rows with children)" msgstr "{0} од {1} ({2} редова са зависним подацима)" @@ -31611,7 +31734,7 @@ msgstr "{0} је уклонио свој задатак." msgid "{0} removed {1} rows from {2}" msgstr "{0} је уклонио {1} редова из {2}" -#: frappe/public/js/frappe/roles_editor.js:62 +#: frappe/public/js/frappe/roles_editor.js:64 msgid "{0} role does not have permission on any doctype" msgstr "Улога {0} нема дозволе ни за једну врсту документа" @@ -31685,7 +31808,7 @@ msgstr "{0} до {1}" msgid "{0} un-shared this document with {1}" msgstr "{0} је опозвао дељење овог документа {1}" -#: frappe/custom/doctype/customize_form/customize_form.py:254 +#: frappe/custom/doctype/customize_form/customize_form.py:256 msgid "{0} updated" msgstr "{0} је ажурирано" @@ -31745,7 +31868,7 @@ msgstr "{0} {1} је повезан са следећим поднетим до msgid "{0} {1} not found" msgstr "{0} {1} није пронађен" -#: frappe/model/delete_doc.py:248 +#: frappe/model/delete_doc.py:288 msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first." msgstr "{0} {1}: Поднети запис не може бити обрисан. Прво морате {2} отказати {3}." @@ -31858,7 +31981,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:1283 +#: frappe/public/js/frappe/views/reports/query_report.js:1291 msgid "{0}: {1} vs {2}" msgstr "{0}: {1} у односу на {2}" @@ -31894,11 +32017,11 @@ msgstr "{{{0}}} није исправан формат назива поља. Т msgid "{} Complete" msgstr "{} завршено" -#: frappe/utils/data.py:2541 +#: frappe/utils/data.py:2567 msgid "{} Invalid python code on line {}" msgstr "{} Неважећи пyтхон код на линији {}" -#: frappe/utils/data.py:2550 +#: frappe/utils/data.py:2576 msgid "{} Possibly invalid python code.
{}" msgstr "{} Потенцијално неважећи пyтхон код.
{}" @@ -31924,7 +32047,7 @@ msgstr "{} је онемогућено. Може се омогућити сам msgid "{} is not a valid date string." msgstr "{} није исправан датум у текстуалном формату." -#: frappe/commands/utils.py:562 +#: frappe/commands/utils.py:561 msgid "{} not found in PATH! This is required to access the console." msgstr "{} није пронађен PATH! Ово је неопходно за приступ конзоли." diff --git a/frappe/locale/sr_CS.po b/frappe/locale/sr_CS.po index 4d57d2a98c..d8a11e371a 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-09-21 09:33+0000\n" -"PO-Revision-Date: 2025-09-21 19:58\n" +"POT-Creation-Date: 2025-10-05 09:33+0000\n" +"PO-Revision-Date: 2025-10-07 23:26\n" "Last-Translator: developers@frappe.io\n" "Language-Team: Serbian (Latin)\n" "MIME-Version: 1.0\n" @@ -78,7 +78,7 @@ msgstr "'U globalnoj pretrazi' nije dozvoljeno za vrstu {0} u redu {1}" msgid "'In List View' is not allowed for field {0} of type {1}" msgstr "'U prikazu liste' nije dozvoljeno za polje {0} vrste {1}" -#: frappe/custom/doctype/customize_form/customize_form.py:363 +#: frappe/custom/doctype/customize_form/customize_form.py:367 msgid "'In List View' not allowed for type {0} in row {1}" msgstr "'U prikazu liste' nije dozvoljeno za vrstu {0} u redu {1}" @@ -122,7 +122,7 @@ msgstr "0 - Nacrt; 1 - Podneto; 2 - Otkazano" msgid "0 is highest" msgstr "0 je najviše" -#: frappe/public/js/frappe/form/grid_row.js:892 +#: frappe/public/js/frappe/form/grid_row.js:893 msgid "1 = True & 0 = False" msgstr "1 = tačno i 0 = netačno" @@ -141,11 +141,11 @@ 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:955 +#: frappe/public/js/frappe/views/reports/query_report.js:963 msgid "1 Report" msgstr "1 izveštaj" -#: frappe/tests/test_utils.py:739 +#: frappe/tests/test_utils.py:845 msgid "1 day ago" msgstr "pre 1 dan" @@ -154,17 +154,17 @@ msgid "1 hour" msgstr "1 sat" #: frappe/public/js/frappe/utils/pretty_date.js:52 -#: frappe/tests/test_utils.py:737 +#: frappe/tests/test_utils.py:843 msgid "1 hour ago" msgstr "pre 1 sata" #: frappe/public/js/frappe/utils/pretty_date.js:48 -#: frappe/tests/test_utils.py:735 +#: frappe/tests/test_utils.py:841 msgid "1 minute ago" msgstr "pre 1 minut" #: frappe/public/js/frappe/utils/pretty_date.js:66 -#: frappe/tests/test_utils.py:743 +#: frappe/tests/test_utils.py:849 msgid "1 month ago" msgstr "pre 1 mesec" @@ -186,37 +186,37 @@ msgctxt "User added row to child table" msgid "1 row to {0}" msgstr "1 red u {0}" -#: frappe/tests/test_utils.py:734 +#: frappe/tests/test_utils.py:840 msgid "1 second ago" msgstr "pre 1 sekunde" #: frappe/public/js/frappe/utils/pretty_date.js:62 -#: frappe/tests/test_utils.py:741 +#: frappe/tests/test_utils.py:847 msgid "1 week ago" msgstr "pre 1 nedelju" #: frappe/public/js/frappe/utils/pretty_date.js:70 -#: frappe/tests/test_utils.py:745 +#: frappe/tests/test_utils.py:851 msgid "1 year ago" msgstr "pre 1 godinu" -#: frappe/tests/test_utils.py:738 +#: frappe/tests/test_utils.py:844 msgid "2 hours ago" msgstr "pre 2 sata" -#: frappe/tests/test_utils.py:744 +#: frappe/tests/test_utils.py:850 msgid "2 months ago" msgstr "pre 2 meseca" -#: frappe/tests/test_utils.py:742 +#: frappe/tests/test_utils.py:848 msgid "2 weeks ago" msgstr "pre 2 nedelje" -#: frappe/tests/test_utils.py:746 +#: frappe/tests/test_utils.py:852 msgid "2 years ago" msgstr "pre 2 godine" -#: frappe/tests/test_utils.py:736 +#: frappe/tests/test_utils.py:842 msgid "3 minutes ago" msgstr "pre 3 minuta" @@ -232,7 +232,7 @@ msgstr "4 sata" msgid "5 Records" msgstr "5 zapisa" -#: frappe/tests/test_utils.py:740 +#: frappe/tests/test_utils.py:846 msgid "5 days ago" msgstr "pre 5 dana" @@ -268,6 +268,16 @@ msgstr "{0} nije važeći URL" 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 "
Molimo Vas da ne ažurirate jer to može poremetiti Vaš obrazac. Koristite polje prilagodi prikaz obrasca ili prilagođena polja da biste postavili svojstva!
" +#. Introduction text of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "

Request a file containing your personally identifiable information (PII) that is saved on our system. The file will be in JSON format and is sent to you by email. If you would like to have your PII deleted from our system, please make a request to delete data.

" +msgstr "

Zatražite fajl koji sadrži Vaše lične podatke sačuvane u našem sistemu. Fajl će biti u JSON formatu i biće Vam poslat putem imejla. Ukoliko želite da se Vaši lični podaci izbrišu iz našeg sistema, molimo Vas da podnesete zahtev za brisanje podataka.

" + +#. Introduction text of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "

Send a request to delete your account and personally identifiable information (PII) that is stored on our system. You will receive an email to verify your request. Once the request is verified we will take care of deleting your PII. If you just want to check what PII we have stored, you can request your data.

" +msgstr "

Pošaljite zahtev za brisanje Vašeg naloga i ličnih podataka koji su sačuvani u našem sistemu. Dobićete imejl za potvrdu Vašeg zahteva. Nakon potvrde svi Vaši lični podaci biće obrisani. Ukoliko samo želite da proverite koje lične podatke imamo sačuvane, možete zatražiti svoje podatke.

" + #. Content of the 'Help HTML' (HTML) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -753,6 +763,11 @@ msgstr "Naziv DocType-a treba da počne sa slovom i može sadržati isključivo msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three." msgstr "Jedna instanca Frappe Framework može funkcionisati i kao OAuth klijent, resurs ili autorizacioni server. Ovaj DocType sadrži podešavanja vezana za sva tri." +#. Success message of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "A download link with your data will be sent to the email address associated with your account." +msgstr "Link za preuzimanje Vaših podataka biće poslat na imejl adresu povezanu sa Vašim nalogom." + #: frappe/custom/doctype/custom_field/custom_field.py:175 msgid "A field with the name {0} already exists in {1}" msgstr "Polje sa nazivom {0} već postoji u {1}" @@ -881,7 +896,7 @@ msgstr "API Endpoint Args moraju biti validan JSON" #. 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.js:452 frappe/core/doctype/user/user.json +#: frappe/core/doctype/user/user.js:459 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 @@ -900,7 +915,7 @@ msgstr "API ključ i tajna za interakciju sa relay serverom. Ovi podaci će biti msgid "API Key cannot be regenerated" msgstr "API ključ se ne može ponovo generisati" -#: frappe/core/doctype/user/user.js:449 +#: frappe/core/doctype/user/user.js:456 msgid "API Keys" msgstr "API ključevi" @@ -924,7 +939,7 @@ msgstr "Evidencija API zahteva" #. 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.js:459 frappe/core/doctype/user/user.json +#: frappe/core/doctype/user/user.js:466 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" @@ -1010,7 +1025,7 @@ msgstr "Pristupni token" msgid "Access Token URL" msgstr "URL pristupnog tokena" -#: frappe/auth.py:491 +#: frappe/auth.py:494 msgid "Access not allowed from this IP Address" msgstr "Pristup nije dozvoljen sa ove IP adrese" @@ -1126,7 +1141,7 @@ msgstr "Radnje {0} nije uspela na {1} {2}. Pregledajte je {3}" #: 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:842 +#: frappe/public/js/frappe/views/reports/query_report.js:850 msgid "Actions" msgstr "Radnje" @@ -1183,7 +1198,7 @@ msgstr "Dnevnik aktivnosti" #: 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:501 +#: frappe/public/js/frappe/form/grid_row.js:502 #: 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 @@ -1194,7 +1209,7 @@ msgstr "Dnevnik aktivnosti" msgid "Add" msgstr "Dodaj" -#: frappe/public/js/frappe/form/grid_row.js:454 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Add / Remove Columns" msgstr "Dodaj / Ukloni kolone" @@ -1239,8 +1254,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:1832 -#: frappe/public/js/frappe/views/reports/query_report.js:1835 +#: frappe/public/js/frappe/views/reports/query_report.js:1840 +#: frappe/public/js/frappe/views/reports/query_report.js:1843 #: frappe/public/js/frappe/views/reports/report_view.js:360 #: frappe/public/js/frappe/views/reports/report_view.js:385 #: frappe/public/js/print_format_builder/Field.vue:112 @@ -1334,7 +1349,7 @@ msgstr "Dodaj pretplatnike" msgid "Add Tags" msgstr "Dodaj oznake" -#: frappe/public/js/frappe/list/list_view.js:2149 +#: frappe/public/js/frappe/list/list_view.js:2151 msgctxt "Button in list view actions menu" msgid "Add Tags" msgstr "Dodaj oznake" @@ -1715,11 +1730,11 @@ msgstr "Upozorenje" msgid "Alerts and Notifications" msgstr "Upozorenja i obaveštenja" -#: frappe/database/query.py:1608 +#: frappe/database/query.py:1610 msgid "Alias cannot be a SQL keyword: {0}" msgstr "Pseudonim ne može biti SQL rezervisana reč: {0}" -#: frappe/database/query.py:1533 +#: frappe/database/query.py:1535 msgid "Alias must be a string" msgstr "Pseudonim mora biti tekst" @@ -2167,6 +2182,12 @@ msgstr "Takođe dodavanje polja od zavisnosti statusa {0}" msgid "Alternative Email ID" msgstr "Alternativni imejl ID" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Always" +msgstr "Uvek" + #. Label of the always_bcc (Data) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Always BCC Address" @@ -2243,6 +2264,11 @@ msgstr "Izmena nije dozvoljena" msgid "Amendment naming rules updated." msgstr "Pravila imenovanja izmena ažurirana." +#. Success message of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "An email to verify your request has been sent to your email address. Please verify your request to complete the process." +msgstr "Imejl za potvrdu Vašeg zahteva je poslat na Vašu imejl adresu. Molimo Vas da potvrdite zahtev kako biste završili proces." + #: 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" @@ -2425,7 +2451,7 @@ msgstr "Primenjeno na" msgid "Apply" msgstr "Primeni" -#: frappe/public/js/frappe/list/list_view.js:2134 +#: frappe/public/js/frappe/list/list_view.js:2136 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" msgstr "Primeni pravilo dodele" @@ -2510,7 +2536,7 @@ msgstr "Arhivirane kolone" msgid "Are you sure you want to cancel the invitation?" msgstr "Da li ste sigurni da želite da otkažete pozivnicu?" -#: frappe/public/js/frappe/list/list_view.js:2113 +#: frappe/public/js/frappe/list/list_view.js:2115 msgid "Are you sure you want to clear the assignments?" msgstr "Da li ste sigurni da želite da očistite dodeljene zadatke?" @@ -2546,7 +2572,7 @@ msgstr "Da li ste sigurni da želite da obrišete ovaj zapis?" 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:969 +#: frappe/public/js/frappe/views/reports/query_report.js:977 msgid "Are you sure you want to generate a new report?" msgstr "Da li ste sigurni da želite da generišete novi izveštaj?" @@ -2554,7 +2580,7 @@ msgstr "Da li ste sigurni da želite da generišete novi izveštaj?" msgid "Are you sure you want to merge {0} with {1}?" msgstr "Da li ste sigurni da želite da spojite {0} sa {1}?" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:108 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:118 msgid "Are you sure you want to proceed?" msgstr "Da li ste sigurni da želite da nastavite?" @@ -2609,6 +2635,12 @@ msgstr "Pošto je deljenje dokumenata onemogućeno, molimo Vas da im dodelite ne msgid "As per your request, your account and data on {0} associated with email {1} has been permanently deleted" msgstr "Prema Vašem zahtevu, Vaš nalog i podaci na {0} povezani sa imejl adresom {1} su trajno obrisani" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Ask" +msgstr "Pitaj" + #. Label of the assign_condition (Code) field in DocType 'Assignment Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Assign Condition" @@ -2618,7 +2650,7 @@ msgstr "Dodeli uslov" msgid "Assign To" msgstr "Dodeli" -#: frappe/public/js/frappe/list/list_view.js:2095 +#: frappe/public/js/frappe/list/list_view.js:2097 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "Dodeli" @@ -2761,7 +2793,7 @@ msgstr "Dodeljeni zadaci" msgid "Asynchronous" msgstr "Asinhrono" -#: frappe/public/js/frappe/form/grid_row.js:696 +#: frappe/public/js/frappe/form/grid_row.js:697 msgid "At least one column is required to show in the grid." msgstr "Barem jedna kolona je obavezna za prikaz u tabeli." @@ -3742,7 +3774,7 @@ msgstr "Masovno brisanje" msgid "Bulk Edit" msgstr "Masovno uređivanje" -#: frappe/public/js/frappe/form/grid.js:1189 +#: frappe/public/js/frappe/form/grid.js:1190 msgid "Bulk Edit {0}" msgstr "Masovno uređivanje {0}" @@ -4034,7 +4066,7 @@ msgstr "Ne može se preimenovati iz {0} u {1} jer {0} ne postoji." #. 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/doctype/doctype_list.js:131 #: frappe/core/doctype/user_document_type/user_document_type.json #: frappe/core/doctype/user_invitation/user_invitation.js:17 #: frappe/email/doctype/notification/notification.json @@ -4042,7 +4074,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:2204 +#: frappe/public/js/frappe/list/list_view.js:2206 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "Otkaži" @@ -4060,7 +4092,7 @@ msgstr "Otkaži sve" msgid "Cancel All Documents" msgstr "Otkaži sve dokumente" -#: frappe/public/js/frappe/list/list_view.js:2209 +#: frappe/public/js/frappe/list/list_view.js:2211 msgctxt "Title of confirmation dialog" msgid "Cancel {0} documents?" msgstr "Otkaži {0} dokumenta?" @@ -4113,7 +4145,7 @@ msgstr "Nije moguće ukloniti" msgid "Cannot Update After Submit" msgstr "Nije moguće ažurirati nakon podnošenja" -#: frappe/core/doctype/file/file.py:643 +#: frappe/core/doctype/file/file.py:646 msgid "Cannot access file path {0}" msgstr "Nije moguće pristupiti putanji fajla {0}" @@ -4161,7 +4193,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:379 +#: frappe/model/delete_doc.py:419 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}" @@ -4241,7 +4273,7 @@ msgstr "Nije moguće dozvoliti {0} za doctype koji se ne može podneti" msgid "Cannot find file {} on disk" msgstr "Nije moguće pronaći fajl {} na disku" -#: frappe/core/doctype/file/file.py:583 +#: frappe/core/doctype/file/file.py:586 msgid "Cannot get file contents of a Folder" msgstr "Nije moguće preuzeti sadržaj fajla iz datoteke" @@ -4249,7 +4281,7 @@ msgstr "Nije moguće preuzeti sadržaj fajla iz datoteke" msgid "Cannot have multiple printers mapped to a single print format." msgstr "Nije moguće mapirati više štampača na jedan format za štampu." -#: frappe/public/js/frappe/form/grid.js:1133 +#: frappe/public/js/frappe/form/grid.js:1134 msgid "Cannot import table with more than 5000 rows." msgstr "Nije moguće uvoziti tabelu sa više od 5000 redova." @@ -4265,7 +4297,7 @@ msgstr "Nije moguće mapiranje jer sledeći uslov nije ispunjen:" msgid "Cannot match column {0} with any field" msgstr "Nije moguće upariti kolonu {0} ni sa jednim poljem" -#: frappe/public/js/frappe/form/grid_row.js:175 +#: frappe/public/js/frappe/form/grid_row.js:176 msgid "Cannot move row" msgstr "Nije moguće pomeriti red" @@ -4294,11 +4326,11 @@ msgstr "Nije moguće podneti {0}." msgid "Cannot update {0}" msgstr "Nije moguće ažurirati {0}" -#: frappe/model/db_query.py:1130 +#: frappe/model/db_query.py:1136 msgid "Cannot use sub-query here." msgstr "Nije moguće koristiti podupit ovde." -#: frappe/model/db_query.py:1162 +#: frappe/model/db_query.py:1168 msgid "Cannot use {0} in order/group by" msgstr "Nije moguće koristiti {0} u komandi sortiraj/grupiši po" @@ -4571,11 +4603,11 @@ msgstr "Zavisna tabela {0} za polje {1}" #. Description of the 'Is Child Table' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:52 +#: frappe/core/doctype/doctype/doctype_list.js:53 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 +#: frappe/database/query.py:662 msgid "Child query fields for '{0}' must be a list or tuple." msgstr "Zavisna polja upita za '{0}' moraju biti vrste lista ili tuple." @@ -4631,7 +4663,7 @@ msgstr "Očisti i dodaj šablon" msgid "Clear All" msgstr "Očisti sve" -#: frappe/public/js/frappe/list/list_view.js:2110 +#: frappe/public/js/frappe/list/list_view.js:2112 msgctxt "Button in list view actions menu" msgid "Clear Assignment" msgstr "Očisti dodeljene zadatke" @@ -4725,7 +4757,7 @@ msgstr "Kliknite da postavite dinamičke filtere" msgid "Click to Set Filters" msgstr "Kliknite da postavite filtere" -#: frappe/public/js/frappe/list/list_view.js:739 +#: frappe/public/js/frappe/list/list_view.js:741 msgid "Click to sort by {0}" msgstr "Kliknite da sortirate po {0}" @@ -4903,7 +4935,7 @@ msgctxt "Shrink code field." msgid "Collapse" msgstr "Sažmi" -#: frappe/public/js/frappe/views/reports/query_report.js:2113 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 #: frappe/public/js/frappe/views/treeview.js:123 msgid "Collapse All" msgstr "Sažmi sve" @@ -4958,7 +4990,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:1233 +#: frappe/public/js/frappe/views/reports/query_report.js:1241 #: frappe/public/js/frappe/widgets/widget_dialog.js:546 #: frappe/public/js/frappe/widgets/widget_dialog.js:694 #: frappe/website/doctype/color/color.json @@ -5014,11 +5046,11 @@ msgstr "Naziv kolone" msgid "Column Name cannot be empty" msgstr "Naziv kolone ne može biti prazan" -#: frappe/public/js/frappe/form/grid_row.js:454 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Column Width" msgstr "Širina kolone" -#: frappe/public/js/frappe/form/grid_row.js:661 +#: frappe/public/js/frappe/form/grid_row.js:662 msgid "Column width cannot be zero." msgstr "Širina kolone ne može biti nula." @@ -5045,7 +5077,7 @@ msgstr "Kolone" msgid "Columns / Fields" msgstr "Kolone / Polja" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:397 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:411 msgid "Columns based on" msgstr "Kolone zasnovane na" @@ -5309,7 +5341,7 @@ msgstr "Konfiguracija" msgid "Configure Chart" msgstr "Konfigurišite dijagram" -#: frappe/public/js/frappe/form/grid_row.js:406 +#: frappe/public/js/frappe/form/grid_row.js:407 msgid "Configure Columns" msgstr "Konfigurišite kolone" @@ -5336,7 +5368,7 @@ msgstr "Konfigurišite kako će se nazivati izmenjeni dokumenti.
\n\n" msgid "Configure various aspects of how document naming works like naming series, current counter." msgstr "Konfigurišite različite aspekte kako funkcioniše imenovanje dokumenata, kao što su serije imenovanja, trenutni brojač." -#: frappe/core/doctype/user/user.js:412 frappe/public/js/frappe/dom.js:345 +#: frappe/core/doctype/user/user.js:400 frappe/public/js/frappe/dom.js:345 #: frappe/www/update-password.html:66 msgid "Confirm" msgstr "Potvrdi" @@ -5355,7 +5387,7 @@ msgstr "Potvrdi pristup" msgid "Confirm Deletion of Account" msgstr "Potvrdi uklanjanje naloga" -#: frappe/core/doctype/user/user.js:196 +#: frappe/core/doctype/user/user.js:184 msgid "Confirm New Password" msgstr "Potvrdi novu lozinku" @@ -5608,7 +5640,7 @@ msgstr "Kopiraj grešku u međuspremnik" msgid "Copy to Clipboard" msgstr "Kopiraj u međuspremnik" -#: frappe/core/doctype/user/user.js:480 +#: frappe/core/doctype/user/user.js:487 msgid "Copy token to clipboard" msgstr "Kopirajte token u međuspremnik" @@ -5617,7 +5649,7 @@ msgstr "Kopirajte token u međuspremnik" msgid "Copyright" msgstr "Autorska prava" -#: frappe/custom/doctype/customize_form/customize_form.py:123 +#: frappe/custom/doctype/customize_form/customize_form.py:125 msgid "Core DocTypes cannot be customized." msgstr "Osnovni DocType-ovi ne mogu biti prilagođeni." @@ -5641,7 +5673,7 @@ 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 +#: frappe/database/query.py:566 msgid "Could not parse field: {0}" msgstr "Nije moguće obraditi polje: {0}" @@ -5733,13 +5765,13 @@ 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:1265 +#: frappe/public/js/frappe/views/reports/query_report.js:1273 #: frappe/public/js/frappe/views/workspace/workspace.js:469 #: frappe/workflow/page/workflow_builder/workflow_builder.js:46 msgid "Create" msgstr "Kreiraj" -#: frappe/core/doctype/doctype/doctype_list.js:102 +#: frappe/core/doctype/doctype/doctype_list.js:103 msgid "Create & Continue" msgstr "Kreiraj i nastavi" @@ -5753,7 +5785,7 @@ msgid "Create Card" msgstr "Kreiraj karticu" #: frappe/public/js/frappe/views/reports/query_report.js:285 -#: frappe/public/js/frappe/views/reports/query_report.js:1192 +#: frappe/public/js/frappe/views/reports/query_report.js:1200 msgid "Create Chart" msgstr "Kreiraj grafikon" @@ -5787,12 +5819,12 @@ msgstr "Kreiraj evidenciju" msgid "Create New" msgstr "Kreiraj novi" -#: frappe/public/js/frappe/list/list_view.js:512 +#: frappe/public/js/frappe/list/list_view.js:514 msgctxt "Create a new document from list view" msgid "Create New" msgstr "Kreiraj novi" -#: frappe/core/doctype/doctype/doctype_list.js:100 +#: frappe/core/doctype/doctype/doctype_list.js:101 msgid "Create New DocType" msgstr "Kreiraj novi DocType" @@ -5800,7 +5832,7 @@ msgstr "Kreiraj novi DocType" msgid "Create New Kanban Board" msgstr "Kreiraj novu Kanban tablu" -#: frappe/core/doctype/user/user.js:276 +#: frappe/core/doctype/user/user.js:264 msgid "Create User Email" msgstr "Kreiraj korisnički imejl" @@ -5823,8 +5855,8 @@ msgstr "Kreiraj novi zapis" #: frappe/public/js/frappe/form/controls/link.js:315 #: frappe/public/js/frappe/form/controls/link.js:317 #: frappe/public/js/frappe/form/link_selector.js:139 -#: frappe/public/js/frappe/list/list_view.js:504 -#: frappe/public/js/frappe/web_form/web_form_list.js:225 +#: frappe/public/js/frappe/list/list_view.js:506 +#: frappe/public/js/frappe/web_form/web_form_list.js:226 msgid "Create a new {0}" msgstr "Kreiraj novi {0}" @@ -5840,7 +5872,7 @@ msgstr "Kreiraj ili uredi format štampe" msgid "Create or Edit Workflow" msgstr "Kreiraj ili uredi radni tok" -#: frappe/public/js/frappe/list/list_view.js:507 +#: frappe/public/js/frappe/list/list_view.js:509 msgid "Create your first {0}" msgstr "Kreiraj svoj prvi {0}" @@ -6187,7 +6219,7 @@ msgstr "Prilagođena get_list metoda za {0} mora vratiti QueryBuilder objekat il #. 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/core/doctype/doctype/doctype_list.js:83 #: frappe/website/doctype/website_theme/website_theme.json msgid "Custom?" msgstr "Prilagođeni?" @@ -6222,7 +6254,7 @@ msgstr "Prilagođavanje za {0} su izvezena:
{1}" msgid "Customize" msgstr "Prilagodi" -#: frappe/public/js/frappe/list/list_view.js:1947 +#: frappe/public/js/frappe/list/list_view.js:1949 msgctxt "Button in list view menu" msgid "Customize" msgstr "Prilagodi" @@ -6241,7 +6273,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:343 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 msgid "Customize Form" msgstr "Prilagodi obrazac" @@ -6472,7 +6504,7 @@ msgstr "Evidencija uvoza podataka" msgid "Data Import Template" msgstr "Šablon za uvoz podatka" -#: frappe/custom/doctype/customize_form/customize_form.py:615 +#: frappe/custom/doctype/customize_form/customize_form.py:619 msgid "Data Too Long" msgstr "Podaci su preobimni" @@ -6503,7 +6535,7 @@ msgstr "Iskorišćenost veličine reda baze podataka" msgid "Database Storage Usage By Tables" msgstr "Iskorišćenost prostora baze podataka po tabelama" -#: frappe/custom/doctype/customize_form/customize_form.py:249 +#: frappe/custom/doctype/customize_form/customize_form.py:251 msgid "Database Table Row Size Limit" msgstr "Ograničenje veličine reda tabele baze podataka" @@ -6873,13 +6905,13 @@ msgstr "Kašnjenje" #: frappe/public/js/frappe/form/toolbar.js:464 #: frappe/public/js/frappe/views/reports/report_view.js:1749 #: frappe/public/js/frappe/views/treeview.js:329 -#: frappe/public/js/frappe/web_form/web_form_list.js:282 +#: frappe/public/js/frappe/web_form/web_form_list.js:283 #: frappe/templates/discussions/reply_card.html:35 #: frappe/templates/discussions/reply_section.html:29 msgid "Delete" msgstr "Obriši" -#: frappe/public/js/frappe/list/list_view.js:2172 +#: frappe/public/js/frappe/list/list_view.js:2174 msgctxt "Button in list view actions menu" msgid "Delete" msgstr "Obriši" @@ -6912,7 +6944,7 @@ msgstr "Obriši kolonu" msgid "Delete Data" msgstr "Obriši podatke" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:106 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:116 msgid "Delete Kanban Board" msgstr "Obriši Kanban tablu" @@ -6926,7 +6958,7 @@ msgctxt "Title of confirmation dialog" msgid "Delete Tab" msgstr "Obriši karticu" -#: frappe/public/js/frappe/views/reports/query_report.js:936 +#: frappe/public/js/frappe/views/reports/query_report.js:944 msgid "Delete and Generate New" msgstr "Obriši i generiši novi" @@ -6968,12 +7000,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:2177 +#: frappe/public/js/frappe/list/list_view.js:2179 msgctxt "Title of confirmation dialog" msgid "Delete {0} item permanently?" msgstr "Trajno obriši {0} stavku?" -#: frappe/public/js/frappe/list/list_view.js:2183 +#: frappe/public/js/frappe/list/list_view.js:2185 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "Trajno obriši {0} stavke?" @@ -7470,10 +7502,14 @@ msgstr "Nemoj kreirati novog korisnika" msgid "Do not create new user if user with email does not exist in the system" msgstr "Nemoj kreirati novog korisnika ukoliko korisnik sa tim imejlom ne postoji u sistemu" -#: frappe/public/js/frappe/form/grid.js:1194 +#: frappe/public/js/frappe/form/grid.js:1195 msgid "Do not edit headers which are preset in the template" msgstr "Nemoj uređivati zaglavlja koja su unapred postavljena u šablonu" +#: frappe/public/js/frappe/router.js:624 +msgid "Do not warn me again about {0}" +msgstr "Ne upozoravaj me više na {0}" + #: frappe/core/doctype/system_settings/system_settings.js:71 msgid "Do you still want to proceed?" msgstr "Da li još uvek želite da nastavite?" @@ -7900,7 +7936,7 @@ msgstr "Naslov dokumenta" #: 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/public/js/frappe/roles_editor.js:68 #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json #: frappe/workflow/doctype/workflow/workflow.json msgid "Document Type" @@ -7951,15 +7987,15 @@ msgstr "Dokument je otključan" msgid "Document follow is not enabled for this user." msgstr "Praćenje dokumenta nije omogućeno za ovog korisnika." -#: frappe/public/js/frappe/list/list_view.js:1300 +#: frappe/public/js/frappe/list/list_view.js:1302 msgid "Document has been cancelled" msgstr "Dokument je otkazan" -#: frappe/public/js/frappe/list/list_view.js:1299 +#: frappe/public/js/frappe/list/list_view.js:1301 msgid "Document has been submitted" msgstr "Dokument je podnet" -#: frappe/public/js/frappe/list/list_view.js:1298 +#: frappe/public/js/frappe/list/list_view.js:1300 msgid "Document is in draft state" msgstr "Dokument u stanju nacrta" @@ -8101,7 +8137,7 @@ msgstr "Kružni" msgid "Double click to edit label" msgstr "Klikni dva puta da urediš oznaku" -#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:467 +#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:474 #: frappe/email/doctype/auto_email_report/auto_email_report.js:8 #: frappe/public/js/frappe/form/grid.js:66 msgid "Download" @@ -8134,7 +8170,7 @@ msgstr "Preuzmi link" msgid "Download PDF" msgstr "Preuzmi PDF" -#: frappe/public/js/frappe/views/reports/query_report.js:832 +#: frappe/public/js/frappe/views/reports/query_report.js:840 msgid "Download Report" msgstr "Preuzmi izveštaj" @@ -8334,8 +8370,8 @@ msgstr "IZLAZ" #: 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:880 -#: frappe/public/js/frappe/views/reports/query_report.js:1783 +#: frappe/public/js/frappe/views/reports/query_report.js:888 +#: frappe/public/js/frappe/views/reports/query_report.js:1791 #: 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 @@ -8347,7 +8383,7 @@ msgstr "IZLAZ" msgid "Edit" msgstr "Uredi" -#: frappe/public/js/frappe/list/list_view.js:2258 +#: frappe/public/js/frappe/list/list_view.js:2260 msgctxt "Button in list view actions menu" msgid "Edit" msgstr "Uredi" @@ -8357,7 +8393,7 @@ msgctxt "Button in web form" msgid "Edit" msgstr "Uredi" -#: frappe/public/js/frappe/form/grid_row.js:349 +#: frappe/public/js/frappe/form/grid_row.js:350 msgctxt "Edit grid row" msgid "Edit" msgstr "Uredi" @@ -8386,7 +8422,7 @@ msgstr "Uredi prilagođeni HTML" msgid "Edit DocType" msgstr "Uredi DocType" -#: frappe/public/js/frappe/list/list_view.js:1974 +#: frappe/public/js/frappe/list/list_view.js:1976 msgctxt "Button in list view menu" msgid "Edit DocType" msgstr "Uredi DocType" @@ -8506,7 +8542,7 @@ msgstr "Uredi {0}" #. 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/core/doctype/doctype/doctype_list.js:58 #: frappe/custom/doctype/customize_form/customize_form.json msgid "Editable Grid" msgstr "Tabela koja se može uređivati" @@ -8551,6 +8587,8 @@ msgstr "Izbor elementa" #. 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' +#. Label of a field in the request-data Web Form +#. Label of a field in the request-to-delete-data Web Form #: frappe/automation/workspace/tools/tools.json #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/custom_docperm/custom_docperm.json @@ -8569,6 +8607,8 @@ msgstr "Izbor elementa" #: 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/website/web_form/request_data/request_data.json +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json #: frappe/www/login.html:8 frappe/www/login.py:104 msgid "Email" msgstr "Imejl" @@ -8800,7 +8840,7 @@ msgstr "Imejl je označen kao spam" msgid "Email has been moved to trash" msgstr "Imejl je premešten u otpad" -#: frappe/core/doctype/user/user.js:278 +#: frappe/core/doctype/user/user.js:266 msgid "Email is mandatory to create User Email" msgstr "Imejl je obavezan za kreiranje korisničkog imejla" @@ -8843,7 +8883,7 @@ 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 +#: frappe/database/query.py:1539 msgid "Empty alias is not allowed" msgstr "Prazan pseudonim nije dozvoljen" @@ -8851,7 +8891,7 @@ msgstr "Prazan pseudonim nije dozvoljen" msgid "Empty column" msgstr "Prazna kolona" -#: frappe/database/query.py:1455 +#: frappe/database/query.py:1457 msgid "Empty string arguments are not allowed" msgstr "Argumenti kao prazan tekst nisu dozvoljeni" @@ -9308,9 +9348,9 @@ msgstr "Greška u klijentskoj skripti." msgid "Error in Header/Footer Script" msgstr "Greška u skripti zaglavlja/podnožja" -#: frappe/email/doctype/notification/notification.py:640 -#: frappe/email/doctype/notification/notification.py:780 -#: frappe/email/doctype/notification/notification.py:786 +#: frappe/email/doctype/notification/notification.py:642 +#: frappe/email/doctype/notification/notification.py:782 +#: frappe/email/doctype/notification/notification.py:788 msgid "Error in Notification" msgstr "Greška u obaveštenju" @@ -9330,7 +9370,7 @@ msgstr "Greška prilikom obrade ugnježdenih filtera: {0}" msgid "Error while connecting to email account {0}" msgstr "Greška pri povezivanju sa imejl nalogom {0}" -#: frappe/email/doctype/notification/notification.py:777 +#: frappe/email/doctype/notification/notification.py:779 msgid "Error while evaluating Notification {0}. Please fix your template." msgstr "Greška pri obradi obaveštenja {0}. Molimo Vas da ispravite Vaš šablon." @@ -9491,7 +9531,7 @@ msgstr "Izvršavanje koda" msgid "Executing..." msgstr "Izvršavanje..." -#: frappe/public/js/frappe/views/reports/query_report.js:2132 +#: frappe/public/js/frappe/views/reports/query_report.js:2140 msgid "Execution Time: {0} sec" msgstr "Vreme izvršavanja: {0} sekundi" @@ -9517,12 +9557,12 @@ msgctxt "Enlarge code field." msgid "Expand" msgstr "Proširi" -#: frappe/public/js/frappe/views/reports/query_report.js:2113 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 #: frappe/public/js/frappe/views/treeview.js:133 msgid "Expand All" msgstr "Proširi sve" -#: frappe/database/query.py:352 +#: frappe/database/query.py:354 msgid "Expected 'and' or 'or' operator, found: {0}" msgstr "Očekivan je operator 'and' ili 'or', pronađeno: {0}" @@ -9580,13 +9620,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:1820 +#: frappe/public/js/frappe/views/reports/query_report.js:1828 #: frappe/public/js/frappe/views/reports/report_view.js:1629 #: frappe/public/js/frappe/widgets/chart_widget.js:315 msgid "Export" msgstr "Izvoz" -#: frappe/public/js/frappe/list/list_view.js:2280 +#: frappe/public/js/frappe/list/list_view.js:2282 msgctxt "Button in list view actions menu" msgid "Export" msgstr "Izvoz" @@ -9779,7 +9819,7 @@ msgstr "Neuspešno izračunavanje tela zahteva: {}" msgid "Failed to connect to server" msgstr "Neuspešno povezivanje sa serverom" -#: frappe/auth.py:698 +#: frappe/auth.py:701 msgid "Failed to decode token, please provide a valid base64-encoded token." msgstr "Neuspešno dekodiranje tokena, molimo Vas da pružite validan base64-enkodirani token." @@ -9943,7 +9983,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:236 -#: frappe/public/js/frappe/views/reports/query_report.js:1879 +#: frappe/public/js/frappe/views/reports/query_report.js:1887 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_form_list_column/web_form_list_column.json msgid "Field" @@ -10026,7 +10066,7 @@ msgstr "Polje {0} se odnosi na nepostojeći doctype {1}." msgid "Field {0} not found." msgstr "Polje {0} nije pronađeno." -#: frappe/email/doctype/notification/notification.py:545 +#: frappe/email/doctype/notification/notification.py:547 msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link" msgstr "Polje {0} u dokumentu {1} nije ni polje za mobilni broj, ni link za kupca ili korisnika" @@ -10044,7 +10084,7 @@ msgstr "Polje {0} u dokumentu {1} nije ni polje za mobilni broj, ni link za kupc #: 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:454 +#: frappe/public/js/frappe/form/grid_row.js:455 #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Fieldname" msgstr "Naziv polja" @@ -10125,7 +10165,7 @@ 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 +#: frappe/database/query.py:613 msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function" msgstr "Polja moraju biti tekst, lista, tuple, pypika polje ili pypika funkcija" @@ -10153,7 +10193,7 @@ msgstr "Vrsta polja" msgid "Fieldtype cannot be changed from {0} to {1}" msgstr "Vrsta polja ne može biti promenjena sa {0} na {1}" -#: frappe/custom/doctype/customize_form/customize_form.py:589 +#: frappe/custom/doctype/customize_form/customize_form.py:593 msgid "Fieldtype cannot be changed from {0} to {1} in row {2}" msgstr "Vrsta polja ne može biti promenjena sa {0} na {1} u redu {2}" @@ -10219,7 +10259,7 @@ msgstr "URL fajla" msgid "File backup is ready" msgstr "Rezervna kopija fajla je spremna" -#: frappe/core/doctype/file/file.py:646 +#: frappe/core/doctype/file/file.py:649 msgid "File name cannot have {0}" msgstr "Naziv fajla ne može sadržati {0}" @@ -10227,7 +10267,7 @@ msgstr "Naziv fajla ne može sadržati {0}" msgid "File not attached" msgstr "Fajl nije priložen" -#: frappe/core/doctype/file/file.py:756 frappe/public/js/frappe/request.js:200 +#: frappe/core/doctype/file/file.py:759 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 "Veličina fajla je premašila maksimalnu dozvoljenu veličinu od {0} MB" @@ -10240,7 +10280,7 @@ msgstr "Fajl je preveliki" msgid "File type of {0} is not allowed" msgstr "Vrsta fajla {0} nije dozvoljena" -#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:448 +#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:451 msgid "File {0} does not exist" msgstr "Fajl {0} ne postoji" @@ -10294,11 +10334,11 @@ msgstr "Filter naziva" msgid "Filter Values" msgstr "Filter vrednosti" -#: frappe/database/query.py:358 +#: frappe/database/query.py:360 msgid "Filter condition missing after operator: {0}" msgstr "Nedostaje uslov filtera nakon operatora: {0}" -#: frappe/database/query.py:425 +#: frappe/database/query.py:427 msgid "Filter fields cannot contain backticks (`)." msgstr "Polja filtera ne mogu sadržati backticks (`)." @@ -10375,7 +10415,7 @@ msgstr "Odeljak filtera" msgid "Filters applied for {0}" msgstr "Filteri primenjeni za {0}" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:188 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:202 msgid "Filters saved" msgstr "Filteri sačuvani" @@ -10423,9 +10463,12 @@ msgstr "Prvi dan u nedelji" #. Label of the first_name (Data) field in DocType 'Contact' #. Label of the first_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json #: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:44 -#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:15 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:15 msgid "First Name" msgstr "Ime" @@ -10506,7 +10549,7 @@ msgstr "Naziv datoteke" msgid "Folder name should not include '/' (slash)" msgstr "Naziv datoteke ne bi trebalo da uključuje '/' (kosu crtu)" -#: frappe/core/doctype/file/file.py:494 +#: frappe/core/doctype/file/file.py:497 msgid "Folder {0} is not empty" msgstr "Datoteka {0} nije prazna" @@ -10709,7 +10752,7 @@ msgstr "Za korisnika" msgid "For Value" msgstr "Za vrednost" -#: frappe/public/js/frappe/views/reports/query_report.js:2129 +#: frappe/public/js/frappe/views/reports/query_report.js:2137 #: frappe/public/js/frappe/views/reports/report_view.js:108 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)." @@ -10994,7 +11037,7 @@ msgstr "Datum početka" msgid "From Date Field" msgstr "Polje za datum početka" -#: frappe/public/js/frappe/views/reports/query_report.js:1840 +#: frappe/public/js/frappe/views/reports/query_report.js:1848 msgid "From Document Type" msgstr "Od vrste dokumenta" @@ -11056,13 +11099,13 @@ msgstr "Funkcija zasnovana na" msgid "Function {0} is not whitelisted." msgstr "Funkcija {0} nije na listi dozvoljenih." -#: frappe/database/query.py:1417 +#: frappe/database/query.py:1419 msgid "Function {0} requires arguments but none were provided" msgstr "Funkcija {0} zahteva argumente, ali ni jedan nije naveden" #: 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'" +msgid "Further sub-groups can only be created under records marked as 'Group'" +msgstr "Dalje podgrupe mogu se kreirati samo unutar zapisa označenih kao 'Grupa'" #: frappe/core/doctype/communication/communication.js:291 msgid "Fw: {0}" @@ -11121,7 +11164,7 @@ msgstr "Opšte" msgid "Generate Keys" msgstr "Generiši ključeve" -#: frappe/public/js/frappe/views/reports/query_report.js:874 +#: frappe/public/js/frappe/views/reports/query_report.js:882 msgid "Generate New Report" msgstr "Generiši novi izveštaj" @@ -11537,14 +11580,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 +#: frappe/database/query.py:752 msgid "Group By must be a string" msgstr "Grupisano po mora biti tekst" -#: frappe/public/js/frappe/views/treeview.js:418 -msgid "Group Node" -msgstr "Čvor grupe" - #. Label of the ldap_group_objectclass (Data) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Group Object Class" @@ -11874,7 +11913,7 @@ msgstr "Sakriveno" msgid "Hidden Fields" msgstr "Sakrivena polja" -#: frappe/public/js/frappe/views/reports/query_report.js:1642 +#: frappe/public/js/frappe/views/reports/query_report.js:1650 msgid "Hidden columns include: {0}" msgstr "Sakrivene kolone uključuju: {0}" @@ -11986,7 +12025,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:1849 +#: frappe/public/js/frappe/list/list_view.js:1851 msgid "Hide Tags" msgstr "Sakrij oznake" @@ -12245,7 +12284,7 @@ msgstr "Ukoliko je označeno status radnog toka neće zameniti status u prikazu #: frappe/core/doctype/doctype/doctype.py:1777 #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45 -#: frappe/public/js/frappe/roles_editor.js:66 +#: frappe/public/js/frappe/roles_editor.js:68 msgid "If Owner" msgstr "Ukoliko je vlasnik" @@ -12473,8 +12512,8 @@ msgstr "Ignorisane aplikacije" msgid "Illegal Document Status for {0}" msgstr "Nevažeći status dokumenta za {0}" -#: frappe/model/db_query.py:453 frappe/model/db_query.py:456 -#: frappe/model/db_query.py:1121 +#: frappe/model/db_query.py:454 frappe/model/db_query.py:457 +#: frappe/model/db_query.py:1122 msgid "Illegal SQL Query" msgstr "Nevažeći SQL upit" @@ -12561,11 +12600,11 @@ 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:384 +#: frappe/core/doctype/user/user.js:372 msgid "Impersonate" msgstr "Zameni identitet" -#: frappe/core/doctype/user/user.js:411 +#: frappe/core/doctype/user/user.js:399 msgid "Impersonate as {0}" msgstr "Zameni identitet kao {0}" @@ -12595,7 +12634,7 @@ msgstr "Implicitno" msgid "Import" msgstr "Uvoz" -#: frappe/public/js/frappe/list/list_view.js:1911 +#: frappe/public/js/frappe/list/list_view.js:1913 msgctxt "Button in list view menu" msgid "Import" msgstr "Uvoz" @@ -12824,15 +12863,15 @@ msgid "Include Web View Link in Email" msgstr "Uključi link ka veb-prikazu u imejlu" #: frappe/public/js/frappe/form/print_utils.js:59 -#: frappe/public/js/frappe/views/reports/query_report.js:1620 +#: frappe/public/js/frappe/views/reports/query_report.js:1628 msgid "Include filters" msgstr "Uključi filtere" -#: frappe/public/js/frappe/views/reports/query_report.js:1640 +#: frappe/public/js/frappe/views/reports/query_report.js:1648 msgid "Include hidden columns" msgstr "Uključi sakrivene kolone" -#: frappe/public/js/frappe/views/reports/query_report.js:1612 +#: frappe/public/js/frappe/views/reports/query_report.js:1620 msgid "Include indentation" msgstr "Uključi indentaciju" @@ -12879,7 +12918,7 @@ msgstr "Nalog za ulaznu poštu nije ispravan" msgid "Incomplete Virtual Doctype Implementation" msgstr "Nepotpuna implementacija virtuelnog DocType-a" -#: frappe/auth.py:255 +#: frappe/auth.py:258 msgid "Incomplete login details" msgstr "Nepotpuni podaci za prijavu" @@ -12990,7 +13029,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:1885 +#: frappe/public/js/frappe/views/reports/query_report.js:1893 msgid "Insert After" msgstr "Unesi nakon" @@ -13063,7 +13102,7 @@ msgstr "Uputstva poslata imejlom" msgid "Insufficient Permission Level for {0}" msgstr "Nedovoljan nivo ovlašćenja za {0}" -#: frappe/database/query.py:806 frappe/database/query.py:1052 +#: frappe/database/query.py:808 frappe/database/query.py:1054 msgid "Insufficient Permission for {0}" msgstr "Nedovoljna ovlašćenja za {0}" @@ -13179,7 +13218,7 @@ msgid "Invalid" msgstr "Nevažeće" #: frappe/public/js/form_builder/utils.js:221 -#: frappe/public/js/frappe/form/grid_row.js:849 +#: frappe/public/js/frappe/form/grid_row.js:850 #: frappe/public/js/frappe/form/layout.js:810 #: frappe/public/js/frappe/views/reports/report_view.js:721 msgid "Invalid \"depends_on\" expression" @@ -13237,8 +13276,8 @@ 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 +#: frappe/database/query.py:429 frappe/database/query.py:456 +#: frappe/database/query.py:466 frappe/database/query.py:489 msgid "Invalid Filter" msgstr "Nevažeći filter" @@ -13310,7 +13349,7 @@ msgstr "Nevažeća lozinka" msgid "Invalid Phone Number" msgstr "Nevažeći broj telefona" -#: frappe/auth.py:94 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 +#: frappe/auth.py:97 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 #: frappe/www/login.py:128 msgid "Invalid Request" msgstr "Nevažeći zahtev" @@ -13350,7 +13389,7 @@ msgstr "Nevažeća tajna za Webhook" msgid "Invalid aggregate function" msgstr "Nevažeća agregatna funkcija" -#: frappe/database/query.py:1542 +#: frappe/database/query.py:1544 msgid "Invalid alias format: {0}. Alias must be a simple identifier." msgstr "Nevažeći format pseudonima: {0}. Pseudonim mora biti jednostavan identifikator." @@ -13358,19 +13397,19 @@ msgstr "Nevažeći format pseudonima: {0}. Pseudonim mora biti jednostavan ident msgid "Invalid app" msgstr "Nevažeća aplikacija" -#: frappe/database/query.py:1468 +#: frappe/database/query.py:1470 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 navodnicima obuhvaćeni tekstovi ili jednostavni nazivi polja." -#: frappe/database/query.py:1444 +#: frappe/database/query.py:1446 msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed." msgstr "Nevažeća vrsta argumenta: {0}. Dozvoljeni su tekst, broj i None." -#: frappe/database/query.py:460 +#: frappe/database/query.py:462 msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed." msgstr "Nevažeći karakteri u nazivu polja: {0}. Dozvoljena su slova, brojevi i donje crte." -#: frappe/database/query.py:575 +#: frappe/database/query.py:577 msgid "Invalid characters in table name: {0}" msgstr "Nevažeći karakteri u nazivu tabele: {0}" @@ -13378,11 +13417,11 @@ msgstr "Nevažeći karakteri u nazivu tabele: {0}" msgid "Invalid column" msgstr "Nevažeća kolona" -#: frappe/database/query.py:381 +#: frappe/database/query.py:383 msgid "Invalid condition type in nested filters: {0}" msgstr "Nevažeća vrsta uslova u ugnježdenom filteru: {0}" -#: frappe/database/query.py:787 +#: frappe/database/query.py:789 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'." @@ -13398,23 +13437,23 @@ 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/database/query.py:1301 +#: frappe/database/query.py:1303 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, u okviru backtics, sa prefiksom tabele, sa pseudonimom ili '*'." -#: frappe/database/query.py:734 +#: frappe/database/query.py:736 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}. Koristite 'field', 'link_field.field', or 'child_table.field'." -#: frappe/database/query.py:1620 +#: frappe/database/query.py:1622 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:2215 +#: frappe/utils/data.py:2241 msgid "Invalid field name {0}" msgstr "Nevažeći naziv polja {0}" -#: frappe/database/query.py:668 +#: frappe/database/query.py:670 msgid "Invalid field type: {0}" msgstr "Nevažeća vrsta polja: {0}" @@ -13426,11 +13465,11 @@ 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:364 +#: frappe/database/query.py:366 msgid "Invalid filter condition: {0}. Expected a list or tuple." msgstr "Nevažeći uslov filtera: {0}. Očekivana je lista ili tuple." -#: frappe/database/query.py:450 +#: frappe/database/query.py:452 msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'." msgstr "Nevažeći format polja za filter: {0}. Koristite 'fieldname' or 'link_fieldname.target_fieldname'." @@ -13438,11 +13477,11 @@ msgstr "Nevažeći format polja za filter: {0}. Koristite 'fieldname' or 'link_f msgid "Invalid filter: {0}" msgstr "Nevažeći filter: {0}" -#: frappe/database/query.py:1422 +#: frappe/database/query.py:1424 msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed." msgstr "Nevažeća vrsta argumenta funkcije: {0}. Dozvoljeni su isključivo tekstovi, brojevi, liste i None." -#: frappe/database/query.py:1383 +#: frappe/database/query.py:1385 msgid "Invalid function dictionary format" msgstr "Nevažeći format rečnika funkcije" @@ -13479,23 +13518,27 @@ 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:337 +#: frappe/app.py:340 msgid "Invalid request arguments" msgstr "Nevažeći argumenti zahteva" +#: frappe/app.py:327 +msgid "Invalid request body" +msgstr "Nevažeće telo zahteva" + #: frappe/core/doctype/user_invitation/user_invitation.py:181 msgid "Invalid role" msgstr "Nevažeća uloga" -#: frappe/database/query.py:410 +#: frappe/database/query.py:412 msgid "Invalid simple filter format: {0}" msgstr "Nevažeći jednostavni format filtera: {0}" -#: frappe/database/query.py:341 +#: frappe/database/query.py:343 msgid "Invalid start for filter condition: {0}. Expected a list or tuple." msgstr "Nevažeći početak uslova za filter: {0}. Očekivana je lista ili tuple." -#: frappe/database/query.py:1489 +#: frappe/database/query.py:1491 msgid "Invalid string literal format: {0}" msgstr "Nevažeći format tekstualnog izraza: {0}" @@ -13599,7 +13642,7 @@ msgstr "Kalendar i gantogram" #. 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/doctype_list.js:50 #: frappe/core/doctype/doctype_link/doctype_link.json msgid "Is Child Table" msgstr "Zavisna tabela" @@ -13652,6 +13695,10 @@ msgstr "Datoteka" msgid "Is Global" msgstr "Globalno" +#: frappe/public/js/frappe/views/treeview.js:418 +msgid "Is Group" +msgstr "Grupa" + #. Label of the is_hidden (Check) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "Is Hidden" @@ -13740,7 +13787,7 @@ msgstr "Da li je postavka završena?" #. 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/core/doctype/doctype/doctype_list.js:65 #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Is Single" msgstr "Jedinstveni zapis" @@ -13776,7 +13823,7 @@ msgstr "Standardno" #. Label of the is_submittable (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:39 +#: frappe/core/doctype/doctype/doctype_list.js:40 msgid "Is Submittable" msgstr "Moguće podneti" @@ -13982,11 +14029,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:388 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:402 msgid "Kanban Board Name" msgstr "Naziv Kanban table" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:265 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:279 msgctxt "Button in kanban view menu" msgid "Kanban Settings" msgstr "Kanban podešavanje" @@ -14284,10 +14331,13 @@ msgstr "Pejzažni" #. 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' +#. Label of a field in the edit-profile Web Form #: 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:117 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/printing/page/print/print.js:117 #: frappe/public/js/frappe/form/templates/print_layout.html:11 msgid "Language" msgstr "Jezik" @@ -14375,9 +14425,12 @@ msgstr "Prošli mesec" #. Label of the last_name (Data) field in DocType 'Contact' #. Label of the last_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json #: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:45 -#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:19 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:19 msgid "Last Name" msgstr "Prezime" @@ -14618,7 +14671,7 @@ msgstr "Zaglavlje u HTML-u" #: 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/public/js/frappe/roles_editor.js:68 #: frappe/website/doctype/help_article/help_article.json msgid "Level" msgstr "Nivo" @@ -14911,7 +14964,7 @@ msgstr "Filter liste" msgid "List Settings" msgstr "Podešavanje liste" -#: frappe/public/js/frappe/list/list_view.js:1991 +#: frappe/public/js/frappe/list/list_view.js:1993 msgctxt "Button in list view menu" msgid "List Settings" msgstr "Podešavanje liste" @@ -14962,7 +15015,7 @@ msgid "Load Balancing" msgstr "Balansiranje opterećenja" #: frappe/public/js/frappe/list/base_list.js:399 -#: frappe/public/js/frappe/web_form/web_form_list.js:305 +#: frappe/public/js/frappe/web_form/web_form_list.js:306 #: frappe/website/doctype/help_article/templates/help_article_list.html:30 msgid "Load More" msgstr "Učitaj više" @@ -14982,7 +15035,7 @@ msgstr "Učita više" #: frappe/public/js/frappe/list/base_list.js:526 #: frappe/public/js/frappe/list/list_view.js:363 #: frappe/public/js/frappe/ui/listing.html:16 -#: frappe/public/js/frappe/views/reports/query_report.js:1089 +#: frappe/public/js/frappe/views/reports/query_report.js:1097 msgid "Loading" msgstr "Učitavanje" @@ -15125,7 +15178,7 @@ msgstr "Verifikacioni kod za prijavu od {}" msgid "Login and view in Browser" msgstr "Prijavite se i pogledajte u internet pretraživaču" -#: frappe/website/doctype/web_form/web_form.js:367 +#: frappe/website/doctype/web_form/web_form.js:368 msgid "Login is required to see web form list view. Enable {0} to see list settings" msgstr "Prijavljivanje je neophodno da biste videli listu veb-obrazaca. Omogućite {0} da biste videli podešavanja liste" @@ -15133,7 +15186,7 @@ msgstr "Prijavljivanje je neophodno da biste videli listu veb-obrazaca. Omogući msgid "Login link sent to your email" msgstr "Link za prijavljivanje je poslat na Vašu imejl adresu" -#: frappe/auth.py:339 frappe/auth.py:342 +#: frappe/auth.py:342 frappe/auth.py:345 msgid "Login not allowed at this time" msgstr "Prijavljivanje trenutno nije dozvoljeno" @@ -15186,7 +15239,7 @@ msgstr "Prijavljivanje putem linka iz imejla" msgid "Login with email link expiry (in minutes)" msgstr "Isticanje linka za prijavljivanje (u minutima)" -#: frappe/auth.py:144 +#: frappe/auth.py:147 msgid "Login with username and password is not allowed." msgstr "Prijavljivanje putem korisničkog imena i lozinke nije dozvoljeno." @@ -15205,7 +15258,7 @@ msgstr "Logo URI" msgid "Logout" msgstr "Odjava" -#: frappe/core/doctype/user/user.js:202 +#: frappe/core/doctype/user/user.js:190 msgid "Logout All Sessions" msgstr "Odjava iz svih sesija" @@ -15309,7 +15362,10 @@ msgid "Major" msgstr "Glavno" #. Label of the show_name_in_global_search (Check) field in DocType 'DocType' +#. Label of the show_name_in_global_search (Check) field in DocType 'Customize +#. Form' #: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Make \"name\" searchable in Global Search" msgstr "Omogući \"naziv\" dostupnim za pretragu u globalnoj pretrazi" @@ -15385,7 +15441,7 @@ msgstr "Obavezno zavisi od" msgid "Mandatory Depends On (JS)" msgstr "Obavezno zavisi od (JS)" -#: frappe/website/doctype/web_form/web_form.py:509 +#: frappe/website/doctype/web_form/web_form.py:536 msgid "Mandatory Information missing:" msgstr "Nedostaju obavezni podaci:" @@ -15842,6 +15898,11 @@ msgstr "Centrirano" msgid "Middle Name" msgstr "Srednje ime" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Middle Name (Optional)" +msgstr "Srednje ime (opciono)" + #. Name of a DocType #. Label of a Link in the Tools Workspace #: frappe/automation/doctype/milestone/milestone.json @@ -15948,6 +16009,11 @@ msgstr "Mobilni" msgid "Mobile No" msgstr "Broj mobilnog telefona" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Mobile Number" +msgstr "Broj mobilnog telefona" + #. 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" @@ -15973,7 +16039,7 @@ msgstr "Pokretač modalnog prozora" #. 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/doctype/doctype_list.js:31 #: 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 @@ -16149,10 +16215,12 @@ msgstr "Više informacija" #. Label of the additional_info (Section Break) field in DocType #. 'Communication' #. Label of the short_bio (Tab Break) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: 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 +#: frappe/core/web_form/edit_profile/edit_profile.json msgid "More Information" msgstr "Više informacija" @@ -16182,7 +16250,7 @@ msgstr "Verovatno je Vaša lozinka predugačka." msgid "Move" msgstr "Premesti" -#: frappe/public/js/frappe/form/grid_row.js:193 +#: frappe/public/js/frappe/form/grid_row.js:194 msgid "Move To" msgstr "Premesti u" @@ -16218,7 +16286,7 @@ msgstr "Premesti odeljke u novu karticu" msgid "Move the current field and the following fields to a new column" msgstr "Premesti trenutno polje i sledeća polja u novu kolonu" -#: frappe/public/js/frappe/form/grid_row.js:168 +#: frappe/public/js/frappe/form/grid_row.js:169 msgid "Move to Row Number" msgstr "Premesti na broj reda" @@ -16286,7 +16354,7 @@ msgid "Mx" msgstr "Mx" #: frappe/templates/includes/web_sidebar.html:41 -#: frappe/website/doctype/web_form/web_form.py:498 +#: frappe/website/doctype/web_form/web_form.py:525 #: 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" @@ -16430,12 +16498,12 @@ msgstr "Šablon navigacione trake" msgid "Navbar Template Values" msgstr "Vrednosti šablona navigacione trake" -#: frappe/public/js/frappe/list/list_view.js:1378 +#: frappe/public/js/frappe/list/list_view.js:1380 msgctxt "Description of a list view shortcut" msgid "Navigate list down" msgstr "Pomeri listu prema dole" -#: frappe/public/js/frappe/list/list_view.js:1385 +#: frappe/public/js/frappe/list/list_view.js:1387 msgctxt "Description of a list view shortcut" msgid "Navigate list up" msgstr "Pomeri listu prema gore" @@ -16450,6 +16518,10 @@ msgstr "Idi na glavni sadržaj" msgid "Navigation Settings" msgstr "Podešavanje navigacije" +#: frappe/public/js/frappe/list/list_view.js:485 +msgid "Need Help?" +msgstr "Treba Vam pomoć?" + #: frappe/desk/doctype/workspace/workspace.py:322 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" @@ -16458,7 +16530,7 @@ msgstr "Neophodna je uloga menadžera radnog prostora da biste uređivali privat msgid "Negative Value" msgstr "Negativna vrednost" -#: frappe/database/query.py:333 +#: frappe/database/query.py:335 msgid "Nested filters must be provided as a list or tuple." msgstr "Ugnježdeni filteri moraju biti predati kao lista ili tuple." @@ -16471,6 +16543,12 @@ msgstr "Greška u ugnježdenom setu. Molimo Vas da kontaktirate administratora." msgid "Network Printer Settings" msgstr "Podešavanje mrežnog štampača" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Never" +msgstr "Nikada" + #. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/core/doctype/success_action/success_action.js:57 @@ -16479,7 +16557,7 @@ msgstr "Podešavanje mrežnog štampača" #: 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/treeview.js:473 #: frappe/public/js/frappe/views/workspace/workspace.js:64 #: frappe/website/doctype/web_form/templates/web_list.html:15 #: frappe/www/list.html:19 @@ -16540,7 +16618,7 @@ msgstr "Novi događaj" msgid "New Folder" msgstr "Nova datoteka" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 msgid "New Kanban Board" msgstr "Nova Kanban tabla" @@ -16575,7 +16653,7 @@ msgstr "Nova brojčana kartica" msgid "New Onboarding" msgstr "Nova uvodna obuka" -#: frappe/core/doctype/user/user.js:190 frappe/www/update-password.html:43 +#: frappe/core/doctype/user/user.js:178 frappe/www/update-password.html:43 msgid "New Password" msgstr "Nova lozinka" @@ -16673,7 +16751,7 @@ msgstr "Nova vrednost treba da bude postavljena" #: frappe/public/js/frappe/ui/toolbar/search_utils.js:227 #: 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:411 +#: frappe/website/doctype/web_form/web_form.py:438 msgid "New {0}" msgstr "Novi {0}" @@ -16825,7 +16903,7 @@ msgstr "Sledeće na klik" #: frappe/public/js/form_builder/utils.js:341 #: frappe/public/js/frappe/form/controls/link.js:498 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1665 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 #: frappe/website/doctype/help_article/templates/help_article.html:26 msgid "No" msgstr "Ne" @@ -16974,7 +17052,7 @@ msgstr "Nijedan rezultat nije pronađen" msgid "No Roles Specified" msgstr "Uloge nisu navedene" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 msgid "No Select Field Found" msgstr "Nije pronađeno polje za izbor" @@ -17058,7 +17136,7 @@ msgstr "Nije pronađena imejl adresa za pozivanje" msgid "No failed logs" msgstr "Nema neuspešnih evidencija" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:371 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:385 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\"." @@ -17082,7 +17160,7 @@ msgstr "Nema dodatnih zapisa" msgid "No matching records. Search something new" msgstr "Nema odgovarajućih zapisa. Pokušajte drugačiju pretragu" -#: frappe/public/js/frappe/web_form/web_form_list.js:161 +#: frappe/public/js/frappe/web_form/web_form_list.js:162 msgid "No more items to display" msgstr "Nema više stavki za prikaz" @@ -17126,7 +17204,7 @@ msgctxt "{0} = verb, {1} = object" msgid "No permission to '{0}' {1}" msgstr "Ne postoji dozvola za '{0}' {1}" -#: frappe/model/db_query.py:948 +#: frappe/model/db_query.py:949 msgid "No permission to read {0}" msgstr "Ne postoji dozvola za čitanje {0}" @@ -17174,11 +17252,11 @@ msgstr "Nema {0}" msgid "No {0} Found" msgstr "Nije pronađen nijedan {0}" -#: frappe/public/js/frappe/web_form/web_form_list.js:233 +#: frappe/public/js/frappe/web_form/web_form_list.js:234 msgid "No {0} found" msgstr "Nije pronađen nijedan {0}" -#: frappe/public/js/frappe/list/list_view.js:497 +#: frappe/public/js/frappe/list/list_view.js:499 msgid "No {0} found with matching filters. Clear filters to see all {0}." msgstr "Nema {0} koji odgovaraju filterima. Očistite filtere da vidite sve {0}." @@ -17187,7 +17265,7 @@ msgid "No {0} mail" msgstr "Nema {0} pošte" #: frappe/public/js/form_builder/utils.js:117 -#: frappe/public/js/frappe/form/grid_row.js:256 +#: frappe/public/js/frappe/form/grid_row.js:257 msgctxt "Title of the 'row number' column" msgid "No." msgstr "Br." @@ -17251,7 +17329,7 @@ msgstr "Nisu potomci od" msgid "Not Equals" msgstr "Nije jednako" -#: frappe/app.py:387 frappe/www/404.html:3 +#: frappe/app.py:390 frappe/www/404.html:3 msgid "Not Found" msgstr "Nije pronađeno" @@ -17277,9 +17355,9 @@ msgstr "Nije povezani ni sa jednim zapisom" msgid "Not Nullable" msgstr "Ne može biti prazno" -#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26 +#: frappe/__init__.py:550 frappe/app.py:383 frappe/desk/calendar.py:26 #: frappe/public/js/frappe/web_form/webform_script.js:15 -#: frappe/website/doctype/web_form/web_form.py:747 +#: frappe/website/doctype/web_form/web_form.py:774 #: 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 @@ -17298,7 +17376,7 @@ msgstr "Nije objavljeno" #: 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/kanban/kanban_view.js:183 #: frappe/public/js/frappe/views/reports/report_view.js:209 #: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39 #: frappe/website/doctype/web_form/templates/web_form.html:85 @@ -17349,7 +17427,7 @@ msgstr "Nije aktivno" msgid "Not allowed for {0}: {1}" msgstr "Nije dozvoljeno za {0}: {1}" -#: frappe/email/doctype/notification/notification.py:637 +#: frappe/email/doctype/notification/notification.py:639 msgid "Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings" msgstr "Nije dozvoljeno priložiti dokumenta vrste {0}, molimo Vas da omogućite Dozvoli štampu za {0} u podešavanjima štampe" @@ -17381,12 +17459,12 @@ msgstr "Nije u razvojnom režimu" msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType." msgstr "Nije u razvojnom režimu! Postavite u site_config.json ili napravite 'Prilagođeni' DocType." -#: frappe/core/doctype/system_settings/system_settings.py:216 +#: frappe/core/doctype/system_settings/system_settings.py:217 #: 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:760 +#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:787 #: frappe/website/js/website.js:97 msgid "Not permitted" msgstr "Nije dozvoljeno" @@ -17432,7 +17510,7 @@ msgstr "Napomena: Za najbolje rezultate, slike moraju biti iste veličine i šir msgid "Note: Multiple sessions will be allowed in case of mobile device" msgstr "Napomena: Višestruke sesije će biti dozvoljene na mobilnim uređajima" -#: frappe/core/doctype/user/user.js:399 +#: frappe/core/doctype/user/user.js:387 msgid "Note: This will be shared with user." msgstr "Napomena: Ovo će biti podeljeno sa korisnikom." @@ -17504,15 +17582,15 @@ msgstr "Dokument na koji je korisnik pretplaćen za obaveštenja" msgid "Notification sent to" msgstr "Obaveštenje poslato ka" -#: frappe/email/doctype/notification/notification.py:542 +#: frappe/email/doctype/notification/notification.py:544 msgid "Notification: customer {0} has no Mobile number set" msgstr "Obaveštenje: kupac {0} nema podešen broj mobilnog telefona" -#: frappe/email/doctype/notification/notification.py:528 +#: frappe/email/doctype/notification/notification.py:530 msgid "Notification: document {0} has no {1} number set (field: {2})" msgstr "Obaveštenje: dokument {0} nema podešen {1} broj (polje: {2})" -#: frappe/email/doctype/notification/notification.py:537 +#: frappe/email/doctype/notification/notification.py:539 msgid "Notification: user {0} has no Mobile number set" msgstr "Obaveštenje: korisnik {0} nema podešen broj mobilnog telefona" @@ -17626,7 +17704,7 @@ msgstr "Broj upita" msgid "Number of attachment fields are more than {}, limit updated to {}." msgstr "Broj polja za priložene fajlove je veći od {}, ograničenje je ažurirano na {}." -#: frappe/core/doctype/system_settings/system_settings.py:171 +#: frappe/core/doctype/system_settings/system_settings.py:172 msgid "Number of backups must be greater than zero." msgstr "Broj rezervnih kopija mora biti veći od nule." @@ -17898,7 +17976,7 @@ msgstr "Uvodna obuka 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 +#: frappe/core/doctype/doctype/doctype_list.js:43 msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended." msgstr "Jednom kada su podneti, dokumenti koji se mogu podneti ne mogu se menjati. Mogu se samo otkazati ili izmeniti." @@ -17987,11 +18065,11 @@ msgstr "Mogu se brisati samo izveštaji kreirani pomoću uređivača izveštaja" msgid "Only reports of type Report Builder can be edited" msgstr "Mogu se uređivati samo izveštaji kreirani pomoću uređivača izveštaja" -#: frappe/custom/doctype/customize_form/customize_form.py:129 +#: frappe/custom/doctype/customize_form/customize_form.py:131 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:241 +#: frappe/model/delete_doc.py:281 msgid "Only the Administrator can delete a standard DocType." msgstr "Isključivo administrator može obrisati standardni DocType." @@ -18087,7 +18165,7 @@ msgstr "Otvori konzolu" msgid "Open in a new tab" msgstr "Otvori u novoj kartici" -#: frappe/public/js/frappe/list/list_view.js:1431 +#: frappe/public/js/frappe/list/list_view.js:1433 msgctxt "Description of a list view shortcut" msgid "Open list item" msgstr "Otvorene stavke" @@ -18136,7 +18214,7 @@ msgstr "Otvoreno" msgid "Operation" msgstr "Operacija" -#: frappe/utils/data.py:2146 +#: frappe/utils/data.py:2172 msgid "Operator must be one of {0}" msgstr "Operator mora biti jedan od sledećih {0}" @@ -18182,6 +18260,7 @@ msgstr "Opciono: Upozorenje će biti poslato ukoliko je ovaj izraz tačan" #. 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 (Text) field in DocType 'Web Form List Column' #. 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 @@ -18190,6 +18269,7 @@ msgstr "Opciono: Upozorenje će biti poslato ukoliko je ovaj izraz tačan" #: 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_form_list_column/web_form_list_column.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Options" msgstr "Opcije" @@ -18235,7 +18315,7 @@ msgstr "Narandžasta" msgid "Order" msgstr "Redosled" -#: frappe/database/query.py:767 +#: frappe/database/query.py:769 msgid "Order By must be a string" msgstr "Sortiraj po mora biti tekst" @@ -18333,7 +18413,7 @@ msgstr "PATCH" #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/printing/page/print/print.js:84 #: frappe/public/js/frappe/form/templates/print_layout.html:44 -#: frappe/public/js/frappe/views/reports/query_report.js:1804 +#: frappe/public/js/frappe/views/reports/query_report.js:1812 msgid "PDF" msgstr "PDF" @@ -18681,8 +18761,8 @@ msgstr "Pasivan" #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/system_settings/system_settings.json -#: frappe/core/doctype/user/user.js:177 frappe/core/doctype/user/user.js:224 -#: frappe/core/doctype/user/user.js:244 +#: frappe/core/doctype/user/user.js:165 frappe/core/doctype/user/user.js:212 +#: frappe/core/doctype/user/user.js:232 #: 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 @@ -18705,7 +18785,7 @@ msgstr "Resetovanje lozinke" msgid "Password Reset Link Generation Limit" msgstr "Ograničenje za generisanje linkova za resetovanje lozinke" -#: frappe/public/js/frappe/form/grid_row.js:896 +#: frappe/public/js/frappe/form/grid_row.js:897 msgid "Password cannot be filtered" msgstr "Lozinka se ne može filtrirati" @@ -18742,7 +18822,7 @@ msgstr "Uputstvo za resetovanje lozinke je poslato na imejl korisnika {}" msgid "Password set" msgstr "Lozinka postavljena" -#: frappe/auth.py:258 +#: frappe/auth.py:261 msgid "Password size exceeded the maximum allowed size" msgstr "Veličina lozinke premašuje dozvoljenu granicu" @@ -18754,7 +18834,7 @@ msgstr "Dužina lozinke premašuje dozvoljenu granicu." msgid "Passwords do not match" msgstr "Lozinke se ne podudaraju" -#: frappe/core/doctype/user/user.js:210 +#: frappe/core/doctype/user/user.js:198 msgid "Passwords do not match!" msgstr "Lozinke se ne podudaraju!" @@ -18905,7 +18985,7 @@ msgstr "Trajno podneti {0}?" msgid "Permanently delete {0}?" msgstr "Trajno obrisati {0}?" -#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533 +#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:535 msgid "Permission Error" msgstr "Greška u dozvolama" @@ -18965,8 +19045,8 @@ msgstr "Vrsta dozvole" #: 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:143 frappe/core/doctype/user/user.js:152 -#: frappe/core/doctype/user/user.js:161 +#: frappe/core/doctype/user/user.js:131 frappe/core/doctype/user/user.js:140 +#: frappe/core/doctype/user/user.js:149 #: 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 @@ -19036,6 +19116,7 @@ msgstr "Zahtev za preuzimanje ličnih podataka" #. Option for the 'Type' (Select) field in DocType 'Communication' #. Option for the 'Type' (Select) field in DocType 'DocField' #. Label of the phone (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #. 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' @@ -19046,6 +19127,7 @@ msgstr "Zahtev za preuzimanje ličnih podataka" #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.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 @@ -19220,7 +19302,7 @@ msgstr "Molimo Vas da ne menjate naslove šablona." msgid "Please duplicate this to make changes" msgstr "Molimo Vas da duplirate ovo kako biste napravili izmene" -#: frappe/core/doctype/system_settings/system_settings.py:164 +#: frappe/core/doctype/system_settings/system_settings.py:165 msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login." msgstr "Molimo Vas da omogućite barem jedan ključ za prijavljivanje putem društvenih mreža ili LDAP ili prijavljivanje putem imejl linka pre nego što onemogućite prijavu pomoću korisničkog imena i lozinke." @@ -19352,11 +19434,11 @@ msgstr "Molimo Vas da prvo izaberete DocType" msgid "Please select Entity Type first" msgstr "Molimo Vas da prvo izaberete vrstu entiteta" -#: frappe/core/doctype/system_settings/system_settings.py:115 +#: frappe/core/doctype/system_settings/system_settings.py:116 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:1185 +#: frappe/public/js/frappe/views/reports/query_report.js:1193 msgid "Please select X and Y fields" msgstr "Molimo Vas da izaberete X i Y polja" @@ -19384,7 +19466,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:1157 +#: frappe/model/db_query.py:1163 msgid "Please select atleast 1 column from {0} to sort/group" msgstr "Molimo Vas da izaberete barem 1 kolonu iz {0} za sortiranje/grupisanje" @@ -19414,7 +19496,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:1408 +#: frappe/public/js/frappe/views/reports/query_report.js:1416 msgid "Please set filters" msgstr "Molimo Vas da postavite filtere" @@ -19434,7 +19516,7 @@ msgstr "Molimo Vas da prvo postavite sledeća dokumenta u ovoj kontrolnoj tabli msgid "Please set the series to be used." msgstr "Molimo Vas da postavite seriju koja će se koristiti." -#: frappe/core/doctype/system_settings/system_settings.py:128 +#: frappe/core/doctype/system_settings/system_settings.py:129 msgid "Please setup SMS before setting it as an authentication method, via SMS Settings" msgstr "Molimo Vas da postavite SMS pre nego što ga postavite kao metod autentifikacije, putem SMS podešavanja" @@ -19586,7 +19668,7 @@ msgstr "Poštanski broj" msgid "Posting Timestamp" msgstr "Vreme objave" -#: frappe/database/query.py:1518 +#: frappe/database/query.py:1520 msgid "Potentially dangerous content in string literal: {0}" msgstr "Potencijalno opasan sadržaj u tekstualnom izrazu: {0}" @@ -19603,7 +19685,7 @@ msgstr "Preciznost" #: frappe/core/doctype/doctype/doctype.py:1670 msgid "Precision ({0}) for {1} cannot be greater than its length ({2})." -msgstr "" +msgstr "Preciznost ({0}) za {1} ne može biti veća od njegove dužine ({2})." #: frappe/core/doctype/doctype/doctype.py:1401 msgid "Precision should be between 1 and 6" @@ -19788,13 +19870,13 @@ msgstr "Primarni ključ za doctype {0} ne može biti promenjen jer sadrži posto #: 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:1789 +#: frappe/public/js/frappe/views/reports/query_report.js:1797 #: frappe/public/js/frappe/views/reports/report_view.js:1539 -#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18 +#: frappe/public/js/frappe/views/treeview.js:492 frappe/www/printview.html:18 msgid "Print" msgstr "Štampa" -#: frappe/public/js/frappe/list/list_view.js:2164 +#: frappe/public/js/frappe/list/list_view.js:2166 msgctxt "Button in list view actions menu" msgid "Print" msgstr "Štampa" @@ -19864,7 +19946,7 @@ msgstr "Pomoć za format štampe" msgid "Print Format Type" msgstr "Vrsta formata štampe" -#: frappe/public/js/frappe/views/reports/query_report.js:1578 +#: frappe/public/js/frappe/views/reports/query_report.js:1586 msgid "Print Format not found" msgstr "Format štampe nije pronađen" @@ -20045,11 +20127,11 @@ msgstr "Savet: Dodaje Reference: {{ reference_doctype }} {{ reference_name msgid "Proceed" msgstr "Nastavi" -#: frappe/public/js/frappe/views/reports/query_report.js:932 +#: frappe/public/js/frappe/views/reports/query_report.js:940 msgid "Proceed Anyway" msgstr "Ipak nastavi" -#: frappe/public/js/frappe/form/controls/table.js:123 +#: frappe/public/js/frappe/form/controls/table.js:104 msgid "Processing" msgstr "Obrada" @@ -20066,11 +20148,21 @@ msgstr "Prof" msgid "Profile" msgstr "Profil" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile Picture" +msgstr "Profilna slika" + +#. Success message of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile updated successfully." +msgstr "Profil je uspešno ažuriran." + #: frappe/public/js/frappe/socketio_client.js:82 msgid "Progress" msgstr "Napredak" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:408 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:422 msgid "Project" msgstr "Projekat" @@ -20114,7 +20206,7 @@ msgstr "Vrsta svojstva" msgid "Protect Attached Files" msgstr "Zaštiti priložene fajlove" -#: frappe/core/doctype/file/file.py:523 +#: frappe/core/doctype/file/file.py:526 msgid "Protected File" msgstr "Zaštićeni fajl" @@ -20620,11 +20712,11 @@ msgstr "U realnom vremenu (SocketIO)" msgid "Reason" msgstr "Razlog" -#: frappe/public/js/frappe/views/reports/query_report.js:886 +#: frappe/public/js/frappe/views/reports/query_report.js:894 msgid "Rebuild" msgstr "Obnovi" -#: frappe/public/js/frappe/views/treeview.js:509 +#: frappe/public/js/frappe/views/treeview.js:511 msgid "Rebuild Tree" msgstr "Obnovi stablo" @@ -21005,8 +21097,8 @@ 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:1778 -#: frappe/public/js/frappe/views/treeview.js:496 +#: frappe/public/js/frappe/views/reports/query_report.js:1786 +#: frappe/public/js/frappe/views/treeview.js:498 #: frappe/public/js/frappe/widgets/chart_widget.js:291 #: frappe/public/js/frappe/widgets/number_card_widget.js:352 #: frappe/public/js/print_format_builder/Preview.vue:24 @@ -21037,13 +21129,13 @@ msgstr "Osveži pregled štampe" msgid "Refresh Token" msgstr "Token za osvežavanje" -#: frappe/public/js/frappe/list/list_view.js:534 +#: frappe/public/js/frappe/list/list_view.js:536 msgctxt "Document count in list view" msgid "Refreshing" msgstr "Osvežavanje" #: frappe/core/doctype/system_settings/system_settings.js:57 -#: frappe/core/doctype/user/user.js:374 +#: frappe/core/doctype/user/user.js:362 #: frappe/desk/page/setup_wizard/setup_wizard.js:211 msgid "Refreshing..." msgstr "Osvežavanje..." @@ -21428,7 +21520,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:1965 +#: frappe/public/js/frappe/views/reports/query_report.js:1973 msgid "Report Name" msgstr "Naziv izveštaja" @@ -21480,7 +21572,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:1013 +#: frappe/public/js/frappe/views/reports/query_report.js:1021 msgid "Report initiated, click to view status" msgstr "Izveštaj je pokrenut, kliknite da biste pogledali status" @@ -21500,7 +21592,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:2003 +#: frappe/public/js/frappe/views/reports/query_report.js:2011 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." @@ -21536,7 +21628,7 @@ msgstr "Izveštaji" msgid "Reports & Masters" msgstr "Izveštaji i master podaci" -#: frappe/public/js/frappe/views/reports/query_report.js:929 +#: frappe/public/js/frappe/views/reports/query_report.js:937 msgid "Reports already in Queue" msgstr "Izveštaji su već u redu" @@ -21555,7 +21647,10 @@ msgid "Request Body" msgstr "Telo zahteva" #. Label of the data (Code) field in DocType 'Integration Request' +#. Title of the request-data Web Form +#. Button label of the request-data Web Form #: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/website/web_form/request_data/request_data.json msgid "Request Data" msgstr "Podaci zahteva" @@ -21607,6 +21702,11 @@ msgstr "Vreme za zahtev je isteklo" msgid "Request URL" msgstr "URL zahteva" +#. Title of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "Request for Account Deletion" +msgstr "Zahtev za brisanje naloga" + #. Label of the requested_numbers (Code) field in DocType 'SMS Log' #: frappe/core/doctype/sms_log/sms_log.json msgid "Requested Numbers" @@ -21662,7 +21762,7 @@ msgstr "Resetuj prilagođavanja kontrolne table" msgid "Reset Fields" msgstr "Resetuj polja" -#: frappe/core/doctype/user/user.js:184 frappe/core/doctype/user/user.js:187 +#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:175 msgid "Reset LDAP Password" msgstr "Resetuj LDAP lozinku" @@ -21670,11 +21770,11 @@ msgstr "Resetuj LDAP lozinku" msgid "Reset Layout" msgstr "Resetuj raspored" -#: frappe/core/doctype/user/user.js:235 +#: frappe/core/doctype/user/user.js:223 msgid "Reset OTP Secret" msgstr "Resetuj tajnu jednokratne lozinke" -#: frappe/core/doctype/user/user.js:168 frappe/www/login.html:199 +#: frappe/core/doctype/user/user.js:156 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" @@ -21709,7 +21809,7 @@ msgstr "Vrati na podrazumevano" msgid "Reset sorting" msgstr "Resetuj sortiranje" -#: frappe/public/js/frappe/form/grid_row.js:433 +#: frappe/public/js/frappe/form/grid_row.js:434 msgid "Reset to default" msgstr "Vrati na podrazumevano" @@ -21961,7 +22061,7 @@ msgstr "Dozvole uloge za stranicu i izveš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 +#: frappe/public/js/frappe/roles_editor.js:114 msgid "Role Permissions" msgstr "Dozvole uloga" @@ -21971,7 +22071,7 @@ msgstr "Dozvole uloga" msgid "Role Permissions Manager" msgstr "Menadžer dozvola uloga" -#: frappe/public/js/frappe/list/list_view.js:1933 +#: frappe/public/js/frappe/list/list_view.js:1935 msgctxt "Button in list view menu" msgid "Role Permissions Manager" msgstr "Menadžer dozvola uloga" @@ -22164,11 +22264,11 @@ msgstr "Vrednosti u redu su izmenjene" msgid "Row {0}" msgstr "Red {0}" -#: frappe/custom/doctype/customize_form/customize_form.py:353 +#: frappe/custom/doctype/customize_form/customize_form.py:357 msgid "Row {0}: Not allowed to disable Mandatory for standard fields" msgstr "Red {0}: Nije dozvoljeno onemogućiti obavezno za standardna polja" -#: frappe/custom/doctype/customize_form/customize_form.py:342 +#: frappe/custom/doctype/customize_form/customize_form.py:346 msgid "Row {0}: Not allowed to enable Allow on Submit for standard fields" msgstr "Red {0}: Nije dozvoljeno omogućiti dozvolu pri podnošenju za standardna polja" @@ -22187,7 +22287,10 @@ msgid "Rows Removed" msgstr "Redovi uklonjeni" #. Label of the rows_threshold_for_grid_search (Int) field in DocType 'DocType' +#. Label of the rows_threshold_for_grid_search (Int) field in DocType +#. 'Customize Form' #: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Rows Threshold for Grid Search" msgstr "Prag redova za pretragu u tabeli" @@ -22395,8 +22498,8 @@ msgstr "Subota" #: 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:1957 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 +#: frappe/public/js/frappe/views/reports/query_report.js:1965 #: frappe/public/js/frappe/views/reports/report_view.js:1735 #: frappe/public/js/frappe/views/workspace/workspace.js:335 #: frappe/public/js/frappe/widgets/base_widget.js:142 @@ -22419,11 +22522,11 @@ msgstr "Sačuvaj kao" msgid "Save Customizations" msgstr "Sačuvaj prilagođavanja" -#: frappe/public/js/frappe/views/reports/query_report.js:1960 +#: frappe/public/js/frappe/views/reports/query_report.js:1968 msgid "Save Report" msgstr "Sačuvaj izveštaj" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:97 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:107 msgid "Save filters" msgstr "Sačuvaj filtere" @@ -22795,7 +22898,7 @@ msgstr "Podešavanja bezbednosti" msgid "See all Activity" msgstr "Pogledaj sve aktivnosti" -#: frappe/public/js/frappe/views/reports/query_report.js:855 +#: frappe/public/js/frappe/views/reports/query_report.js:863 msgid "See all past reports." msgstr "Pogledaj sve prethodne izveštaje." @@ -22859,7 +22962,7 @@ msgstr "Izaberi" #: 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:497 +#: frappe/public/js/frappe/form/grid_row.js:498 msgid "Select All" msgstr "Izaberi sve" @@ -22939,7 +23042,7 @@ msgstr "Izaberi polje" msgid "Select Field..." msgstr "Izaberi polje..." -#: frappe/public/js/frappe/form/grid_row.js:489 +#: frappe/public/js/frappe/form/grid_row.js:490 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:181 msgid "Select Fields" msgstr "Izaberi polja" @@ -23059,8 +23162,8 @@ msgid "Select a field to edit its properties." msgstr "Izaberite polje da biste uredili njegova svojstva." #: frappe/public/js/frappe/views/treeview.js:358 -msgid "Select a group node first." -msgstr "Izaberi grupni čvor." +msgid "Select a group {0} first." +msgstr "Najpre izaberite grupu {0}." #: frappe/core/doctype/doctype/doctype.py:1956 msgid "Select a valid Sender Field for creating documents from Email" @@ -23096,13 +23199,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:1445 +#: frappe/public/js/frappe/list/list_view.js:1447 msgctxt "Description of a list view shortcut" msgid "Select list item" msgstr "Izaberi stavku iz liste" -#: frappe/public/js/frappe/list/list_view.js:1397 -#: frappe/public/js/frappe/list/list_view.js:1413 +#: frappe/public/js/frappe/list/list_view.js:1399 +#: frappe/public/js/frappe/list/list_view.js:1415 msgctxt "Description of a list view shortcut" msgid "Select multiple list items" msgstr "Izaberi više stavki iz liste" @@ -23424,7 +23527,7 @@ msgstr "Serija {0} je već iskorišćena u {1}" msgid "Server Action" msgstr "Serverska radnja" -#: frappe/app.py:396 frappe/public/js/frappe/request.js:611 +#: frappe/app.py:399 frappe/public/js/frappe/request.js:611 #: frappe/www/error.html:36 frappe/www/error.py:15 msgid "Server Error" msgstr "Serverska greška" @@ -23490,7 +23593,7 @@ msgstr "Podrazumevane vrednosti sesije" msgid "Session Defaults Saved" msgstr "Podrazumevane vrednosti sesije su sačuvane" -#: frappe/app.py:373 +#: frappe/app.py:376 msgid "Session Expired" msgstr "Sesija je istekla" @@ -23499,7 +23602,7 @@ msgstr "Sesija je istekla" msgid "Session Expiry (idle timeout)" msgstr "Istek sesije (vreme neaktivnosti)" -#: frappe/core/doctype/system_settings/system_settings.py:122 +#: frappe/core/doctype/system_settings/system_settings.py:123 msgid "Session Expiry must be in format {0}" msgstr "Istek sesije mora biti u formatu {0}" @@ -23548,7 +23651,7 @@ msgstr "Postavi filtere" msgid "Set Filters for {0}" msgstr "Postavi filtere za {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:2113 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 msgid "Set Level" msgstr "Postavi nivo" @@ -23602,7 +23705,7 @@ msgstr "Postavi količinu" msgid "Set Role For" msgstr "Postavi ulogu za" -#: frappe/core/doctype/user/user.js:136 +#: frappe/core/doctype/user/user.js:124 #: frappe/core/page/permission_manager/permission_manager.js:72 msgid "Set User Permissions" msgstr "Postavi korisničke dozvole" @@ -23653,7 +23756,7 @@ msgstr "Postavite nestandardnu preciznost za polje sa decimalnim brojem ili valu #. Description of the 'Precision' (Select) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json msgid "Set non-standard precision for a Float, Currency or Percent field" -msgstr "" +msgstr "Podesite nestandardnu preciznost za polja vrste decimalni broj, valuta ili procenat" #. Label of the set_only_once (Check) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json @@ -23788,7 +23891,7 @@ msgstr "Postavke > Korisnik" msgid "Setup > User Permissions" msgstr "Postavke > Korisničke dozvole" -#: frappe/public/js/frappe/views/reports/query_report.js:1826 +#: frappe/public/js/frappe/views/reports/query_report.js:1834 #: frappe/public/js/frappe/views/reports/report_view.js:1713 msgid "Setup Auto Email" msgstr "Postavke automatskog imejla" @@ -23929,6 +24032,12 @@ msgstr "Prikaži dokument" msgid "Show Error" msgstr "Prikaži grešku" +#. Label of the show_external_link_warning (Select) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Show External Link Warning" +msgstr "Prikaži upozorenje za eksterne linkove" + #: frappe/public/js/frappe/form/layout.js:578 msgid "Show Fieldname (click to copy on clipboard)" msgstr "Prikaži naziv polja (klikni za kopiranje)" @@ -24057,7 +24166,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:1849 +#: frappe/public/js/frappe/list/list_view.js:1851 msgid "Show Tags" msgstr "Prikaži oznake" @@ -24264,36 +24373,36 @@ msgstr "Registracija onemogućena" msgid "Signups have been disabled for this website." msgstr "Registracija je onemogućena za ovaj veb-sajt." -#. 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 "Jednostavni python izraz, primer: Status in (\"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 "Jednostavni python izraz, primer: status in (\"Nevažeće\")" +msgid "Simple Python Expression, Example: status == \"Invalid\"" +msgstr "Jednostavni python izraz, primer: status == \"Invalid\"" #. 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 "Jednostavni python izraz, primer: status == 'Otvoreno' and type == 'Greška'" +msgid "Simple Python Expression, Example: status == 'Open' and issue_type == 'Bug'" +msgstr "Jednostavni python izraz, primer: status == 'Open' and issue_type == 'Bug'" + +#. 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 "Jednostavni python izraz, primer: status in (\"Closed\", \"Cancelled\")" #. Label of the simultaneous_sessions (Int) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Simultaneous Sessions" msgstr "Istovremene sesije" -#: frappe/custom/doctype/customize_form/customize_form.py:126 +#: frappe/custom/doctype/customize_form/customize_form.py:128 msgid "Single DocTypes cannot be customized." msgstr "Jedinstveni DocType-ovi se ne mogu prilagođavati." #. Description of the 'Is Single' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:67 +#: frappe/core/doctype/doctype/doctype_list.js:68 msgid "Single Types have only one record no tables associated. Values are stored in tabSingles" msgstr "Jedinstvene vrste imaju samo jedan zapis, bez povezanih tabela. Vrednosti se čuvaju u tabeli tabSingles" @@ -24629,7 +24738,7 @@ msgid "Splash Image" msgstr "Splash slika" #: frappe/desk/reportview.py:455 -#: frappe/public/js/frappe/web_form/web_form_list.js:175 +#: frappe/public/js/frappe/web_form/web_form_list.js:176 #: frappe/templates/print_formats/standard_macros.html:44 msgid "Sr" msgstr "Sr" @@ -24661,7 +24770,7 @@ msgstr "Stack Trace" msgid "Standard" msgstr "Standardno" -#: frappe/model/delete_doc.py:79 +#: frappe/model/delete_doc.py:119 msgid "Standard DocType can not be deleted." msgstr "Standardni DocType ne može biti obrisan." @@ -24931,7 +25040,7 @@ msgstr "Koraci za verifikaciju Vašeg prijavljivanja" #. Label of the sticky (Check) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json -#: frappe/public/js/frappe/form/grid_row.js:454 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Sticky" msgstr "Prikačen" @@ -24961,7 +25070,7 @@ msgstr "Iskorišćenost prostora po tabelama" msgid "Store Attached PDF Document" msgstr "Spremi priloženi PDF dokument" -#: frappe/core/doctype/user/user.js:490 +#: frappe/core/doctype/user/user.js:497 msgid "Store the API secret securely. It won't be displayed again." msgstr "Sačuvajte API tajnu na sigurnom mestu. Neće biti više prikazivana." @@ -25073,6 +25182,7 @@ msgstr "Red čekanja za podnošenje" #. 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' +#. Button label of the request-to-delete-data Web Form #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/docshare/docshare.json @@ -25081,10 +25191,11 @@ msgstr "Red čekanja za podnošenje" #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/quick_entry.js:225 #: frappe/public/js/frappe/ui/capture.js:307 +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json msgid "Submit" msgstr "Podnesi" -#: frappe/public/js/frappe/list/list_view.js:2231 +#: frappe/public/js/frappe/list/list_view.js:2233 msgctxt "Button in list view actions menu" msgid "Submit" msgstr "Podnesi" @@ -25094,7 +25205,7 @@ msgctxt "Button in web form" msgid "Submit" msgstr "Podnesi" -#: frappe/public/js/frappe/ui/dialog.js:63 +#: frappe/public/js/frappe/ui/dialog.js:64 msgctxt "Primary action in dialog" msgid "Submit" msgstr "Podnesi" @@ -25142,7 +25253,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:2236 +#: frappe/public/js/frappe/list/list_view.js:2238 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "Podnesi {0} dokumenata?" @@ -25192,7 +25303,7 @@ msgstr "Podnaslov" #: 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:1171 +#: frappe/public/js/frappe/form/grid.js:1172 #: frappe/public/js/frappe/views/translation_manager.js:21 #: frappe/templates/includes/login/login.js:230 #: frappe/templates/includes/login/login.js:236 @@ -25407,7 +25518,7 @@ msgstr "Sinhronizovanje" msgid "Syncing {0} of {1}" msgstr "Sinhronizovanje {0} od {1}" -#: frappe/utils/data.py:2547 +#: frappe/utils/data.py:2573 msgid "Syntax Error" msgstr "Greška u sintaksi" @@ -25718,7 +25829,7 @@ msgstr "Višestruki odabir u tabeli" msgid "Table Trimmed" msgstr "Skraćena tabela" -#: frappe/public/js/frappe/form/grid.js:1170 +#: frappe/public/js/frappe/form/grid.js:1171 msgid "Table updated" msgstr "Tabela ažurirana" @@ -25935,7 +26046,7 @@ msgstr "Hvala" msgid "The Auto Repeat for this document has been disabled." msgstr "Automatsko ponavljanje za ovaj dokument je onemogućeno." -#: frappe/public/js/frappe/form/grid.js:1193 +#: frappe/public/js/frappe/form/grid.js:1194 msgid "The CSV format is case sensitive" msgstr "CSV format razlikuje velika i mala slova" @@ -26007,7 +26118,7 @@ msgstr "Komentar ne može biti prazan" msgid "The contents of this email are strictly confidential. Please do not forward this email to anyone." msgstr "Sadržaj ovog imejla je strogo poverljiv. Molimo Vas da ga ne prosleđujete." -#: frappe/public/js/frappe/list/list_view.js:685 +#: frappe/public/js/frappe/list/list_view.js:687 msgid "The count shown is an estimated count. Click here to see the accurate count." msgstr "Prikazan broj procena. Kliknite ovde da vidite tačan broj." @@ -26111,7 +26222,7 @@ msgstr "Broj projekta dobijen putem Google Cloud konzole, u odeljku
Click here to download:
{0}

This link will expire in {1} hours." -msgstr "" +msgstr "Izveštaj koji ste zatražili je generisan.

Kliknite ovde za preuzimanje:
{0}

Ovaj link ističe za {1} sata." #: frappe/core/doctype/user/user.py:1000 msgid "The reset password link has been expired" @@ -26121,7 +26232,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:388 frappe/public/js/frappe/request.js:149 +#: frappe/app.py:391 frappe/public/js/frappe/request.js:149 msgid "The resource you are looking for is not available" msgstr "Resurs koji tražite nije dostupan" @@ -26194,12 +26305,12 @@ 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:965 +#: frappe/public/js/frappe/views/reports/query_report.js:973 msgid "There are {0} with the same filters already in the queue:" msgstr "Već postoji {0} sa istim filterima u redu čekanja:" #: frappe/website/doctype/web_form/web_form.js:81 -#: frappe/website/doctype/web_form/web_form.js:317 +#: frappe/website/doctype/web_form/web_form.js:318 msgid "There can be only 9 Page Break fields in a Web Form" msgstr "U veb-obrascu može biti najviše 9 polja za prelom stranice" @@ -26223,11 +26334,11 @@ msgstr "Ne postoji zadatak pod nazivom \"{}\"" msgid "There is nothing new to show you right now." msgstr "Trenutno nema ničeg novog da se prikaže." -#: frappe/core/doctype/file/file.py:640 frappe/utils/file_manager.py:372 +#: frappe/core/doctype/file/file.py:643 frappe/utils/file_manager.py:372 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:962 +#: frappe/public/js/frappe/views/reports/query_report.js:970 msgid "There is {0} with the same filters already in the queue:" msgstr "Već postoji {0} sa istim filterima u redu čekanja:" @@ -26239,7 +26350,7 @@ msgstr "Mora postojati barem jedno pravilo dozvole." msgid "There was an error building this page" msgstr "Došlo je do greške prilikom izgradnje ove stranice" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:182 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:196 msgid "There was an error saving filters" msgstr "Došlo je do greške prilikom čuvanja filtera" @@ -26296,7 +26407,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:391 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:405 msgid "This Kanban Board will be private" msgstr "Ova Kanban tabla će biti privatna" @@ -26333,10 +26444,10 @@ msgstr "Ova radnja je dozvoljena samo za {}" msgid "This cannot be undone" msgstr "Ovo se ne može opozvati" -#: frappe/desk/doctype/number_card/number_card.js:480 +#: frappe/desk/doctype/number_card/number_card.js:484 msgctxt "Number Card" msgid "This card is visible only to Administrator and System Managers by default. Set a DocType to share with users who have read access." -msgstr "" +msgstr "Ova kartica je podrazumevano vidljiva samo administratoru i sistem menadžerima. Podesite DocType da je delite sa korisnicima koji imaju pravo čitanja." #. Description of the 'Is Public' (Check) field in DocType 'Number Card' #: frappe/desk/doctype/number_card/number_card.json @@ -26356,7 +26467,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:113 +#: frappe/model/delete_doc.py:153 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." @@ -26402,7 +26513,7 @@ msgstr "Ovo polje će se prikazati samo ukoliko polje definisano ovde ima neku v "eval:doc.myfield=='My Value'\n" "eval:doc.age>18" -#: frappe/core/doctype/file/file.py:522 +#: frappe/core/doctype/file/file.py:525 msgid "This file is attached to a protected document and cannot be deleted." msgstr "Ovaj fajl je priložen u zaštićeni dokument i ne može se obrisati." @@ -26437,7 +26548,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:2189 +#: frappe/public/js/frappe/views/reports/query_report.js:2197 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." @@ -26487,7 +26598,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:1037 +#: frappe/public/js/frappe/views/reports/query_report.js:1045 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}." @@ -26495,7 +26606,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:853 +#: frappe/public/js/frappe/views/reports/query_report.js:861 msgid "This report was generated {0}." msgstr "Ovaj izveštaj je generisan {0}." @@ -26637,9 +26748,11 @@ msgstr "Vremenski prozor (u sekundama)" #. Label of the time_zone (Select) field in DocType 'System Settings' #. Label of the time_zone (Autocomplete) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #. 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/core/web_form/edit_profile/edit_profile.json #: frappe/desk/page/setup_wizard/setup_wizard.js:407 #: frappe/website/doctype/web_page_view/web_page_view.json msgid "Time Zone" @@ -26906,7 +27019,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:854 +#: frappe/public/js/frappe/views/reports/query_report.js:862 msgid "To get the updated report, click on {0}." msgstr "Za ažurirani izveštaj kliknite na {0}." @@ -26981,7 +27094,7 @@ msgstr "Prebaci u prikaz mreže" msgid "Toggle Sidebar" msgstr "Prebaci bočnu traku" -#: frappe/public/js/frappe/list/list_view.js:1964 +#: frappe/public/js/frappe/list/list_view.js:1966 msgctxt "Button in list view menu" msgid "Toggle Sidebar" msgstr "Prebaci bočnu traku" @@ -27107,7 +27220,7 @@ msgstr "Tema" #: frappe/desk/query_report.py:587 #: frappe/public/js/frappe/views/reports/print_grid.html:45 -#: frappe/public/js/frappe/views/reports/query_report.js:1324 +#: frappe/public/js/frappe/views/reports/query_report.js:1332 #: frappe/public/js/frappe/views/reports/report_view.js:1553 msgid "Total" msgstr "Ukupno" @@ -27266,7 +27379,7 @@ msgstr "Tranzicije" msgid "Translatable" msgstr "Moguće prevođenje" -#: frappe/public/js/frappe/views/reports/query_report.js:2244 +#: frappe/public/js/frappe/views/reports/query_report.js:2252 msgid "Translate Data" msgstr "Prevedi podatke" @@ -27625,7 +27738,7 @@ msgstr "Nije moguće poslati imejl zbog nedostajućeg imejl naloga. Molimo Vas d msgid "Unable to update event" msgstr "Nije moguće ažurirati događaj" -#: frappe/core/doctype/file/file.py:486 +#: frappe/core/doctype/file/file.py:489 msgid "Unable to write file format for {0}" msgstr "Nije moguće upisati format fajla za {0}" @@ -27634,7 +27747,7 @@ msgstr "Nije moguće upisati format fajla za {0}" msgid "Unassign Condition" msgstr "Ukloni dodeljivanje uslova" -#: frappe/app.py:396 +#: frappe/app.py:399 msgid "Uncaught Exception" msgstr "Neuhvaćeni izuzetak" @@ -27650,7 +27763,7 @@ msgstr "Poništi" msgid "Undo last action" msgstr "Poništi poslednju radnju" -#: frappe/database/query.py:1495 +#: frappe/database/query.py:1497 msgid "Unescaped quotes in string literal: {0}" msgstr "Navodnici nisu pravilno izbegnuti u tekstualnom izrazu: {0}" @@ -27698,7 +27811,7 @@ msgstr "Nepoznata kolona: {0}" msgid "Unknown Rounding Method: {}" msgstr "Nepoznat metod zaokruživanja: {}" -#: frappe/auth.py:316 +#: frappe/auth.py:319 msgid "Unknown User" msgstr "Nepoznati korisnik" @@ -27764,8 +27877,8 @@ msgstr "Parametri otkazivanja pretplate" msgid "Unsubscribed" msgstr "Otkazana pretplata" -#: frappe/database/query.py:653 frappe/database/query.py:1387 -#: frappe/database/query.py:1397 +#: frappe/database/query.py:655 frappe/database/query.py:1389 +#: frappe/database/query.py:1399 msgid "Unsupported function or invalid field name: {0}" msgstr "Nepodržana funkcija ili neispravan naziv polja: {0}" @@ -27799,7 +27912,7 @@ msgstr "Predstojeći događaji za danas" #: 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:427 +#: frappe/public/js/frappe/form/grid_row.js:428 msgid "Update" msgstr "Ažuriraj" @@ -27833,6 +27946,11 @@ msgstr "Ažuriraj redosled" msgid "Update Password" msgstr "Ažuriraj lozinku" +#. Title of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Update Profile" +msgstr "Ažuriraj profil" + #. Label of the update_series (Section Break) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -28048,11 +28166,7 @@ msgstr "Koristite drugi ID imejla" msgid "Use if the default settings don't seem to detect your data correctly" msgstr "Koristite ukoliko podrazumevana podešavanja ne prepoznaju tačno Vaše podatke" -#: frappe/model/db_query.py:436 -msgid "Use of function {0} in field is restricted" -msgstr "Korišćenje funkcije {0} u polju je ograničeno" - -#: frappe/model/db_query.py:413 +#: frappe/model/db_query.py:411 msgid "Use of sub-query or function is restricted" msgstr "Korišćenje podupita ili funkcije je ograničeno" @@ -28274,12 +28388,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:1944 +#: frappe/public/js/frappe/views/reports/query_report.js:1952 #: frappe/public/js/frappe/views/reports/report_view.js:1761 msgid "User Permissions" msgstr "Korisničke dozvole" -#: frappe/public/js/frappe/list/list_view.js:1922 +#: frappe/public/js/frappe/list/list_view.js:1924 msgctxt "Button in list view menu" msgid "User Permissions" msgstr "Korisničke dozvole" @@ -28423,7 +28537,7 @@ msgstr "Korisnik {0} se predstavlja kao {1}" msgid "User {0} is disabled" msgstr "Korisnik {0} je onemogućen" -#: frappe/sessions.py:242 +#: frappe/sessions.py:243 msgid "User {0} is disabled. Please contact your System Manager." msgstr "Korisnik {0} je onemogućen. Molimo Vas da kontaktirate sistem menadžera." @@ -28600,7 +28714,7 @@ msgstr "Vrednost ne može biti negativna za {0}: {1}" msgid "Value for a check field can be either 0 or 1" msgstr "Vrednost za polje izbora može biti samo 0 ili 1" -#: frappe/custom/doctype/customize_form/customize_form.py:612 +#: frappe/custom/doctype/customize_form/customize_form.py:616 msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters" msgstr "Vrednost za polje {0} u {1} je predugačka. Dužina treba da bude manja od {2} karaktera" @@ -28721,7 +28835,7 @@ msgstr "Prikaži sve" msgid "View Audit Trail" msgstr "Prikaži istoriju izmena" -#: frappe/core/doctype/user/user.js:156 +#: frappe/core/doctype/user/user.js:144 msgid "View Doctype Permissions" msgstr "Prikaži DocType dozvole" @@ -28733,7 +28847,7 @@ msgstr "Prikaži fajl" msgid "View Full Log" msgstr "Prikaži celu evidenciju" -#: frappe/public/js/frappe/views/treeview.js:484 +#: frappe/public/js/frappe/views/treeview.js:486 #: frappe/public/js/frappe/widgets/quick_list_widget.js:258 msgid "View List" msgstr "Prikaži listu" @@ -28743,7 +28857,7 @@ msgstr "Prikaži listu" msgid "View Log" msgstr "Prikaži evidenciju" -#: frappe/core/doctype/user/user.js:147 +#: frappe/core/doctype/user/user.js:135 #: frappe/core/doctype/user_permission/user_permission.js:24 msgid "View Permitted Documents" msgstr "Prikaži dozvoljena dokumenta" @@ -28859,6 +28973,7 @@ msgid "Warehouse" msgstr "Skladište" #. Option for the 'Style' (Select) field in DocType 'Workflow State' +#: frappe/public/js/frappe/router.js:613 #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Warning" msgstr "Upozorenje" @@ -29504,7 +29619,7 @@ msgstr "Radni tok je uspešno ažuriran" msgid "Workspace" msgstr "Radni prostor" -#: frappe/public/js/frappe/router.js:175 +#: frappe/public/js/frappe/router.js:180 msgid "Workspace {0} does not exist" msgstr "Radni prostor {0} ne postoji" @@ -29626,7 +29741,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:1225 +#: frappe/public/js/frappe/views/reports/query_report.js:1233 msgid "Y Field" msgstr "Y polje" @@ -29688,7 +29803,7 @@ msgstr "Žuta" #: frappe/public/js/form_builder/utils.js:336 #: frappe/public/js/frappe/form/controls/link.js:498 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1665 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 #: frappe/website/doctype/help_article/templates/help_article.html:25 msgid "Yes" msgstr "Da" @@ -29724,6 +29839,10 @@ msgstr "Dodali ste 1 red u {0}" msgid "You added {0} rows to {1}" msgstr "Dodali ste {0} redova u {1}" +#: frappe/public/js/frappe/router.js:642 +msgid "You are about to open an external link. To confirm, click the link again." +msgstr "Pokušavate da otvorite eksterni link. Da potvrdite, kliknite ponovo na link." + #: frappe/public/js/frappe/dom.js:438 msgid "You are connected to internet." msgstr "Povezani ste na internet." @@ -29767,7 +29886,7 @@ msgstr "Nemate dozvolu da uređujete izveštaj." msgid "You are not allowed to export {} doctype" msgstr "Nemate dozvolu da izvezete doctype {}" -#: frappe/public/js/frappe/views/treeview.js:448 +#: frappe/public/js/frappe/views/treeview.js:450 msgid "You are not allowed to print this report" msgstr "Nemate dozvolu da odštampate ovaj izveštaj" @@ -29775,7 +29894,7 @@ msgstr "Nemate dozvolu da odštampate ovaj izveštaj" msgid "You are not allowed to send emails related to this document" msgstr "Nemate dozvolu da pošaljete imejl vezan za ovaj dokument" -#: frappe/website/doctype/web_form/web_form.py:605 +#: frappe/website/doctype/web_form/web_form.py:632 msgid "You are not allowed to update this Web Form Document" msgstr "Nemate dozvolu da ažurirate ovaj dokument veb-obrasca" @@ -29848,11 +29967,11 @@ msgstr "Možete promeniti politiku čuvanja podataka u {0}." msgid "You can continue with the onboarding after exploring this page" msgstr "Možete nastaviti sa uvodnom obukom nakon što istražite ovu stranicu" -#: frappe/model/delete_doc.py:137 +#: frappe/model/delete_doc.py:177 msgid "You can disable this {0} instead of deleting it." msgstr "Možete onemogućiti ovaj {0} umesto da ga obrišete." -#: frappe/core/doctype/file/file.py:758 +#: frappe/core/doctype/file/file.py:761 msgid "You can increase the limit from System Settings." msgstr "Možete povećati ograničenje u podešavanjima sistema." @@ -29902,11 +30021,11 @@ msgstr "Možete koristiti prilagodi obrazac za postavljanje nivoa na poljima." msgid "You can use wildcard %" msgstr "Možete koristiti zamenski simbol %" -#: frappe/custom/doctype/customize_form/customize_form.py:390 +#: frappe/custom/doctype/customize_form/customize_form.py:394 msgid "You can't set 'Options' for field {0}" msgstr "Ne možete postaviti 'Opcije' za polje {0}" -#: frappe/custom/doctype/customize_form/customize_form.py:394 +#: frappe/custom/doctype/customize_form/customize_form.py:398 msgid "You can't set 'Translatable' for field {0}" msgstr "Ne možete postaviti 'Moguće prevođenje' za polje {0}" @@ -29924,7 +30043,7 @@ msgstr "Otkazali ste ovaj dokument {1}" msgid "You cannot create a dashboard chart from single DocTypes" msgstr "Ne možete kreirati grafikon kontrolne table iz jednog DocType-a" -#: frappe/custom/doctype/customize_form/customize_form.py:386 +#: frappe/custom/doctype/customize_form/customize_form.py:390 msgid "You cannot unset 'Read Only' for field {0}" msgstr "Ne možete ukloniti opciju 'Isključivo za čitanje' za polje {0}" @@ -29967,11 +30086,11 @@ 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:381 +#: frappe/app.py:384 msgid "You do not have enough permissions to complete the action" msgstr "Nemate dovoljno dozvola da dovršite ovu radnju" -#: frappe/database/query.py:529 +#: frappe/database/query.py:531 msgid "You do not have permission to access field: {0}" msgstr "Nemate dozvolu za pristup polju: {0}" @@ -29987,7 +30106,7 @@ msgstr "Nemate dozvolu da otkažete sve povezane dokumente." msgid "You don't have access to Report: {0}" msgstr "Nemate pristup izveštaju: {0}" -#: frappe/website/doctype/web_form/web_form.py:808 +#: frappe/website/doctype/web_form/web_form.py:835 msgid "You don't have permission to access the {0} DocType." msgstr "Nemate dozvole za pristup DocType-u {0}." @@ -30011,7 +30130,7 @@ msgstr "Imate novu poruku od:" msgid "You have been successfully logged out" msgstr "Uspešno ste odjavljeni" -#: frappe/custom/doctype/customize_form/customize_form.py:245 +#: frappe/custom/doctype/customize_form/customize_form.py:247 msgid "You have hit the row size limit on database table: {0}" msgstr "Dostigli ste ograničenje broja redova u tabeli baze podataka: {0}" @@ -30039,7 +30158,7 @@ msgstr "Imate nepročitano {0}" msgid "You haven't added any Dashboard Charts or Number Cards yet." msgstr "Još uvek niste dodali grafikone ili brojčane kartice na kontrolnu tablu." -#: frappe/public/js/frappe/list/list_view.js:501 +#: frappe/public/js/frappe/list/list_view.js:503 msgid "You haven't created a {0} yet" msgstr "Još uvek niste kreirali {0}" @@ -30056,11 +30175,11 @@ msgstr "Vi ste poslednji put ovo uredili" msgid "You must add atleast one link." msgstr "Morate dodati barem jedan link." -#: frappe/website/doctype/web_form/web_form.py:804 +#: frappe/website/doctype/web_form/web_form.py:831 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:645 +#: frappe/website/doctype/web_form/web_form.py:672 msgid "You must login to submit this form" msgstr "Morate biti prijavljeni da biste podneli ovaj obrazac" @@ -30175,6 +30294,10 @@ msgstr "Prestali ste da pratite ovaj dokument" msgid "You viewed this" msgstr "Pregledali ste ovo" +#: frappe/public/js/frappe/router.js:653 +msgid "You will be redirected to:" +msgstr "Bićete preusmereni na:" + #: frappe/core/doctype/user_invitation/user_invitation.py:113 msgid "You've been invited to join {0}" msgstr "Pozvani ste da se pridružite {0}" @@ -30220,7 +30343,7 @@ msgstr "Vaše prečice" msgid "Your account has been deleted" msgstr "Vaš nalog je obrisan" -#: frappe/auth.py:514 +#: frappe/auth.py:517 msgid "Your account has been locked and will resume after {0} seconds" msgstr "Vaš nalog je zaključan i biće ponovo omogućen nakon {0} sekundi" @@ -30284,9 +30407,9 @@ msgstr "Vaš upit je primljen. Odgovorićemo Vam uskoro, ukoliko imate dodatne i #: frappe/desk/query_report.py:342 frappe/desk/reportview.py:396 msgid "Your report is being generated in the background. You will receive an email on {0} with a download link once it is ready." -msgstr "" +msgstr "Vaš izveštaj se generiše u pozadini. Dobićete imejl na {0} sa linkom za preuzimanje kada bude spreman." -#: frappe/app.py:374 +#: frappe/app.py:377 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." @@ -30623,7 +30746,7 @@ msgstr "lista" msgid "logged in" msgstr "prijavljen" -#: frappe/website/doctype/web_form/web_form.js:362 +#: frappe/website/doctype/web_form/web_form.js:363 msgid "login_required" msgstr "login_required" @@ -30961,7 +31084,7 @@ msgstr "putem uvoza podataka" msgid "via Google Meet" msgstr "putem Google Meet" -#: frappe/email/doctype/notification/notification.py:403 +#: frappe/email/doctype/notification/notification.py:405 msgid "via Notification" msgstr "putem obaveštenja" @@ -31071,7 +31194,7 @@ msgstr "{0} grafikon" msgid "{0} Dashboard" msgstr "{0} kontrolna tabla" -#: frappe/public/js/frappe/form/grid_row.js:486 +#: frappe/public/js/frappe/form/grid_row.js:487 #: frappe/public/js/frappe/list/list_settings.js:225 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:178 msgid "{0} Fields" @@ -31122,7 +31245,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:956 +#: frappe/public/js/frappe/views/reports/query_report.js:964 msgid "{0} Reports" msgstr "{0} izveštaji" @@ -31195,7 +31318,7 @@ msgctxt "Form timeline" msgid "{0} attached {1}" msgstr "{0} priložen {1}" -#: frappe/core/doctype/system_settings/system_settings.py:152 +#: frappe/core/doctype/system_settings/system_settings.py:153 msgid "{0} can not be more than {1}" msgstr "{0} ne može biti veće od {1}" @@ -31272,7 +31395,7 @@ 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 +#: frappe/database/query.py:710 msgid "{0} fields cannot contain backticks (`): {1}" msgstr "Polja {0} ne smeju da sadrže backticks (`): {1}" @@ -31317,7 +31440,7 @@ msgstr "{0} u redu {1} ne može imati URL i zavisne stavke" msgid "{0} is a mandatory field" msgstr "{0} je obavezno polje" -#: frappe/core/doctype/file/file.py:566 +#: frappe/core/doctype/file/file.py:569 msgid "{0} is a not a valid zip file" msgstr "{0} nije važeći zip fajl" @@ -31366,7 +31489,7 @@ msgstr "{0} je kao {1}" msgid "{0} is mandatory" msgstr "{0} je obavezno" -#: frappe/database/query.py:485 +#: frappe/database/query.py:487 msgid "{0} is not a child table of {1}" msgstr "{0} nije zavisna tabela od {1}" @@ -31386,7 +31509,7 @@ msgstr "{0} nije važeći kalendar. Preusmeravanje na podrazumevani kalendar." msgid "{0} is not a valid Cron expression." msgstr "{0} nije važeći Cron izraz." -#: frappe/public/js/frappe/form/controls/dynamic_link.js:27 +#: frappe/public/js/frappe/form/controls/dynamic_link.js:23 msgid "{0} is not a valid DocType for Dynamic Link" msgstr "{0} nije važeći DocType ili dinamički link" @@ -31423,7 +31546,7 @@ msgstr "{0} nije važeće matično polje za {1}" msgid "{0} is not a valid report format. Report format should one of the following {1}" msgstr "{0} nije važeći format izveštaja. Format izveštaja treba da bude jedan od sledećih {1}" -#: frappe/core/doctype/file/file.py:546 +#: frappe/core/doctype/file/file.py:549 msgid "{0} is not a zip file" msgstr "{0} nije zip fajl" @@ -31471,7 +31594,7 @@ msgstr "{0} je postavljeno" msgid "{0} is within {1}" msgstr "{0} je unutar {1}" -#: frappe/public/js/frappe/list/list_view.js:1839 +#: frappe/public/js/frappe/list/list_view.js:1841 msgid "{0} items selected" msgstr "odabrano {0} stavki" @@ -31557,11 +31680,11 @@ msgid "{0} not found" msgstr "{0} nije pronađeno" #: frappe/core/doctype/report/report.py:427 -#: frappe/public/js/frappe/list/list_view.js:1211 +#: frappe/public/js/frappe/list/list_view.js:1213 msgid "{0} of {1}" msgstr "{0} od {1}" -#: frappe/public/js/frappe/list/list_view.js:1213 +#: frappe/public/js/frappe/list/list_view.js:1215 msgid "{0} of {1} ({2} rows with children)" msgstr "{0} od {1} ({2} redova sa zavisnim podacima)" @@ -31611,7 +31734,7 @@ msgstr "{0} je uklonio svoj zadatak." msgid "{0} removed {1} rows from {2}" msgstr "{0} je uklonio {1} redova iz {2}" -#: frappe/public/js/frappe/roles_editor.js:62 +#: frappe/public/js/frappe/roles_editor.js:64 msgid "{0} role does not have permission on any doctype" msgstr "Uloga {0} nema dozvole ni za jednu vrstu dokumenta" @@ -31685,7 +31808,7 @@ msgstr "{0} do {1}" msgid "{0} un-shared this document with {1}" msgstr "{0} je opozvao deljenje ovog dokumenta {1}" -#: frappe/custom/doctype/customize_form/customize_form.py:254 +#: frappe/custom/doctype/customize_form/customize_form.py:256 msgid "{0} updated" msgstr "{0} je ažurirano" @@ -31745,7 +31868,7 @@ msgstr "{0} {1} je povezan sa sledećim podnetim dokumentima: {2}" msgid "{0} {1} not found" msgstr "{0} {1} nije pronađen" -#: frappe/model/delete_doc.py:248 +#: frappe/model/delete_doc.py:288 msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first." msgstr "{0} {1}: Podneti zapis ne može biti obrisan. Prvo morate {2} otkazati {3}." @@ -31858,7 +31981,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:1283 +#: frappe/public/js/frappe/views/reports/query_report.js:1291 msgid "{0}: {1} vs {2}" msgstr "{0}: {1} u odnosu na {2}" @@ -31894,11 +32017,11 @@ msgstr "{{{0}}} nije ispravan format naziva polja. Trebalo bi da bude {{field_na msgid "{} Complete" msgstr "{} završeno" -#: frappe/utils/data.py:2541 +#: frappe/utils/data.py:2567 msgid "{} Invalid python code on line {}" msgstr "{} Nevažeći python kod na liniji {}" -#: frappe/utils/data.py:2550 +#: frappe/utils/data.py:2576 msgid "{} Possibly invalid python code.
{}" msgstr "{} Potencijalno nevažeći python kod.
{}" @@ -31924,7 +32047,7 @@ msgstr "{} je onemogućeno. Može se omogućiti samo ukoliko je {} označeno." msgid "{} is not a valid date string." msgstr "{} nije ispravan datum u tekstualnom formatu." -#: frappe/commands/utils.py:562 +#: frappe/commands/utils.py:561 msgid "{} not found in PATH! This is required to access the console." msgstr "{} nije pronađen PATH! Ovo je neophodno za pristup konzoli." diff --git a/frappe/locale/sv.po b/frappe/locale/sv.po index 4262e7ef7e..f23c41c952 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-09-21 09:33+0000\n" -"PO-Revision-Date: 2025-09-21 19:57\n" +"POT-Creation-Date: 2025-10-05 09:33+0000\n" +"PO-Revision-Date: 2025-10-06 22:59\n" "Last-Translator: developers@frappe.io\n" "Language-Team: Swedish\n" "MIME-Version: 1.0\n" @@ -78,7 +78,7 @@ msgstr "\"I Global Sökning\" är otillåtet för {0} på rad {1}" msgid "'In List View' is not allowed for field {0} of type {1}" msgstr "\"I List Vy\" är inte tillåtet för fält {0} av typ {1}" -#: frappe/custom/doctype/customize_form/customize_form.py:363 +#: frappe/custom/doctype/customize_form/customize_form.py:367 msgid "'In List View' not allowed for type {0} in row {1}" msgstr "\"I Lista Vy\" är otillåtet for typ {0} på rad {1}" @@ -122,7 +122,7 @@ msgstr "0 - Utkast; 1 - Godkänd; 2 - Annullerad" msgid "0 is highest" msgstr "0 är högsta värde" -#: frappe/public/js/frappe/form/grid_row.js:892 +#: frappe/public/js/frappe/form/grid_row.js:893 msgid "1 = True & 0 = False" msgstr "1 = Sant & 0 = Falskt" @@ -140,11 +140,11 @@ 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:955 +#: frappe/public/js/frappe/views/reports/query_report.js:963 msgid "1 Report" msgstr "1 Rapport" -#: frappe/tests/test_utils.py:739 +#: frappe/tests/test_utils.py:845 msgid "1 day ago" msgstr "1 dag sedan" @@ -153,17 +153,17 @@ msgid "1 hour" msgstr "1 timme" #: frappe/public/js/frappe/utils/pretty_date.js:52 -#: frappe/tests/test_utils.py:737 +#: frappe/tests/test_utils.py:843 msgid "1 hour ago" msgstr "1 timme sedan" #: frappe/public/js/frappe/utils/pretty_date.js:48 -#: frappe/tests/test_utils.py:735 +#: frappe/tests/test_utils.py:841 msgid "1 minute ago" msgstr "1 minut sedan" #: frappe/public/js/frappe/utils/pretty_date.js:66 -#: frappe/tests/test_utils.py:743 +#: frappe/tests/test_utils.py:849 msgid "1 month ago" msgstr "1 månad sedan" @@ -185,37 +185,37 @@ msgctxt "User added row to child table" msgid "1 row to {0}" msgstr "1 rad till {0}" -#: frappe/tests/test_utils.py:734 +#: frappe/tests/test_utils.py:840 msgid "1 second ago" msgstr "1 sekund sedan" #: frappe/public/js/frappe/utils/pretty_date.js:62 -#: frappe/tests/test_utils.py:741 +#: frappe/tests/test_utils.py:847 msgid "1 week ago" msgstr "1 vecka sedan" #: frappe/public/js/frappe/utils/pretty_date.js:70 -#: frappe/tests/test_utils.py:745 +#: frappe/tests/test_utils.py:851 msgid "1 year ago" msgstr "1 år sedan" -#: frappe/tests/test_utils.py:738 +#: frappe/tests/test_utils.py:844 msgid "2 hours ago" msgstr "2 timmar sedan" -#: frappe/tests/test_utils.py:744 +#: frappe/tests/test_utils.py:850 msgid "2 months ago" msgstr "2 månader sedan" -#: frappe/tests/test_utils.py:742 +#: frappe/tests/test_utils.py:848 msgid "2 weeks ago" msgstr "2 veckor sedan" -#: frappe/tests/test_utils.py:746 +#: frappe/tests/test_utils.py:852 msgid "2 years ago" msgstr "2 år sedan" -#: frappe/tests/test_utils.py:736 +#: frappe/tests/test_utils.py:842 msgid "3 minutes ago" msgstr "3 minuter sedan" @@ -231,7 +231,7 @@ msgstr "4 timmar" msgid "5 Records" msgstr "5 Poster" -#: frappe/tests/test_utils.py:740 +#: frappe/tests/test_utils.py:846 msgid "5 days ago" msgstr "5 dagar sedan" @@ -269,6 +269,16 @@ msgstr "{0} är inte giltig URL" 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 "
Vänligen uppdatera inte det eftersom det kan förstöra ditt formulär. Använd Anpassa Formulär och anpassa Fält och ange egenskaper!
" +#. Introduction text of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "

Request a file containing your personally identifiable information (PII) that is saved on our system. The file will be in JSON format and is sent to you by email. If you would like to have your PII deleted from our system, please make a request to delete data.

" +msgstr "

Begär fil som innehåller din personligt identifierbara information (PII) som sparas i vårt system. Filen kommer att vara i JSON format och skickas till dig via e-post. Om du vill att din PII ska raderas från vårt system kan skapa begäran om att radera data.

" + +#. Introduction text of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "

Send a request to delete your account and personally identifiable information (PII) that is stored on our system. You will receive an email to verify your request. Once the request is verified we will take care of deleting your PII. If you just want to check what PII we have stored, you can request your data.

" +msgstr "

Skicka en begäran om att radera ditt konto och personligt identifierbar information (PII) som lagras i vårt system. Du kommer att få ett e-postmeddelande för att verifiera din begäran. När begäran har verifierats kommer vi att ta hand om att radera din PII. Om du bara vill kontrollera vilken PII vi har lagrat kan du begära dina uppgifter.

" + #. Content of the 'Help HTML' (HTML) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -752,6 +762,11 @@ msgstr "DocType namn ska börja med bokstav och kan bara bestå av bokstäver, s msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three." msgstr "System instans kan fungera som en OAuth Klient, Resurs eller Auktorisering Server. Denna DocType innehåller inställningar som rör alla tre." +#. Success message of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "A download link with your data will be sent to the email address associated with your account." +msgstr "En nedladdningslänk med dina uppgifter kommer att skickas till den e-postadress som är kopplad till ditt konto." + #: frappe/custom/doctype/custom_field/custom_field.py:175 msgid "A field with the name {0} already exists in {1}" msgstr "Ett fält med detta namn {0} finns redan i {1}" @@ -880,7 +895,7 @@ msgstr "API slutpunkt argument ska vara giltig JSON" #. 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.js:452 frappe/core/doctype/user/user.json +#: frappe/core/doctype/user/user.js:459 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 @@ -899,7 +914,7 @@ msgstr "API Nyckel och Hemlighet för att interagera med relä server. Dessa kom msgid "API Key cannot be regenerated" msgstr "API Nyckel kan inte återskapas" -#: frappe/core/doctype/user/user.js:449 +#: frappe/core/doctype/user/user.js:456 msgid "API Keys" msgstr "API Nycklar" @@ -923,7 +938,7 @@ msgstr "API Begäran Logg" #. 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.js:459 frappe/core/doctype/user/user.json +#: frappe/core/doctype/user/user.js:466 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" @@ -1009,7 +1024,7 @@ msgstr "Åtkomst Token" msgid "Access Token URL" msgstr "Åtkomst Token URL" -#: frappe/auth.py:491 +#: frappe/auth.py:494 msgid "Access not allowed from this IP Address" msgstr "Åtkomst är ej tillåtet från denna IP Adress" @@ -1125,7 +1140,7 @@ msgstr "Åtgärd {0} misslyckades {1} {2}. Visa {3}" #: 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:842 +#: frappe/public/js/frappe/views/reports/query_report.js:850 msgid "Actions" msgstr "Åtgärder" @@ -1182,7 +1197,7 @@ msgstr "Aktivitet Logg" #: 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:501 +#: frappe/public/js/frappe/form/grid_row.js:502 #: 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 @@ -1193,7 +1208,7 @@ msgstr "Aktivitet Logg" msgid "Add" msgstr "Lägg till" -#: frappe/public/js/frappe/form/grid_row.js:454 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Add / Remove Columns" msgstr "Lägg till/Ta Bort Kolumn" @@ -1238,8 +1253,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:1832 -#: frappe/public/js/frappe/views/reports/query_report.js:1835 +#: frappe/public/js/frappe/views/reports/query_report.js:1840 +#: frappe/public/js/frappe/views/reports/query_report.js:1843 #: frappe/public/js/frappe/views/reports/report_view.js:360 #: frappe/public/js/frappe/views/reports/report_view.js:385 #: frappe/public/js/print_format_builder/Field.vue:112 @@ -1333,7 +1348,7 @@ msgstr "Lägg till Prenumeranter" msgid "Add Tags" msgstr "Lägg till Taggar" -#: frappe/public/js/frappe/list/list_view.js:2149 +#: frappe/public/js/frappe/list/list_view.js:2151 msgctxt "Button in list view actions menu" msgid "Add Tags" msgstr "Lägg till Taggar" @@ -1520,7 +1535,7 @@ msgstr "Adress" #: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:37 #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Address Line 1" -msgstr "Adress Linje 1" +msgstr "Adressrad 1" #. Label of the address_line2 (Data) field in DocType 'Address' #. Label of the address_line2 (Data) field in DocType 'Contact Us Settings' @@ -1528,7 +1543,7 @@ msgstr "Adress Linje 1" #: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:38 #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Address Line 2" -msgstr "Adress Linje 2" +msgstr "Adressrad 2" #. Name of a DocType #: frappe/contacts/doctype/address_template/address_template.json @@ -1714,11 +1729,11 @@ msgstr "Varna" msgid "Alerts and Notifications" msgstr "Varningar och Aviseringar" -#: frappe/database/query.py:1608 +#: frappe/database/query.py:1610 msgid "Alias cannot be a SQL keyword: {0}" msgstr "Alias kan inte vara SQL nyckelord: {0}" -#: frappe/database/query.py:1533 +#: frappe/database/query.py:1535 msgid "Alias must be a string" msgstr "Alias måste vara sträng" @@ -2166,6 +2181,12 @@ msgstr "Lägger till status beroende fält {0}" msgid "Alternative Email ID" msgstr "Alternativ E-post" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Always" +msgstr "Alltid" + #. Label of the always_bcc (Data) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Always BCC Address" @@ -2242,6 +2263,11 @@ msgstr "Ändring Ej Tillåten" msgid "Amendment naming rules updated." msgstr "Ändring Namngivning Regler uppdaterad." +#. Success message of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "An email to verify your request has been sent to your email address. Please verify your request to complete the process." +msgstr "Ett e-postmeddelande för att verifiera din begäran har skickats till din e-postadress. Vänligen verifiera din begäran för att slutföra processen." + #: 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" @@ -2424,7 +2450,7 @@ msgstr "Tillämpad På" msgid "Apply" msgstr "Tillämpa" -#: frappe/public/js/frappe/list/list_view.js:2134 +#: frappe/public/js/frappe/list/list_view.js:2136 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" msgstr "Tillämpa Tilldelning Regel" @@ -2509,7 +2535,7 @@ msgstr "Arkiverade Kolumner" msgid "Are you sure you want to cancel the invitation?" msgstr "Är du säker på att du vill avbryta inbjudan?" -#: frappe/public/js/frappe/list/list_view.js:2113 +#: frappe/public/js/frappe/list/list_view.js:2115 msgid "Are you sure you want to clear the assignments?" msgstr "Är du säker på att du vill ta bort tilldelningar?" @@ -2545,7 +2571,7 @@ msgstr "Är du säker på att du vill ta bort denna post?" 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:969 +#: frappe/public/js/frappe/views/reports/query_report.js:977 msgid "Are you sure you want to generate a new report?" msgstr "Är du säker på att du vill skapa ny rapport?" @@ -2553,7 +2579,7 @@ msgstr "Är du säker på att du vill skapa ny rapport?" msgid "Are you sure you want to merge {0} with {1}?" msgstr "Är du säker på att du vill slå samman {0} med {1}?" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:108 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:118 msgid "Are you sure you want to proceed?" msgstr "Är du säker på att du vill fortsätta?" @@ -2608,6 +2634,12 @@ msgstr "Eftersom dokumentdelning är inaktiverat, skapa nödvändiga behörighet msgid "As per your request, your account and data on {0} associated with email {1} has been permanently deleted" msgstr "Enligt begäran har ditt konto och data på {0} kopplat till E-post {1} tagits bort permanent" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Ask" +msgstr "Fråga" + #. Label of the assign_condition (Code) field in DocType 'Assignment Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Assign Condition" @@ -2617,7 +2649,7 @@ msgstr "Tilldela Villkor" msgid "Assign To" msgstr "Tilldela till" -#: frappe/public/js/frappe/list/list_view.js:2095 +#: frappe/public/js/frappe/list/list_view.js:2097 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "Tilldela till" @@ -2760,7 +2792,7 @@ msgstr "Uppgifter" msgid "Asynchronous" msgstr "Asynkron" -#: frappe/public/js/frappe/form/grid_row.js:696 +#: frappe/public/js/frappe/form/grid_row.js:697 msgid "At least one column is required to show in the grid." msgstr "Minst en kolumn erfordras för att visas i rutnät." @@ -3741,7 +3773,7 @@ msgstr "Massborttagning" msgid "Bulk Edit" msgstr "Mass Redigera" -#: frappe/public/js/frappe/form/grid.js:1189 +#: frappe/public/js/frappe/form/grid.js:1190 msgid "Bulk Edit {0}" msgstr "Mass Redigera {0}" @@ -3792,17 +3824,17 @@ msgstr "Knapp" #. Label of the button_gradients (Check) field in DocType 'Website Theme' #: frappe/website/doctype/website_theme/website_theme.json msgid "Button Gradients" -msgstr "Gradient Knapp" +msgstr "Knapp Gradienter" #. 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 "Rundade Hörn Knapp" +msgstr "Knapp Rundade Hörn" #. Label of the button_shadows (Check) field in DocType 'Website Theme' #: frappe/website/doctype/website_theme/website_theme.json msgid "Button Shadows" -msgstr "Skugg Knapp" +msgstr "Knapp Skuggor" #. Option for the 'Naming Rule' (Select) field in DocType 'DocType' #. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form' @@ -4033,7 +4065,7 @@ msgstr "Kan inte byta namn på {0} till {1} eftersom {0} inte finns." #. 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/doctype/doctype_list.js:131 #: frappe/core/doctype/user_document_type/user_document_type.json #: frappe/core/doctype/user_invitation/user_invitation.js:17 #: frappe/email/doctype/notification/notification.json @@ -4041,7 +4073,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:2204 +#: frappe/public/js/frappe/list/list_view.js:2206 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "Annullera" @@ -4059,7 +4091,7 @@ msgstr "Annullera" msgid "Cancel All Documents" msgstr "Annullera Alla Dokument" -#: frappe/public/js/frappe/list/list_view.js:2209 +#: frappe/public/js/frappe/list/list_view.js:2211 msgctxt "Title of confirmation dialog" msgid "Cancel {0} documents?" msgstr "Annullera {0} dokument?" @@ -4112,7 +4144,7 @@ msgstr "Kan inte Ta Bort" msgid "Cannot Update After Submit" msgstr "Kan inte Uppdatera efter Godkännande" -#: frappe/core/doctype/file/file.py:643 +#: frappe/core/doctype/file/file.py:646 msgid "Cannot access file path {0}" msgstr "Kan inte komma åt filsökväg {0}" @@ -4160,7 +4192,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:379 +#: frappe/model/delete_doc.py:419 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}" @@ -4240,7 +4272,7 @@ msgstr "Kan inte aktivera {0} för ej godkännbar doctype" msgid "Cannot find file {} on disk" msgstr "Kan inte hitta fil {} på disk" -#: frappe/core/doctype/file/file.py:583 +#: frappe/core/doctype/file/file.py:586 msgid "Cannot get file contents of a Folder" msgstr "Kan inte hämta fil innehåll från mapp" @@ -4248,7 +4280,7 @@ msgstr "Kan inte hämta fil innehåll från mapp" msgid "Cannot have multiple printers mapped to a single print format." msgstr "Kan inte mappa flera skrivare till enskild utskrift format." -#: frappe/public/js/frappe/form/grid.js:1133 +#: frappe/public/js/frappe/form/grid.js:1134 msgid "Cannot import table with more than 5000 rows." msgstr "Kan inte importera tabell med fler än 5000 rader." @@ -4264,7 +4296,7 @@ msgstr "Kan inte mappa eftersom följande villkor misslyckas:" msgid "Cannot match column {0} with any field" msgstr "Kan inte avstäma kolumn {0} med något fält" -#: frappe/public/js/frappe/form/grid_row.js:175 +#: frappe/public/js/frappe/form/grid_row.js:176 msgid "Cannot move row" msgstr "Kan inte flytta rad" @@ -4293,11 +4325,11 @@ msgstr "Kan inte godkänna {0}." msgid "Cannot update {0}" msgstr "Kan inte uppdatera {0}" -#: frappe/model/db_query.py:1130 +#: frappe/model/db_query.py:1136 msgid "Cannot use sub-query here." msgstr "Kan inte använda underfråga här." -#: frappe/model/db_query.py:1162 +#: frappe/model/db_query.py:1168 msgid "Cannot use {0} in order/group by" msgstr "Kan inte använda {0} i ordna/gruppera efter" @@ -4570,11 +4602,11 @@ msgstr "Underordnad tabell {0} för fält {1}" #. Description of the 'Is Child Table' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:52 +#: frappe/core/doctype/doctype/doctype_list.js:53 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 +#: frappe/database/query.py:662 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." @@ -4630,7 +4662,7 @@ msgstr "Rensa & Lägg till Mall" msgid "Clear All" msgstr "Rensa Alla" -#: frappe/public/js/frappe/list/list_view.js:2110 +#: frappe/public/js/frappe/list/list_view.js:2112 msgctxt "Button in list view actions menu" msgid "Clear Assignment" msgstr "Rensa Tilldelning" @@ -4724,7 +4756,7 @@ msgstr "Klicka på att Ange Dynamisk Filter" msgid "Click to Set Filters" msgstr "Klicka på att Ange Filter" -#: frappe/public/js/frappe/list/list_view.js:739 +#: frappe/public/js/frappe/list/list_view.js:741 msgid "Click to sort by {0}" msgstr "Klicka på att sortera efter {0}" @@ -4902,7 +4934,7 @@ msgctxt "Shrink code field." msgid "Collapse" msgstr "Fäll In" -#: frappe/public/js/frappe/views/reports/query_report.js:2113 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 #: frappe/public/js/frappe/views/treeview.js:123 msgid "Collapse All" msgstr "Fäll In Alla" @@ -4957,7 +4989,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:1233 +#: frappe/public/js/frappe/views/reports/query_report.js:1241 #: frappe/public/js/frappe/widgets/widget_dialog.js:546 #: frappe/public/js/frappe/widgets/widget_dialog.js:694 #: frappe/website/doctype/color/color.json @@ -5013,11 +5045,11 @@ msgstr "Kolumn Namn" msgid "Column Name cannot be empty" msgstr "Kolumn Namn kan inte vara tom" -#: frappe/public/js/frappe/form/grid_row.js:454 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Column Width" msgstr "Kolumn Bred" -#: frappe/public/js/frappe/form/grid_row.js:661 +#: frappe/public/js/frappe/form/grid_row.js:662 msgid "Column width cannot be zero." msgstr "Kolumn bredd kan inte vara noll." @@ -5044,7 +5076,7 @@ msgstr "Kolumner" msgid "Columns / Fields" msgstr "Kolumner / Fält" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:397 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:411 msgid "Columns based on" msgstr "Kolumner baserade på" @@ -5308,7 +5340,7 @@ msgstr "Konfiguration" msgid "Configure Chart" msgstr "Försäljning Order Diagram" -#: frappe/public/js/frappe/form/grid_row.js:406 +#: frappe/public/js/frappe/form/grid_row.js:407 msgid "Configure Columns" msgstr "Konfigurera Kolumner" @@ -5335,7 +5367,7 @@ msgstr "Konfigurera hur ändrade dokument ska namnges.\n\n" msgid "Configure various aspects of how document naming works like naming series, current counter." msgstr "Konfigurera olika aspekter av hur dokument namn fungerar som att namnge serier, aktuell räknare." -#: frappe/core/doctype/user/user.js:412 frappe/public/js/frappe/dom.js:345 +#: frappe/core/doctype/user/user.js:400 frappe/public/js/frappe/dom.js:345 #: frappe/www/update-password.html:66 msgid "Confirm" msgstr "Bekräfta" @@ -5354,7 +5386,7 @@ msgstr "Bekräfta Åtkomst" msgid "Confirm Deletion of Account" msgstr "Bekräfta Borttagning av Konto" -#: frappe/core/doctype/user/user.js:196 +#: frappe/core/doctype/user/user.js:184 msgid "Confirm New Password" msgstr "Bekräfta Ny Lösenord" @@ -5607,7 +5639,7 @@ msgstr "Kopiera fel till urklipp" msgid "Copy to Clipboard" msgstr "Kopiera till Urklipp" -#: frappe/core/doctype/user/user.js:480 +#: frappe/core/doctype/user/user.js:487 msgid "Copy token to clipboard" msgstr "Kopiera token till urklipp" @@ -5616,7 +5648,7 @@ msgstr "Kopiera token till urklipp" msgid "Copyright" msgstr "Copyright" -#: frappe/custom/doctype/customize_form/customize_form.py:123 +#: frappe/custom/doctype/customize_form/customize_form.py:125 msgid "Core DocTypes cannot be customized." msgstr "System DocType kan inte anpassas." @@ -5640,7 +5672,7 @@ 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 +#: frappe/database/query.py:566 msgid "Could not parse field: {0}" msgstr "Kunde inte parsa fält: {0}" @@ -5732,13 +5764,13 @@ 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:1265 +#: frappe/public/js/frappe/views/reports/query_report.js:1273 #: frappe/public/js/frappe/views/workspace/workspace.js:469 #: frappe/workflow/page/workflow_builder/workflow_builder.js:46 msgid "Create" msgstr "Skapa" -#: frappe/core/doctype/doctype/doctype_list.js:102 +#: frappe/core/doctype/doctype/doctype_list.js:103 msgid "Create & Continue" msgstr "Skapa & Fortsätt" @@ -5752,7 +5784,7 @@ msgid "Create Card" msgstr "Skapa Kort" #: frappe/public/js/frappe/views/reports/query_report.js:285 -#: frappe/public/js/frappe/views/reports/query_report.js:1192 +#: frappe/public/js/frappe/views/reports/query_report.js:1200 msgid "Create Chart" msgstr "Skapa Diagram" @@ -5786,12 +5818,12 @@ msgstr "Skapa Logg" msgid "Create New" msgstr "Skapa Ny" -#: frappe/public/js/frappe/list/list_view.js:512 +#: frappe/public/js/frappe/list/list_view.js:514 msgctxt "Create a new document from list view" msgid "Create New" msgstr "Skapa Ny " -#: frappe/core/doctype/doctype/doctype_list.js:100 +#: frappe/core/doctype/doctype/doctype_list.js:101 msgid "Create New DocType" msgstr "Skapa Ny DocType" @@ -5799,7 +5831,7 @@ msgstr "Skapa Ny DocType" msgid "Create New Kanban Board" msgstr "Skapa Ny Anslagstavla" -#: frappe/core/doctype/user/user.js:276 +#: frappe/core/doctype/user/user.js:264 msgid "Create User Email" msgstr "Skapa E-post Konto" @@ -5822,8 +5854,8 @@ msgstr "Skapa ny Post" #: frappe/public/js/frappe/form/controls/link.js:315 #: frappe/public/js/frappe/form/controls/link.js:317 #: frappe/public/js/frappe/form/link_selector.js:139 -#: frappe/public/js/frappe/list/list_view.js:504 -#: frappe/public/js/frappe/web_form/web_form_list.js:225 +#: frappe/public/js/frappe/list/list_view.js:506 +#: frappe/public/js/frappe/web_form/web_form_list.js:226 msgid "Create a new {0}" msgstr "Skapa {0}" @@ -5839,7 +5871,7 @@ msgstr "Skapa eller Redigera Utskrift Format" msgid "Create or Edit Workflow" msgstr "Skapa eller Redigera Arbetsflöde" -#: frappe/public/js/frappe/list/list_view.js:507 +#: frappe/public/js/frappe/list/list_view.js:509 msgid "Create your first {0}" msgstr "Skapa {0}" @@ -6186,7 +6218,7 @@ msgstr "Anpassad get_list-metod för {0} måste returnera QueryBuilder objekt el #. 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/core/doctype/doctype/doctype_list.js:83 #: frappe/website/doctype/website_theme/website_theme.json msgid "Custom?" msgstr "Anpassad?" @@ -6221,7 +6253,7 @@ msgstr "Anpassningar för {0} som exporterades till:
{1}" msgid "Customize" msgstr "Anpassa" -#: frappe/public/js/frappe/list/list_view.js:1947 +#: frappe/public/js/frappe/list/list_view.js:1949 msgctxt "Button in list view menu" msgid "Customize" msgstr "Anpassa" @@ -6240,7 +6272,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:343 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 msgid "Customize Form" msgstr "Anpassa Formulär" @@ -6471,7 +6503,7 @@ msgstr "Data Import Logg" msgid "Data Import Template" msgstr "Data Import Mall" -#: frappe/custom/doctype/customize_form/customize_form.py:615 +#: frappe/custom/doctype/customize_form/customize_form.py:619 msgid "Data Too Long" msgstr "Data För Lång" @@ -6502,7 +6534,7 @@ msgstr "Databas Rad Storlek Användning" msgid "Database Storage Usage By Tables" msgstr "Databas Lagring Användning Efter Tabeller" -#: frappe/custom/doctype/customize_form/customize_form.py:249 +#: frappe/custom/doctype/customize_form/customize_form.py:251 msgid "Database Table Row Size Limit" msgstr "Databas Tabell Rad Storlek Gräns" @@ -6872,13 +6904,13 @@ msgstr "Försenad" #: frappe/public/js/frappe/form/toolbar.js:464 #: frappe/public/js/frappe/views/reports/report_view.js:1749 #: frappe/public/js/frappe/views/treeview.js:329 -#: frappe/public/js/frappe/web_form/web_form_list.js:282 +#: frappe/public/js/frappe/web_form/web_form_list.js:283 #: frappe/templates/discussions/reply_card.html:35 #: frappe/templates/discussions/reply_section.html:29 msgid "Delete" msgstr "Ta bort" -#: frappe/public/js/frappe/list/list_view.js:2172 +#: frappe/public/js/frappe/list/list_view.js:2174 msgctxt "Button in list view actions menu" msgid "Delete" msgstr "Ta bort" @@ -6911,7 +6943,7 @@ msgstr "Ta bort Kolumn" msgid "Delete Data" msgstr "Ta bort Data" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:106 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:116 msgid "Delete Kanban Board" msgstr "Ta bort Anslagstavla" @@ -6925,7 +6957,7 @@ msgctxt "Title of confirmation dialog" msgid "Delete Tab" msgstr "Ta bort Flik" -#: frappe/public/js/frappe/views/reports/query_report.js:936 +#: frappe/public/js/frappe/views/reports/query_report.js:944 msgid "Delete and Generate New" msgstr "Ta bort och Skapa Ny" @@ -6967,12 +6999,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:2177 +#: frappe/public/js/frappe/list/list_view.js:2179 msgctxt "Title of confirmation dialog" msgid "Delete {0} item permanently?" msgstr "Ta bort {0} Post permanent?" -#: frappe/public/js/frappe/list/list_view.js:2183 +#: frappe/public/js/frappe/list/list_view.js:2185 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "Ta bort {0} Poster permanent?" @@ -7328,7 +7360,7 @@ msgstr "Inaktivera Registrering för Webbplats" #. Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Disable Standard Email Footer" -msgstr "Inaktivera Standard Bolag E-post Sidfot" +msgstr "Inaktivera Standard Bolag E-post Signatur" #. Label of the disable_system_update_notification (Check) field in DocType #. 'System Settings' @@ -7469,10 +7501,14 @@ msgstr "Skapa inte ny Användare" msgid "Do not create new user if user with email does not exist in the system" msgstr "Skapa inte ny Användare om Användare med E-post inte finns i system" -#: frappe/public/js/frappe/form/grid.js:1194 +#: frappe/public/js/frappe/form/grid.js:1195 msgid "Do not edit headers which are preset in the template" msgstr "Ändra inte rubriker som är förinställda i mall" +#: frappe/public/js/frappe/router.js:624 +msgid "Do not warn me again about {0}" +msgstr "Varna mig inte igen om {0}" + #: frappe/core/doctype/system_settings/system_settings.js:71 msgid "Do you still want to proceed?" msgstr "Vill du fortfarande fortsätta?" @@ -7899,7 +7935,7 @@ msgstr "Dokument Benämning" #: 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/public/js/frappe/roles_editor.js:68 #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json #: frappe/workflow/doctype/workflow/workflow.json msgid "Document Type" @@ -7950,15 +7986,15 @@ msgstr "Dokument Upplåst" msgid "Document follow is not enabled for this user." msgstr "Följ Dokument är inte aktiverad för denna användare." -#: frappe/public/js/frappe/list/list_view.js:1300 +#: frappe/public/js/frappe/list/list_view.js:1302 msgid "Document has been cancelled" msgstr "Dokumentet är annullerad" -#: frappe/public/js/frappe/list/list_view.js:1299 +#: frappe/public/js/frappe/list/list_view.js:1301 msgid "Document has been submitted" msgstr "Dokument är godkänd" -#: frappe/public/js/frappe/list/list_view.js:1298 +#: frappe/public/js/frappe/list/list_view.js:1300 msgid "Document is in draft state" msgstr "Dokumentet är i utkast tillstånd" @@ -8100,7 +8136,7 @@ msgstr "Ring" msgid "Double click to edit label" msgstr "Dubbelklicka för att redigera etikett" -#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:467 +#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:474 #: frappe/email/doctype/auto_email_report/auto_email_report.js:8 #: frappe/public/js/frappe/form/grid.js:66 msgid "Download" @@ -8133,7 +8169,7 @@ msgstr "Nedladdning Länk" msgid "Download PDF" msgstr "Ladda ner PDF" -#: frappe/public/js/frappe/views/reports/query_report.js:832 +#: frappe/public/js/frappe/views/reports/query_report.js:840 msgid "Download Report" msgstr "Ladda ner Rapport" @@ -8333,8 +8369,8 @@ msgstr "ESC" #: 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:880 -#: frappe/public/js/frappe/views/reports/query_report.js:1783 +#: frappe/public/js/frappe/views/reports/query_report.js:888 +#: frappe/public/js/frappe/views/reports/query_report.js:1791 #: 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 @@ -8346,7 +8382,7 @@ msgstr "ESC" msgid "Edit" msgstr "Redigera" -#: frappe/public/js/frappe/list/list_view.js:2258 +#: frappe/public/js/frappe/list/list_view.js:2260 msgctxt "Button in list view actions menu" msgid "Edit" msgstr "Redigera" @@ -8356,7 +8392,7 @@ msgctxt "Button in web form" msgid "Edit" msgstr "Redigera" -#: frappe/public/js/frappe/form/grid_row.js:349 +#: frappe/public/js/frappe/form/grid_row.js:350 msgctxt "Edit grid row" msgid "Edit" msgstr "Redigera" @@ -8385,7 +8421,7 @@ msgstr "Redigera Anpassad HTML" msgid "Edit DocType" msgstr "Redigera DocType" -#: frappe/public/js/frappe/list/list_view.js:1974 +#: frappe/public/js/frappe/list/list_view.js:1976 msgctxt "Button in list view menu" msgid "Edit DocType" msgstr "Redigera DocType" @@ -8505,7 +8541,7 @@ msgstr "Redigera {0}" #. 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/core/doctype/doctype/doctype_list.js:58 #: frappe/custom/doctype/customize_form/customize_form.json msgid "Editable Grid" msgstr "Redigerbar Rutnät" @@ -8550,6 +8586,8 @@ msgstr "Element Väljare" #. 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' +#. Label of a field in the request-data Web Form +#. Label of a field in the request-to-delete-data Web Form #: frappe/automation/workspace/tools/tools.json #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/custom_docperm/custom_docperm.json @@ -8568,6 +8606,8 @@ msgstr "Element Väljare" #: 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/website/web_form/request_data/request_data.json +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json #: frappe/www/login.html:8 frappe/www/login.py:104 msgid "Email" msgstr "E-post" @@ -8650,7 +8690,7 @@ msgstr "E-post Flagg Kö" #. Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Email Footer Address" -msgstr "Bolag E-post Sidfot" +msgstr "Standard Bolag E-post Signatur" #. Label of a Link in the Tools Workspace #. Name of a DocType @@ -8799,7 +8839,7 @@ msgstr "E-post är markerad som skräp post" msgid "Email has been moved to trash" msgstr "E-post är flyttad till papperskorg" -#: frappe/core/doctype/user/user.js:278 +#: frappe/core/doctype/user/user.js:266 msgid "Email is mandatory to create User Email" msgstr "E-post erfordras för att skapa Användare E-post" @@ -8842,7 +8882,7 @@ 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 +#: frappe/database/query.py:1539 msgid "Empty alias is not allowed" msgstr "Tomt alias är inte tillåtet" @@ -8850,7 +8890,7 @@ msgstr "Tomt alias är inte tillåtet" msgid "Empty column" msgstr "Tom kolumn" -#: frappe/database/query.py:1455 +#: frappe/database/query.py:1457 msgid "Empty string arguments are not allowed" msgstr "Tomma strängargument är inte tillåtna" @@ -9307,9 +9347,9 @@ msgstr "Fel i Klient Skript." msgid "Error in Header/Footer Script" msgstr "Fel i Brevhuvud/Sidfot Skript" -#: frappe/email/doctype/notification/notification.py:640 -#: frappe/email/doctype/notification/notification.py:780 -#: frappe/email/doctype/notification/notification.py:786 +#: frappe/email/doctype/notification/notification.py:642 +#: frappe/email/doctype/notification/notification.py:782 +#: frappe/email/doctype/notification/notification.py:788 msgid "Error in Notification" msgstr "Fel i Avisering" @@ -9329,7 +9369,7 @@ msgstr "Fel vid parsning av nästlade filter: {0}" msgid "Error while connecting to email account {0}" msgstr "Fel vid anslutning till E-post Konto {0}" -#: frappe/email/doctype/notification/notification.py:777 +#: frappe/email/doctype/notification/notification.py:779 msgid "Error while evaluating Notification {0}. Please fix your template." msgstr "Fel vid test av Avisering {0}. Fixa Mall." @@ -9490,7 +9530,7 @@ msgstr "Exekverar Kod" msgid "Executing..." msgstr "Kör..." -#: frappe/public/js/frappe/views/reports/query_report.js:2132 +#: frappe/public/js/frappe/views/reports/query_report.js:2140 msgid "Execution Time: {0} sec" msgstr "Exekvering Tid: {0} sek" @@ -9516,12 +9556,12 @@ msgctxt "Enlarge code field." msgid "Expand" msgstr "Expandera" -#: frappe/public/js/frappe/views/reports/query_report.js:2113 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 #: frappe/public/js/frappe/views/treeview.js:133 msgid "Expand All" msgstr "Expandera Alla" -#: frappe/database/query.py:352 +#: frappe/database/query.py:354 msgid "Expected 'and' or 'or' operator, found: {0}" msgstr "Operator \"and\" eller \"or\" förväntades, resultat: {0}" @@ -9579,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:1820 +#: frappe/public/js/frappe/views/reports/query_report.js:1828 #: frappe/public/js/frappe/views/reports/report_view.js:1629 #: frappe/public/js/frappe/widgets/chart_widget.js:315 msgid "Export" msgstr "Export" -#: frappe/public/js/frappe/list/list_view.js:2280 +#: frappe/public/js/frappe/list/list_view.js:2282 msgctxt "Button in list view actions menu" msgid "Export" msgstr "Export" @@ -9778,7 +9818,7 @@ msgstr "Misslyckades att beräkna text för begäran: {}" msgid "Failed to connect to server" msgstr "Misslyckades att ansluta till server" -#: frappe/auth.py:698 +#: frappe/auth.py:701 msgid "Failed to decode token, please provide a valid base64-encoded token." msgstr "Misslyckades med att avkoda token. Ange giltig base64 kodad token." @@ -9942,7 +9982,7 @@ msgstr "Hämtar standard Global Sökning dokument." #: 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:1879 +#: frappe/public/js/frappe/views/reports/query_report.js:1887 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_form_list_column/web_form_list_column.json msgid "Field" @@ -10025,7 +10065,7 @@ msgstr "Fält {0} hänvisar till icke-existerande doctype {1}." msgid "Field {0} not found." msgstr "Fält {0} hittades inte." -#: frappe/email/doctype/notification/notification.py:545 +#: frappe/email/doctype/notification/notification.py:547 msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link" msgstr "Fält {0} på dokument {1} är varken mobil nummer fält, Kund eller Användarlänk" @@ -10043,7 +10083,7 @@ msgstr "Fält {0} på dokument {1} är varken mobil nummer fält, Kund eller Anv #: 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:454 +#: frappe/public/js/frappe/form/grid_row.js:455 #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Fieldname" msgstr "Fält Namn" @@ -10124,7 +10164,7 @@ 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 +#: frappe/database/query.py:613 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" @@ -10152,7 +10192,7 @@ msgstr "Fält Typ" msgid "Fieldtype cannot be changed from {0} to {1}" msgstr "Fält Typ kan inte ändras från {0} till {1}" -#: frappe/custom/doctype/customize_form/customize_form.py:589 +#: frappe/custom/doctype/customize_form/customize_form.py:593 msgid "Fieldtype cannot be changed from {0} to {1} in row {2}" msgstr "Fält Typ kan inte ändras från {0} till {1} på rad {2}" @@ -10218,7 +10258,7 @@ msgstr "Fil URL" msgid "File backup is ready" msgstr "Fil Säkerhetskopiering är klar" -#: frappe/core/doctype/file/file.py:646 +#: frappe/core/doctype/file/file.py:649 msgid "File name cannot have {0}" msgstr "Fil Namn får inte innehålla {0}" @@ -10226,7 +10266,7 @@ msgstr "Fil Namn får inte innehålla {0}" msgid "File not attached" msgstr "Fil inte bifogad" -#: frappe/core/doctype/file/file.py:756 frappe/public/js/frappe/request.js:200 +#: frappe/core/doctype/file/file.py:759 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 "Fil storlek överskred högsta tillåtna storlek på {0} MB" @@ -10239,7 +10279,7 @@ msgstr "Fil för stor" msgid "File type of {0} is not allowed" msgstr "Fil typ {0} är inte tillåten" -#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:448 +#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:451 msgid "File {0} does not exist" msgstr "Fil {0} existerar inte" @@ -10293,11 +10333,11 @@ msgstr "Filter Namn" msgid "Filter Values" msgstr "Filtervärden" -#: frappe/database/query.py:358 +#: frappe/database/query.py:360 msgid "Filter condition missing after operator: {0}" msgstr "Filtervillkor saknas efter operator: {0}" -#: frappe/database/query.py:425 +#: frappe/database/query.py:427 msgid "Filter fields cannot contain backticks (`)." msgstr "Filterfält får inte innehålla bakåttecken (`)." @@ -10374,7 +10414,7 @@ msgstr "Filter Sektion" msgid "Filters applied for {0}" msgstr "Filter tillämpade för {0}" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:188 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:202 msgid "Filters saved" msgstr "Filter Sparade" @@ -10422,9 +10462,12 @@ msgstr "Veckans Första Arbetsdag" #. Label of the first_name (Data) field in DocType 'Contact' #. Label of the first_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json #: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:44 -#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:15 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:15 msgid "First Name" msgstr "Förnamn" @@ -10505,7 +10548,7 @@ msgstr "Mapp Namn" msgid "Folder name should not include '/' (slash)" msgstr "Mapp namn ska inte innehålla '/' (snedstreck)" -#: frappe/core/doctype/file/file.py:494 +#: frappe/core/doctype/file/file.py:497 msgid "Folder {0} is not empty" msgstr "Mapp {0} är inte tom" @@ -10707,7 +10750,7 @@ msgstr "För Användare" msgid "For Value" msgstr "För Värde" -#: frappe/public/js/frappe/views/reports/query_report.js:2129 +#: frappe/public/js/frappe/views/reports/query_report.js:2137 #: frappe/public/js/frappe/views/reports/report_view.js:108 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)." @@ -10992,7 +11035,7 @@ msgstr "Från Datum" msgid "From Date Field" msgstr "Från Datum" -#: frappe/public/js/frappe/views/reports/query_report.js:1840 +#: frappe/public/js/frappe/views/reports/query_report.js:1848 msgid "From Document Type" msgstr "Från DocType" @@ -11054,13 +11097,13 @@ msgstr "Funktion Baserad på" msgid "Function {0} is not whitelisted." msgstr "Funktion {0} är inte vitlistad." -#: frappe/database/query.py:1417 +#: frappe/database/query.py:1419 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" +msgid "Further sub-groups can only be created under records marked as 'Group'" +msgstr "Fler undergrupper kan endast skapas under poster markerade som 'Grupp'" #: frappe/core/doctype/communication/communication.js:291 msgid "Fw: {0}" @@ -11119,7 +11162,7 @@ msgstr "Allmän" msgid "Generate Keys" msgstr "Skapa Nycklar" -#: frappe/public/js/frappe/views/reports/query_report.js:874 +#: frappe/public/js/frappe/views/reports/query_report.js:882 msgid "Generate New Report" msgstr "Skapa Ny Rapport" @@ -11535,14 +11578,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 +#: frappe/database/query.py:752 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" - #. Label of the ldap_group_objectclass (Data) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Group Object Class" @@ -11872,7 +11911,7 @@ msgstr "Dold " msgid "Hidden Fields" msgstr "Dolda fält" -#: frappe/public/js/frappe/views/reports/query_report.js:1642 +#: frappe/public/js/frappe/views/reports/query_report.js:1650 msgid "Hidden columns include: {0}" msgstr "Dolda kolumner inkluderar: {0}" @@ -11984,7 +12023,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:1849 +#: frappe/public/js/frappe/list/list_view.js:1851 msgid "Hide Tags" msgstr "Dölj Taggar" @@ -12011,7 +12050,7 @@ msgstr "Dölj sidfot" #. 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Hide footer in auto email reports" -msgstr "Inaktivera Sidfot i Automatiska E-post Rapporter" +msgstr "Inaktivera Signatur i Automatiska E-post Rapporter" #. Label of the hide_footer_signup (Check) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json @@ -12243,7 +12282,7 @@ msgstr "Om vald kommer arbetsflöde tillstånd inte åsidosätta tillstånd i li #: frappe/core/doctype/doctype/doctype.py:1777 #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45 -#: frappe/public/js/frappe/roles_editor.js:66 +#: frappe/public/js/frappe/roles_editor.js:68 msgid "If Owner" msgstr "Ägare" @@ -12471,8 +12510,8 @@ msgstr "Ignorerade Appar" msgid "Illegal Document Status for {0}" msgstr "Ej Tillåten Dokument Status för {0}" -#: frappe/model/db_query.py:453 frappe/model/db_query.py:456 -#: frappe/model/db_query.py:1121 +#: frappe/model/db_query.py:454 frappe/model/db_query.py:457 +#: frappe/model/db_query.py:1122 msgid "Illegal SQL Query" msgstr "Ej Tillåten SQL Data förfråga" @@ -12559,11 +12598,11 @@ msgstr "Bilder" #. Option for the 'Operation' (Select) field in DocType 'Activity Log' #: frappe/core/doctype/activity_log/activity_log.json -#: frappe/core/doctype/user/user.js:384 +#: frappe/core/doctype/user/user.js:372 msgid "Impersonate" msgstr "Efterlikna" -#: frappe/core/doctype/user/user.js:411 +#: frappe/core/doctype/user/user.js:399 msgid "Impersonate as {0}" msgstr "Efterlikna som {0}" @@ -12593,7 +12632,7 @@ msgstr "Implicit" msgid "Import" msgstr "Importera" -#: frappe/public/js/frappe/list/list_view.js:1911 +#: frappe/public/js/frappe/list/list_view.js:1913 msgctxt "Button in list view menu" msgid "Import" msgstr "Importera" @@ -12822,15 +12861,15 @@ msgid "Include Web View Link in Email" msgstr "Inkludera Länk till Webbvy i E-post" #: frappe/public/js/frappe/form/print_utils.js:59 -#: frappe/public/js/frappe/views/reports/query_report.js:1620 +#: frappe/public/js/frappe/views/reports/query_report.js:1628 msgid "Include filters" msgstr "Inkludera Filter" -#: frappe/public/js/frappe/views/reports/query_report.js:1640 +#: frappe/public/js/frappe/views/reports/query_report.js:1648 msgid "Include hidden columns" msgstr "Inkludera dolda kolumner" -#: frappe/public/js/frappe/views/reports/query_report.js:1612 +#: frappe/public/js/frappe/views/reports/query_report.js:1620 msgid "Include indentation" msgstr "Inkludera Fördjupning" @@ -12877,7 +12916,7 @@ msgstr "Inkommande E-post Konto är inte korrekt" msgid "Incomplete Virtual Doctype Implementation" msgstr "Ofullständig Virtuell DocType Implementering" -#: frappe/auth.py:255 +#: frappe/auth.py:258 msgid "Incomplete login details" msgstr "Ofullständiga inloggning detaljer" @@ -12988,7 +13027,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:1885 +#: frappe/public/js/frappe/views/reports/query_report.js:1893 msgid "Insert After" msgstr "Infoga Efter" @@ -13061,7 +13100,7 @@ msgstr "Instruktioner skickade per E-post" msgid "Insufficient Permission Level for {0}" msgstr "Otillräckliga Behörigheter för ändring av {0}" -#: frappe/database/query.py:806 frappe/database/query.py:1052 +#: frappe/database/query.py:808 frappe/database/query.py:1054 msgid "Insufficient Permission for {0}" msgstr "Otillräckliga Behörigheter för ändring av {0}" @@ -13112,7 +13151,7 @@ msgstr "System Integrationer" #. 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Integrations can use this field to set email delivery status" -msgstr "Integrationer kan använda detta fält för att ange E-post leverans status" +msgstr "System Integrationer kan använda detta fält för att ange E-post leverans status" #. Option for the 'Font' (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json @@ -13177,7 +13216,7 @@ msgid "Invalid" msgstr "Ogiltig" #: frappe/public/js/form_builder/utils.js:221 -#: frappe/public/js/frappe/form/grid_row.js:849 +#: frappe/public/js/frappe/form/grid_row.js:850 #: frappe/public/js/frappe/form/layout.js:810 #: frappe/public/js/frappe/views/reports/report_view.js:721 msgid "Invalid \"depends_on\" expression" @@ -13235,8 +13274,8 @@ 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 +#: frappe/database/query.py:429 frappe/database/query.py:456 +#: frappe/database/query.py:466 frappe/database/query.py:489 msgid "Invalid Filter" msgstr "Ogiltigt Filter" @@ -13308,7 +13347,7 @@ msgstr "Ogiltigt Lösenord" msgid "Invalid Phone Number" msgstr "Ogiltig Telefon Nummer" -#: frappe/auth.py:94 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 +#: frappe/auth.py:97 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 #: frappe/www/login.py:128 msgid "Invalid Request" msgstr "Ogiltig Begäran" @@ -13348,7 +13387,7 @@ msgstr "Ogiltig Webbhook Hemlighet" msgid "Invalid aggregate function" msgstr "Ogiltig aggregatfunktion" -#: frappe/database/query.py:1542 +#: frappe/database/query.py:1544 msgid "Invalid alias format: {0}. Alias must be a simple identifier." msgstr "Ogiltig alias format: {0}. Alias måste vara enkel identifierare." @@ -13356,19 +13395,19 @@ msgstr "Ogiltig alias format: {0}. Alias måste vara enkel identifierare." msgid "Invalid app" msgstr "Ogiltig app" -#: frappe/database/query.py:1468 +#: frappe/database/query.py:1470 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 +#: frappe/database/query.py:1446 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 +#: frappe/database/query.py:462 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 +#: frappe/database/query.py:577 msgid "Invalid characters in table name: {0}" msgstr "Ogiltiga tecken i tabellnamn: {0}" @@ -13376,11 +13415,11 @@ msgstr "Ogiltiga tecken i tabellnamn: {0}" msgid "Invalid column" msgstr "Ogiltig Kolumn" -#: frappe/database/query.py:381 +#: frappe/database/query.py:383 msgid "Invalid condition type in nested filters: {0}" msgstr "Ogiltig villkorstyp i nästlade filter: {0}" -#: frappe/database/query.py:787 +#: frappe/database/query.py:789 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'." @@ -13396,23 +13435,23 @@ msgstr "Ogiltig uttryck angiven i filter {0}" msgid "Invalid expression set in filter {0} ({1})" msgstr "Ogiltig uttryck angiven i sortering {0} ({1})" -#: frappe/database/query.py:1301 +#: frappe/database/query.py:1303 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 +#: frappe/database/query.py:736 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 +#: frappe/database/query.py:1622 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:2215 +#: frappe/utils/data.py:2241 msgid "Invalid field name {0}" msgstr "Ogiltig Fält Namn {0}" -#: frappe/database/query.py:668 +#: frappe/database/query.py:670 msgid "Invalid field type: {0}" msgstr "Ogiltig fälttyp: {0}" @@ -13424,11 +13463,11 @@ msgstr "Ogiltig Fält Namn '{0}' i automatisk namn" msgid "Invalid file path: {0}" msgstr "Ogiltig Sökväg: {0}" -#: frappe/database/query.py:364 +#: frappe/database/query.py:366 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 +#: frappe/database/query.py:452 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'." @@ -13436,11 +13475,11 @@ msgstr "Ogiltig filter fältformat: {0}. Använd 'fieldname' eller 'link_fieldna msgid "Invalid filter: {0}" msgstr "Ogiltig Filter: {0}" -#: frappe/database/query.py:1422 +#: frappe/database/query.py:1424 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 +#: frappe/database/query.py:1385 msgid "Invalid function dictionary format" msgstr "Ogiltigt funktion ordbok format" @@ -13477,23 +13516,27 @@ msgstr "Ogiltig eller skadat innehåll för import" msgid "Invalid redirect regex in row #{}: {}" msgstr "Ogiltigt omdirigering regex på rad #{}: {}" -#: frappe/app.py:337 +#: frappe/app.py:340 msgid "Invalid request arguments" msgstr "Ogiltiga begäran argument" +#: frappe/app.py:327 +msgid "Invalid request body" +msgstr "Ogiltig begäran" + #: frappe/core/doctype/user_invitation/user_invitation.py:181 msgid "Invalid role" msgstr "Ogiltig roll" -#: frappe/database/query.py:410 +#: frappe/database/query.py:412 msgid "Invalid simple filter format: {0}" msgstr "Ogiltig enkelt filterformat: {0}" -#: frappe/database/query.py:341 +#: frappe/database/query.py:343 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 +#: frappe/database/query.py:1491 msgid "Invalid string literal format: {0}" msgstr "Ogiltig sträng litteral format: {0}" @@ -13597,7 +13640,7 @@ msgstr "Är Kalender och 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/doctype_list.js:50 #: frappe/core/doctype/doctype_link/doctype_link.json msgid "Is Child Table" msgstr "Är Undertabell" @@ -13650,6 +13693,10 @@ msgstr "Är Mapp" msgid "Is Global" msgstr "Är Global" +#: frappe/public/js/frappe/views/treeview.js:418 +msgid "Is Group" +msgstr "Är Grupp" + #. Label of the is_hidden (Check) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "Is Hidden" @@ -13738,7 +13785,7 @@ msgstr "Är Installation Klar?" #. 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/core/doctype/doctype/doctype_list.js:65 #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Is Single" msgstr "Är Singel" @@ -13774,7 +13821,7 @@ msgstr "Är 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 +#: frappe/core/doctype/doctype/doctype_list.js:40 msgid "Is Submittable" msgstr "Är Godkännbar" @@ -13980,11 +14027,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:388 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:402 msgid "Kanban Board Name" msgstr "Anslagstavla Bord Namn" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:265 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:279 msgctxt "Button in kanban view menu" msgid "Kanban Settings" msgstr "Anslagstavla Inställningar" @@ -14282,10 +14329,13 @@ msgstr "Landskap" #. 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' +#. Label of a field in the edit-profile Web Form #: 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:117 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/printing/page/print/print.js:117 #: frappe/public/js/frappe/form/templates/print_layout.html:11 msgid "Language" msgstr "Språk" @@ -14373,9 +14423,12 @@ msgstr "Förra Månad" #. Label of the last_name (Data) field in DocType 'Contact' #. Label of the last_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json #: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:45 -#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:19 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:19 msgid "Last Name" msgstr "Efternamn" @@ -14616,7 +14669,7 @@ msgstr "Brevhuvud i HTML" #: 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/public/js/frappe/roles_editor.js:68 #: frappe/website/doctype/help_article/help_article.json msgid "Level" msgstr "Nivå" @@ -14909,7 +14962,7 @@ msgstr "Lista Filter" msgid "List Settings" msgstr "Lista Inställningar" -#: frappe/public/js/frappe/list/list_view.js:1991 +#: frappe/public/js/frappe/list/list_view.js:1993 msgctxt "Button in list view menu" msgid "List Settings" msgstr "Lista Inställningar" @@ -14960,7 +15013,7 @@ msgid "Load Balancing" msgstr "Last Balansering" #: frappe/public/js/frappe/list/base_list.js:399 -#: frappe/public/js/frappe/web_form/web_form_list.js:305 +#: frappe/public/js/frappe/web_form/web_form_list.js:306 #: frappe/website/doctype/help_article/templates/help_article_list.html:30 msgid "Load More" msgstr "Ladda Mer" @@ -14980,7 +15033,7 @@ msgstr "Läs in mer" #: frappe/public/js/frappe/list/base_list.js:526 #: frappe/public/js/frappe/list/list_view.js:363 #: frappe/public/js/frappe/ui/listing.html:16 -#: frappe/public/js/frappe/views/reports/query_report.js:1089 +#: frappe/public/js/frappe/views/reports/query_report.js:1097 msgid "Loading" msgstr "Laddar" @@ -15123,7 +15176,7 @@ msgstr "Inloggning Verifiering Kod från {}" msgid "Login and view in Browser" msgstr "Logga in och visa i Webbläsare" -#: frappe/website/doctype/web_form/web_form.js:367 +#: frappe/website/doctype/web_form/web_form.js:368 msgid "Login is required to see web form list view. Enable {0} to see list settings" msgstr "Inloggning erfordras för att se webbformulär lista. Aktivera {0} för att se list inställningar" @@ -15131,7 +15184,7 @@ msgstr "Inloggning erfordras för att se webbformulär lista. Aktivera {0} för msgid "Login link sent to your email" msgstr "Inloggning länk skickad till din e-post" -#: frappe/auth.py:339 frappe/auth.py:342 +#: frappe/auth.py:342 frappe/auth.py:345 msgid "Login not allowed at this time" msgstr "Inloggning inte tillåtet vid denna tid" @@ -15184,7 +15237,7 @@ msgstr "Logga in med E-post länk" msgid "Login with email link expiry (in minutes)" msgstr "E-post Länk Giltig (minuter)" -#: frappe/auth.py:144 +#: frappe/auth.py:147 msgid "Login with username and password is not allowed." msgstr "Inloggning med användarnamn och lösenord är inte tillåtet." @@ -15203,7 +15256,7 @@ msgstr "Logotyp URI" msgid "Logout" msgstr "Logga Ut" -#: frappe/core/doctype/user/user.js:202 +#: frappe/core/doctype/user/user.js:190 msgid "Logout All Sessions" msgstr "Logga ut Alla Sessioner" @@ -15307,7 +15360,10 @@ msgid "Major" msgstr "Stora" #. Label of the show_name_in_global_search (Check) field in DocType 'DocType' +#. Label of the show_name_in_global_search (Check) field in DocType 'Customize +#. Form' #: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Make \"name\" searchable in Global Search" msgstr "'namn' sökbar i Global Sökning" @@ -15383,7 +15439,7 @@ msgstr "Erfordrad Beroende Av" msgid "Mandatory Depends On (JS)" msgstr "Erfodrad Beroende Av (JS)" -#: frappe/website/doctype/web_form/web_form.py:509 +#: frappe/website/doctype/web_form/web_form.py:536 msgid "Mandatory Information missing:" msgstr "Erfodrad Information saknas:" @@ -15840,6 +15896,11 @@ msgstr "Mitt Center" msgid "Middle Name" msgstr "Mellannamn" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Middle Name (Optional)" +msgstr "Mellannamn (Valfritt)" + #. Name of a DocType #. Label of a Link in the Tools Workspace #: frappe/automation/doctype/milestone/milestone.json @@ -15946,6 +16007,11 @@ msgstr "Mobil" msgid "Mobile No" msgstr "Mobil Nummer" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Mobile Number" +msgstr "Mobilnummer" + #. 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" @@ -15971,7 +16037,7 @@ msgstr "Modal Utlösare" #. 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/doctype/doctype_list.js:31 #: 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 @@ -16147,10 +16213,12 @@ msgstr "Extra Information" #. Label of the additional_info (Section Break) field in DocType #. 'Communication' #. Label of the short_bio (Tab Break) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: 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 +#: frappe/core/web_form/edit_profile/edit_profile.json msgid "More Information" msgstr "Mer Information" @@ -16180,7 +16248,7 @@ msgstr "Troligtvis är lösenord för lång." msgid "Move" msgstr "Flytta" -#: frappe/public/js/frappe/form/grid_row.js:193 +#: frappe/public/js/frappe/form/grid_row.js:194 msgid "Move To" msgstr "Flytta till" @@ -16216,7 +16284,7 @@ msgstr "Flytta sektioner till ny flik" msgid "Move the current field and the following fields to a new column" msgstr "Flytta aktuell fält och följande fält till ny kolumn" -#: frappe/public/js/frappe/form/grid_row.js:168 +#: frappe/public/js/frappe/form/grid_row.js:169 msgid "Move to Row Number" msgstr "Flytta till Rad Nummer" @@ -16284,7 +16352,7 @@ msgid "Mx" msgstr "Mx" #: frappe/templates/includes/web_sidebar.html:41 -#: frappe/website/doctype/web_form/web_form.py:498 +#: frappe/website/doctype/web_form/web_form.py:525 #: 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" @@ -16428,12 +16496,12 @@ msgstr "Toppfält Mall" msgid "Navbar Template Values" msgstr "Toppfält Mall Värden" -#: frappe/public/js/frappe/list/list_view.js:1378 +#: frappe/public/js/frappe/list/list_view.js:1380 msgctxt "Description of a list view shortcut" msgid "Navigate list down" msgstr "Navigera lista ner" -#: frappe/public/js/frappe/list/list_view.js:1385 +#: frappe/public/js/frappe/list/list_view.js:1387 msgctxt "Description of a list view shortcut" msgid "Navigate list up" msgstr "Navigera lista upp" @@ -16448,6 +16516,10 @@ msgstr "Navigera till huvud innehåll" msgid "Navigation Settings" msgstr "Navigation Inställningar" +#: frappe/public/js/frappe/list/list_view.js:485 +msgid "Need Help?" +msgstr "Behövs hjälp?" + #: frappe/desk/doctype/workspace/workspace.py:322 msgid "Need Workspace Manager role to edit private workspace of other users" msgstr "Arbetsyta Ansvarig roll erfordras för att redigera andra användares privat arbetsyta" @@ -16456,7 +16528,7 @@ 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 +#: frappe/database/query.py:335 msgid "Nested filters must be provided as a list or tuple." msgstr "Nästlade filter måste anges som lista eller tupel." @@ -16469,6 +16541,12 @@ msgstr "Nested set fel. Kontakta Administratör." msgid "Network Printer Settings" msgstr "Nätverk Skrivare Inställningar" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Never" +msgstr "Aldrig" + #. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/core/doctype/success_action/success_action.js:57 @@ -16477,7 +16555,7 @@ msgstr "Nätverk Skrivare Inställningar" #: 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/treeview.js:473 #: frappe/public/js/frappe/views/workspace/workspace.js:64 #: frappe/website/doctype/web_form/templates/web_list.html:15 #: frappe/www/list.html:19 @@ -16538,7 +16616,7 @@ msgstr "Ny Händelse" msgid "New Folder" msgstr "Ny Mapp" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 msgid "New Kanban Board" msgstr "Ny Anslagstavla" @@ -16573,7 +16651,7 @@ msgstr "Ny Nummer Kort" msgid "New Onboarding" msgstr "Ny Introduktion" -#: frappe/core/doctype/user/user.js:190 frappe/www/update-password.html:43 +#: frappe/core/doctype/user/user.js:178 frappe/www/update-password.html:43 msgid "New Password" msgstr "Ny Lösenord" @@ -16671,7 +16749,7 @@ msgstr "Ny värde att ange" #: frappe/public/js/frappe/ui/toolbar/search_utils.js:227 #: 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:411 +#: frappe/website/doctype/web_form/web_form.py:438 msgid "New {0}" msgstr "Ny {0}" @@ -16823,7 +16901,7 @@ msgstr "Nästa på Klick" #: frappe/public/js/form_builder/utils.js:341 #: frappe/public/js/frappe/form/controls/link.js:498 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1665 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 #: frappe/website/doctype/help_article/templates/help_article.html:26 msgid "No" msgstr "Nej" @@ -16972,7 +17050,7 @@ msgstr "Inga Träffar" msgid "No Roles Specified" msgstr "Inga Roller Specificerade" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 msgid "No Select Field Found" msgstr "Ingen Välj Fält Hittad" @@ -17056,7 +17134,7 @@ msgstr "Inga e-postadresser hittades att bjuda in" msgid "No failed logs" msgstr "Inga Misslyckade Logg" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:371 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:385 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\"." @@ -17080,7 +17158,7 @@ msgstr "Inga fler poster" msgid "No matching records. Search something new" msgstr "Inga poster. Sök på nytt" -#: frappe/public/js/frappe/web_form/web_form_list.js:161 +#: frappe/public/js/frappe/web_form/web_form_list.js:162 msgid "No more items to display" msgstr "Inga fler artiklar att visa" @@ -17124,7 +17202,7 @@ msgctxt "{0} = verb, {1} = object" msgid "No permission to '{0}' {1}" msgstr "Behörigheter saknas att '{0}' {1}" -#: frappe/model/db_query.py:948 +#: frappe/model/db_query.py:949 msgid "No permission to read {0}" msgstr "Behörigheter saknas att läsa {0}" @@ -17172,11 +17250,11 @@ msgstr "Ingen {0}" msgid "No {0} Found" msgstr "Ingen {0} Hittades" -#: frappe/public/js/frappe/web_form/web_form_list.js:233 +#: frappe/public/js/frappe/web_form/web_form_list.js:234 msgid "No {0} found" msgstr "Ingen {0} Hittades" -#: frappe/public/js/frappe/list/list_view.js:497 +#: frappe/public/js/frappe/list/list_view.js:499 msgid "No {0} found with matching filters. Clear filters to see all {0}." msgstr "{0} hittades med vald filter. Rensa filter för att se alla {0}." @@ -17185,7 +17263,7 @@ msgid "No {0} mail" msgstr "Ingen {0} E-post" #: frappe/public/js/form_builder/utils.js:117 -#: frappe/public/js/frappe/form/grid_row.js:256 +#: frappe/public/js/frappe/form/grid_row.js:257 msgctxt "Title of the 'row number' column" msgid "No." msgstr "Antal. " @@ -17249,7 +17327,7 @@ msgstr "Ej Underordnad Av" msgid "Not Equals" msgstr "Inte Lika" -#: frappe/app.py:387 frappe/www/404.html:3 +#: frappe/app.py:390 frappe/www/404.html:3 msgid "Not Found" msgstr "Hittades Inte" @@ -17275,9 +17353,9 @@ msgstr "Ej Länkad till någon post" msgid "Not Nullable" msgstr "Ej Nollställbar" -#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26 +#: frappe/__init__.py:550 frappe/app.py:383 frappe/desk/calendar.py:26 #: frappe/public/js/frappe/web_form/webform_script.js:15 -#: frappe/website/doctype/web_form/web_form.py:747 +#: frappe/website/doctype/web_form/web_form.py:774 #: 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 @@ -17296,7 +17374,7 @@ msgstr "Ej Publicerad" #: 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/kanban/kanban_view.js:183 #: frappe/public/js/frappe/views/reports/report_view.js:209 #: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39 #: frappe/website/doctype/web_form/templates/web_form.html:85 @@ -17347,7 +17425,7 @@ msgstr "Inte Aktiv" msgid "Not allowed for {0}: {1}" msgstr "Ej tillåtet för {0}: {1}" -#: frappe/email/doctype/notification/notification.py:637 +#: frappe/email/doctype/notification/notification.py:639 msgid "Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings" msgstr "Ej Tillåtet att bifoga {0} dokument, aktivera \"Tillåt Utskrift\" för {0} i Utskrift Inställningar" @@ -17379,12 +17457,12 @@ msgstr "Ej i Utvecklar Läge" msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType." msgstr "Ej i Utvecklar Läge! Ändra site_config.json eller skapa 'Anpassad' DocType." -#: frappe/core/doctype/system_settings/system_settings.py:216 +#: frappe/core/doctype/system_settings/system_settings.py:217 #: 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:760 +#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:787 #: frappe/website/js/website.js:97 msgid "Not permitted" msgstr "Ej Tillåtet" @@ -17430,7 +17508,7 @@ msgstr "Obs: För bästa resultat måste bilderna ha samma storlek och bredden m msgid "Note: Multiple sessions will be allowed in case of mobile device" msgstr "Obs: Flera sessioner kommer att tillåtas i fall av mobil enhet" -#: frappe/core/doctype/user/user.js:399 +#: frappe/core/doctype/user/user.js:387 msgid "Note: This will be shared with user." msgstr "Obs: Detta kommer att delas med användare." @@ -17502,15 +17580,15 @@ msgstr "Avisering Prenumererad Dokument" msgid "Notification sent to" msgstr "Avisering skickad till" -#: frappe/email/doctype/notification/notification.py:542 +#: frappe/email/doctype/notification/notification.py:544 msgid "Notification: customer {0} has no Mobile number set" msgstr "Meddelande: kund {0} har inget mobil nummer angivet" -#: frappe/email/doctype/notification/notification.py:528 +#: frappe/email/doctype/notification/notification.py:530 msgid "Notification: document {0} has no {1} number set (field: {2})" msgstr "Meddelande: dokument {0} har inget {1} nummer angivet (fält: {2})" -#: frappe/email/doctype/notification/notification.py:537 +#: frappe/email/doctype/notification/notification.py:539 msgid "Notification: user {0} has no Mobile number set" msgstr "Meddelande: användare {0} har inget mobil nummer angivet" @@ -17624,7 +17702,7 @@ msgstr "Antal Frågor" msgid "Number of attachment fields are more than {}, limit updated to {}." msgstr "Antalet bifogade fält är fler än {}, gränsen uppdaterad till {}." -#: frappe/core/doctype/system_settings/system_settings.py:171 +#: frappe/core/doctype/system_settings/system_settings.py:172 msgid "Number of backups must be greater than zero." msgstr "Antal säkerhetskopior måste vara än noll." @@ -17896,7 +17974,7 @@ msgstr "Introduktion Klar" #. Description of the 'Is Submittable' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:42 +#: frappe/core/doctype/doctype/doctype_list.js:43 msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended." msgstr "När de godkänts kan inte godkännda dokument ändras, De kan bara annulleras och sen ändras." @@ -17985,11 +18063,11 @@ msgstr "Endast rapporter av typ Rapport Generator kan tas bort" msgid "Only reports of type Report Builder can be edited" msgstr "Endast rapporter av typ Report Generator kan redigeras" -#: frappe/custom/doctype/customize_form/customize_form.py:129 +#: frappe/custom/doctype/customize_form/customize_form.py:131 msgid "Only standard DocTypes are allowed to be customized from Customize Form." msgstr "Endast standard DocTypes får anpassas från Anpasning Formulär." -#: frappe/model/delete_doc.py:241 +#: frappe/model/delete_doc.py:281 msgid "Only the Administrator can delete a standard DocType." msgstr "Endast administratör kan ta bort standard DocType." @@ -18085,7 +18163,7 @@ msgstr "Öppna konsol" msgid "Open in a new tab" msgstr "Öppna i ny flik" -#: frappe/public/js/frappe/list/list_view.js:1431 +#: frappe/public/js/frappe/list/list_view.js:1433 msgctxt "Description of a list view shortcut" msgid "Open list item" msgstr "Öppna List Post" @@ -18134,7 +18212,7 @@ msgstr "Öppnad" msgid "Operation" msgstr "Åtgärd" -#: frappe/utils/data.py:2146 +#: frappe/utils/data.py:2172 msgid "Operator must be one of {0}" msgstr "Operatören måste vara en av {0}" @@ -18180,6 +18258,7 @@ msgstr "Tillval: Avisering kommer att skickas om detta uttryck är sant" #. 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 (Text) field in DocType 'Web Form List Column' #. 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 @@ -18188,6 +18267,7 @@ msgstr "Tillval: Avisering kommer att skickas om detta uttryck är sant" #: 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_form_list_column/web_form_list_column.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Options" msgstr "Alternativ " @@ -18233,7 +18313,7 @@ msgstr "Orange" msgid "Order" msgstr "Order" -#: frappe/database/query.py:767 +#: frappe/database/query.py:769 msgid "Order By must be a string" msgstr "Sortera Efter måste vara sträng" @@ -18331,7 +18411,7 @@ msgstr "PATCH" #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/printing/page/print/print.js:84 #: frappe/public/js/frappe/form/templates/print_layout.html:44 -#: frappe/public/js/frappe/views/reports/query_report.js:1804 +#: frappe/public/js/frappe/views/reports/query_report.js:1812 msgid "PDF" msgstr "PDF" @@ -18679,8 +18759,8 @@ msgstr "Passiv" #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/system_settings/system_settings.json -#: frappe/core/doctype/user/user.js:177 frappe/core/doctype/user/user.js:224 -#: frappe/core/doctype/user/user.js:244 +#: frappe/core/doctype/user/user.js:165 frappe/core/doctype/user/user.js:212 +#: frappe/core/doctype/user/user.js:232 #: 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 @@ -18703,7 +18783,7 @@ msgstr "Lösenord Återställning" msgid "Password Reset Link Generation Limit" msgstr "Maximum Antal Lösenord Återställning Länkar per timme" -#: frappe/public/js/frappe/form/grid_row.js:896 +#: frappe/public/js/frappe/form/grid_row.js:897 msgid "Password cannot be filtered" msgstr "Lösenord kan inte filtreras" @@ -18740,7 +18820,7 @@ msgstr "Instruktioner för återställning av lösenord är skickade till {}'s e msgid "Password set" msgstr "Lösenord angiven" -#: frappe/auth.py:258 +#: frappe/auth.py:261 msgid "Password size exceeded the maximum allowed size" msgstr "Lösenord längd överskred maximum tillåten längd." @@ -18752,7 +18832,7 @@ msgstr "Lösenord längd överskred maximum tillåten längd." msgid "Passwords do not match" msgstr "Lösenord stämmer inte" -#: frappe/core/doctype/user/user.js:210 +#: frappe/core/doctype/user/user.js:198 msgid "Passwords do not match!" msgstr "Lösenord stämmer inte!" @@ -18903,7 +18983,7 @@ msgstr "Godkänn {0}?" msgid "Permanently delete {0}?" msgstr "Permanent ta bort {0}?" -#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533 +#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:535 msgid "Permission Error" msgstr "Behörighet Fel" @@ -18963,8 +19043,8 @@ msgstr "Behörighet Typ" #: 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:143 frappe/core/doctype/user/user.js:152 -#: frappe/core/doctype/user/user.js:161 +#: frappe/core/doctype/user/user.js:131 frappe/core/doctype/user/user.js:140 +#: frappe/core/doctype/user/user.js:149 #: 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 @@ -19034,6 +19114,7 @@ msgstr "Personligt Data Nedladdning Begäran" #. Option for the 'Type' (Select) field in DocType 'Communication' #. Option for the 'Type' (Select) field in DocType 'DocField' #. Label of the phone (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #. 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' @@ -19044,6 +19125,7 @@ msgstr "Personligt Data Nedladdning Begäran" #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.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 @@ -19218,7 +19300,7 @@ msgstr "Ändra inte mall huvud rubriker." msgid "Please duplicate this to make changes" msgstr "Kopiera för att göra ändringar" -#: frappe/core/doctype/system_settings/system_settings.py:164 +#: frappe/core/doctype/system_settings/system_settings.py:165 msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login." msgstr "Aktivera minst en social inloggning nyckel eller LDAP eller Logga in med E-post Länk innan du inaktiverar användarnamn/lösenord baserad inloggning." @@ -19350,11 +19432,11 @@ msgstr "Välj DocType" msgid "Please select Entity Type first" msgstr "Välj Entitet Typ" -#: frappe/core/doctype/system_settings/system_settings.py:115 +#: frappe/core/doctype/system_settings/system_settings.py:116 msgid "Please select Minimum Password Score" msgstr "Välj Minsta Lösenord Värde" -#: frappe/public/js/frappe/views/reports/query_report.js:1185 +#: frappe/public/js/frappe/views/reports/query_report.js:1193 msgid "Please select X and Y fields" msgstr "Välj X och Y fält" @@ -19382,7 +19464,7 @@ msgstr "Välj giltig datum filter" msgid "Please select applicable Doctypes" msgstr "Välj tillämpliga DocTypes" -#: frappe/model/db_query.py:1157 +#: frappe/model/db_query.py:1163 msgid "Please select atleast 1 column from {0} to sort/group" msgstr "Välj minst en kolumn från {0} för att sortera/gruppera" @@ -19412,7 +19494,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:1408 +#: frappe/public/js/frappe/views/reports/query_report.js:1416 msgid "Please set filters" msgstr "Ange Filter" @@ -19432,7 +19514,7 @@ msgstr "Ange följande dokument i Översikt Panel som standard." msgid "Please set the series to be used." msgstr "Ange Namngivning Serie som ska användas." -#: frappe/core/doctype/system_settings/system_settings.py:128 +#: frappe/core/doctype/system_settings/system_settings.py:129 msgid "Please setup SMS before setting it as an authentication method, via SMS Settings" msgstr "Konfigurera SMS före du anger den som Autentisering Sätt via SMS Inställningar" @@ -19584,7 +19666,7 @@ msgstr "Postnummer" msgid "Posting Timestamp" msgstr "Registrering Tid" -#: frappe/database/query.py:1518 +#: frappe/database/query.py:1520 msgid "Potentially dangerous content in string literal: {0}" msgstr "Potentiell farligt innehåll i sträng litteral: {0}" @@ -19786,13 +19868,13 @@ msgstr "Primär nyckel för doctype {0} kan inte ändras eftersom det finns befi #: 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:1789 +#: frappe/public/js/frappe/views/reports/query_report.js:1797 #: frappe/public/js/frappe/views/reports/report_view.js:1539 -#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18 +#: frappe/public/js/frappe/views/treeview.js:492 frappe/www/printview.html:18 msgid "Print" msgstr "Utskrift" -#: frappe/public/js/frappe/list/list_view.js:2164 +#: frappe/public/js/frappe/list/list_view.js:2166 msgctxt "Button in list view actions menu" msgid "Print" msgstr "Utskrift" @@ -19862,7 +19944,7 @@ msgstr "Utskrift Format Hjälp" msgid "Print Format Type" msgstr "Utskrift Format Typ" -#: frappe/public/js/frappe/views/reports/query_report.js:1578 +#: frappe/public/js/frappe/views/reports/query_report.js:1586 msgid "Print Format not found" msgstr "Utskriftsformat hittades inte" @@ -20043,11 +20125,11 @@ msgstr "Tips: Lägg Referens: {{ reference_doctype }} {{ reference_name }} msgid "Proceed" msgstr "Fortsätt" -#: frappe/public/js/frappe/views/reports/query_report.js:932 +#: frappe/public/js/frappe/views/reports/query_report.js:940 msgid "Proceed Anyway" msgstr "Fortsätt Ändå" -#: frappe/public/js/frappe/form/controls/table.js:123 +#: frappe/public/js/frappe/form/controls/table.js:104 msgid "Processing" msgstr "Behandlar" @@ -20064,11 +20146,21 @@ msgstr "Prof" msgid "Profile" msgstr "Profil" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile Picture" +msgstr "Profilbild" + +#. Success message of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile updated successfully." +msgstr "Profil uppdaterad." + #: frappe/public/js/frappe/socketio_client.js:82 msgid "Progress" msgstr "Framsteg" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:408 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:422 msgid "Project" msgstr "Projekt" @@ -20112,7 +20204,7 @@ msgstr "Egenskap Typ" msgid "Protect Attached Files" msgstr "Skydda Bifogade Filer" -#: frappe/core/doctype/file/file.py:523 +#: frappe/core/doctype/file/file.py:526 msgid "Protected File" msgstr "Skyddad Fil" @@ -20618,11 +20710,11 @@ msgstr "Realtid (SocketIO)" msgid "Reason" msgstr "Anledning" -#: frappe/public/js/frappe/views/reports/query_report.js:886 +#: frappe/public/js/frappe/views/reports/query_report.js:894 msgid "Rebuild" msgstr "Uppdatera" -#: frappe/public/js/frappe/views/treeview.js:509 +#: frappe/public/js/frappe/views/treeview.js:511 msgid "Rebuild Tree" msgstr "Uppdatera Träd Vy" @@ -21003,8 +21095,8 @@ msgstr "Referens" #: 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:1778 -#: frappe/public/js/frappe/views/treeview.js:496 +#: frappe/public/js/frappe/views/reports/query_report.js:1786 +#: frappe/public/js/frappe/views/treeview.js:498 #: frappe/public/js/frappe/widgets/chart_widget.js:291 #: frappe/public/js/frappe/widgets/number_card_widget.js:352 #: frappe/public/js/print_format_builder/Preview.vue:24 @@ -21035,13 +21127,13 @@ msgstr "Uppdatera Utskrift Förhandsgranskning" msgid "Refresh Token" msgstr "Uppdatera Token" -#: frappe/public/js/frappe/list/list_view.js:534 +#: frappe/public/js/frappe/list/list_view.js:536 msgctxt "Document count in list view" msgid "Refreshing" msgstr "Uppdaterar" #: frappe/core/doctype/system_settings/system_settings.js:57 -#: frappe/core/doctype/user/user.js:374 +#: frappe/core/doctype/user/user.js:362 #: frappe/desk/page/setup_wizard/setup_wizard.js:211 msgid "Refreshing..." msgstr "Uppdaterar..." @@ -21426,7 +21518,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:1965 +#: frappe/public/js/frappe/views/reports/query_report.js:1973 msgid "Report Name" msgstr "Rapport Namn" @@ -21478,7 +21570,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:1013 +#: frappe/public/js/frappe/views/reports/query_report.js:1021 msgid "Report initiated, click to view status" msgstr "Rapport initierad, klicka för att se status" @@ -21498,7 +21590,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:2003 +#: frappe/public/js/frappe/views/reports/query_report.js:2011 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." @@ -21534,7 +21626,7 @@ msgstr "Rapporter" msgid "Reports & Masters" msgstr "Rapporter & Inställningar" -#: frappe/public/js/frappe/views/reports/query_report.js:929 +#: frappe/public/js/frappe/views/reports/query_report.js:937 msgid "Reports already in Queue" msgstr "Rapporter redan i Kö" @@ -21553,7 +21645,10 @@ msgid "Request Body" msgstr "Begärd Av" #. Label of the data (Code) field in DocType 'Integration Request' +#. Title of the request-data Web Form +#. Button label of the request-data Web Form #: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/website/web_form/request_data/request_data.json msgid "Request Data" msgstr "Begäran Data" @@ -21605,6 +21700,11 @@ msgstr "Begäran förfaller om" msgid "Request URL" msgstr "Begäran URL" +#. Title of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "Request for Account Deletion" +msgstr "Begäran för Kontoborttagning" + #. Label of the requested_numbers (Code) field in DocType 'SMS Log' #: frappe/core/doctype/sms_log/sms_log.json msgid "Requested Numbers" @@ -21660,7 +21760,7 @@ msgstr "Återställ Översikt Panel Anpassningar" msgid "Reset Fields" msgstr "Återställ Fält" -#: frappe/core/doctype/user/user.js:184 frappe/core/doctype/user/user.js:187 +#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:175 msgid "Reset LDAP Password" msgstr "Återställ LDAP Lösenord" @@ -21668,11 +21768,11 @@ msgstr "Återställ LDAP Lösenord" msgid "Reset Layout" msgstr "Återställ Layout" -#: frappe/core/doctype/user/user.js:235 +#: frappe/core/doctype/user/user.js:223 msgid "Reset OTP Secret" msgstr "Återställ OTP Hemlighet" -#: frappe/core/doctype/user/user.js:168 frappe/www/login.html:199 +#: frappe/core/doctype/user/user.js:156 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" @@ -21707,7 +21807,7 @@ msgstr "Återställ Till Standard" msgid "Reset sorting" msgstr "Återställ Sortering" -#: frappe/public/js/frappe/form/grid_row.js:433 +#: frappe/public/js/frappe/form/grid_row.js:434 msgid "Reset to default" msgstr "Återställ Standard" @@ -21959,7 +22059,7 @@ msgstr "Roll Behörighet för Sida och Rapport" #. 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 +#: frappe/public/js/frappe/roles_editor.js:114 msgid "Role Permissions" msgstr "Roll Behörigheter" @@ -21969,7 +22069,7 @@ msgstr "Roll Behörigheter" msgid "Role Permissions Manager" msgstr "Roll Behörigheter Hanterare" -#: frappe/public/js/frappe/list/list_view.js:1933 +#: frappe/public/js/frappe/list/list_view.js:1935 msgctxt "Button in list view menu" msgid "Role Permissions Manager" msgstr "Roll Behörigheter Hanterare" @@ -22162,11 +22262,11 @@ msgstr "Rad Värde Ändrad" msgid "Row {0}" msgstr "Rad # {0} " -#: frappe/custom/doctype/customize_form/customize_form.py:353 +#: frappe/custom/doctype/customize_form/customize_form.py:357 msgid "Row {0}: Not allowed to disable Mandatory for standard fields" msgstr "Rad {0}: Ej Tillåtet att inaktivera Erfodrad för standard fält" -#: frappe/custom/doctype/customize_form/customize_form.py:342 +#: frappe/custom/doctype/customize_form/customize_form.py:346 msgid "Row {0}: Not allowed to enable Allow on Submit for standard fields" msgstr "Rad {0}: Ej Tillåtet att aktivera Tillåt vid Godkännande för standard fält" @@ -22185,7 +22285,10 @@ msgid "Rows Removed" msgstr "Rader Borttagna " #. Label of the rows_threshold_for_grid_search (Int) field in DocType 'DocType' +#. Label of the rows_threshold_for_grid_search (Int) field in DocType +#. 'Customize Form' #: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Rows Threshold for Grid Search" msgstr "Rad Tröskelvärde för Rutnät Sökning" @@ -22393,8 +22496,8 @@ msgstr "Lördag" #: 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:1957 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 +#: frappe/public/js/frappe/views/reports/query_report.js:1965 #: frappe/public/js/frappe/views/reports/report_view.js:1735 #: frappe/public/js/frappe/views/workspace/workspace.js:335 #: frappe/public/js/frappe/widgets/base_widget.js:142 @@ -22417,11 +22520,11 @@ msgstr "Spara Som" msgid "Save Customizations" msgstr "Spara Anpassningar" -#: frappe/public/js/frappe/views/reports/query_report.js:1960 +#: frappe/public/js/frappe/views/reports/query_report.js:1968 msgid "Save Report" msgstr "Spara Rapport" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:97 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:107 msgid "Save filters" msgstr "Spara Filter" @@ -22793,7 +22896,7 @@ msgstr "Säkerhet Inställningar" msgid "See all Activity" msgstr "Visa All Aktivitet" -#: frappe/public/js/frappe/views/reports/query_report.js:855 +#: frappe/public/js/frappe/views/reports/query_report.js:863 msgid "See all past reports." msgstr "Visa alla tidigare rapporter." @@ -22857,7 +22960,7 @@ msgstr "Välj i Listan" #: 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:497 +#: frappe/public/js/frappe/form/grid_row.js:498 msgid "Select All" msgstr "Välj Alla" @@ -22937,7 +23040,7 @@ msgstr "Välj Fält" msgid "Select Field..." msgstr "Välj Fält..." -#: frappe/public/js/frappe/form/grid_row.js:489 +#: frappe/public/js/frappe/form/grid_row.js:490 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:181 msgid "Select Fields" msgstr "Välj Fält" @@ -23057,8 +23160,8 @@ msgid "Select a field to edit its properties." msgstr "Välj fält för att redigera dess egenskaper." #: frappe/public/js/frappe/views/treeview.js:358 -msgid "Select a group node first." -msgstr "Välj Grupp nod." +msgid "Select a group {0} first." +msgstr "Välj grupp {0}." #: frappe/core/doctype/doctype/doctype.py:1956 msgid "Select a valid Sender Field for creating documents from Email" @@ -23094,13 +23197,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:1445 +#: frappe/public/js/frappe/list/list_view.js:1447 msgctxt "Description of a list view shortcut" msgid "Select list item" msgstr "Välj List Artikel" -#: frappe/public/js/frappe/list/list_view.js:1397 -#: frappe/public/js/frappe/list/list_view.js:1413 +#: frappe/public/js/frappe/list/list_view.js:1399 +#: frappe/public/js/frappe/list/list_view.js:1415 msgctxt "Description of a list view shortcut" msgid "Select multiple list items" msgstr "Välj flera List Artiklar" @@ -23422,7 +23525,7 @@ msgstr "Namngivning Serie {0} används redan i {1}" msgid "Server Action" msgstr "Server Åtgärd" -#: frappe/app.py:396 frappe/public/js/frappe/request.js:611 +#: frappe/app.py:399 frappe/public/js/frappe/request.js:611 #: frappe/www/error.html:36 frappe/www/error.py:15 msgid "Server Error" msgstr "Server Fel" @@ -23488,7 +23591,7 @@ msgstr "Session Inställningar" msgid "Session Defaults Saved" msgstr "Session Inställningar Sparade" -#: frappe/app.py:373 +#: frappe/app.py:376 msgid "Session Expired" msgstr "Session Förföll" @@ -23497,7 +23600,7 @@ msgstr "Session Förföll" msgid "Session Expiry (idle timeout)" msgstr "Session Förfaller (Tid av Inaktivitet)" -#: frappe/core/doctype/system_settings/system_settings.py:122 +#: frappe/core/doctype/system_settings/system_settings.py:123 msgid "Session Expiry must be in format {0}" msgstr "Session Förfallo tid måste vara i format {0}" @@ -23546,7 +23649,7 @@ msgstr "Ange Filter" msgid "Set Filters for {0}" msgstr "Ange Filter för {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:2113 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 msgid "Set Level" msgstr "Ange Nivå" @@ -23600,7 +23703,7 @@ msgstr "Bekräfta" msgid "Set Role For" msgstr "Ange Roll För" -#: frappe/core/doctype/user/user.js:136 +#: frappe/core/doctype/user/user.js:124 #: frappe/core/page/permission_manager/permission_manager.js:72 msgid "Set User Permissions" msgstr "Ange Användar Behörigheter" @@ -23786,7 +23889,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:1826 +#: frappe/public/js/frappe/views/reports/query_report.js:1834 #: frappe/public/js/frappe/views/reports/report_view.js:1713 msgid "Setup Auto Email" msgstr "Automatisk E-post Rapport" @@ -23927,6 +24030,12 @@ msgstr "Visa Dokument" msgid "Show Error" msgstr "Visa Fel" +#. Label of the show_external_link_warning (Select) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Show External Link Warning" +msgstr "Visa Extern Länk Varning" + #: frappe/public/js/frappe/form/layout.js:578 msgid "Show Fieldname (click to copy on clipboard)" msgstr "Visa Fältnamn (klicka för att kopiera till urklipp)" @@ -24055,7 +24164,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:1849 +#: frappe/public/js/frappe/list/list_view.js:1851 msgid "Show Tags" msgstr "Visa Taggar" @@ -24262,36 +24371,36 @@ msgstr "Registrering Inaktiverad" msgid "Signups have been disabled for this website." msgstr "Registrering har inaktiverats för Webbplats." -#. 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 "Enkel Python Uttryck, Exempel: Status in ('Closed', 'Cancelled')" - #. 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 "Enkel Python Uttryck, Exempel: Status in ('Invalid')" +msgid "Simple Python Expression, Example: status == \"Invalid\"" +msgstr "Enkelt Python Uttryck, Exempel: status == \"Invalid\"" #. 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 "Enkel Python Uttryck, Exempel: Status == 'Open' and type == 'Bug'" +msgid "Simple Python Expression, Example: status == 'Open' and issue_type == 'Bug'" +msgstr "Enkelt Python Uttryck, Exempel: status == 'Open' och issue_type == 'Bug'" + +#. 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 "Enkelt Python Uttryck, Exempel: status in (\"Closed\", \"Cancelled\")" #. Label of the simultaneous_sessions (Int) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Simultaneous Sessions" msgstr "Samtidiga Sessioner" -#: frappe/custom/doctype/customize_form/customize_form.py:126 +#: frappe/custom/doctype/customize_form/customize_form.py:128 msgid "Single DocTypes cannot be customized." msgstr "Enskild DocTypes kan inte anpassas." #. Description of the 'Is Single' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:67 +#: frappe/core/doctype/doctype/doctype_list.js:68 msgid "Single Types have only one record no tables associated. Values are stored in tabSingles" msgstr "Enskilda Typer har endast en post inga tabeller associerade. Värden lagras i tabSingles" @@ -24627,7 +24736,7 @@ msgid "Splash Image" msgstr "Splash Bild" #: frappe/desk/reportview.py:455 -#: frappe/public/js/frappe/web_form/web_form_list.js:175 +#: frappe/public/js/frappe/web_form/web_form_list.js:176 #: frappe/templates/print_formats/standard_macros.html:44 msgid "Sr" msgstr "Rad" @@ -24659,7 +24768,7 @@ msgstr "Stack Trace" msgid "Standard" msgstr "Standard" -#: frappe/model/delete_doc.py:79 +#: frappe/model/delete_doc.py:119 msgid "Standard DocType can not be deleted." msgstr "Standard DocType kan inte tas bort." @@ -24929,7 +25038,7 @@ msgstr "Steg för att verifiera din inloggning" #. Label of the sticky (Check) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json -#: frappe/public/js/frappe/form/grid_row.js:454 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Sticky" msgstr "Klistrad" @@ -24959,7 +25068,7 @@ msgstr "Lagring Användning Efter Tabeller" msgid "Store Attached PDF Document" msgstr "Spara Bifogade PDF dokument" -#: frappe/core/doctype/user/user.js:490 +#: frappe/core/doctype/user/user.js:497 msgid "Store the API secret securely. It won't be displayed again." msgstr "Förvara API Hemlighet på ett säkert sätt. Den kommer inte att visas igen." @@ -25071,6 +25180,7 @@ msgstr "Godkännande Kö" #. 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' +#. Button label of the request-to-delete-data Web Form #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/docshare/docshare.json @@ -25079,10 +25189,11 @@ msgstr "Godkännande Kö" #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/quick_entry.js:225 #: frappe/public/js/frappe/ui/capture.js:307 +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json msgid "Submit" msgstr "Godkänn" -#: frappe/public/js/frappe/list/list_view.js:2231 +#: frappe/public/js/frappe/list/list_view.js:2233 msgctxt "Button in list view actions menu" msgid "Submit" msgstr "Godkänn" @@ -25092,7 +25203,7 @@ msgctxt "Button in web form" msgid "Submit" msgstr "Skicka" -#: frappe/public/js/frappe/ui/dialog.js:63 +#: frappe/public/js/frappe/ui/dialog.js:64 msgctxt "Primary action in dialog" msgid "Submit" msgstr "Godkänn" @@ -25140,7 +25251,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:2236 +#: frappe/public/js/frappe/list/list_view.js:2238 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "Godkänn {0} dokument?" @@ -25190,7 +25301,7 @@ msgstr "Underbenämning" #: 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:1171 +#: frappe/public/js/frappe/form/grid.js:1172 #: frappe/public/js/frappe/views/translation_manager.js:21 #: frappe/templates/includes/login/login.js:230 #: frappe/templates/includes/login/login.js:236 @@ -25405,7 +25516,7 @@ msgstr "Synkroniserar" msgid "Syncing {0} of {1}" msgstr "Synkroniserar {0} av {1}" -#: frappe/utils/data.py:2547 +#: frappe/utils/data.py:2573 msgid "Syntax Error" msgstr "Syntaxfel" @@ -25716,7 +25827,7 @@ msgstr "Tabell FlerVal" msgid "Table Trimmed" msgstr "Tabell Optimerad" -#: frappe/public/js/frappe/form/grid.js:1170 +#: frappe/public/js/frappe/form/grid.js:1171 msgid "Table updated" msgstr "Tabell Uppdaterad" @@ -25933,7 +26044,7 @@ msgstr "Tack" msgid "The Auto Repeat for this document has been disabled." msgstr "Återkommande för detta dokument är inaktiverad." -#: frappe/public/js/frappe/form/grid.js:1193 +#: frappe/public/js/frappe/form/grid.js:1194 msgid "The CSV format is case sensitive" msgstr "CSV format är skiftläge känslig" @@ -26001,7 +26112,7 @@ msgstr "Kommentar kan inte vara tom" msgid "The contents of this email are strictly confidential. Please do not forward this email to anyone." msgstr "Innehållet i detta e-post meddelande är strikt konfidentiellt. Vänligen vidarebefordra inte detta e-post meddelande till någon." -#: frappe/public/js/frappe/list/list_view.js:685 +#: frappe/public/js/frappe/list/list_view.js:687 msgid "The count shown is an estimated count. Click here to see the accurate count." msgstr "Antal som visas är uppskattat antal. Klicka här för att se exakt antal." @@ -26115,7 +26226,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:388 frappe/public/js/frappe/request.js:149 +#: frappe/app.py:391 frappe/public/js/frappe/request.js:149 msgid "The resource you are looking for is not available" msgstr "Resurs är inte tillgänglig" @@ -26188,12 +26299,12 @@ 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:965 +#: frappe/public/js/frappe/views/reports/query_report.js:973 msgid "There are {0} with the same filters already in the queue:" msgstr "Det finns {0} med samma filter redan i kö:" #: frappe/website/doctype/web_form/web_form.js:81 -#: frappe/website/doctype/web_form/web_form.js:317 +#: frappe/website/doctype/web_form/web_form.js:318 msgid "There can be only 9 Page Break fields in a Web Form" msgstr "Det kan bara finnas nio sidbrytning fält i webbformulär" @@ -26217,11 +26328,11 @@ msgstr "Det finns ingen aktivitet som heter \"{}\"" msgid "There is nothing new to show you right now." msgstr "Det finns inget nytt att visa dig just nu." -#: frappe/core/doctype/file/file.py:640 frappe/utils/file_manager.py:372 +#: frappe/core/doctype/file/file.py:643 frappe/utils/file_manager.py:372 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:962 +#: frappe/public/js/frappe/views/reports/query_report.js:970 msgid "There is {0} with the same filters already in the queue:" msgstr "Det finns {0} med samma filter som redan finns i kö:" @@ -26233,7 +26344,7 @@ msgstr "Det måste finnas minst en behörighet regel." msgid "There was an error building this page" msgstr "Det uppstod fel när denna sida skulle skapas" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:182 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:196 msgid "There was an error saving filters" msgstr "Det uppstod fel när filter skulle sparas" @@ -26290,7 +26401,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:391 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:405 msgid "This Kanban Board will be private" msgstr "Detta Anslagstavla Bord kommer att vara privat" @@ -26327,7 +26438,7 @@ msgstr "Åtgärd är endast tillåten för {}" msgid "This cannot be undone" msgstr "Detta kan inte ångras" -#: frappe/desk/doctype/number_card/number_card.js:480 +#: frappe/desk/doctype/number_card/number_card.js:484 msgctxt "Number Card" msgid "This card is visible only to Administrator and System Managers by default. Set a DocType to share with users who have read access." msgstr "Detta kort är som standard endast synligt för Administratörer och System Ansvariga. Ange DocType som ska delas med användare som har läsbehörighet." @@ -26350,7 +26461,7 @@ msgstr "Denna doctype har inga övergivna fält att trimma" msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes." msgstr "Denna doctype har pågående migrering, kör 'bench migrate' innan du ändrar doctype för att undvika att förlora ändringar." -#: frappe/model/delete_doc.py:113 +#: frappe/model/delete_doc.py:153 msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time." msgstr "Detta dokument kan inte tas bort just nu eftersom det ändras av en annan användare. Försök igen senare." @@ -26395,7 +26506,7 @@ msgstr "Detta fält visas endast om fält namn definieras här har värde eller "myfield eval: doc.myfield == 'Min värde'\n" "eval:doc.age>18" -#: frappe/core/doctype/file/file.py:522 +#: frappe/core/doctype/file/file.py:525 msgid "This file is attached to a protected document and cannot be deleted." msgstr "Den här filen är kopplad till ett skyddat dokument och kan inte tas bort." @@ -26430,7 +26541,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:2189 +#: frappe/public/js/frappe/views/reports/query_report.js:2197 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 +26591,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:1037 +#: frappe/public/js/frappe/views/reports/query_report.js:1045 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 +26599,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:853 +#: frappe/public/js/frappe/views/reports/query_report.js:861 msgid "This report was generated {0}." msgstr "Denna rapport skapades {0}." @@ -26630,9 +26741,11 @@ msgstr "Tidsram (Sekunder)" #. Label of the time_zone (Select) field in DocType 'System Settings' #. Label of the time_zone (Autocomplete) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #. 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/core/web_form/edit_profile/edit_profile.json #: frappe/desk/page/setup_wizard/setup_wizard.js:407 #: frappe/website/doctype/web_page_view/web_page_view.json msgid "Time Zone" @@ -26897,7 +27010,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:854 +#: frappe/public/js/frappe/views/reports/query_report.js:862 msgid "To get the updated report, click on {0}." msgstr "Klicka på {0} att hämta uppdaterad rapport." @@ -26972,7 +27085,7 @@ msgstr "Växla Rutnät Vy" msgid "Toggle Sidebar" msgstr "Växla Sidofält" -#: frappe/public/js/frappe/list/list_view.js:1964 +#: frappe/public/js/frappe/list/list_view.js:1966 msgctxt "Button in list view menu" msgid "Toggle Sidebar" msgstr "Växla Sidofält" @@ -27098,7 +27211,7 @@ msgstr "Ämne" #: frappe/desk/query_report.py:587 #: frappe/public/js/frappe/views/reports/print_grid.html:45 -#: frappe/public/js/frappe/views/reports/query_report.js:1324 +#: frappe/public/js/frappe/views/reports/query_report.js:1332 #: frappe/public/js/frappe/views/reports/report_view.js:1553 msgid "Total" msgstr "Totalt" @@ -27257,7 +27370,7 @@ msgstr "Övergångar" msgid "Translatable" msgstr "Översättningbar" -#: frappe/public/js/frappe/views/reports/query_report.js:2244 +#: frappe/public/js/frappe/views/reports/query_report.js:2252 msgid "Translate Data" msgstr "Översätt Data" @@ -27616,7 +27729,7 @@ msgstr "Kunde inte att skicka e-post på grund av att standard e-post konto sakn msgid "Unable to update event" msgstr "Kan inte uppdatera händelse" -#: frappe/core/doctype/file/file.py:486 +#: frappe/core/doctype/file/file.py:489 msgid "Unable to write file format for {0}" msgstr "Kunde inte skriva fil format för {0}" @@ -27625,7 +27738,7 @@ msgstr "Kunde inte skriva fil format för {0}" msgid "Unassign Condition" msgstr "Inaktivera Villkor" -#: frappe/app.py:396 +#: frappe/app.py:399 msgid "Uncaught Exception" msgstr "Ofångat Undantag" @@ -27641,7 +27754,7 @@ msgstr "Ångra" msgid "Undo last action" msgstr "Ångra Senaste Åtgärd" -#: frappe/database/query.py:1495 +#: frappe/database/query.py:1497 msgid "Unescaped quotes in string literal: {0}" msgstr "Oescapede citattecken i sträng literal: {0}" @@ -27690,7 +27803,7 @@ msgstr "Okänd Kolumn: {0}" msgid "Unknown Rounding Method: {}" msgstr "Okänd Avrundning Sätt: {}" -#: frappe/auth.py:316 +#: frappe/auth.py:319 msgid "Unknown User" msgstr "Okänd Användare" @@ -27756,8 +27869,8 @@ msgstr "Avregistrering Parameter" msgid "Unsubscribed" msgstr "Avregistrerad" -#: frappe/database/query.py:653 frappe/database/query.py:1387 -#: frappe/database/query.py:1397 +#: frappe/database/query.py:655 frappe/database/query.py:1389 +#: frappe/database/query.py:1399 msgid "Unsupported function or invalid field name: {0}" msgstr "Funktion som inte stöds eller ogiltigt fältnamn: {0}" @@ -27791,7 +27904,7 @@ msgstr "Uppkommande Händelser för Idag" #: 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:427 +#: frappe/public/js/frappe/form/grid_row.js:428 msgid "Update" msgstr "Uppdatera" @@ -27825,6 +27938,11 @@ msgstr "Uppdatera Order" msgid "Update Password" msgstr "Uppdatera lösenord" +#. Title of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Update Profile" +msgstr "Uppdatera Profil" + #. Label of the update_series (Section Break) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -28040,11 +28158,7 @@ msgstr "Använda annan E-post " msgid "Use if the default settings don't seem to detect your data correctly" msgstr "Använd om standard inställningar inte kan identifiera din data korrekt" -#: frappe/model/db_query.py:436 -msgid "Use of function {0} in field is restricted" -msgstr "Användning av funktion {0} i fält är begränsad" - -#: frappe/model/db_query.py:413 +#: frappe/model/db_query.py:411 msgid "Use of sub-query or function is restricted" msgstr "Användning av underfråga eller funktion är begränsad" @@ -28266,12 +28380,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:1944 +#: frappe/public/js/frappe/views/reports/query_report.js:1952 #: frappe/public/js/frappe/views/reports/report_view.js:1761 msgid "User Permissions" msgstr "Användare Behörigheter" -#: frappe/public/js/frappe/list/list_view.js:1922 +#: frappe/public/js/frappe/list/list_view.js:1924 msgctxt "Button in list view menu" msgid "User Permissions" msgstr "Användare Behörigheter" @@ -28415,7 +28529,7 @@ msgstr "Användare {0} efterliknade som {1}" msgid "User {0} is disabled" msgstr "Användare {0} är inaktiverad" -#: frappe/sessions.py:242 +#: frappe/sessions.py:243 msgid "User {0} is disabled. Please contact your System Manager." msgstr "Användare {0} är inaktiverad. Kontakta System Ansvarig." @@ -28592,7 +28706,7 @@ msgstr "Värde kan inte vara negativ för {0}: {1}" msgid "Value for a check field can be either 0 or 1" msgstr "Värde för ett kontroll fält kan vara antingen 0 eller 1" -#: frappe/custom/doctype/customize_form/customize_form.py:612 +#: frappe/custom/doctype/customize_form/customize_form.py:616 msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters" msgstr "Värde för fält {0} är för lång i {1}. Längd ska vara mindre än {2} tecken" @@ -28713,7 +28827,7 @@ msgstr "Visa Alla" msgid "View Audit Trail" msgstr "Visa Audit Spår" -#: frappe/core/doctype/user/user.js:156 +#: frappe/core/doctype/user/user.js:144 msgid "View Doctype Permissions" msgstr "Visa Doctype Behörigheter" @@ -28725,7 +28839,7 @@ msgstr "Visa Fil" msgid "View Full Log" msgstr "Visa Full Logg" -#: frappe/public/js/frappe/views/treeview.js:484 +#: frappe/public/js/frappe/views/treeview.js:486 #: frappe/public/js/frappe/widgets/quick_list_widget.js:258 msgid "View List" msgstr "Visa Lista" @@ -28735,7 +28849,7 @@ msgstr "Visa Lista" msgid "View Log" msgstr "Visa Logg" -#: frappe/core/doctype/user/user.js:147 +#: frappe/core/doctype/user/user.js:135 #: frappe/core/doctype/user_permission/user_permission.js:24 msgid "View Permitted Documents" msgstr "Visa Behöriga Dokument" @@ -28851,6 +28965,7 @@ msgid "Warehouse" msgstr "Lager" #. Option for the 'Style' (Select) field in DocType 'Workflow State' +#: frappe/public/js/frappe/router.js:613 #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Warning" msgstr "Varning" @@ -29496,7 +29611,7 @@ msgstr "Arbetsflöde är uppdaterad" msgid "Workspace" msgstr "Arbetsyta" -#: frappe/public/js/frappe/router.js:175 +#: frappe/public/js/frappe/router.js:180 msgid "Workspace {0} does not exist" msgstr "Arbetsyta {0} finns inte" @@ -29618,7 +29733,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:1225 +#: frappe/public/js/frappe/views/reports/query_report.js:1233 msgid "Y Field" msgstr "Y Fält" @@ -29680,7 +29795,7 @@ msgstr "Gul" #: frappe/public/js/form_builder/utils.js:336 #: frappe/public/js/frappe/form/controls/link.js:498 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1665 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 #: frappe/website/doctype/help_article/templates/help_article.html:25 msgid "Yes" msgstr "Ja" @@ -29716,6 +29831,10 @@ msgstr "Du lade till 1 rad till {0}" msgid "You added {0} rows to {1}" msgstr "Du lade till {0} rader till {1}" +#: frappe/public/js/frappe/router.js:642 +msgid "You are about to open an external link. To confirm, click the link again." +msgstr "Du är på väg att öppna extern länk. Klicka på länk igen för att bekräfta." + #: frappe/public/js/frappe/dom.js:438 msgid "You are connected to internet." msgstr "Ansluten till Nätverk." @@ -29759,7 +29878,7 @@ msgstr "Du har inte behörighet att redigera rapport." msgid "You are not allowed to export {} doctype" msgstr "Du har inte behörighet att exportera {} doctype" -#: frappe/public/js/frappe/views/treeview.js:448 +#: frappe/public/js/frappe/views/treeview.js:450 msgid "You are not allowed to print this report" msgstr "Du har inte behörighet att skriva ut denna rapport" @@ -29767,7 +29886,7 @@ msgstr "Du har inte behörighet att skriva ut denna rapport" 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" -#: frappe/website/doctype/web_form/web_form.py:605 +#: frappe/website/doctype/web_form/web_form.py:632 msgid "You are not allowed to update this Web Form Document" msgstr "Du har inte behörighet att uppdatera denna Webb Formulär Dokument" @@ -29840,11 +29959,11 @@ msgstr "Ändra lagring regel från {0}." msgid "You can continue with the onboarding after exploring this page" msgstr "Du kan fortsätta med Introduktion efter att utforskning av denna sida" -#: frappe/model/delete_doc.py:137 +#: frappe/model/delete_doc.py:177 msgid "You can disable this {0} instead of deleting it." msgstr "Du kan inaktivera denna {0} istället för att ta bort." -#: frappe/core/doctype/file/file.py:758 +#: frappe/core/doctype/file/file.py:761 msgid "You can increase the limit from System Settings." msgstr "Du kan öka gräns från System Inställningar." @@ -29894,11 +30013,11 @@ msgstr "Använd Anpassa Formulär för att ange nivåer på fält." msgid "You can use wildcard %" msgstr "Du kan använda jokertecken %" -#: frappe/custom/doctype/customize_form/customize_form.py:390 +#: frappe/custom/doctype/customize_form/customize_form.py:394 msgid "You can't set 'Options' for field {0}" msgstr "Du kan inte ange 'Alternativ' för fält {0}" -#: frappe/custom/doctype/customize_form/customize_form.py:394 +#: frappe/custom/doctype/customize_form/customize_form.py:398 msgid "You can't set 'Translatable' for field {0}" msgstr "Du kan inte ange 'Översättningbar' för fält {0}" @@ -29916,7 +30035,7 @@ msgstr "Du annullerade detta dokument {1}" msgid "You cannot create a dashboard chart from single DocTypes" msgstr "Du kan inte skapa Översikt Panel Diagram från Enskilda DocTypes" -#: frappe/custom/doctype/customize_form/customize_form.py:386 +#: frappe/custom/doctype/customize_form/customize_form.py:390 msgid "You cannot unset 'Read Only' for field {0}" msgstr "Du kan inte ändra 'Skrivskyddad' för fält {0}" @@ -29959,11 +30078,11 @@ 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:381 +#: frappe/app.py:384 msgid "You do not have enough permissions to complete the action" msgstr "Du har inte behörighet att slutföra åtgärd" -#: frappe/database/query.py:529 +#: frappe/database/query.py:531 msgid "You do not have permission to access field: {0}" msgstr "Du har inte åtkomstbehörighet till fält: {0}" @@ -29979,7 +30098,7 @@ msgstr "Du har inte behörighet att annullera alla länkade dokument." msgid "You don't have access to Report: {0}" msgstr "Du har inte behörighet till Rapport: {0}" -#: frappe/website/doctype/web_form/web_form.py:808 +#: frappe/website/doctype/web_form/web_form.py:835 msgid "You don't have permission to access the {0} DocType." msgstr "Du har inte behörighet att komma åt {0} DocType." @@ -30003,7 +30122,7 @@ msgstr "Du har ny meddelande från:" msgid "You have been successfully logged out" msgstr "Du är utloggad nu." -#: frappe/custom/doctype/customize_form/customize_form.py:245 +#: frappe/custom/doctype/customize_form/customize_form.py:247 msgid "You have hit the row size limit on database table: {0}" msgstr "Du har nått gräns för radstorlek i databas tabell: {0}" @@ -30031,7 +30150,7 @@ msgstr "Visa {0}" msgid "You haven't added any Dashboard Charts or Number Cards yet." msgstr "Du har inte lagt till några Översiktpanel Diagram eller Nummerkort än." -#: frappe/public/js/frappe/list/list_view.js:501 +#: frappe/public/js/frappe/list/list_view.js:503 msgid "You haven't created a {0} yet" msgstr "Ingen {0} skapad än" @@ -30048,11 +30167,11 @@ msgstr "Du ändrade detta" msgid "You must add atleast one link." msgstr "Du måste lägga till minst en länk." -#: frappe/website/doctype/web_form/web_form.py:804 +#: frappe/website/doctype/web_form/web_form.py:831 msgid "You must be logged in to use this form." msgstr "Du måste vara inloggad för att använda detta formulär." -#: frappe/website/doctype/web_form/web_form.py:645 +#: frappe/website/doctype/web_form/web_form.py:672 msgid "You must login to submit this form" msgstr "Du måste logga in för att godkänna detta formulär" @@ -30167,6 +30286,10 @@ msgstr "Du slutade följa detta dokument" msgid "You viewed this" msgstr "Du visade detta" +#: frappe/public/js/frappe/router.js:653 +msgid "You will be redirected to:" +msgstr "Du kommer att omdirigeras till:" + #: frappe/core/doctype/user_invitation/user_invitation.py:113 msgid "You've been invited to join {0}" msgstr "Du har blivit inbjuden att gå med {0}" @@ -30212,7 +30335,7 @@ msgstr "Genvägar" msgid "Your account has been deleted" msgstr "Ditt konto är borttagen" -#: frappe/auth.py:514 +#: frappe/auth.py:517 msgid "Your account has been locked and will resume after {0} seconds" msgstr "Konto är låst och kommer att låsas upp efter {0} sekunder" @@ -30268,7 +30391,7 @@ msgstr "Ditt gamla lösenord är felaktig." #. 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Your organization name and address for the email footer." -msgstr "Bolag Namn och Adress för E-post Sidfot." +msgstr "Bolag Namn och Adress för E-post Signatur." #: 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." @@ -30278,7 +30401,7 @@ msgstr "Din fråga har mottagits. Vi kommer att svara inom kort. Om du har någo msgid "Your report is being generated in the background. You will receive an email on {0} with a download link once it is ready." msgstr "Din rapport håller på att skapas i bakgrunden. Du kommer att få e-postmeddelande {0} med nedladdningslänk när den är klar." -#: frappe/app.py:374 +#: frappe/app.py:377 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." @@ -30615,7 +30738,7 @@ msgstr "lista" msgid "logged in" msgstr "inloggad" -#: frappe/website/doctype/web_form/web_form.js:362 +#: frappe/website/doctype/web_form/web_form.js:363 msgid "login_required" msgstr "Inloggning Erfordras " @@ -30953,7 +31076,7 @@ msgstr "via Data Import" msgid "via Google Meet" msgstr "via Google Meet" -#: frappe/email/doctype/notification/notification.py:403 +#: frappe/email/doctype/notification/notification.py:405 msgid "via Notification" msgstr "via Avisering" @@ -31063,7 +31186,7 @@ msgstr "{0} Diagram" msgid "{0} Dashboard" msgstr "{0} Översikt Panel" -#: frappe/public/js/frappe/form/grid_row.js:486 +#: frappe/public/js/frappe/form/grid_row.js:487 #: frappe/public/js/frappe/list/list_settings.js:225 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:178 msgid "{0} Fields" @@ -31114,7 +31237,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:956 +#: frappe/public/js/frappe/views/reports/query_report.js:964 msgid "{0} Reports" msgstr "{0} Rapporter" @@ -31187,7 +31310,7 @@ msgctxt "Form timeline" msgid "{0} attached {1}" msgstr "{0} bifogade {1}" -#: frappe/core/doctype/system_settings/system_settings.py:152 +#: frappe/core/doctype/system_settings/system_settings.py:153 msgid "{0} can not be more than {1}" msgstr "{0} kan inte vara fler än {1}" @@ -31264,7 +31387,7 @@ 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 +#: frappe/database/query.py:710 msgid "{0} fields cannot contain backticks (`): {1}" msgstr "{0} fält får inte innehålla bakåttecken (`): {1}" @@ -31309,7 +31432,7 @@ msgstr "{0} på rad {1} inte kan ha både URL och under artiklar" msgid "{0} is a mandatory field" msgstr "{0} är erfordrad fält" -#: frappe/core/doctype/file/file.py:566 +#: frappe/core/doctype/file/file.py:569 msgid "{0} is a not a valid zip file" msgstr "{0} är inte giltig zip fil" @@ -31358,7 +31481,7 @@ msgstr "{0} är som {1}" msgid "{0} is mandatory" msgstr "{0} är erfodrad" -#: frappe/database/query.py:485 +#: frappe/database/query.py:487 msgid "{0} is not a child table of {1}" msgstr "{0} är inte undertabell till {1}" @@ -31378,7 +31501,7 @@ msgstr "{0} är inte giltig Kalender. Omdirigerar till standard Kalender." msgid "{0} is not a valid Cron expression." msgstr "{0} är inte giltigt Cron uttryck" -#: frappe/public/js/frappe/form/controls/dynamic_link.js:27 +#: frappe/public/js/frappe/form/controls/dynamic_link.js:23 msgid "{0} is not a valid DocType for Dynamic Link" msgstr "{0} är inte en giltig DocType för Dynamisk Länk" @@ -31415,7 +31538,7 @@ msgstr "{0} är inte ett giltigt överordnat fält för {1}" msgid "{0} is not a valid report format. Report format should one of the following {1}" msgstr "{0} är inte ett giltigt rapport format. Rapport Format ska vara en av följande {1}" -#: frappe/core/doctype/file/file.py:546 +#: frappe/core/doctype/file/file.py:549 msgid "{0} is not a zip file" msgstr "{0} är inte en zip-fil" @@ -31463,7 +31586,7 @@ msgstr "{0} är angiven" msgid "{0} is within {1}" msgstr "{0} är inom {1}" -#: frappe/public/js/frappe/list/list_view.js:1839 +#: frappe/public/js/frappe/list/list_view.js:1841 msgid "{0} items selected" msgstr "{0} artiklar valda" @@ -31549,11 +31672,11 @@ msgid "{0} not found" msgstr "{0} hittades inte" #: frappe/core/doctype/report/report.py:427 -#: frappe/public/js/frappe/list/list_view.js:1211 +#: frappe/public/js/frappe/list/list_view.js:1213 msgid "{0} of {1}" msgstr "{0} av {1}" -#: frappe/public/js/frappe/list/list_view.js:1213 +#: frappe/public/js/frappe/list/list_view.js:1215 msgid "{0} of {1} ({2} rows with children)" msgstr "{0} av {1} ({2} rader med underordnade)" @@ -31603,7 +31726,7 @@ msgstr "{0} tog bort sin tilldelning." msgid "{0} removed {1} rows from {2}" msgstr "{0} tog bort {1} rader från {2}" -#: frappe/public/js/frappe/roles_editor.js:62 +#: frappe/public/js/frappe/roles_editor.js:64 msgid "{0} role does not have permission on any doctype" msgstr "{0} roll har inte tillstånd på någon doctype" @@ -31677,7 +31800,7 @@ msgstr "{0} till {1}" msgid "{0} un-shared this document with {1}" msgstr "{0} slutade dela detta dokument med {1}" -#: frappe/custom/doctype/customize_form/customize_form.py:254 +#: frappe/custom/doctype/customize_form/customize_form.py:256 msgid "{0} updated" msgstr "{0} uppdaterat" @@ -31737,7 +31860,7 @@ msgstr "{0} {1} är länkad till följande godkända dokument: {2}" msgid "{0} {1} not found" msgstr "{0} {1} hittades inte" -#: frappe/model/delete_doc.py:248 +#: frappe/model/delete_doc.py:288 msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first." msgstr "{0} {1}: Godkänd Post kan inte tas bort. Du måste {2} Annullera {3} det först." @@ -31850,7 +31973,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:1283 +#: frappe/public/js/frappe/views/reports/query_report.js:1291 msgid "{0}: {1} vs {2}" msgstr "{0}: {1} mot {2}" @@ -31886,11 +32009,11 @@ msgstr "{{{0}}} är inte giltigt fältnamn mönster. Det borde vara {{field_name msgid "{} Complete" msgstr "{} Klar" -#: frappe/utils/data.py:2541 +#: frappe/utils/data.py:2567 msgid "{} Invalid python code on line {}" msgstr "{} Ogiltig python kod på rad {}" -#: frappe/utils/data.py:2550 +#: frappe/utils/data.py:2576 msgid "{} Possibly invalid python code.
{}" msgstr "{} Möjligen ogiltig python kod.
{}" @@ -31916,7 +32039,7 @@ msgstr "{} är inaktiverad. Den kan bara aktiveras om {} är markerad." msgid "{} is not a valid date string." msgstr "{} är inte giltig datum sträng." -#: frappe/commands/utils.py:562 +#: frappe/commands/utils.py:561 msgid "{} not found in PATH! This is required to access the console." msgstr "{} hittades inte i Sökväg! Detta erfordras för att komma åt konsol." diff --git a/frappe/locale/ta.po b/frappe/locale/ta.po new file mode 100644 index 0000000000..29ce1dbd7f --- /dev/null +++ b/frappe/locale/ta.po @@ -0,0 +1,31819 @@ +msgid "" +msgstr "" +"Project-Id-Version: frappe\n" +"Report-Msgid-Bugs-To: developers@frappe.io\n" +"POT-Creation-Date: 2025-10-05 09:33+0000\n" +"PO-Revision-Date: 2025-10-06 22:59\n" +"Last-Translator: developers@frappe.io\n" +"Language-Team: Tamil\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.16.0\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Crowdin-Project: frappe\n" +"X-Crowdin-Project-ID: 639578\n" +"X-Crowdin-Language: ta\n" +"X-Crowdin-File: /[frappe.frappe] develop/frappe/locale/main.pot\n" +"X-Crowdin-File-ID: 52\n" +"Language: ta_IN\n" + +#. Option for the 'Condition' (Select) field in DocType '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' +#: frappe/website/doctype/about_us_settings/about_us_settings.json +msgid "\"Company History\"" +msgstr "\"நிறுவன வரலாறு\"" + +#: frappe/core/doctype/data_export/exporter.py:202 +msgid "\"Parent\" signifies the parent table in which this row must be added" +msgstr "" + +#. Description 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\" or \"Management\"" +msgstr "\"குழு உறுப்பினர்கள்\" அல்லது \"நிர்வாகம்\"" + +#: frappe/public/js/frappe/form/form.js:1090 +msgid "\"amended_from\" field must be present to do an amendment." +msgstr "" + +#: frappe/utils/csvutils.py:246 +msgid "\"{0}\" is not a valid Google Sheets URL" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/tag_utils.js:21 +#: frappe/public/js/frappe/ui/toolbar/tag_utils.js:22 +msgid "#{0}" +msgstr "" + +#: 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 "" + +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +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 "" + +#: frappe/core/doctype/doctype/doctype.py:1355 +msgid "'In Global Search' not allowed for type {0} in row {1}" +msgstr "" + +#: frappe/public/js/form_builder/store.js:198 +msgid "'In List View' is not allowed for field {0} of type {1}" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.py:367 +msgid "'In List View' not allowed for type {0} in row {1}" +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:164 +msgid "'Recipients' not specified" +msgstr "" + +#: frappe/utils/__init__.py:271 +msgid "'{0}' is not a valid IBAN" +msgstr "" + +#: frappe/utils/__init__.py:261 +msgid "'{0}' is not a valid URL" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1349 +msgid "'{0}' not allowed for type {1} in row {2}" +msgstr "" + +#: frappe/public/js/frappe/data_import/data_exporter.js:302 +msgid "(Mandatory)" +msgstr "" + +#: frappe/model/rename_doc.py:703 +msgid "** Failed: {0} to {1}: {2}" +msgstr "" + +#: frappe/public/js/frappe/list/list_settings.js:133 +#: 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' +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json +msgid "0 - Draft; 1 - Submitted; 2 - Cancelled" +msgstr "" + +#. Description of the 'Priority' (Int) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "0 is highest" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row.js:893 +msgid "1 = True & 0 = False" +msgstr "" + +#. Description of the 'Fraction Units' (Int) field in DocType 'Currency' +#: frappe/geo/doctype/currency/currency.json +msgid "1 Currency = [?] Fraction\n" +"For e.g. 1 USD = 100 Cent" +msgstr "" + +#: frappe/public/js/frappe/form/reminders.js:19 +msgid "1 Day" +msgstr "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:374 +msgid "1 Google Calendar Event synced." +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:963 +msgid "1 Report" +msgstr "" + +#: frappe/tests/test_utils.py:845 +msgid "1 day ago" +msgstr "1 நாள் முன்பு" + +#: frappe/public/js/frappe/form/reminders.js:17 +msgid "1 hour" +msgstr "1 மணி நேரம்" + +#: frappe/public/js/frappe/utils/pretty_date.js:52 +#: frappe/tests/test_utils.py:843 +msgid "1 hour ago" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:48 +#: frappe/tests/test_utils.py:841 +msgid "1 minute ago" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:66 +#: frappe/tests/test_utils.py:849 +msgid "1 month ago" +msgstr "" + +#: 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 "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:320 +msgctxt "User removed row from child table" +msgid "1 row from {0}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:275 +msgctxt "User added row to child table" +msgid "1 row to {0}" +msgstr "" + +#: frappe/tests/test_utils.py:840 +msgid "1 second ago" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:62 +#: frappe/tests/test_utils.py:847 +msgid "1 week ago" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:70 +#: frappe/tests/test_utils.py:851 +msgid "1 year ago" +msgstr "" + +#: frappe/tests/test_utils.py:844 +msgid "2 hours ago" +msgstr "" + +#: frappe/tests/test_utils.py:850 +msgid "2 months ago" +msgstr "" + +#: frappe/tests/test_utils.py:848 +msgid "2 weeks ago" +msgstr "" + +#: frappe/tests/test_utils.py:852 +msgid "2 years ago" +msgstr "" + +#: frappe/tests/test_utils.py:842 +msgid "3 minutes ago" +msgstr "" + +#: frappe/public/js/frappe/form/reminders.js:16 +msgid "30 minutes" +msgstr "" + +#: frappe/public/js/frappe/form/reminders.js:18 +msgid "4 hours" +msgstr "" + +#: frappe/public/js/frappe/data_import/data_exporter.js:37 +msgid "5 Records" +msgstr "" + +#: frappe/tests/test_utils.py:846 +msgid "5 days ago" +msgstr "" + +#: frappe/desk/doctype/bulk_update/bulk_update.py:36 +msgid "; not allowed in condition" +msgstr "" + +#. Option for the 'Condition' (Select) field in DocType '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' +#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json +msgid "<=" +msgstr "" + +#. Description of the 'Generate Keys' (Button) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "\n" +" Click here to learn about token-based authentication\n" +"" +msgstr "" + +#: 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' +#: 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 "" + +#. Introduction text of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "

Request a file containing your personally identifiable information (PII) that is saved on our system. The file will be in JSON format and is sent to you by email. If you would like to have your PII deleted from our system, please make a request to delete data.

" +msgstr "" + +#. Introduction text of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "

Send a request to delete your account and personally identifiable information (PII) that is stored on our system. You will receive an email to verify your request. Once the request is verified we will take care of deleting your PII. If you just want to check what PII we have stored, you can request your data.

" +msgstr "" + +#. Content of the 'Help HTML' (HTML) field in DocType 'Document Naming +#. Settings' +#: 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" +"
  • Allowed special characters are \"/\" and \"-\"
  • \n" +"
  • \n" +" Optionally, set the number of digits in the series using dot (.)\n" +" followed by hashes (#). For example, \".####\" means that the series\n" +" will have four digits. Default is five digits.\n" +"
  • \n" +"
  • \n" +" You can also use variables in the series name by putting them\n" +" between (.) dots\n" +"
    \n" +" Supported Variables:\n" +"
      \n" +"
    • .YYYY. - Year in 4 digits
    • \n" +"
    • .YY. - Year in 2 digits
    • \n" +"
    • .MM. - Month
    • \n" +"
    • .DD. - Day of month
    • \n" +"
    • .WW. - Week of the 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" +" Examples:\n" +"
    \n" +"
  • INV-
  • \n" +"
  • INV-10-
  • \n" +"
  • INVK-
  • \n" +"
  • INV-.YYYY.-.{branch}.-.MM.-.####
  • \n" +"
\n" +"
\n" +"
\n" +msgstr "" + +#. Content of the 'Custom HTML Help' (HTML) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "

Custom CSS Help

\n\n" +"

Notes:

\n\n" +"
    \n" +"
  1. All field groups (label + value) are set attributes data-fieldtype and data-fieldname
  2. \n" +"
  3. All values are given class value
  4. \n" +"
  5. All Section Breaks are given class section-break
  6. \n" +"
  7. All Column Breaks are given class column-break
  8. \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' +#: frappe/printing/doctype/print_format/print_format.json +#, python-format +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" +"

For styling, the Boostrap CSS framework is provided and you can enjoy the full range of classes.

\n" +"
\n" +"

References

\n" +"
    \n" +"\t
  1. Jinja Templating Language
  2. \n" +"\t
  3. Bootstrap CSS Framework
  4. \n" +"
\n" +"
\n" +"

Example

\n" +"
<h3>{{ doc.select_print_heading or \"Invoice\" }}</h3>\n"
+"<div class=\"row\">\n"
+"\t<div class=\"col-md-3 text-right\">Customer Name</div>\n"
+"\t<div class=\"col-md-9\">{{ doc.customer_name }}</div>\n"
+"</div>\n"
+"<div class=\"row\">\n"
+"\t<div class=\"col-md-3 text-right\">Date</div>\n"
+"\t<div class=\"col-md-9\">{{ doc.get_formatted(\"invoice_date\") }}</div>\n"
+"</div>\n"
+"<table class=\"table table-bordered\">\n"
+"\t<tbody>\n"
+"\t\t<tr>\n"
+"\t\t\t<th>Sr</th>\n"
+"\t\t\t<th>Item Name</th>\n"
+"\t\t\t<th>Description</th>\n"
+"\t\t\t<th class=\"text-right\">Qty</th>\n"
+"\t\t\t<th class=\"text-right\">Rate</th>\n"
+"\t\t\t<th class=\"text-right\">Amount</th>\n"
+"\t\t</tr>\n"
+"\t\t{%- for row in doc.items -%}\n"
+"\t\t<tr>\n"
+"\t\t\t<td style=\"width: 3%;\">{{ row.idx }}</td>\n"
+"\t\t\t<td style=\"width: 20%;\">\n"
+"\t\t\t\t{{ row.item_name }}\n"
+"\t\t\t\t{% if row.item_code != row.item_name -%}\n"
+"\t\t\t\t<br>Item Code: {{ row.item_code}}\n"
+"\t\t\t\t{%- endif %}\n"
+"\t\t\t</td>\n"
+"\t\t\t<td style=\"width: 37%;\">\n"
+"\t\t\t\t<div style=\"border: 0px;\">{{ row.description }}</div></td>\n"
+"\t\t\t<td style=\"width: 10%; text-align: right;\">{{ row.qty }} {{ row.uom or row.stock_uom }}</td>\n"
+"\t\t\t<td style=\"width: 15%; text-align: right;\">{{\n"
+"\t\t\t\trow.get_formatted(\"rate\", doc) }}</td>\n"
+"\t\t\t<td style=\"width: 15%; text-align: right;\">{{\n"
+"\t\t\t\trow.get_formatted(\"amount\", doc) }}</td>\n"
+"\t\t</tr>\n"
+"\t\t{%- endfor -%}\n"
+"\t</tbody>\n"
+"</table>
\n" +"
\n" +"

Common Functions

\n" +"\n" +"\t\n" +"\t\t\n" +"\t\t\t\n" +"\t\t\t\n" +"\t\t\n" +"\t\t\n" +"\t\t\t\n" +"\t\t\t\n" +"\t\t\n" +"\t\n" +"
doc.get_formatted(\"[fieldname]\", [parent_doc])Get document value formatted as Date, Currency, etc. Pass parent doc for currency type fields.
frappe.db.get_value(\"[doctype]\", \"[name]\", \"fieldname\")Get value from another document.
\n" +msgstr "" + +#. Description of the 'Template' (Code) field in DocType 'Address Template' +#: frappe/contacts/doctype/address_template/address_template.json +#, python-format +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"
+"{{ city }}<br>\n"
+"{% if state %}{{ state }}<br>{% endif -%}\n"
+"{% if pincode %} PIN:  {{ pincode }}<br>{% endif -%}\n"
+"{{ country }}<br>\n"
+"{% if phone %}Phone: {{ phone }}<br>{% endif -%}\n"
+"{% if fax %}Fax: {{ fax }}<br>{% endif -%}\n"
+"{% if email_id %}Email: {{ email_id }}<br>{% endif -%}\n"
+"
" +msgstr "" + +#. Content of the 'Email Reply Help' (HTML) field in DocType 'Email Template' +#: 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" +"

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' +#: frappe/core/doctype/data_import/data_import.json +msgid "
Or
" +msgstr "" + +#. Content of the 'Message Examples' (HTML) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +#, python-format +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"
+"<ul>\n"
+"<li>Customer: {{ doc.customer }}\n"
+"<li>Amount: {{ doc.grand_total }}\n"
+"</ul>\n"
+"
" +msgstr "" + +#. Content of the 'html_condition' (HTML) field in DocType 'Webhook' +#: 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' +#: 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' +#: 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' +#: 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' +#: 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 "" + +#: frappe/twofactor.py:451 +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' +#. Description 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 "
*  *  *  *  *\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 "" + +#. Content of the 'Example' (HTML) field in DocType 'Workflow Transition' +#: 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" +"
  • frappe.db.get_value
  • \n" +"
  • frappe.db.get_list
  • \n" +"
  • frappe.session
  • \n" +"
  • frappe.utils.now_datetime
  • \n" +"
  • frappe.utils.get_datetime
  • \n" +"
  • frappe.utils.add_to_date
  • \n" +"
  • frappe.utils.now
  • \n" +"
\n" +"

Example:

doc.creation > frappe.utils.add_to_date(frappe.utils.now_datetime(), days=-5, as_string=True, as_datetime=True) 

" +msgstr "" + +#. 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' +#: 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' +#: 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' +#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json +msgid ">=" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1035 +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 "" + +#. Success message of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "A download link with your data will be sent to the email address associated with your account." +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.py:175 +msgid "A field with the name {0} already exists in {1}" +msgstr "" + +#: frappe/core/doctype/file/file.py:269 +msgid "A file with same name {} already exists" +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.
e.g. project" +msgstr "" + +#: frappe/templates/emails/new_user.html:5 +msgid "A new account has been created for you at {0}" +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:431 +msgid "A recurring {0} {1} has been created for you via Auto Repeat {2}." +msgstr "" + +#. Description of the 'Symbol' (Data) field in DocType 'Currency' +#: frappe/geo/doctype/currency/currency.json +msgid "A symbol for this currency. For e.g. $" +msgstr "" + +#: frappe/printing/doctype/print_format_field_template/print_format_field_template.py:49 +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 "" + +#. Option for the 'PDF Page Size' (Select) field in DocType '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' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "A1" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType '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' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "A3" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "A4" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType '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' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "A6" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType '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' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "A8" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType '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' +#: frappe/email/doctype/email_account/email_account.json +msgid "ALL" +msgstr "" + +#. Option for the 'Script Type' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "API" +msgstr "" + +#. Label of the api_access (Section Break) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "API Access" +msgstr "" + +#. 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 "" + +#. 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 "" + +#: frappe/integrations/doctype/social_login_key/social_login_key.py:102 +msgid "API Endpoint Args should be valid JSON" +msgstr "" + +#. 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.js:459 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 "" + +#. 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' +#: frappe/core/doctype/user/user.json +msgid "API Key cannot be regenerated" +msgstr "" + +#: frappe/core/doctype/user/user.js:456 +msgid "API Keys" +msgstr "" + +#. 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 "" + +#. 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.js:466 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 "" + +#. Option for the 'Default Sort Order' (Select) field in DocType '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 "" + +#. Label of a standard help item +#. Type: Action +#: frappe/hooks.py +msgid "About" +msgstr "" + +#: frappe/www/about.html:11 frappe/www/about.html:18 +msgid "About Us" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Website Workspace +#: frappe/website/doctype/about_us_settings/about_us_settings.json +#: frappe/website/workspace/website/website.json +msgid "About Us Settings" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/about_us_team_member/about_us_team_member.json +msgid "About Us Team Member" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:27 +msgid "About {0} minute remaining" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:28 +msgid "About {0} minutes remaining" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:25 +msgid "About {0} seconds remaining" +msgstr "" + +#: frappe/templates/emails/user_invitation.html:16 +msgid "Accept Invitation" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Accepted" +msgstr "" + +#. Label of the accepted_at (Datetime) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Accepted At" +msgstr "" + +#. 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 +#. Label of a Link in the Users Workspace +#: frappe/core/doctype/access_log/access_log.json +#: frappe/core/workspace/users/users.json +msgid "Access Log" +msgstr "" + +#. 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 "" + +#. 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 "" + +#: frappe/auth.py:494 +msgid "Access not allowed from this IP Address" +msgstr "" + +#. Label of the account_section (Section Break) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Account" +msgstr "" + +#. 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 +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/contacts/doctype/contact/contact.json +#: frappe/geo/doctype/currency/currency.json +msgid "Accounts Manager" +msgstr "" + +#. Name of a role +#: 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 "" + +#: 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 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 "" + +#. Label of the action (Small Text) field in DocType 'DocType Action' +#: frappe/core/doctype/doctype_action/doctype_action.json +msgid "Action / Route" +msgstr "" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:305 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:376 +msgid "Action Complete" +msgstr "" + +#: frappe/model/document.py:1888 +msgid "Action Failed" +msgstr "" + +#. 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 the action_timeout (Int) field in DocType 'Success Action' +#: frappe/core/doctype/success_action/success_action.json +msgid "Action Timeout (Seconds)" +msgstr "" + +#. Label of the action_type (Select) field in DocType 'DocType Action' +#: frappe/core/doctype/doctype_action/doctype_action.json +msgid "Action Type" +msgstr "" + +#: frappe/core/doctype/submission_queue/submission_queue.py:120 +msgid "Action {0} completed successfully on {1} {2}. View it {3}" +msgstr "" + +#: frappe/core/doctype/submission_queue/submission_queue.py:116 +msgid "Action {0} failed on {1} {2}. View it {3}" +msgstr "" + +#. 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:850 +msgid "Actions" +msgstr "" + +#. Label of the activate (Check) field in DocType 'Package Import' +#: frappe/core/doctype/package_import/package_import.json +msgid "Activate" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Auto Repeat' +#. Option for the 'Status' (Select) field in DocType 'Kanban Board Column' +#. Option for the 'Status' (Select) field in DocType '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 "" + +#. Option for the 'Directory Server' (Select) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "Active Directory" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. Group in User's connections +#: 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 "" + +#. Name of a DocType +#. Label of a Link in the Build Workspace +#. Label of a Link in the Users Workspace +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/workspace/build/build.json +#: frappe/core/workspace/users/users.json +msgid "Activity Log" +msgstr "" + +#: 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:502 +#: 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 "" + +#: frappe/public/js/frappe/form/grid_row.js:455 +msgid "Add / Remove Columns" +msgstr "" + +#: frappe/core/doctype/user_permission/user_permission_list.js:4 +msgid "Add / Update" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager.js:442 +msgid "Add A New Rule" +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:601 +#: frappe/public/js/frappe/views/interaction.js:159 +msgid "Add Attachment" +msgstr "" + +#. 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 "" + +#. 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 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 "" + +#: frappe/desk/doctype/number_card/number_card.js:37 +msgid "Add Card to Dashboard" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:210 +msgid "Add Chart to Dashboard" +msgstr "" + +#: frappe/public/js/frappe/views/treeview.js:301 +msgid "Add Child" +msgstr "" + +#: frappe/public/js/frappe/views/kanban/kanban_board.html:4 +#: frappe/public/js/frappe/views/reports/query_report.js:1840 +#: frappe/public/js/frappe/views/reports/query_report.js:1843 +#: frappe/public/js/frappe/views/reports/report_view.js:360 +#: frappe/public/js/frappe/views/reports/report_view.js:385 +#: frappe/public/js/print_format_builder/Field.vue:112 +msgid "Add Column" +msgstr "" + +#: frappe/core/doctype/communication/communication.js:127 +msgid "Add Contact" +msgstr "" + +#: frappe/desk/doctype/event/event.js:38 +msgid "Add Contacts" +msgstr "" + +#. 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 "" + +#. 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 "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:188 +#: frappe/public/js/frappe/widgets/widget_dialog.js:716 +msgid "Add Filters" +msgstr "" + +#. 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 "" + +#: 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 "" + +#: frappe/core/doctype/recorder/recorder.js:30 +msgid "Add Indexes" +msgstr "" + +#: frappe/public/js/frappe/form/grid.js:66 +msgid "Add Multiple" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager.js:445 +msgid "Add New Permission Rule" +msgstr "" + +#: frappe/desk/doctype/event/event.js:35 frappe/desk/doctype/event/event.js:42 +msgid "Add Participants" +msgstr "" + +#. 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 "" + +#: frappe/core/doctype/user/user.py:819 +msgid "Add Roles" +msgstr "" + +#: 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 "" + +#. 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 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 "" + +#: frappe/email/doctype/email_group/email_group.js:38 +#: frappe/email/doctype/email_group/email_group.js:59 +msgid "Add Subscribers" +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:425 +msgid "Add Tags" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:2151 +msgctxt "Button in list view actions menu" +msgid "Add Tags" +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:433 +msgid "Add Template" +msgstr "" + +#. Label of the add_total_row (Check) field in DocType 'Report' +#: frappe/core/doctype/report/report.json +msgid "Add Total Row" +msgstr "" + +#. 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 "" + +#: frappe/core/doctype/user_permission/user_permission_list.js:6 +msgid "Add User Permissions" +msgstr "" + +#. Label of the add_video_conferencing (Check) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Add Video Conferencing" +msgstr "" + +#: 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 "" + +#: frappe/templates/includes/comments/comments.html:30 +#: frappe/templates/includes/comments/comments.html:47 +msgid "Add a comment" +msgstr "" + +#: 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 "" + +#: frappe/public/js/frappe/form/form.js:205 +msgid "Add a row at the bottom" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:201 +msgid "Add a row at the top" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:197 +msgid "Add a row below the current row" +msgstr "" + +#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:286 +msgid "Add a {0} Chart" +msgstr "" + +#: 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:18 +msgid "Add script for Child Table" +msgstr "" + +#: 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 "" + +#: frappe/public/js/frappe/form/sidebar/assign_to.js:99 +msgid "Add to ToDo" +msgstr "" + +#: frappe/website/doctype/website_slideshow/website_slideshow.js:32 +msgid "Add to table" +msgstr "" + +#: 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:289 +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' +#: 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 "" + +#: frappe/core/doctype/log_settings/log_settings.py:81 +msgid "Added default log doctypes: {}" +msgstr "" + +#: frappe/public/js/frappe/form/link_selector.js:180 +#: frappe/public/js/frappe/form/link_selector.js:202 +msgid "Added {0} ({1})" +msgstr "" + +#. 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 "" + +#. Name of a DocType +#. 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/contacts/report/addresses_and_contacts/addresses_and_contacts.py:46 +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Address" +msgstr "" + +#. 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/contacts/report/addresses_and_contacts/addresses_and_contacts.py:37 +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +msgid "Address Line 1" +msgstr "" + +#. 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/contacts/report/addresses_and_contacts/addresses_and_contacts.py:38 +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +msgid "Address Line 2" +msgstr "" + +#. Name of a DocType +#: frappe/contacts/doctype/address_template/address_template.json +msgid "Address Template" +msgstr "" + +#. 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 "" + +#: frappe/contacts/doctype/address/address.py:72 +msgid "Address Title is mandatory." +msgstr "" + +#. Label of the address_type (Select) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "Address Type" +msgstr "" + +#. Description of the 'Address' (Small Text) field in DocType '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 "" + +#: frappe/contacts/doctype/address/address.py:206 +msgid "Addresses" +msgstr "" + +#. Name of a report +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.json +msgid "Addresses And Contacts" +msgstr "" + +#. 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:561 +msgid "Administration" +msgstr "" + +#. Name of a role +#: 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/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 "" + +#: frappe/core/doctype/user/user.py:1226 +msgid "Administrator Logged In" +msgstr "" + +#: frappe/core/doctype/user/user.py:1220 +msgid "Administrator accessed {0} on {1} via IP Address {2}." +msgstr "" + +#: frappe/desk/form/document_follow.py:52 +msgid "Administrator can't follow" +msgstr "" + +#. 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 "" + +#. 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 "" + +#: frappe/public/js/frappe/form/controls/link.js:339 +#: frappe/public/js/frappe/form/controls/link.js:341 +msgid "Advanced Search" +msgstr "" + +#. Label of the sb_advanced (Section Break) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Advanced Settings" +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' +#: frappe/core/doctype/server_script/server_script.json +msgid "After Cancel" +msgstr "" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "After Delete" +msgstr "" + +#. Option for the 'DocType Event' (Select) field in DocType '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' +#: frappe/core/doctype/server_script/server_script.json +msgid "After Rename" +msgstr "" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "After Save" +msgstr "" + +#. 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' +#: frappe/core/doctype/server_script/server_script.json +msgid "After Submit" +msgstr "" + +#: frappe/desk/doctype/number_card/number_card.py:63 +msgid "Aggregate Field is required to create a number card" +msgstr "" + +#. 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 "" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:410 +msgid "Aggregate Function field is required to create a dashboard chart" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Notification Log' +#: frappe/desk/doctype/notification_log/notification_log.json +msgid "Alert" +msgstr "" + +#. Label of a Card Break in the Tools Workspace +#: frappe/automation/workspace/tools/tools.json +msgid "Alerts and Notifications" +msgstr "" + +#: frappe/database/query.py:1610 +msgid "Alias cannot be a SQL keyword: {0}" +msgstr "" + +#: frappe/database/query.py:1535 +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 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 "" + +#. 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 "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:479 +msgid "Align Value" +msgstr "" + +#. Name of a role +#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' +#. Option for the 'Event Frequency' (Select) field in DocType '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 "" + +#. 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 "" + +#: frappe/website/doctype/website_slideshow/website_slideshow.py:43 +msgid "All Images attached to Website Slideshow should be public" +msgstr "" + +#: frappe/public/js/frappe/data_import/data_exporter.js:29 +msgid "All Records" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:2224 +msgid "All Submissions" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:452 +msgid "All customizations will be removed. Please confirm." +msgstr "" + +#: 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' +#: 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 "" + +#: frappe/utils/password_strength.py:183 +msgid "All-uppercase is almost as easy to guess as all-lowercase." +msgstr "" + +#. Label of the allocated_to (Link) field in DocType 'ToDo' +#: frappe/desk/doctype/todo/todo.json +msgid "Allocated To" +msgstr "" + +#. Label of the allow (Link) field in DocType 'User Permission' +#. Option for the 'Sign ups' (Select) field in DocType '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 "" + +#: frappe/website/doctype/website_settings/website_settings.py:160 +msgid "Allow API Indexing Access" +msgstr "" + +#. 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 "" + +#. 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 "" + +#: frappe/integrations/doctype/google_contacts/google_contacts.py:40 +msgid "Allow Google Contacts Access" +msgstr "" + +#. Label of the allow_guest (Check) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Allow Guest" +msgstr "" + +#. Label of the allow_guest_to_view (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Allow Guest to View" +msgstr "" + +#. 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 "" + +#. 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 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 "" + +#. Label of the allow_print_for_draft (Check) field in DocType 'Print Settings' +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:438 +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Allow Print for Draft" +msgstr "" + +#. 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 "" + +#. Label of the allow_rename (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Allow Rename" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. 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' +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +msgid "Allow approval for creator of the document" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#. 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 the allow_multiple (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Allow multiple responses" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#. 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 +#. Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Allow saving if mandatory fields are not filled" +msgstr "" + +#: 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' +#: frappe/core/doctype/user/user.json +msgid "Allow user to login only after this hour (0-24)" +msgstr "" + +#. Description of the 'Login Before' (Int) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Allow user to login only before this hour (0-24)" +msgstr "" + +#. Description of the 'Login with email link' (Check) field in DocType '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 the allowed (Link) field in DocType 'Workflow Transition' +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +msgid "Allowed" +msgstr "" + +#. 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 the allowed_in_mentions (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Allowed In Mentions" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. 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:1034 +msgid "Already Registered" +msgstr "" + +#: frappe/desk/form/assign_to.py:137 +msgid "Already in the following Users ToDo list:{0}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:907 +msgid "Also adding the dependent currency field {0}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:920 +msgid "Also adding the status dependency field {0}" +msgstr "" + +#. Label of the login_id (Data) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Alternative Email ID" +msgstr "" + +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Always" +msgstr "" + +#. 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 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 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 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 "" + +#. Option for the 'Action' (Select) field in DocType 'Amended Document Naming +#. Settings' +#. Option for the 'Default Amendment Naming' (Select) field in DocType +#. '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 +#: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json +msgid "Amended Document Naming Settings" +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 "" + +#. Label of the amended_from (Link) field in DocType 'Personal Data Download +#. Request' +#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json +msgid "Amended From" +msgstr "" + +#: frappe/public/js/frappe/form/save.js:12 +msgctxt "Freeze message while amending a document" +msgid "Amending" +msgstr "" + +#. 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 "" + +#: 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 "" + +#. Success message of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "An email to verify your request has been sent to your email address. Please verify your request to complete the process." +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:354 +msgid "An error occurred while setting Session Defaults" +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 "" + +#: frappe/templates/includes/oauth_confirmation.html:38 +msgid "An unexpected error occurred while authorizing {}." +msgstr "" + +#. Label of the analytics_section (Section Break) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Analytics" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:35 +msgid "Ancestors Of" +msgstr "" + +#. 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' +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +msgid "Annual" +msgstr "" + +#. 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 the anonymous (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Anonymous responses" +msgstr "" + +#: frappe/public/js/frappe/request.js:189 +msgid "Another transaction is blocking this one. Please try again in a few seconds." +msgstr "" + +#: frappe/model/rename_doc.py:379 +msgid "Another {0} with name {1} exists, select another name" +msgstr "" + +#. 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 "" + +#: 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 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 the app_id (Data) field in DocType 'Google Settings' +#: frappe/integrations/doctype/google_settings/google_settings.json +msgid "App ID" +msgstr "" + +#. 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 "" + +#. Label of the app_name (Select) field in DocType 'Module Def' +#. Label of the app_name (Select) field in DocType 'User Invitation' +#. 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/core/doctype/user_invitation/user_invitation.json +#: frappe/desk/doctype/changelog_feed/changelog_feed.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:1113 +msgid "App {0} is not installed" +msgstr "" + +#. 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 "" + +#. 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 "" + +#: frappe/email/doctype/email_account/email_account.py:202 +msgid "Append To can be one of {0}" +msgstr "" + +#. Description of the 'Append To' (Link) field in DocType '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 "" + +#: frappe/core/doctype/user_permission/user_permission_list.js:105 +msgid "Applicable Document Types" +msgstr "" + +#. Label of the applicable_for (Link) field in DocType 'User Permission' +#: frappe/core/doctype/user_permission/user_permission.json +msgid "Applicable For" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. Label of the app_version (Data) field in DocType 'Installed Application' +#: frappe/core/doctype/installed_application/installed_application.json +msgid "Application Version" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:195 +msgid "Application is not installed" +msgstr "" + +#. Label of the doctype_or_field (Select) field in DocType 'Property Setter' +#: frappe/custom/doctype/property_setter/property_setter.json +msgid "Applied On" +msgstr "" + +#: frappe/public/js/form_builder/components/Field.vue:103 +msgid "Apply" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:2136 +msgctxt "Button in list view actions menu" +msgid "Apply Assignment Rule" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter_list.js:318 +msgid "Apply Filters" +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 "" + +#. Label of the view (Select) field in DocType 'Client Script' +#: frappe/custom/doctype/client_script/client_script.json +msgid "Apply To" +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 "" + +#. 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' +#. Description of the 'If user is the owner' (Check) field in DocType '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 "" + +#: frappe/core/doctype/user_permission/user_permission_list.js:75 +msgid "Apply to all Documents Types" +msgstr "" + +#: frappe/model/workflow.py:322 +msgid "Applying: {0}" +msgstr "" + +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:115 +msgid "Approval Required" +msgstr "" + +#. 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 "" + +#: frappe/public/js/frappe/views/kanban/kanban_column.html:14 +msgid "Archive" +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 "" + +#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:494 +msgid "Archived Columns" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.js:18 +msgid "Are you sure you want to cancel the invitation?" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:2115 +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 "" + +#: 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 "" + +#: 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:203 +msgid "Are you sure you want to delete this record?" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form.js:191 +msgid "Are you sure you want to discard the changes?" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:977 +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 "" + +#: frappe/public/js/frappe/views/kanban/kanban_view.js:118 +msgid "Are you sure you want to proceed?" +msgstr "" + +#: frappe/core/doctype/rq_job/rq_job_list.js:25 +msgid "Are you sure you want to re-enable scheduler?" +msgstr "" + +#: frappe/core/doctype/communication/communication.js:163 +msgid "Are you sure you want to relink this communication to {0}?" +msgstr "" + +#: frappe/core/doctype/rq_job/rq_job_list.js:10 +msgid "Are you sure you want to remove all failed jobs?" +msgstr "" + +#: frappe/public/js/frappe/list/list_filter.js:116 +msgid "Are you sure you want to remove the {0} filter?" +msgstr "" + +#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:268 +msgid "Are you sure you want to reset all customizations?" +msgstr "" + +#: frappe/workflow/doctype/workflow/workflow.js:125 +msgid "Are you sure you want to save this document?" +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 "" + +#. 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' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "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 "" + +#: frappe/desk/form/assign_to.py:107 +msgid "As document sharing is disabled, please give them the required permissions before assigning." +msgstr "" + +#: 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 "" + +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Ask" +msgstr "" + +#. Label of the assign_condition (Code) field in DocType 'Assignment Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Assign Condition" +msgstr "" + +#: frappe/public/js/frappe/form/sidebar/assign_to.js:183 +msgid "Assign To" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:2097 +msgctxt "Button in list view actions menu" +msgid "Assign To" +msgstr "" + +#: frappe/public/js/frappe/form/sidebar/assign_to.js:193 +msgid "Assign To User Group" +msgstr "" + +#. 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 "" + +#: frappe/automation/doctype/assignment_rule/assignment_rule.js:52 +msgid "Assign one by one, in sequence" +msgstr "" + +#: frappe/public/js/frappe/form/sidebar/assign_to.js:174 +msgid "Assign to me" +msgstr "" + +#: frappe/automation/doctype/assignment_rule/assignment_rule.js:53 +msgid "Assign to the one who has the least assignments" +msgstr "" + +#: frappe/automation/doctype/assignment_rule/assignment_rule.js:54 +msgid "Assign to the user set in this field" +msgstr "" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#: frappe/core/doctype/comment/comment.json +msgid "Assigned" +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 "" + +#. 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 "" + +#: 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 "" + +#: frappe/desk/report/todo/todo.py:40 +msgid "Assigned To/Owner" +msgstr "" + +#. Label of the assignee (Table MultiSelect) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Assignee" +msgstr "" + +#: frappe/public/js/frappe/form/sidebar/assign_to.js:269 +msgid "Assigning..." +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Notification Log' +#: frappe/desk/doctype/notification_log/notification_log.json +msgid "Assignment" +msgstr "" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#: frappe/core/doctype/comment/comment.json +msgid "Assignment Completed" +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 "" + +#. Name of a DocType +#. Label of a Link in the Tools Workspace +#. Label of a shortcut in the Tools Workspace +#. 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 "" + +#. Name of a DocType +#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json +msgid "Assignment Rule Day" +msgstr "" + +#. Name of a DocType +#: frappe/automation/doctype/assignment_rule_user/assignment_rule_user.json +msgid "Assignment Rule User" +msgstr "" + +#: frappe/automation/doctype/assignment_rule/assignment_rule.py:55 +msgid "Assignment Rule is not allowed on document type {0}" +msgstr "" + +#. 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 "" + +#: frappe/desk/doctype/notification_log/notification_log.py:153 +msgid "Assignment Update on {0}" +msgstr "" + +#: frappe/desk/form/assign_to.py:78 +msgid "Assignment for {0} {1}" +msgstr "" + +#: frappe/desk/doctype/todo/todo.py:62 +msgid "Assignment of {0} removed by {1}" +msgstr "" + +#. 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 "" + +#. Label of the asynchronous (Check) field in DocType 'Workflow Transition +#. Task' +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Asynchronous" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row.js:697 +msgid "At least one column is required to show in the grid." +msgstr "" + +#: frappe/website/doctype/web_form/web_form.js:73 +msgid "At least one field is required in Web Form Fields Table" +msgstr "" + +#: 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' +#. 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' +#: 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 "" + +#: frappe/public/js/frappe/views/communication.js:155 +msgid "Attach Document Print" +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 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_form_field/web_form_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Attach Image" +msgstr "" + +#. 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 the attach_print (Check) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Attach Print" +msgstr "" + +#: 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 "" + +#. Label of the attached_file (Code) field in DocType 'Notification Log' +#: frappe/desk/doctype/notification_log/notification_log.json +msgid "Attached File" +msgstr "" + +#. Label of the attached_to_doctype (Link) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "Attached To DocType" +msgstr "" + +#. Label of the attached_to_field (Data) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "Attached To Field" +msgstr "" + +#. Label of the attached_to_name (Data) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "Attached To Name" +msgstr "" + +#: frappe/core/doctype/file/file.py:152 +msgid "Attached To Name must be a string or an integer" +msgstr "" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#: frappe/core/doctype/comment/comment.json +msgid "Attachment" +msgstr "" + +#. 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 "" + +#: frappe/core/doctype/file/file.py:338 +#: frappe/public/js/frappe/form/sidebar/attachments.js:36 +msgid "Attachment Limit Reached" +msgstr "" + +#. Label of the attachment_link (HTML) field in DocType 'Notification Log' +#: frappe/desk/doctype/notification_log/notification_log.json +msgid "Attachment Link" +msgstr "" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#: frappe/core/doctype/comment/comment.json +msgid "Attachment Removed" +msgstr "" + +#. 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:113 +msgid "Attachments" +msgstr "" + +#: frappe/public/js/frappe/form/print_utils.js:119 +msgid "Attempting Connection to QZ Tray..." +msgstr "" + +#: frappe/public/js/frappe/form/print_utils.js:135 +msgid "Attempting to launch QZ Tray..." +msgstr "" + +#: frappe/www/attribution.html:9 +msgid "Attribution" +msgstr "" + +#. Name of a report +#: frappe/custom/report/audit_system_hooks/audit_system_hooks.json +msgid "Audit System Hooks" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/audit_trail/audit_trail.json +msgid "Audit Trail" +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 "" + +#: frappe/integrations/doctype/social_login_key/social_login_key.py:96 +msgid "Auth URL data should be valid JSON" +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 +#: 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 "" + +#: frappe/www/qrcode.html:19 +msgid "Authentication Apps you can use are:" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:339 +msgid "Authentication failed while receiving emails from Email Account: {0}." +msgstr "" + +#. Label of the author (Data) field in DocType 'Help Article' +#: frappe/website/doctype/help_article/help_article.json +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 +#. Contacts' +#. Label of the authorization_code (Data) field in DocType 'OAuth Authorization +#. Code' +#. Option for the 'Grant Type' (Select) field in DocType '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 "" + +#. Label of the authorization_uri (Small Text) field in DocType 'Connected App' +#: frappe/integrations/doctype/connected_app/connected_app.json +msgid "Authorization URI" +msgstr "" + +#: frappe/templates/includes/oauth_confirmation.html:35 +msgid "Authorization error for {}." +msgstr "" + +#. 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 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 "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#. Option for the 'Status' (Select) field in DocType 'Integration Request' +#: frappe/integrations/doctype/integration_request/integration_request.json +msgid "Authorized" +msgstr "" + +#: 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' +#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json +msgid "Auto" +msgstr "" + +#. Label of a Link in the Tools Workspace +#. Name of a DocType +#: frappe/automation/workspace/tools/tools.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Auto Email Report" +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 "" + +#. Name of a DocType +#. Label of a Link in the Tools Workspace +#: 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 "" + +#. Name of a DocType +#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json +msgid "Auto Repeat Day" +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:173 +msgid "Auto Repeat Day{0} {1} has been repeated." +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:479 +msgid "Auto Repeat Document Creation Failed" +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.js:117 +msgid "Auto Repeat Schedule" +msgstr "" + +#. Name of a DocType +#: frappe/automation/doctype/auto_repeat_user/auto_repeat_user.json +msgid "Auto Repeat User" +msgstr "" + +#: frappe/public/js/frappe/utils/common.js:434 +msgid "Auto Repeat created for this document" +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:482 +msgid "Auto Repeat failed for {0}" +msgstr "" + +#. 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 the auto_reply_message (Text Editor) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Auto Reply Message" +msgstr "" + +#: frappe/automation/doctype/assignment_rule/assignment_rule.py:177 +msgid "Auto assignment failed: {0}" +msgstr "" + +#. 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 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 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 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 the follow_created_documents (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Auto follow documents that you create" +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:242 +msgid "Auto repeat failed. Please enable auto repeat after fixing the issues." +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' +#: 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' +#: 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' +#: frappe/core/doctype/communication/communication.json +msgid "Automated Message" +msgstr "" + +#. Option for the 'Desk Theme' (Select) field in DocType 'User' +#: frappe/core/doctype/user/user.json +#: frappe/public/js/frappe/ui/theme_switcher.js:69 +msgid "Automatic" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:772 +msgid "Automatic Linking can be activated only for one Email Account." +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:766 +msgid "Automatic Linking can be activated only if Incoming is enabled." +msgstr "" + +#. 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:131 +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 +#: frappe/automation/workspace/tools/tools.json +msgid "Automation" +msgstr "" + +#. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart' +#. Option for the 'Group By Type' (Select) field in DocType 'Dashboard Chart' +#. Option for the 'Function' (Select) field in DocType '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 "" + +#: frappe/public/js/frappe/ui/group_by/group_by.js:345 +msgid "Average of {0}" +msgstr "" + +#: frappe/utils/password_strength.py:130 +msgid "Avoid dates and years that are associated with you." +msgstr "" + +#: frappe/utils/password_strength.py:124 +msgid "Avoid recent years." +msgstr "" + +#: frappe/utils/password_strength.py:117 +msgid "Avoid sequences like abc or 6543 as they are easy to guess" +msgstr "" + +#: frappe/utils/password_strength.py:124 +msgid "Avoid years that are associated with you." +msgstr "" + +#. Label of the awaiting_password (Check) field in DocType 'User Email' +#: frappe/core/doctype/user_email/user_email.json +msgid "Awaiting Password" +msgstr "" + +#. Label of the awaiting_password (Check) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Awaiting password" +msgstr "" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:195 +msgid "Awesome Work" +msgstr "" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:353 +msgid "Awesome, now try making an entry yourself" +msgstr "" + +#: 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' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "B0" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType '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' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "B10" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType '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' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "B3" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType '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' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "B5" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType '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' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "B7" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType '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' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "B9" +msgstr "" + +#. 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 "" + +#: frappe/public/js/frappe/views/communication.js:87 +msgctxt "Email Recipients" +msgid "BCC" +msgstr "" + +#: frappe/public/js/frappe/file_uploader/ImageCropper.vue:31 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:181 +msgid "Back" +msgstr "" + +#: frappe/templates/pages/integrations/gcalendar-success.html:13 +msgid "Back to Desk" +msgstr "" + +#: frappe/www/404.html:26 +msgid "Back to Home" +msgstr "" + +#: frappe/www/login.html:201 frappe/www/login.html:232 +msgid "Back to Login" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. Label of a Link in the Build Workspace +#. 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 "" + +#. 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 "" + +#: frappe/desk/page/backups/backups.js:28 +msgid "Backup Encryption Key" +msgstr "" + +#: frappe/desk/page/backups/backups.py:98 +msgid "Backup job is already queued. You will receive an email with the download link" +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 +#. Report' +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Backups" +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' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Banker's Rounding" +msgstr "" + +#. Option for the 'Rounding Method' (Select) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Banker's Rounding (legacy)" +msgstr "" + +#. Label of the banner (Section Break) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Banner" +msgstr "" + +#. Label of the banner_html (Code) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Banner HTML" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Bar" +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' +#: 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 "" + +#. 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 "" + +#. 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 "" + +#. Label of the based_on (Link) field in DocType 'Language' +#: frappe/core/doctype/language/language.json +#: frappe/printing/page/print/print.js:286 +#: frappe/printing/page/print/print.js:340 +msgid "Based On" +msgstr "" + +#. Option for the 'Rule' (Select) field in DocType 'Assignment Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Based on Field" +msgstr "" + +#. 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 "" + +#. Option for the 'Method' (Select) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Basic" +msgstr "" + +#. 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' +#: frappe/core/doctype/server_script/server_script.json +msgid "Before Cancel" +msgstr "" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Before Delete" +msgstr "" + +#. Option for the 'DocType Event' (Select) field in DocType '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 "" + +#. Option for the 'DocType Event' (Select) field in DocType '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 "" + +#. 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 "" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Before Submit" +msgstr "" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Before Validate" +msgstr "" + +#. Option for the 'Level' (Select) field in DocType 'Help Article' +#: frappe/website/doctype/help_article/help_article.json +msgid "Beginner" +msgstr "" + +#: frappe/public/js/frappe/form/link_selector.js:29 +msgid "Beginning with" +msgstr "" + +#. Label of the beta (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Beta" +msgstr "" + +#: frappe/utils/password_strength.py:73 +msgid "Better add a few more letters or another word" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:27 +msgid "Between" +msgstr "" + +#. Option for the 'Address Type' (Select) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "Billing" +msgstr "" + +#: 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' +#: frappe/core/doctype/user/user.json +#: frappe/website/doctype/about_us_team_member/about_us_team_member.json +msgid "Bio" +msgstr "" + +#. Label of the birth_date (Date) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Birth Date" +msgstr "" + +#: frappe/public/js/frappe/data_import/data_exporter.js:41 +msgid "Blank Template" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/block_module/block_module.json +msgid "Block Module" +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 "" + +#. Label of the blocked (Check) field in DocType 'Desktop Icon' +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +msgid "Blocked" +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 "Blue" +msgstr "" + +#. 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 "" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#: frappe/core/doctype/comment/comment.json +msgid "Bot" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:126 +msgid "Both DocType and Name required" +msgstr "" + +#: 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' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:154 +msgid "Bottom" +msgstr "" + +#. Option for the 'Position' (Select) field in DocType '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' +#: 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' +#. 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:249 +msgid "Bottom Right" +msgstr "" + +#. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Bounced" +msgstr "" + +#. Label of the brand (Section Break) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Brand" +msgstr "" + +#. Label of the brand_html (Code) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Brand HTML" +msgstr "" + +#. Label of the banner_image (Attach Image) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Brand Image" +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 "" + +#. Description of the 'Brand HTML' (Code) field in DocType 'Website Settings' +#: 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 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 "" + +#. 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 "" + +#. 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 "" + +#: frappe/public/js/frappe/desk.js:19 +msgid "Browser not supported" +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 "" + +#. 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 +#: frappe/core/workspace/build/build.json +msgid "Build" +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 "" + +#: frappe/workflow/doctype/workflow/workflow_list.js:18 +msgid "Build {0}" +msgstr "" + +#: 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 "" + +#: frappe/core/doctype/user_permission/user_permission_list.js:142 +msgid "Bulk Delete" +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:321 +msgid "Bulk Edit" +msgstr "" + +#: frappe/public/js/frappe/form/grid.js:1190 +msgid "Bulk Edit {0}" +msgstr "" + +#: frappe/desk/reportview.py:637 +msgid "Bulk Operation Failed" +msgstr "" + +#: frappe/desk/reportview.py:641 +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 +#. Name of a DocType +#: frappe/automation/workspace/tools/tools.json +#: frappe/desk/doctype/bulk_update/bulk_update.json +msgid "Bulk Update" +msgstr "" + +#: frappe/model/workflow.py:310 +msgid "Bulk approval only support up to 500 documents." +msgstr "" + +#: frappe/desk/doctype/bulk_update/bulk_update.py:56 +msgid "Bulk operation is enqueued in background." +msgstr "" + +#: frappe/desk/doctype/bulk_update/bulk_update.py:68 +msgid "Bulk operations only support up to 500 documents." +msgstr "" + +#: frappe/model/workflow.py:299 +msgid "Bulk {0} is enqueued in background." +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' +#: 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 "" + +#. Label of the button_gradients (Check) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Button Gradients" +msgstr "" + +#. 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 "" + +#. Label of the button_shadows (Check) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Button Shadows" +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 \"Naming Series\" field" +msgstr "" + +#: 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 "" + +#. 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 fieldname" +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 "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "C5E" +msgstr "" + +#: frappe/templates/print_formats/standard_macros.html:220 +msgid "CANCELLED" +msgstr "" + +#. 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 "" + +#: frappe/public/js/frappe/views/communication.js:77 +msgctxt "Email Recipients" +msgid "CC" +msgstr "" + +#. Label of the cmd (Data) field in DocType 'Recorder' +#: frappe/core/doctype/recorder/recorder.json +msgid "CMD" +msgstr "" + +#: frappe/public/js/frappe/color_picker/color_picker.js:20 +msgid "COLOR PICKER" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. Description of the 'Element Selector' (Data) field in DocType '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 'File Type' (Select) field in DocType '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 "" + +#. 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 "" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:181 +msgid "Calculate" +msgstr "" + +#. Label of a Link in the Tools Workspace +#. Option for the 'Select List View' (Select) field in DocType 'Form Tour' +#. Option for the 'DocType View' (Select) field in DocType '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 "" + +#. Label of the calendar_name (Data) field in DocType 'Google Calendar' +#: frappe/integrations/doctype/google_calendar/google_calendar.json +msgid "Calendar Name" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/calendar_view/calendar_view.json +#: frappe/public/js/frappe/list/base_list.js:207 +msgid "Calendar View" +msgstr "" + +#. Option for the 'Event Category' (Select) field in DocType 'Event' +#: frappe/contacts/doctype/contact/contact.js:55 +#: frappe/desk/doctype/event/event.json +msgid "Call" +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 "" + +#. 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 "" + +#. Label of the callback_message (Small Text) field in DocType 'Onboarding +#. Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Callback Message" +msgstr "" + +#. Label of the callback_title (Data) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Callback Title" +msgstr "" + +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:150 +#: frappe/public/js/frappe/ui/capture.js:334 +msgid "Camera" +msgstr "" + +#. Label of the campaign (Data) field in DocType 'Web Page View' +#: frappe/public/js/frappe/utils/utils.js:1766 +#: frappe/website/doctype/web_page_view/web_page_view.json +#: frappe/website/report/website_analytics/website_analytics.js:39 +msgid "Campaign" +msgstr "" + +#. 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 "" + +#: 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 "" + +#: frappe/core/doctype/doctype/doctype.py:1164 +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' +#: 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 "" + +#: 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 "" + +#. 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:131 +#: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/core/doctype/user_invitation/user_invitation.js:17 +#: frappe/email/doctype/notification/notification.json +#: frappe/public/js/frappe/form/reminders.js:54 +msgid "Cancel" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:2206 +msgctxt "Button in list view actions menu" +msgid "Cancel" +msgstr "" + +#: frappe/public/js/frappe/ui/messages.js:68 +msgctxt "Secondary button in warning dialog" +msgid "Cancel" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:979 +msgid "Cancel All" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:966 +msgid "Cancel All Documents" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:2211 +msgctxt "Title of confirmation dialog" +msgid "Cancel {0} documents?" +msgstr "" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#. Option for the 'Status' (Select) field in DocType 'User Invitation' +#. 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 'Integration Request' +#: frappe/core/doctype/comment/comment.json +#: frappe/core/doctype/user_invitation/user_invitation.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 "" + +#: frappe/core/doctype/deleted_document/deleted_document.py:52 +msgid "Cancelled Document restored as Draft" +msgstr "" + +#: frappe/public/js/frappe/form/save.js:13 +msgctxt "Freeze message while cancelling a document" +msgid "Cancelling" +msgstr "" + +#: frappe/desk/form/linked_with.py:381 +msgid "Cancelling documents" +msgstr "" + +#: frappe/desk/doctype/bulk_update/bulk_update.py:91 +msgid "Cancelling {0}" +msgstr "" + +#: frappe/core/doctype/prepared_report/prepared_report.py:265 +msgid "Cannot Download Report due to insufficient permissions" +msgstr "" + +#: frappe/client.py:452 +msgid "Cannot Fetch Values" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager.py:156 +msgid "Cannot Remove" +msgstr "" + +#: frappe/model/base_document.py:1222 +msgid "Cannot Update After Submit" +msgstr "" + +#: frappe/core/doctype/file/file.py:646 +msgid "Cannot access file path {0}" +msgstr "" + +#: frappe/public/js/workflow_builder/utils.js:183 +msgid "Cannot cancel before submitting while transitioning from {0} State to {1} State" +msgstr "" + +#: frappe/workflow/doctype/workflow/workflow.py:110 +msgid "Cannot cancel before submitting. See Transition {0}" +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:294 +msgid "Cannot cancel {0}." +msgstr "" + +#: frappe/model/document.py:1017 +msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)" +msgstr "" + +#: frappe/model/document.py:1031 +msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)" +msgstr "" + +#: frappe/public/js/workflow_builder/utils.js:170 +msgid "Cannot change state of Cancelled Document ({0} State)" +msgstr "" + +#: frappe/workflow/doctype/workflow/workflow.py:99 +msgid "Cannot change state of Cancelled Document. Transition row {0}" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1154 +msgid "Cannot change to/from autoincrement autoname in Customize Form" +msgstr "" + +#: frappe/core/doctype/communication/communication.py:169 +msgid "Cannot create a {0} against a child document: {1}" +msgstr "" + +#: frappe/desk/doctype/workspace/workspace.py:272 +msgid "Cannot create private workspace of other users" +msgstr "" + +#: frappe/core/doctype/file/file.py:165 +msgid "Cannot delete Home and Attachments folders" +msgstr "" + +#: frappe/model/delete_doc.py:419 +msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:369 +msgid "Cannot delete standard action. You can hide it if you want" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:391 +msgid "Cannot delete standard document state." +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:321 +msgid "Cannot delete standard field {0}. You can hide it instead." +msgstr "" + +#: 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 "" + +#: frappe/custom/doctype/customize_form/customize_form.js:313 +msgid "Cannot delete system generated field {0}. You can hide it instead." +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:215 +msgid "Cannot delete {0}" +msgstr "" + +#: frappe/utils/nestedset.py:312 +msgid "Cannot delete {0} as it has child nodes" +msgstr "" + +#: frappe/desk/doctype/dashboard/dashboard.py:48 +msgid "Cannot edit Standard Dashboards" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:202 +msgid "Cannot edit Standard Notification. To edit, please disable this and duplicate it" +msgstr "" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:388 +msgid "Cannot edit Standard charts" +msgstr "" + +#: frappe/core/doctype/report/report.py:72 +msgid "Cannot edit a standard report. Please duplicate and create a new report" +msgstr "" + +#: frappe/model/document.py:1037 +msgid "Cannot edit cancelled document" +msgstr "" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:378 +msgid "Cannot edit filters for standard charts" +msgstr "" + +#: frappe/desk/doctype/number_card/number_card.js:289 +#: frappe/desk/doctype/number_card/number_card.js:381 +msgid "Cannot edit filters for standard number cards" +msgstr "" + +#: frappe/client.py:166 +msgid "Cannot edit standard fields" +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:131 +msgid "Cannot enable {0} for a non-submittable doctype" +msgstr "" + +#: frappe/core/doctype/file/file.py:264 +msgid "Cannot find file {} on disk" +msgstr "" + +#: frappe/core/doctype/file/file.py:586 +msgid "Cannot get file contents of a Folder" +msgstr "" + +#: frappe/printing/page/print/print.js:884 +msgid "Cannot have multiple printers mapped to a single print format." +msgstr "" + +#: frappe/public/js/frappe/form/grid.js:1134 +msgid "Cannot import table with more than 5000 rows." +msgstr "" + +#: frappe/model/document.py:1105 +msgid "Cannot link cancelled document: {0}" +msgstr "" + +#: frappe/model/mapper.py:175 +msgid "Cannot map because following condition fails:" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:971 +msgid "Cannot match column {0} with any field" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row.js:176 +msgid "Cannot move row" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:932 +msgid "Cannot remove ID field" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager.py:132 +msgid "Cannot set 'Report' permission if 'Only If Creator' permission is set" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:235 +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 "" + +#: frappe/public/js/frappe/list/bulk_operations.js:291 +msgid "Cannot submit {0}." +msgstr "" + +#: frappe/desk/doctype/bulk_update/bulk_update.js:26 +#: frappe/public/js/frappe/list/bulk_operations.js:366 +msgid "Cannot update {0}" +msgstr "" + +#: frappe/model/db_query.py:1136 +msgid "Cannot use sub-query here." +msgstr "" + +#: frappe/model/db_query.py:1168 +msgid "Cannot use {0} in order/group by" +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:297 +msgid "Cannot {0} {1}." +msgstr "" + +#: frappe/utils/password_strength.py:181 +msgid "Capitalization doesn't help very much." +msgstr "" + +#: frappe/public/js/frappe/ui/capture.js:294 +msgid "Capture" +msgstr "" + +#. Label of the card (Link) field in DocType 'Number Card Link' +#: frappe/desk/doctype/number_card_link/number_card_link.json +msgid "Card" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Workspace Link' +#: frappe/desk/doctype/workspace_link/workspace_link.json +msgid "Card Break" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:262 +msgid "Card Label" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:262 +msgid "Card Links" +msgstr "" + +#. Label of the cards (Table) field in DocType 'Dashboard' +#: frappe/desk/doctype/dashboard/dashboard.json +msgid "Cards" +msgstr "" + +#. 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 "" + +#. Label of the category_description (Text) field in DocType 'Help Category' +#: frappe/website/doctype/help_category/help_category.json +msgid "Category Description" +msgstr "" + +#. Label of the category_name (Data) field in DocType 'Help Category' +#: frappe/website/doctype/help_category/help_category.json +msgid "Category Name" +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 "" + +#: 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/public/js/frappe/form/templates/form_sidebar.html:11 +#: frappe/tests/test_translate.py:111 +msgid "Change" +msgstr "" + +#: frappe/tests/test_translate.py:112 +msgctxt "Coins" +msgid "Change" +msgstr "" + +#: 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 "" + +#: 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 "" + +#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:27 +msgid "Change Print Format" +msgstr "" + +#. Description of the 'Update Series Counter' (Section Break) field in DocType +#. 'Document Naming Settings' +#: 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 "" + +#. 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 "" + +#: 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 the channel (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Channel" +msgstr "" + +#. Label of the chart (Link) field in DocType 'Dashboard Chart Link' +#: frappe/desk/doctype/dashboard_chart_link/dashboard_chart_link.json +msgid "Chart" +msgstr "" + +#. Label of the chart_config (Code) field in DocType 'Dashboard Settings' +#: frappe/desk/doctype/dashboard_settings/dashboard_settings.json +msgid "Chart Configuration" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. Label of the source (Link) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Chart Source" +msgstr "" + +#. 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:510 +msgid "Chart Type" +msgstr "" + +#. 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 "" + +#. Option for the 'Type' (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Chat" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. 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' +#. 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/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Check" +msgstr "" + +#: frappe/integrations/doctype/webhook/webhook.py:99 +msgid "Check Request URL" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:1 +msgid "Check columns to select, drag to set order." +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:485 +msgid "Check the Error Log for more information: {0}" +msgstr "" + +#: 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 "" + +#. Description of the 'User must always select' (Check) field in DocType +#. '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 "" + +#. 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 "" + +#: frappe/website/doctype/website_settings/website_settings.js:140 +msgid "Checking this will enable tracking page views for blogs, web pages, etc." +msgstr "" + +#. Description of the 'Hide Custom DocTypes and Reports' (Check) field in +#. DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "Checking this will hide custom doctypes and reports cards in Links section" +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." +msgstr "" + +#: 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 "" + +#: frappe/www/list.py:85 +msgid "Child DocTypes are not allowed" +msgstr "" + +#. 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 "" + +#: frappe/core/doctype/doctype/doctype.py:1648 +msgid "Child Table {0} for field {1}" +msgstr "" + +#. Description of the 'Is Child Table' (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/doctype/doctype_list.js:53 +msgid "Child Tables are shown as a Grid in other DocTypes" +msgstr "" + +#: frappe/database/query.py:662 +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 "" + +#: frappe/public/js/frappe/views/workspace/workspace.js:571 +msgid "Choose a block or continue typing" +msgstr "" + +#: frappe/public/js/form_builder/components/controls/DataControl.vue:18 +#: frappe/public/js/frappe/form/controls/color.js:5 +msgid "Choose a color" +msgstr "" + +#: 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' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Choose authentication method to be used by all users" +msgstr "" + +#. Label of the city (Data) field in DocType 'Contact Us Settings' +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:39 +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +msgid "City" +msgstr "" + +#. Label of the city (Data) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "City/Town" +msgstr "" + +#: frappe/core/doctype/recorder/recorder_list.js:12 +#: frappe/public/js/frappe/form/controls/attach.js:16 +msgid "Clear" +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:438 +msgid "Clear & Add Template" +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:114 +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:2112 +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 "" + +#: frappe/core/doctype/error_log/error_log_list.js:12 +msgid "Clear Error Logs" +msgstr "" + +#: 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 "" + +#: frappe/core/doctype/user_permission/user_permission_list.js:144 +msgid "Clear User Permissions" +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:439 +msgid "Clear the email message and add the template" +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 "" + +#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:194 +msgid "Click On Customize to add your first widget" +msgstr "" + +#: frappe/templates/emails/user_invitation.html:8 +msgid "Click below to get started:" +msgstr "" + +#: frappe/website/doctype/web_form/templates/web_form.html:154 +msgid "Click here" +msgstr "" + +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:538 +msgid "Click on a file to select it." +msgstr "" + +#: frappe/templates/emails/login_with_email_link.html:19 +msgid "Click on the button to log in to {0}" +msgstr "" + +#: frappe/templates/emails/data_deletion_approval.html:2 +msgid "Click on the link below to approve the request" +msgstr "" + +#: frappe/templates/emails/new_user.html:7 +msgid "Click on the link below to complete your registration and set a new password" +msgstr "" + +#: frappe/templates/emails/download_data.html:3 +msgid "Click on the link below to download your data" +msgstr "" + +#: frappe/templates/emails/delete_data_confirmation.html:4 +msgid "Click on the link below to verify your request" +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 "" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:315 +#: frappe/desk/doctype/number_card/number_card.js:222 +#: 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 "" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:502 +#: frappe/desk/doctype/number_card/number_card.js:419 +msgid "Click to Set Dynamic Filters" +msgstr "" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:372 +#: frappe/desk/doctype/number_card/number_card.js:278 +#: frappe/website/doctype/web_form/web_form.js:262 +msgid "Click to Set Filters" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:741 +msgid "Click to sort by {0}" +msgstr "" + +#. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Clicked" +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 "" + +#. Label of the client_code_section (Section Break) field in DocType 'Report' +#: frappe/core/doctype/report/report.json +msgid "Client Code" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. 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 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 "" + +#. 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' +#: 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 "" + +#. 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" +msgstr "" + +#. 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 "" + +#. Label of the close_condition (Code) field in DocType 'Assignment Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Close Condition" +msgstr "" + +#: frappe/public/js/form_builder/components/FieldProperties.vue:79 +msgid "Close properties" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Activity Log' +#. Option for the 'Status' (Select) field in DocType 'Communication' +#. Option for the 'Status' (Select) field in DocType 'Event' +#. Option for the 'Status' (Select) field in DocType '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 "" + +#: 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 "" + +#. 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' +#. Label of the code (Data) field in DocType 'Country' +#. Option for the 'Response Type' (Select) field in DocType '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 "" + +#. 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 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 "" + +#: 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 "" + +#: 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:2121 +#: frappe/public/js/frappe/views/treeview.js:123 +msgid "Collapse All" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. Label of the collapsible_depends_on (Code) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Collapsible Depends On (JS)" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. 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' +#: 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:1241 +#: 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 "" + +#. 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 "" + +#: 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 "" + +#. 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 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_form_field/web_form_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Column Break" +msgstr "" + +#: frappe/core/doctype/data_export/exporter.py:140 +msgid "Column Labels:" +msgstr "" + +#. 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 "" + +#: frappe/desk/doctype/kanban_board/kanban_board.py:45 +msgid "Column Name cannot be empty" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row.js:455 +msgid "Column Width" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row.js:662 +msgid "Column width cannot be zero." +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:380 +msgid "Column {0}" +msgstr "" + +#. 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 "" + +#. 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:411 +msgid "Columns based on" +msgstr "" + +#: frappe/integrations/doctype/oauth_client/oauth_client.py:57 +msgid "Combination of Grant Type ({0}) and Response Type ({1}) not allowed" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Comm10E" +msgstr "" + +#. Name of a DocType +#. Option for the 'Comment Type' (Select) field in DocType '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 "" + +#. Label of the comment_by (Data) field in DocType 'Comment' +#: frappe/core/doctype/comment/comment.json +msgid "Comment By" +msgstr "" + +#. Label of the comment_email (Data) field in DocType 'Comment' +#: frappe/core/doctype/comment/comment.json +msgid "Comment Email" +msgstr "" + +#. Label of the comment_type (Select) field in DocType 'Comment' +#: frappe/core/doctype/comment/comment.json +msgid "Comment Type" +msgstr "" + +#: frappe/desk/form/utils.py:58 +msgid "Comment can only be edited by the owner" +msgstr "" + +#: 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:129 +msgid "Comments" +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 "" + +#: frappe/templates/includes/comments/comments.py:52 +msgid "Comments cannot have links or email addresses" +msgstr "" + +#. Option for the 'Rounding Method' (Select) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Commercial Rounding" +msgstr "" + +#. Label of the commit (Check) field in DocType 'System Console' +#: frappe/desk/doctype/system_console/system_console.json +msgid "Commit" +msgstr "" + +#. Label of the committed (Check) field in DocType 'Console Log' +#: frappe/desk/doctype/console_log/console_log.json +msgid "Committed" +msgstr "" + +#: frappe/utils/password_strength.py:176 +msgid "Common names and surnames are easy to guess." +msgstr "" + +#. Name of a DocType +#. Option for the 'Communication Type' (Select) field in DocType +#. 'Communication' +#. 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 "" + +#. Name of a DocType +#: frappe/core/doctype/communication_link/communication_link.json +msgid "Communication Link" +msgstr "" + +#. Label of a Link in the Build Workspace +#: frappe/core/workspace/build/build.json +msgid "Communication Logs" +msgstr "" + +#. Label of the communication_type (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Communication Type" +msgstr "" + +#: frappe/integrations/frappe_providers/frappecloud_billing.py:32 +msgid "Communication secret not set" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/company_history/company_history.json +#: frappe/www/about.html:29 +msgid "Company History" +msgstr "" + +#. 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 "" + +#. Label of the company_name (Data) field in DocType 'Contact' +#: frappe/contacts/doctype/contact/contact.json +msgid "Company Name" +msgstr "" + +#: frappe/core/doctype/server_script/server_script.js:14 +#: frappe/custom/doctype/client_script/client_script.js:56 +#: frappe/public/js/frappe/utils/diffview.js:28 +msgid "Compare Versions" +msgstr "" + +#: frappe/core/doctype/server_script/server_script.py:159 +msgid "Compilation warning" +msgstr "" + +#: frappe/website/doctype/website_theme/website_theme.py:123 +msgid "Compiled Successfully" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log' +#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json +#: frappe/www/complete_signup.html:21 +msgid "Complete" +msgstr "" + +#: frappe/public/js/frappe/form/sidebar/assign_to.js:203 +msgid "Complete By" +msgstr "" + +#: frappe/core/doctype/user/user.py:479 +#: frappe/templates/emails/new_user.html:10 +msgid "Complete Registration" +msgstr "" + +#: 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' +#. Option for the 'Status' (Select) field in DocType 'Prepared Report' +#. 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' +#: 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 "" + +#. 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 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' +#: frappe/website/doctype/web_template/web_template.json +msgid "Component" +msgstr "" + +#: frappe/public/js/frappe/views/inbox/inbox_view.js:184 +msgid "Compose Email" +msgstr "" + +#. Option for the 'Row Format' (Select) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Compressed" +msgstr "" + +#. 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:208 +#: frappe/desk/doctype/number_card/number_card.js:347 +#: 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 the condition_type (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Condition Type" +msgstr "" + +#. 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 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 "" + +#. 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 "" + +#: frappe/public/js/frappe/views/reports/report_view.js:492 +msgid "Configure Chart" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row.js:407 +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' +#: 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 "" + +#. 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:400 frappe/public/js/frappe/dom.js:345 +#: frappe/www/update-password.html:66 +msgid "Confirm" +msgstr "" + +#: frappe/public/js/frappe/ui/messages.js:31 +msgctxt "Title of confirmation dialog" +msgid "Confirm" +msgstr "" + +#: 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 "" + +#: frappe/core/doctype/user/user.js:184 +msgid "Confirm New Password" +msgstr "" + +#: frappe/www/update-password.html:55 +msgid "Confirm Password" +msgstr "" + +#: frappe/templates/emails/data_deletion_approval.html:6 +#: frappe/templates/emails/delete_data_confirmation.html:7 +msgid "Confirm Request" +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/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:397 +msgid "Confirmed" +msgstr "" + +#: 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 "" + +#: frappe/integrations/doctype/connected_app/connected_app.js:20 +msgid "Connect to {}" +msgstr "" + +#. Label of the connected_app (Link) field in DocType 'Email Account' +#. Name of a DocType +#. 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 the connected_user (Link) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Connected User" +msgstr "" + +#: frappe/public/js/frappe/form/print_utils.js:125 +#: frappe/public/js/frappe/form/print_utils.js:149 +msgid "Connected to QZ Tray!" +msgstr "" + +#: frappe/public/js/frappe/request.js:36 +msgid "Connection Lost" +msgstr "" + +#: frappe/templates/pages/integrations/gcalendar-success.html:3 +msgid "Connection Success" +msgstr "" + +#: frappe/public/js/frappe/dom.js:446 +msgid "Connection lost. Some features might not work." +msgstr "" + +#. 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 the console (Code) field in DocType 'System Console' +#: frappe/desk/doctype/system_console/system_console.json +msgid "Console" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/console_log/console_log.json +msgid "Console Log" +msgstr "" + +#: 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 +#: frappe/contacts/doctype/contact/contact.json +#: frappe/core/doctype/communication/communication.js:113 +msgid "Contact" +msgstr "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:812 +msgid "Contact / email not found. Did not add attendee for -
{0}" +msgstr "" + +#. Label of the sb_01 (Section Break) field in DocType 'Contact' +#: frappe/contacts/doctype/contact/contact.json +msgid "Contact Details" +msgstr "" + +#. Name of a DocType +#: frappe/contacts/doctype/contact_email/contact_email.json +msgid "Contact Email" +msgstr "" + +#. Label of the phone_nos (Table) field in DocType 'Contact' +#: frappe/contacts/doctype/contact/contact.json +msgid "Contact Numbers" +msgstr "" + +#. Name of a DocType +#: frappe/contacts/doctype/contact_phone/contact_phone.json +msgid "Contact Phone" +msgstr "" + +#: frappe/integrations/doctype/google_contacts/google_contacts.py:291 +msgid "Contact Synced with Google Contacts." +msgstr "" + +#: frappe/www/contact.html:4 +msgid "Contact Us" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Website Workspace +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +#: frappe/website/workspace/website/website.json +msgid "Contact Us Settings" +msgstr "" + +#. Description of the 'Query Options' (Small Text) field in DocType '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 "" + +#. 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 '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:1782 +#: 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 "" + +#. Label of the content_hash (Data) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "Content Hash" +msgstr "" + +#. Label of the content_type (Select) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Content Type" +msgstr "" + +#: frappe/desk/doctype/workspace/workspace.py:86 +msgid "Content data shoud be a list" +msgstr "" + +#: frappe/website/doctype/web_page/web_page.js:91 +msgid "Content type for building the page" +msgstr "" + +#. 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 "" + +#. Label of the context_script (Code) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Context Script" +msgstr "" + +#: 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 "" + +#. Label of the contributed (Check) field in DocType 'Translation' +#: frappe/core/doctype/translation/translation.json +msgid "Contributed" +msgstr "" + +#. 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 "" + +#: 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:621 +msgid "Copy error to clipboard" +msgstr "" + +#: frappe/public/js/frappe/form/toolbar.js:507 +msgid "Copy to Clipboard" +msgstr "" + +#: frappe/core/doctype/user/user.js:487 +msgid "Copy token to clipboard" +msgstr "" + +#. Label of the copyright (Data) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Copyright" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.py:125 +msgid "Core DocTypes cannot be customized." +msgstr "" + +#: frappe/desk/doctype/global_search_settings/global_search_settings.py:36 +msgid "Core Modules {0} cannot be searched in Global Search." +msgstr "" + +#: frappe/printing/page/print/print.js:660 +msgid "Correct version :" +msgstr "" + +#: frappe/email/smtp.py:78 +msgid "Could not connect to outgoing email server" +msgstr "" + +#: frappe/model/document.py:1101 +msgid "Could not find {0}" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:933 +msgid "Could not map column {0} to field {1}" +msgstr "" + +#: frappe/database/query.py:566 +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:383 +msgid "Couldn't save, please check the data you have entered" +msgstr "" + +#. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart' +#. Option for the 'Group By Type' (Select) field in DocType 'Dashboard Chart' +#. Option for the 'Function' (Select) field in DocType '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 "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:540 +msgid "Count Customizations" +msgstr "" + +#. 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 "" + +#: frappe/public/js/frappe/form/dashboard.js:509 +msgid "Count of linked documents" +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 "" + +#. 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 +#. 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/contacts/report/addresses_and_contacts/addresses_and_contacts.py:42 +#: 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 "" + +#: frappe/utils/__init__.py:132 +msgid "Country Code Required" +msgstr "" + +#. Label of the country_name (Data) field in DocType 'Country' +#: frappe/geo/doctype/country/country.json +msgid "Country Name" +msgstr "" + +#. Label of the county (Data) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "County" +msgstr "" + +#: frappe/public/js/frappe/utils/number_systems.js:23 +#: frappe/public/js/frappe/utils/number_systems.js:45 +msgctxt "Number system" +msgid "Cr" +msgstr "" + +#. 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:1273 +#: frappe/public/js/frappe/views/workspace/workspace.js:469 +#: frappe/workflow/page/workflow_builder/workflow_builder.js:46 +msgid "Create" +msgstr "" + +#: frappe/core/doctype/doctype/doctype_list.js:103 +msgid "Create & Continue" +msgstr "" + +#: frappe/public/js/frappe/ui/address_autocomplete/autocomplete_dialog.js:49 +msgid "Create Address" +msgstr "" + +#: 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:285 +#: frappe/public/js/frappe/views/reports/query_report.js:1200 +msgid "Create Chart" +msgstr "" + +#: frappe/public/js/form_builder/components/controls/TableControl.vue:62 +msgid "Create Child Doctype" +msgstr "" + +#. 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' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Create Entry" +msgstr "" + +#: 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 "" + +#: 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 "" + +#: frappe/public/js/frappe/list/list_view.js:514 +msgctxt "Create a new document from list view" +msgid "Create New" +msgstr "" + +#: frappe/core/doctype/doctype/doctype_list.js:101 +msgid "Create New DocType" +msgstr "" + +#: frappe/public/js/frappe/list/list_view_select.js:204 +msgid "Create New Kanban Board" +msgstr "" + +#: frappe/core/doctype/user/user.js:264 +msgid "Create User Email" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder_start.html:16 +msgid "Create a New Format" +msgstr "" + +#: frappe/public/js/frappe/form/reminders.js:9 +msgid "Create a Reminder" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:546 +msgid "Create a new ..." +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:156 +msgid "Create a new record" +msgstr "" + +#: frappe/public/js/frappe/form/controls/link.js:315 +#: frappe/public/js/frappe/form/controls/link.js:317 +#: frappe/public/js/frappe/form/link_selector.js:139 +#: frappe/public/js/frappe/list/list_view.js:506 +#: frappe/public/js/frappe/web_form/web_form_list.js:226 +msgid "Create a new {0}" +msgstr "" + +#: frappe/www/login.html:162 +msgid "Create a {0} Account" +msgstr "" + +#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:34 +msgid "Create or Edit Print Format" +msgstr "" + +#: frappe/workflow/page/workflow_builder/workflow_builder.js:34 +msgid "Create or Edit Workflow" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:509 +msgid "Create your first {0}" +msgstr "" + +#: 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' +#: frappe/core/doctype/comment/comment.json +#: frappe/public/js/frappe/views/file/file_view.js:370 +msgid "Created" +msgstr "" + +#. Label of the created_at (Datetime) field in DocType 'Submission Queue' +#: frappe/core/doctype/submission_queue/submission_queue.json +msgid "Created At" +msgstr "" + +#: 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 "" + +#: frappe/workflow/doctype/workflow/workflow.py:65 +msgid "Created Custom Field {0} in {1}" +msgstr "" + +#: 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 "" + +#: frappe/public/js/frappe/desk.js:517 +#: frappe/public/js/frappe/views/treeview.js:393 +msgid "Creating {0}" +msgstr "" + +#: 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' +#. 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 "Cron" +msgstr "" + +#. 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 "" + +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:62 +msgid "Cron format is required for job types with Cron frequency." +msgstr "" + +#: 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 "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' +#. 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' +#: 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 "" + +#. Label of the currency_name (Data) field in DocType 'Currency' +#: frappe/geo/doctype/currency/currency.json +msgid "Currency Name" +msgstr "" + +#. Label of the currency_precision (Select) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Currency Precision" +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' +#: frappe/contacts/doctype/address/address.json +msgid "Current" +msgstr "" + +#. 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 the current_value (Int) field in DocType 'Document Naming Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Current Value" +msgstr "" + +#: 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 "" + +#. 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' +#. Label of the custom (Check) field in DocType 'Desktop Icon' +#. Option for the 'Type' (Select) field in DocType 'Number Card' +#. 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' +#. 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 "" + +#. 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 "" + +#. 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 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 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 "" + +#. 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 "" + +#. 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 +#: frappe/core/doctype/custom_docperm/custom_docperm.json +msgid "Custom DocPerm" +msgstr "" + +#. 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 "" + +#: frappe/core/doctype/user_type/user_type.py:105 +msgid "Custom Document Types Limit Exceeded" +msgstr "" + +#: frappe/desk/desktop.py:524 +msgid "Custom Documents" +msgstr "" + +#. Label of a Link in the Build Workspace +#. Name of a DocType +#: frappe/core/workspace/build/build.json +#: frappe/custom/doctype/custom_field/custom_field.json +msgid "Custom Field" +msgstr "" + +#: 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 "" + +#: frappe/custom/doctype/custom_field/custom_field.py:277 +msgid "Custom Fields can only be added to a standard DocType." +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.py:274 +msgid "Custom Fields cannot be added to core DocTypes." +msgstr "" + +#. 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 the custom_format (Check) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Custom Format" +msgstr "" + +#. 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 "" + +#: 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 "" + +#: 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 "" + +#. Name of a DocType +#: frappe/desk/doctype/custom_html_block/custom_html_block.json +msgid "Custom HTML Block" +msgstr "" + +#. 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 "" + +#: 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 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 the custom_menu (Table) field in DocType 'Portal Settings' +#: frappe/website/doctype/portal_settings/portal_settings.json +msgid "Custom Menu Items" +msgstr "" + +#. Label of the custom_options (Code) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Custom Options" +msgstr "" + +#. Label of the custom_overrides (Code) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Custom Overrides" +msgstr "" + +#. Option for the 'Report Type' (Select) field in DocType 'Report' +#: frappe/core/doctype/report/report.json +msgid "Custom Report" +msgstr "" + +#: frappe/desk/desktop.py:525 +msgid "Custom Reports" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/custom_role/custom_role.json +msgid "Custom Role" +msgstr "" + +#. Label of the custom_scss (Code) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Custom SCSS" +msgstr "" + +#. 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 "" + +#. Label of a Link in the Build Workspace +#: frappe/core/workspace/build/build.json +msgid "Custom Translation" +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.py:423 +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 +#: frappe/core/doctype/doctype/doctype_list.js:83 +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Custom?" +msgstr "" + +#. 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 "" + +#: frappe/public/js/frappe/views/workspace/workspace.js:358 +msgid "Customizations Discarded" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:465 +msgid "Customizations Reset" +msgstr "" + +#: frappe/modules/utils.py:96 +msgid "Customizations for {0} exported to:
{1}" +msgstr "" + +#: frappe/printing/page/print/print.js:184 +#: 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 "" + +#: frappe/public/js/frappe/list/list_view.js:1949 +msgctxt "Button in list view menu" +msgid "Customize" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:89 +msgid "Customize Child Table" +msgstr "" + +#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:38 +msgid "Customize Dashboard" +msgstr "" + +#. Label of a Link in the Build Workspace +#. 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:357 +msgid "Customize Form" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:100 +msgid "Customize Form - {0}" +msgstr "" + +#. Name of a DocType +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Customize Form Field" +msgstr "" + +#. 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 "" + +#: frappe/public/js/frappe/views/file/file_view.js:144 +msgid "Cut" +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 "Cyan" +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 "" + +#. Option for the 'Default Sort Order' (Select) field in DocType '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 "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "DLE" +msgstr "" + +#: frappe/templates/print_formats/standard_macros.html:215 +msgid "DRAFT" +msgstr "" + +#. 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' +#: 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 "" + +#: frappe/templates/emails/upcoming_events.html:8 +msgid "Daily Event Digest is sent for Calendar Events where reminders are set." +msgstr "" + +#: frappe/desk/doctype/event/event.py:104 +msgid "Daily Events should finish on the Same Day." +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 "" + +#. 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' +#: frappe/workflow/doctype/workflow_state/workflow_state.json +msgid "Danger" +msgstr "" + +#. Option for the 'Desk Theme' (Select) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Dark" +msgstr "" + +#. Label of the dark_color (Link) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Dark Color" +msgstr "" + +#: frappe/public/js/frappe/ui/theme_switcher.js:65 +msgid "Dark Theme" +msgstr "" + +#. Label of the dashboard (Check) field in DocType 'User' +#. Label of a Link in the Build Workspace +#. Name of a DocType +#. Option for the 'Select List View' (Select) field in DocType 'Form Tour' +#. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut' +#. Option for the 'DocType View' (Select) field in DocType '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:571 +#: frappe/public/js/frappe/utils/utils.js:935 +msgid "Dashboard" +msgstr "" + +#. Label of a Link in the Build Workspace +#. 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 "" + +#. Name of a DocType +#: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json +msgid "Dashboard Chart Field" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/dashboard_chart_link/dashboard_chart_link.json +msgid "Dashboard Chart Link" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json +msgid "Dashboard Chart Source" +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 "" + +#. Label of the dashboard_name (Data) field in DocType 'Dashboard' +#: frappe/desk/doctype/dashboard/dashboard.json +msgid "Dashboard Name" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/dashboard_settings/dashboard_settings.json +msgid "Dashboard Settings" +msgstr "" + +#: 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 "" + +#. Label of a Card Break in the Tools Workspace +#. Label of the data (Code) field in DocType 'Deleted Document' +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' +#. 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' +#. Option for the 'Fieldtype' (Select) field in DocType '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/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 "" + +#: frappe/public/js/frappe/form/controls/data.js:59 +msgid "Data Clipped" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/data_export/data_export.json +msgid "Data Export" +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 "" + +#. Name of a DocType +#: frappe/core/doctype/data_import_log/data_import_log.json +msgid "Data Import Log" +msgstr "" + +#: frappe/core/doctype/data_export/exporter.py:174 +msgid "Data Import Template" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.py:619 +msgid "Data Too Long" +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 "" + +#. Label of the engine (Select) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Database Engine" +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 "" + +#: frappe/public/js/frappe/doctype/index.js:38 +msgid "Database Row Size Utilization" +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 "" + +#: frappe/custom/doctype/customize_form/customize_form.py:251 +msgid "Database Table Row Size Limit" +msgstr "" + +#: frappe/public/js/frappe/doctype/index.js:40 +msgid "Database Table Row Size Utilization: {0}%, this limits number of fields you can add." +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 "" + +#. 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' +#. 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' +#. Option for the 'Fieldtype' (Select) field in DocType '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 "" + +#. 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 "" + +#. 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 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 "" + +#: frappe/public/js/frappe/form/controls/date.js:247 +msgid "Date {0} must be in format: {1}" +msgstr "" + +#: frappe/utils/password_strength.py:129 +msgid "Dates are often easy to guess." +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. 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' +#. Option for the 'Fieldtype' (Select) field in DocType '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 "" + +#. 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 "" + +#. 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 "" + +#: 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" +msgstr "" + +#. Option for the 'Send Alert On' (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Days Before" +msgstr "" + +#. Label of the days_in_advance (Int) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Days Before or After" +msgstr "" + +#: frappe/public/js/frappe/request.js:252 +msgid "Deadlock Occurred" +msgstr "" + +#: frappe/templates/emails/password_reset.html:1 +msgid "Dear" +msgstr "" + +#: frappe/templates/emails/administrator_logged_in.html:1 +msgid "Dear System Manager," +msgstr "" + +#: frappe/templates/emails/account_deletion_notification.html:1 +#: frappe/templates/emails/delete_data_confirmation.html:1 +msgid "Dear User," +msgstr "" + +#: frappe/templates/emails/download_data.html:1 +msgid "Dear {0}" +msgstr "" + +#. 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 "" + +#: frappe/public/js/frappe/views/reports/report_utils.js:318 +msgid "Decimal Separator must be '.' when Quoting is set to Non-numeric" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_utils.js:310 +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' +#. 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 "" + +#: frappe/contacts/doctype/address_template/address_template.py:41 +msgid "Default Address Template cannot be deleted" +msgstr "" + +#. 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 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 "" + +#: frappe/email/doctype/email_account/email_account_list.js:13 +msgid "Default Inbox" +msgstr "" + +#. 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 "" + +#. Label of the is_default (Check) field in DocType 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json +msgid "Default Letter Head" +msgstr "" + +#. Option for the 'Action' (Select) field in DocType 'Amended Document Naming +#. Settings' +#. Option for the 'Default Amendment Naming' (Select) field in DocType +#. '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 "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#: frappe/email/doctype/email_account/email_account_list.js:16 +msgid "Default Sending" +msgstr "" + +#: frappe/email/doctype/email_account/email_account_list.js:7 +msgid "Default Sending and Inbox" +msgstr "" + +#. Label of the sort_field (Data) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Default Sort Field" +msgstr "" + +#. Label of the sort_order (Select) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Default Sort Order" +msgstr "" + +#. 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 "" + +#: frappe/website/doctype/website_theme/website_theme.js:28 +msgid "Default Theme" +msgstr "" + +#. 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 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 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 "" + +#. 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 the default_workspace (Link) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Default Workspace" +msgstr "" + +#. 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:1377 +msgid "Default for 'Check' type of field {0} must be either '0' or '1'" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1390 +msgid "Default value for {0} must be in the list of options." +msgstr "" + +#: frappe/core/doctype/session_default_settings/session_default_settings.py:38 +msgid "Default {0}" +msgstr "" + +#. Description of the 'Heading' (Data) field in DocType 'Contact Us Settings' +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +msgid "Default: \"Contact Us\"" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/defaultvalue/defaultvalue.json +msgid "DefaultValue" +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 "" + +#: frappe/email/doctype/email_account/email_account.py:243 +msgid "Defaults Updated" +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 "" + +#. Description of the 'Delete Background Exported Reports After (Hours)' (Int) +#. field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Defines how long exported reports sent via email are kept in the system. Older files will be automatically deleted." +msgstr "" + +#. 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:627 +#: 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:1749 +#: frappe/public/js/frappe/views/treeview.js:329 +#: frappe/public/js/frappe/web_form/web_form_list.js:283 +#: frappe/templates/discussions/reply_card.html:35 +#: frappe/templates/discussions/reply_section.html:29 +msgid "Delete" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:2174 +msgctxt "Button in list view actions menu" +msgid "Delete" +msgstr "" + +#: frappe/website/doctype/web_form/templates/web_form.html:52 +msgctxt "Button in web form" +msgid "Delete" +msgstr "" + +#: frappe/www/me.html:65 +msgid "Delete Account" +msgstr "" + +#: frappe/public/js/frappe/form/grid.js:66 +msgid "Delete All" +msgstr "" + +#. Label of the delete_background_exported_reports_after (Int) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Delete Background Exported Reports After (Hours)" +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 "" + +#: frappe/public/js/frappe/views/kanban/kanban_view.js:116 +msgid "Delete Kanban Board" +msgstr "" + +#: frappe/public/js/form_builder/components/Section.vue:125 +msgctxt "Title of confirmation dialog" +msgid "Delete Section" +msgstr "" + +#: 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:944 +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:742 +msgid "Delete comment?" +msgstr "" + +#: 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 "" + +#: frappe/public/js/frappe/list/list_view.js:2179 +msgctxt "Title of confirmation dialog" +msgid "Delete {0} item permanently?" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:2185 +msgctxt "Title of confirmation dialog" +msgid "Delete {0} items permanently?" +msgstr "" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion +#. Request' +#. Option for the 'Status' (Select) field in DocType '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 "" + +#. Label of the deleted_doctype (Data) field in DocType 'Deleted Document' +#: frappe/core/doctype/deleted_document/deleted_document.json +msgid "Deleted DocType" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/deleted_document/deleted_document.json +msgid "Deleted Document" +msgstr "" + +#. Label of a Link in the Tools Workspace +#: frappe/automation/workspace/tools/tools.json +msgid "Deleted Documents" +msgstr "" + +#. Label of the deleted_name (Data) field in DocType 'Deleted Document' +#: frappe/core/doctype/deleted_document/deleted_document.json +msgid "Deleted Name" +msgstr "" + +#: frappe/desk/reportview.py:641 +msgid "Deleted all documents successfully" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form.js:211 +msgid "Deleted!" +msgstr "" + +#: frappe/desk/reportview.py:618 +msgid "Deleting {0}" +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:202 +msgid "Deleting {0} records..." +msgstr "" + +#: frappe/public/js/frappe/model/model.js:692 +msgid "Deleting {0}..." +msgstr "" + +#. 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 "" + +#: 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 "" + +#. 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:306 +msgid "Delimiter must be a single character" +msgstr "" + +#. Label of the delivery_status (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Delivery Status" +msgstr "" + +#. Option for the 'Sign ups' (Select) field in DocType '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 the department (Data) field in DocType 'Contact' +#: frappe/contacts/doctype/contact/contact.json +msgid "Department" +msgstr "" + +#. 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 "" + +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Dependencies & Licenses" +msgstr "" + +#. 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 "" + +#: frappe/public/js/frappe/ui/filters/filter.js:32 +msgid "Descendants Of" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:33 +msgid "Descendants Of (inclusive)" +msgstr "" + +#. 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 '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/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 "" + +#. Description of the 'Description' (Section Break) field in DocType +#. '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 the designation (Data) field in DocType 'Contact' +#: frappe/contacts/doctype/contact/contact.json +msgid "Designation" +msgstr "" + +#. Label of the desk_access (Check) field in DocType 'Role' +#: frappe/core/doctype/role/role.json +msgid "Desk Access" +msgstr "" + +#. Label of the desk_settings_section (Section Break) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Desk Settings" +msgstr "" + +#. Label of the desk_theme (Select) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Desk Theme" +msgstr "" + +#. Name of a role +#: 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 +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +msgid "Desktop Icon" +msgstr "" + +#: frappe/desk/doctype/desktop_icon/desktop_icon.py:225 +msgid "Desktop Icon already exists" +msgstr "" + +#. 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:152 +#: frappe/public/js/frappe/views/treeview.js:292 +msgid "Details" +msgstr "" + +#. 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 "" + +#: frappe/core/page/permission_manager/permission_manager.js:494 +msgid "Did not add" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager.js:388 +msgid "Did not remove" +msgstr "" + +#: frappe/public/js/frappe/utils/diffview.js:57 +msgid "Diff" +msgstr "" + +#. Description of the 'States' (Section Break) field in DocType 'Workflow' +#: frappe/workflow/doctype/workflow/workflow.json +msgid "Different \"States\" this document can exist in. Like \"Open\", \"Pending Approval\" etc." +msgstr "" + +#. 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 "" + +#. 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 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 "" + +#. 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 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 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 "" + +#. 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 "" + +#: frappe/core/doctype/report/report.js:39 +msgid "Disable Report" +msgstr "" + +#. 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 "" + +#. Label of the disable_scrolling (Check) field in DocType 'List View Settings' +#: frappe/desk/doctype/list_view_settings/list_view_settings.json +msgid "Disable Scrolling" +msgstr "" + +#. 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 "" + +#: frappe/website/doctype/website_settings/website_settings.js:146 +msgid "Disable Signup for your site" +msgstr "" + +#. 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 "" + +#. 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 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 the disable_signup (Check) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Disable signups" +msgstr "" + +#. 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' +#. 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' +#: 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 +msgid "Disabled" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.js:300 +msgid "Disabled Auto Reply" +msgstr "" + +#: 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:193 +msgid "Discard" +msgstr "" + +#: frappe/website/doctype/web_form/templates/web_form.html:44 +msgctxt "Button in web form" +msgid "Discard" +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:30 +msgctxt "Discard Email" +msgid "Discard" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:848 +msgid "Discard {0}" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form.js:190 +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 +#: frappe/website/doctype/discussion_reply/discussion_reply.json +msgid "Discussion Reply" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/discussion_topic/discussion_topic.json +msgid "Discussion Topic" +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:639 +#: frappe/templates/discussions/reply_card.html:16 +#: frappe/templates/discussions/reply_section.html:29 +msgid "Dismiss" +msgstr "" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:572 +msgctxt "Stop showing the onboarding widget." +msgid "Dismiss" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. Label of the depends_on (Code) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Display Depends On (JS)" +msgstr "" + +#: 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' +#: 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 "" + +#: frappe/public/js/frappe/form/grid.js:1195 +msgid "Do not edit headers which are preset in the template" +msgstr "" + +#: frappe/public/js/frappe/router.js:624 +msgid "Do not warn me again about {0}" +msgstr "" + +#: frappe/core/doctype/system_settings/system_settings.js:71 +msgid "Do you still want to proceed?" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:958 +msgid "Do you want to cancel all linked documents?" +msgstr "" + +#. Label of the webhook_docevent (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "Doc Event" +msgstr "" + +#. Label of the sb_doc_events (Section Break) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "Doc Events" +msgstr "" + +#. 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 "" + +#. Name of a DocType +#. Option for the 'Applied On' (Select) field in DocType 'Property Setter' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/property_setter/property_setter.json +msgid "DocField" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/docperm/docperm.json +msgid "DocPerm" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/docshare/docshare.json +msgid "DocShare" +msgstr "" + +#: 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 +#. Group in Module Def's connections +#. 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 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' +#. Label of the document_type (Link) field in DocType 'Workspace Quick List' +#. 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 +#: 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 "" + +#: frappe/core/doctype/doctype/doctype.py:1578 +msgid "DocType {0} provided for the field {1} must have atleast one Link field" +msgstr "" + +#. Name of a DocType +#. Option for the 'Applied On' (Select) field in DocType 'Property Setter' +#: frappe/core/doctype/doctype_action/doctype_action.json +#: frappe/custom/doctype/property_setter/property_setter.json +msgid "DocType Action" +msgstr "" + +#. Option for the 'Script Type' (Select) field in DocType '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 "" + +#. Name of a DocType +#: frappe/custom/doctype/doctype_layout/doctype_layout.json +msgid "DocType Layout" +msgstr "" + +#. Name of a DocType +#: frappe/custom/doctype/doctype_layout_field/doctype_layout_field.json +msgid "DocType Layout Field" +msgstr "" + +#. Name of a DocType +#. Option for the 'Applied On' (Select) field in DocType 'Property Setter' +#: frappe/core/doctype/doctype_link/doctype_link.json +#: frappe/custom/doctype/property_setter/property_setter.json +msgid "DocType Link" +msgstr "" + +#. Name of a DocType +#. Option for the 'Applied On' (Select) field in DocType 'Property Setter' +#: frappe/core/doctype/doctype_state/doctype_state.json +#: frappe/custom/doctype/property_setter/property_setter.json +msgid "DocType State" +msgstr "" + +#. 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 "" + +#: frappe/core/doctype/doctype/doctype.py:657 +msgid "DocType can not be merged" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:651 +msgid "DocType can only be renamed by Administrator" +msgstr "" + +#. 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:83 +msgid "DocType must be Submittable for the selected Doc Event" +msgstr "" + +#: frappe/client.py:403 +msgid "DocType must be a string" +msgstr "" + +#: frappe/public/js/form_builder/store.js:154 +msgid "DocType must have atleast one field" +msgstr "" + +#: 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' +#: frappe/workflow/doctype/workflow/workflow.json +msgid "DocType on which this Workflow is applicable." +msgstr "" + +#: frappe/public/js/frappe/views/kanban/kanban_settings.js:4 +msgid "DocType required" +msgstr "" + +#: frappe/modules/utils.py:175 +msgid "DocType {0} does not exist." +msgstr "" + +#: frappe/modules/utils.py:238 +msgid "DocType {} not found" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1029 +msgid "DocType's name should not start or end with whitespace" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.js:67 +msgid "DocTypes cannot be modified, please use {0} instead" +msgstr "" + +#. 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 "" + +#: frappe/core/doctype/doctype/doctype.py:1023 +msgid "Doctype name is limited to {0} characters ({1})" +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:3 +msgid "Doctype required" +msgstr "" + +#. 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 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 "" + +#. Label of the document_follow_notifications_section (Section Break) field in +#. DocType 'User' +#. Name of a DocType +#: frappe/core/doctype/user/user.json +#: frappe/email/doctype/document_follow/document_follow.json +msgid "Document Follow" +msgstr "" + +#: frappe/desk/form/document_follow.py:94 +msgid "Document Follow Notification" +msgstr "" + +#. Label of the document_name (Data) field in DocType 'Notification Log' +#: frappe/desk/doctype/notification_log/notification_log.json +msgid "Document Link" +msgstr "" + +#. 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 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 "" + +#: frappe/core/doctype/doctype/doctype.py:1212 +msgid "Document Links Row #{0}: Could not find field {1} in {2} DocType" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1232 +msgid "Document Links Row #{0}: Invalid doctype or fieldname." +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1195 +msgid "Document Links Row #{0}: Parent DocType is mandatory for internal links" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1201 +msgid "Document Links Row #{0}: Table Fieldname is mandatory for internal links" +msgstr "" + +#. 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 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/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 "" + +#: frappe/client.py:406 +msgid "Document Name must be a string" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/document_naming_rule/document_naming_rule.json +msgid "Document Naming Rule" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json +msgid "Document Naming Rule Condition" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Document Naming Settings" +msgstr "" + +#: frappe/model/document.py:478 +msgid "Document Queued" +msgstr "" + +#: frappe/core/doctype/deleted_document/deleted_document_list.js:38 +msgid "Document Restoration Summary" +msgstr "" + +#: frappe/core/doctype/deleted_document/deleted_document.py:68 +msgid "Document Restored" +msgstr "" + +#: 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 the enable_email_share (Check) field in DocType 'Notification +#. Settings' +#: frappe/desk/doctype/notification_settings/notification_settings.json +msgid "Document Share" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/document_share_key/document_share_key.json +msgid "Document Share Key" +msgstr "" + +#. 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 +#: frappe/core/report/document_share_report/document_share_report.json +#: frappe/core/workspace/users/users.json +msgid "Document Share Report" +msgstr "" + +#. 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 "" + +#: 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 "" + +#. Label of the tag (Link) field in DocType 'Tag Link' +#: frappe/desk/doctype/tag_link/tag_link.json +msgid "Document Tag" +msgstr "" + +#. Label of the title (Data) field in DocType 'Tag Link' +#: frappe/desk/doctype/tag_link/tag_link.json +msgid "Document Title" +msgstr "" + +#. 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' +#. 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:68 +#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json +#: frappe/workflow/doctype/workflow/workflow.json +msgid "Document Type" +msgstr "" + +#: frappe/desk/doctype/number_card/number_card.py:60 +msgid "Document Type and Function are required to create a number card" +msgstr "" + +#: frappe/permissions.py:149 +msgid "Document Type is not importable" +msgstr "" + +#: frappe/permissions.py:145 +msgid "Document Type is not submittable" +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 "" + +#: frappe/desk/doctype/global_search_settings/global_search_settings.py:40 +msgid "Document Type {0} has been repeated." +msgstr "" + +#. Label of the user_doctypes (Table) field in DocType 'User Type' +#: frappe/core/doctype/user_type/user_type.json +msgid "Document Types" +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 "" + +#. 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 "" + +#: frappe/core/doctype/submission_queue/submission_queue.py:163 +#: frappe/model/document.py:1959 +msgid "Document Unlocked" +msgstr "" + +#: 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:1302 +msgid "Document has been cancelled" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1301 +msgid "Document has been submitted" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1300 +msgid "Document is in draft state" +msgstr "" + +#: 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 "" + +#: frappe/model/rename_doc.py:229 frappe/public/js/frappe/form/toolbar.js:155 +msgid "Document renamed from {0} to {1}" +msgstr "" + +#: frappe/public/js/frappe/form/toolbar.js:164 +msgid "Document renaming from {0} to {1} has been queued" +msgstr "" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:397 +msgid "Document type is required to create a dashboard chart" +msgstr "" + +#: frappe/core/doctype/deleted_document/deleted_document.py:45 +msgid "Document {0} Already Restored" +msgstr "" + +#: frappe/workflow/doctype/workflow_action/workflow_action.py:203 +msgid "Document {0} has been set to state {1} by {2}" +msgstr "" + +#: frappe/client.py:430 +msgid "Document {0} {1} does not exist" +msgstr "" + +#. Label of the documentation (Data) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Documentation Link" +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 "" + +#: frappe/public/js/frappe/form/templates/form_dashboard.html:17 +msgid "Documents" +msgstr "" + +#: frappe/core/doctype/deleted_document/deleted_document_list.js:25 +msgid "Documents restored successfully" +msgstr "" + +#: frappe/core/doctype/deleted_document/deleted_document_list.js:33 +msgid "Documents that failed to restore" +msgstr "" + +#: frappe/core/doctype/deleted_document/deleted_document_list.js:29 +msgid "Documents that were already restored" +msgstr "" + +#. Name of a DocType +#. 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 "" + +#. 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 +#: frappe/core/doctype/domain_settings/domain_settings.json +msgid "Domain Settings" +msgstr "" + +#. Label of the domains_html (HTML) field in DocType 'Domain Settings' +#: frappe/core/doctype/domain_settings/domain_settings.json +msgid "Domains HTML" +msgstr "" + +#. 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 "" + +#: frappe/public/js/frappe/data_import/import_preview.js:272 +msgid "Don't Import" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. Description of the 'Ignore XSS Filter' (Check) field in DocType '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 "" + +#: frappe/www/login.html:139 frappe/www/login.html:155 +#: frappe/www/update-password.html:70 +msgid "Don't have an account?" +msgstr "" + +#: 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 "" + +#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Donut" +msgstr "" + +#: frappe/public/js/form_builder/components/EditableInput.vue:43 +msgid "Double click to edit label" +msgstr "" + +#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:474 +#: frappe/email/doctype/auto_email_report/auto_email_report.js:8 +#: frappe/public/js/frappe/form/grid.js:66 +msgid "Download" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_utils.js:247 +msgctxt "Export report" +msgid "Download" +msgstr "" + +#. Label of a Link in the Tools Workspace +#: frappe/automation/workspace/tools/tools.json +#: frappe/desk/page/backups/backups.js:4 +msgid "Download Backups" +msgstr "" + +#: frappe/templates/emails/download_data.html:6 +msgid "Download Data" +msgstr "" + +#: frappe/desk/page/backups/backups.js:14 +msgid "Download Files Backup" +msgstr "" + +#: frappe/templates/emails/download_data.html:9 +msgid "Download Link" +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:134 +msgid "Download PDF" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:840 +msgid "Download Report" +msgstr "" + +#. Label of the download_template (Button) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Download Template" +msgstr "" + +#: 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 "" + +#: 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 "" + +#: 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 "" + +#: frappe/public/js/form_builder/components/Tabs.vue:189 +msgid "Drag & Drop a section here from another tab" +msgstr "" + +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:14 +msgid "Drag and drop files here or upload from" +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 "" + +#: 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 "" + +#: frappe/public/js/workflow_builder/WorkflowBuilder.vue:296 +msgid "Drag to add state" +msgstr "" + +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:189 +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 "" + +#. Label of the date (Date) field in DocType 'ToDo' +#: frappe/desk/doctype/todo/todo.json +msgid "Due Date" +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 "" + +#: frappe/public/js/frappe/form/grid_row_form.js:42 +#: frappe/public/js/frappe/form/toolbar.js:422 +msgid "Duplicate" +msgstr "" + +#: frappe/printing/doctype/print_format_field_template/print_format_field_template.py:53 +msgid "Duplicate Entry" +msgstr "" + +#: frappe/public/js/frappe/list/list_filter.js:144 +msgid "Duplicate Filter Name" +msgstr "" + +#: frappe/model/base_document.py:720 frappe/model/rename_doc.py:111 +msgid "Duplicate Name" +msgstr "" + +#: frappe/public/js/frappe/form/grid.js:66 +msgid "Duplicate Row" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:209 +msgid "Duplicate current row" +msgstr "" + +#: frappe/public/js/form_builder/components/Field.vue:245 +msgid "Duplicate field" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. 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' +#. 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' +#: 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 "" + +#. Option for the 'Row Format' (Select) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Dynamic" +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 "" + +#. 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' +#: 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:670 +#: frappe/public/js/frappe/form/footer/form_timeline.js:678 +#: 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:888 +#: frappe/public/js/frappe/views/reports/query_report.js:1791 +#: 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:359 +#: 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 "" + +#: frappe/public/js/frappe/list/list_view.js:2260 +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:350 +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 "" + +#: 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 "" + +#: frappe/public/js/frappe/form/toolbar.js:619 +msgid "Edit DocType" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1976 +msgctxt "Button in list view menu" +msgid "Edit DocType" +msgstr "" + +#: 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 "" + +#: 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:29 +msgid "Edit Format" +msgstr "" + +#: frappe/public/js/frappe/form/quick_entry.js:326 +msgid "Edit Full Form" +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 "" + +#: 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 "" + +#: 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 "" + +#: frappe/www/me.html:38 +msgid "Edit Profile" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:173 +msgid "Edit Properties" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:48 +msgid "Edit Quick List" +msgstr "" + +#: 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 "" + +#: frappe/desk/doctype/note/note.js:11 +msgid "Edit mode" +msgstr "" + +#: 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 "" + +#: frappe/public/js/frappe/web_form/web_form.js:470 +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 "" + +#: frappe/public/js/frappe/views/reports/report_view.js:683 +#: frappe/public/js/frappe/widgets/widget_dialog.js:52 +msgid "Edit {0}" +msgstr "" + +#. 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:58 +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Editable Grid" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row_form.js:42 +msgid "Editing Row" +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 "" + +#. 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 "" + +#: frappe/rate_limiter.py:152 +msgid "Either key or IP flag is required." +msgstr "" + +#. 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 +#. Option for the 'Type' (Select) field in DocType 'Communication' +#. 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 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 'User Invitation' +#. 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' +#. Label of a field in the request-data Web Form +#. Label of a field in the request-to-delete-data Web Form +#: 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/core/doctype/user_invitation/user_invitation.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/website/web_form/request_data/request_data.json +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +#: frappe/www/login.html:8 frappe/www/login.py:104 +msgid "Email" +msgstr "" + +#. Label of a Link in the Tools Workspace +#. 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 "" + +#: frappe/email/doctype/email_account/email_account.py:343 +msgid "Email Account Disabled." +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 "" + +#: frappe/core/doctype/user/user.py:749 +msgid "Email Account added multiple times" +msgstr "" + +#: frappe/email/smtp.py:43 +msgid "Email Account not setup. Please create a new Email Account from Settings > Email Account" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:576 +msgid "Email Account {0} Disabled" +msgstr "" + +#. 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 "" + +#. 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 "" + +#: frappe/email/doctype/email_group/email_group.js:43 +msgid "Email Addresses" +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 "" + +#. Name of a DocType +#: frappe/email/doctype/email_flag_queue/email_flag_queue.json +msgid "Email Flag Queue" +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 "" + +#. Label of a Link in the Tools Workspace +#. 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 "" + +#. Name of a DocType +#: frappe/email/doctype/email_group_member/email_group_member.json +msgid "Email Group Member" +msgstr "" + +#. 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 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 "" + +#. Label of the email_ids (Table) field in DocType 'Contact' +#: frappe/contacts/doctype/contact/contact.json +msgid "Email IDs" +msgstr "" + +#. Label of the email_id (Data) field in DocType 'Contact Us Settings' +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:48 +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +msgid "Email Id" +msgstr "" + +#. Label of the email_inbox (Section Break) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Email Inbox" +msgstr "" + +#. Name of a DocType +#: frappe/email/doctype/email_queue/email_queue.json +msgid "Email Queue" +msgstr "" + +#. Name of a DocType +#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json +msgid "Email Queue Recipient" +msgstr "" + +#: frappe/email/queue.py:161 +msgid "Email Queue flushing aborted due to too many failures." +msgstr "" + +#. Description of a DocType +#: frappe/email/doctype/email_queue/email_queue.json +msgid "Email Queue records." +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 "" + +#. 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 +#: frappe/email/doctype/email_rule/email_rule.json +msgid "Email Rule" +msgstr "" + +#. Label of the email_sent_at (Datetime) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.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' +#. 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 "" + +#. Label of the email_signature (Text Editor) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Email Signature" +msgstr "" + +#. Label of the email_status (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Email Status" +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 "" + +#. Label of a Link in the Tools Workspace +#. 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 "" + +#. 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 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 "" + +#. Name of a DocType +#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json +msgid "Email Unsubscribe" +msgstr "" + +#: frappe/core/doctype/communication/communication.js:342 +msgid "Email has been marked as spam" +msgstr "" + +#: frappe/core/doctype/communication/communication.js:355 +msgid "Email has been moved to trash" +msgstr "" + +#: frappe/core/doctype/user/user.js:266 +msgid "Email is mandatory to create User Email" +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:822 +msgid "Email not sent to {0} (unsubscribed / disabled)" +msgstr "" + +#: frappe/utils/oauth.py:163 +msgid "Email not verified with {0}" +msgstr "" + +#: 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 "" + +#. 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 "" + +#: frappe/website/doctype/web_form/web_form.js:34 +msgid "Embed code copied" +msgstr "" + +#: frappe/database/query.py:1539 +msgid "Empty alias is not allowed" +msgstr "" + +#: frappe/public/js/form_builder/components/Section.vue:285 +msgid "Empty column" +msgstr "" + +#: frappe/database/query.py:1457 +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 "" + +#. 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 "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:123 +msgid "Enable Allow Auto Repeat for the doctype {0} in Customize Form" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. Label of the enable_comments (Check) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +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_notifications (Check) field in DocType +#. 'Notification Settings' +#: frappe/desk/doctype/notification_settings/notification_settings.json +msgid "Enable Email Notifications" +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 "" + +#. 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 "" + +#. 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 "" + +#. Label of the enable_onboarding (Check) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Enable Onboarding" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. 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 the enable_print_server (Check) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Enable Print Server" +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 "" + +#. 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 the enable_raw_printing (Check) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Enable Raw Printing" +msgstr "" + +#: frappe/core/doctype/report/report.js:39 +msgid "Enable Report" +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 "" + +#: frappe/core/doctype/rq_job/rq_job_list.js:23 +msgid "Enable Scheduler" +msgstr "" + +#. Label of the enable_security (Check) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "Enable Security" +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 "" + +#: frappe/website/doctype/website_settings/website_settings.js:139 +msgid "Enable Tracking Page Views" +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:438 +msgid "Enable Two Factor Auth" +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 "" + +#: frappe/website/doctype/web_template/web_template.py:33 +msgid "Enable developer mode to create a standard Web Template" +msgstr "" + +#. Description of the 'Modal Trigger' (Check) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Enable if on click\n" +"opens modal." +msgstr "" + +#. 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 "" + +#. 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' +#. Label of the enabled (Check) field in DocType 'Workflow Transition Task' +#: 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 +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Enabled" +msgstr "" + +#: frappe/core/doctype/rq_job/rq_job_list.js:29 +msgid "Enabled Scheduler" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:1010 +msgid "Enabled email inbox for user {0}" +msgstr "" + +#. Description of the 'Is Calendar and Gantt' (Check) field in DocType +#. '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 "" + +#: 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 a DocType +#. 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' +#. 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 the encrypt_backup (Check) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Encrypt Backups" +msgstr "" + +#: frappe/utils/password.py:196 +msgid "Encryption key is in invalid format!" +msgstr "" + +#: frappe/utils/password.py:211 +msgid "Encryption key is invalid! Please check site_config.json" +msgstr "" + +#: 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:150 +#: 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 "" + +#. 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 "" + +#: frappe/website/doctype/web_page/web_page.py:208 +msgid "End Date cannot be before Start Date!" +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:146 +msgid "End Date cannot be today." +msgstr "" + +#. 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 the sb_endpoints_section (Section Break) field in DocType +#. 'Connected App' +#: frappe/integrations/doctype/connected_app/connected_app.json +msgid "Endpoints" +msgstr "" + +#. Label of the ends_on (Datetime) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Ends on" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Notification Log' +#: frappe/desk/doctype/notification_log/notification_log.json +msgid "Energy Point" +msgstr "" + +#. Label of the enqueued_by (Data) field in DocType 'Submission Queue' +#: frappe/core/doctype/submission_queue/submission_queue.json +msgid "Enqueued By" +msgstr "" + +#: 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 "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:109 +msgid "Enter Client Id and Client Secret in Google Settings." +msgstr "" + +#: frappe/templates/includes/login/login.js:351 +msgid "Enter Code displayed in OTP App." +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:777 +msgid "Enter Email Recipient(s)" +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 "" + +#: frappe/public/js/frappe/ui/messages.js:94 +msgctxt "Title of prompt dialog" +msgid "Enter Value" +msgstr "" + +#: 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' +#: 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 "" + +#: frappe/public/js/frappe/views/file/file_view.js:111 +msgid "Enter folder name" +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 "" + +#. 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 "" + +#. 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 "" + +#: frappe/public/js/frappe/ui/messages.js:341 +msgid "Enter your password" +msgstr "" + +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js:22 +msgid "Entity Name" +msgstr "" + +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js:9 +msgid "Entity Type" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:16 +msgid "Equals" +msgstr "" + +#. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#. Option for the 'Status' (Select) field in DocType 'Data Import' +#. Label of the error (Code) field in DocType 'Error Log' +#. Option for the 'Status' (Select) field in DocType '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/api/user_invitation.py:73 frappe/core/api/user_invitation.py:78 +#: frappe/core/api/user_invitation.py:84 frappe/core/api/user_invitation.py:115 +#: 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/core/doctype/user_invitation/user_invitation.py:95 +#: frappe/core/doctype/user_invitation/user_invitation.py:99 +#: frappe/core/doctype/user_invitation/user_invitation.py:102 +#: frappe/core/doctype/user_invitation/user_invitation.py:125 +#: frappe/core/doctype/user_invitation/user_invitation.py:127 +#: 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 "" + +#: frappe/public/js/frappe/web_form/web_form.js:264 +msgctxt "Title of error message in web form" +msgid "Error" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/error_log/error_log.json +msgid "Error Log" +msgstr "" + +#. Label of a Link in the Build Workspace +#: frappe/core/workspace/build/build.json +msgid "Error Logs" +msgstr "" + +#. Label of the error_message (Text) field in DocType 'Prepared Report' +#: frappe/core/doctype/prepared_report/prepared_report.json +msgid "Error Message" +msgstr "" + +#: frappe/public/js/frappe/form/print_utils.js:156 +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 "" + +#: frappe/email/doctype/email_domain/email_domain.py:32 +msgid "Error connecting via IMAP/POP3: {e}" +msgstr "" + +#: frappe/email/doctype/email_domain/email_domain.py:33 +msgid "Error connecting via SMTP: {e}" +msgstr "" + +#: frappe/email/doctype/email_domain/email_domain.py:101 +msgid "Error has occurred in {0}" +msgstr "" + +#: frappe/public/js/frappe/form/script_manager.js:199 +msgid "Error in Client Script" +msgstr "" + +#: frappe/public/js/frappe/form/script_manager.js:256 +msgid "Error in Client Script." +msgstr "" + +#: frappe/printing/doctype/letter_head/letter_head.js:21 +msgid "Error in Header/Footer Script" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:642 +#: frappe/email/doctype/notification/notification.py:782 +#: frappe/email/doctype/notification/notification.py:788 +msgid "Error in Notification" +msgstr "" + +#: frappe/utils/pdf.py:59 +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 "" + +#: frappe/email/doctype/notification/notification.py:779 +msgid "Error while evaluating Notification {0}. Please fix your template." +msgstr "" + +#: frappe/model/base_document.py:860 +msgid "Error: Data missing in table {0}" +msgstr "" + +#: frappe/model/base_document.py:870 +msgid "Error: Value missing for {0}: {1}" +msgstr "" + +#: frappe/model/base_document.py:864 +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' +#. Name of a DocType +#. Option for the 'Event Category' (Select) field in DocType 'Event' +#: frappe/core/doctype/communication/communication.json +#: frappe/desk/doctype/event/event.json +msgid "Event" +msgstr "" + +#. Label of the event_category (Select) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Event Category" +msgstr "" + +#. 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 +#: frappe/desk/doctype/event/event.json +#: frappe/desk/doctype/event_participants/event_participants.json +msgid "Event Participants" +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 "" + +#: 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 "" + +#. 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 "" + +#: frappe/public/js/frappe/ui/notifications/notifications.js:56 +msgid "Events" +msgstr "" + +#: frappe/desk/doctype/event/event.py:278 +msgid "Events in Today's Calendar" +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 "" + +#. Description of the 'Custom Options' (Code) field in DocType 'Dashboard +#. Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Ex: \"colors\": [\"#d1d8dd\", \"#ff5858\"]" +msgstr "" + +#. 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 the example (HTML) field in DocType 'Workflow Transition' +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +msgid "Example" +msgstr "" + +#. Description of the 'Default Portal Home' (Data) field in DocType 'Portal +#. Settings' +#: frappe/website/doctype/portal_settings/portal_settings.json +msgid "Example: \"/desk\"" +msgstr "" + +#. Description of the 'Path' (Data) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Example: #Tree/Account" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. Description of the 'Description' (Small Text) field in DocType 'Assignment +#. Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Example: {{ subject }}" +msgstr "" + +#. Option for the 'File Type' (Select) field in DocType 'Data Export' +#: frappe/core/doctype/data_export/data_export.json +msgid "Excel" +msgstr "" + +#: frappe/public/js/frappe/form/controls/password.js:90 +msgid "Excellent" +msgstr "" + +#. 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 "" + +#. 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 "" + +#: frappe/desk/doctype/system_console/system_console.js:10 +msgid "Execute Console script" +msgstr "" + +#: frappe/public/js/frappe/ui/dropdown_console.js:132 +msgid "Executing Code" +msgstr "" + +#: frappe/desk/doctype/system_console/system_console.js:18 +msgid "Executing..." +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:2140 +msgid "Execution Time: {0} sec" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Executive" +msgstr "" + +#. 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 "" + +#: frappe/public/js/frappe/form/controls/code.js:185 +msgctxt "Enlarge code field." +msgid "Expand" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:2121 +#: frappe/public/js/frappe/views/treeview.js:133 +msgid "Expand All" +msgstr "" + +#: frappe/database/query.py:354 +msgid "Expected 'and' or 'or' operator, found: {0}" +msgstr "" + +#: frappe/public/js/frappe/form/templates/form_sidebar.html:23 +msgid "Experimental" +msgstr "" + +#. 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' +#. Option for the 'Status' (Select) field in DocType 'User Invitation' +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/user_invitation/user_invitation.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 "" + +#. 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:1828 +#: frappe/public/js/frappe/views/reports/report_view.js:1629 +#: frappe/public/js/frappe/widgets/chart_widget.js:315 +msgid "Export" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:2282 +msgctxt "Button in list view actions menu" +msgid "Export" +msgstr "" + +#: frappe/public/js/frappe/data_import/data_exporter.js:245 +msgid "Export 1 record" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:262 +msgid "Export Custom Permissions" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:242 +msgid "Export Customizations" +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 "" + +#: frappe/core/doctype/data_import/data_import.js:86 +#: frappe/public/js/frappe/data_import/import_preview.js:199 +msgid "Export Errored Rows" +msgstr "" + +#. Label of the export_from (Data) field in DocType 'Access Log' +#: frappe/core/doctype/access_log/access_log.json +msgid "Export From" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:518 +msgid "Export Import Log" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_utils.js:245 +msgctxt "Export report" +msgid "Export Report: {0}" +msgstr "" + +#: frappe/public/js/frappe/data_import/data_exporter.js:26 +msgid "Export Type" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1640 +msgid "Export all matching rows?" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1650 +msgid "Export all {0} rows?" +msgstr "" + +#: frappe/public/js/frappe/views/file/file_view.js:154 +msgid "Export as zip" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_utils.js:184 +msgid "Export in Background" +msgstr "" + +#: frappe/public/js/frappe/utils/tools.js:11 +msgid "Export not allowed. You need {0} role to export." +msgstr "" + +#. 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 "" + +#. 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 "" + +#: frappe/public/js/frappe/data_import/data_exporter.js:247 +msgid "Export {0} records" +msgstr "" + +#: 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 "" + +#. 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 "" + +#. 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 "" + +#. Description of the 'Condition' (Data) field in DocType 'Notification +#. Recipient' +#: frappe/email/doctype/notification_recipient/notification_recipient.json +msgid "Expression, Optional" +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 "" + +#. 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' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "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' +#. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log' +#. Option for the 'Status' (Select) field in DocType '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 "" + +#. 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 "" + +#. 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:362 +msgid "Failed Transactions" +msgstr "" + +#: frappe/utils/synchronization.py:46 +msgid "Failed to aquire lock: {}. Lock may be held by another process." +msgstr "" + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:359 +msgid "Failed to change password." +msgstr "" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:232 +#: frappe/desk/page/setup_wizard/setup_wizard.py:42 +msgid "Failed to complete setup" +msgstr "" + +#: frappe/integrations/doctype/webhook/webhook.py:141 +msgid "Failed to compute request body: {}" +msgstr "" + +#: 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 "" + +#: frappe/auth.py:701 +msgid "Failed to decode token, please provide a valid base64-encoded token." +msgstr "" + +#: frappe/utils/password.py:210 +msgid "Failed to decrypt key {0}" +msgstr "" + +#: frappe/desk/reportview.py:635 +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 "" + +#: frappe/email/doctype/notification/notification.py:105 +#: frappe/integrations/doctype/webhook/webhook.py:131 +msgid "Failed to evaluate conditions: {}" +msgstr "" + +#: frappe/types/exporter.py:205 +msgid "Failed to export python type hints" +msgstr "" + +#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:249 +msgid "Failed to generate names from the series" +msgstr "" + +#: frappe/core/doctype/document_naming_settings/document_naming_settings.js:75 +msgid "Failed to generate preview of series" +msgstr "" + +#: frappe/handler.py:76 +msgid "Failed to get method for command {0} with {1}" +msgstr "" + +#: frappe/api/v2.py:46 +msgid "Failed to get method {0} with {1}" +msgstr "" + +#: 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 "" + +#: frappe/utils/image.py:75 +msgid "Failed to optimize image: {0}" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:122 +msgid "Failed to render message: {}" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:140 +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 "" + +#: frappe/desk/doctype/notification_log/notification_log.py:43 +msgid "Failed to send notification email" +msgstr "" + +#: frappe/desk/page/setup_wizard/setup_wizard.py:24 +msgid "Failed to update global settings" +msgstr "" + +#: 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 "" + +#. 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 "" + +#. Label of the fax (Data) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "Fax" +msgstr "" + +#: frappe/public/js/frappe/form/templates/form_sidebar.html:33 +msgid "Feedback" +msgstr "" + +#: frappe/desk/page/setup_wizard/install_fixtures.py:29 +msgid "Female" +msgstr "" + +#. 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 "" + +#: frappe/website/doctype/website_slideshow/website_slideshow.js:15 +msgid "Fetch Images" +msgstr "" + +#: frappe/website/doctype/website_slideshow/website_slideshow.js:13 +msgid "Fetch attached images from document" +msgstr "" + +#. 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 "" + +#: frappe/desk/doctype/global_search_settings/global_search_settings.py:61 +msgid "Fetching default Global Search documents." +msgstr "" + +#. 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:1887 +#: 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 "" + +#: frappe/core/doctype/doctype/doctype.py:418 +msgid "Field \"route\" is mandatory for Web Views" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1527 +msgid "Field \"title\" is mandatory if \"Website Search Field\" is set." +msgstr "" + +#: frappe/desk/doctype/bulk_update/bulk_update.js:17 +msgid "Field \"value\" is mandatory. Please specify value to be updated" +msgstr "" + +#. Label of the description (Text) field in DocType 'Custom Field' +#: frappe/custom/doctype/custom_field/custom_field.json +msgid "Field Description" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1078 +msgid "Field Missing" +msgstr "" + +#. 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 "" + +#: frappe/public/js/print_format_builder/PrintFormatSection.vue:141 +msgid "Field Orientation (Left-Right)" +msgstr "" + +#: frappe/public/js/print_format_builder/PrintFormatSection.vue:148 +msgid "Field Orientation (Top-Down)" +msgstr "" + +#: 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 "" + +#: frappe/desk/reportview.py:202 +msgid "Field not permitted in query" +msgstr "" + +#. Description of the 'Workflow State Field' (Data) field in DocType '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 "" + +#. Label of the track_field (Select) field in DocType 'Milestone Tracker' +#: frappe/automation/doctype/milestone_tracker/milestone_tracker.json +msgid "Field to Track" +msgstr "" + +#: frappe/custom/doctype/property_setter/property_setter.py:51 +msgid "Field type cannot be changed for {0}" +msgstr "" + +#: frappe/database/database.py:919 +msgid "Field {0} does not exist on {1}" +msgstr "" + +#: frappe/desk/form/meta.py:184 +msgid "Field {0} is referring to non-existing doctype {1}." +msgstr "" + +#: frappe/public/js/frappe/form/form.js:1756 +msgid "Field {0} not found." +msgstr "" + +#: frappe/email/doctype/notification/notification.py:547 +msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link" +msgstr "" + +#. 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:455 +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Fieldname" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:271 +msgid "Fieldname '{0}' conflicting with a {1} of the name {2} in {3}" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1077 +msgid "Fieldname called {0} must exist to enable autonaming" +msgstr "" + +#: frappe/database/schema.py:131 frappe/database/schema.py:408 +msgid "Fieldname is limited to 64 characters ({0})" +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.py:197 +msgid "Fieldname not set for Custom Field" +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.js:107 +msgid "Fieldname which will be the DocType for this link field." +msgstr "" + +#: frappe/public/js/form_builder/store.js:175 +msgid "Fieldname {0} appears multiple times" +msgstr "" + +#: frappe/database/schema.py:398 +msgid "Fieldname {0} cannot have special characters like {1}" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1921 +msgid "Fieldname {0} conflicting with meta object" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:497 +#: frappe/public/js/form_builder/utils.js:302 +msgid "Fieldname {0} is restricted" +msgstr "" + +#. 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:133 +#: 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 "" + +#. Label of the fields_multicheck (HTML) field in DocType 'Data Export' +#: frappe/core/doctype/data_export/data_export.json +msgid "Fields Multicheck" +msgstr "" + +#: frappe/core/doctype/file/file.py:431 +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:613 +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" +msgstr "" + +#. 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 "" + +#: frappe/custom/doctype/custom_field/custom_field.py:193 +msgid "Fieldtype cannot be changed from {0} to {1}" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.py:593 +msgid "Fieldtype cannot be changed from {0} to {1} in row {2}" +msgstr "" + +#. Label of a shortcut in the Tools Workspace +#. Name of a DocType +#. Option for the 'Select List View' (Select) field in DocType '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 "" + +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:498 +msgid "File \"{0}\" was skipped because of invalid file type" +msgstr "" + +#: frappe/core/doctype/file/utils.py:128 +msgid "File '{0}' not found" +msgstr "" + +#. 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 "" + +#: frappe/public/js/frappe/views/file/file_view.js:74 +msgid "File Manager" +msgstr "" + +#. Label of the file_name (Data) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "File Name" +msgstr "" + +#. Label of the file_size (Int) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "File Size" +msgstr "" + +#. 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 "" + +#. Label of the file_url (Code) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "File URL" +msgstr "" + +#: frappe/desk/page/backups/backups.py:107 +msgid "File backup is ready" +msgstr "" + +#: frappe/core/doctype/file/file.py:649 +msgid "File name cannot have {0}" +msgstr "" + +#: frappe/utils/csvutils.py:28 +msgid "File not attached" +msgstr "" + +#: frappe/core/doctype/file/file.py:759 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 "" + +#: frappe/public/js/frappe/request.js:198 +msgid "File too big" +msgstr "" + +#: frappe/core/doctype/file/file.py:390 +msgid "File type of {0} is not allowed" +msgstr "" + +#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:451 +msgid "File {0} does not exist" +msgstr "" + +#. Label of a Link in the Tools Workspace +#. 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 "" + +#: 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:208 +#: frappe/desk/doctype/number_card/number_card.js:347 +#: frappe/email/doctype/auto_email_report/auto_email_report.js:93 +#: frappe/public/js/frappe/list/base_list.js:969 +#: frappe/public/js/frappe/ui/filters/filter_list.js:134 +#: frappe/website/doctype/web_form/web_form.js:197 +msgid "Filter" +msgstr "" + +#: 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 "" + +#. Label of the filter_list (HTML) field in DocType 'Data Export' +#: frappe/core/doctype/data_export/data_export.json +msgid "Filter List" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. Label of the filter_values (HTML) field in DocType 'Prepared Report' +#: frappe/core/doctype/prepared_report/prepared_report.json +msgid "Filter Values" +msgstr "" + +#: frappe/database/query.py:360 +msgid "Filter condition missing after operator: {0}" +msgstr "" + +#: frappe/database/query.py:427 +msgid "Filter fields cannot contain backticks (`)." +msgstr "" + +#: 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 "" + +#: frappe/public/js/frappe/data_import/data_exporter.js:33 +msgid "Filtered Records" +msgstr "" + +#: frappe/website/doctype/help_article/help_article.py:91 frappe/www/list.py:45 +msgid "Filtered by \"{0}\"" +msgstr "" + +#. 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 (Code) field in DocType 'Notification' +#. Option for the 'Condition Type' (Select) field in DocType 'Notification' +#. Label of the filters_section (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 "" + +#. 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 the filters_display (HTML) field in DocType 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Filters Display" +msgstr "" + +#. Label of the filters_editor (HTML) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Filters Editor" +msgstr "" + +#. 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 "" + +#. Label of the filters_section (Section Break) field in DocType 'Number Card' +#: frappe/desk/doctype/number_card/number_card.json +msgid "Filters Section" +msgstr "" + +#: frappe/public/js/frappe/form/controls/link.js:514 +msgid "Filters applied for {0}" +msgstr "" + +#: frappe/public/js/frappe/views/kanban/kanban_view.js:202 +msgid "Filters saved" +msgstr "" + +#. Description of the 'Script' (Code) field in DocType '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 "" + +#: frappe/public/js/frappe/ui/filters/filter_list.js:133 +msgid "Filters {0}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1429 +msgid "Filters:" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:581 +msgid "Find '{0}' in ..." +msgstr "" + +#: 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:150 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:153 +msgid "Find {0} in {1}" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Submission Queue' +#: frappe/core/doctype/submission_queue/submission_queue.json +msgid "Finished" +msgstr "" + +#. 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 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 "" + +#. Label of the first_name (Data) field in DocType 'Contact' +#. Label of the first_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form +#: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:44 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:15 +msgid "First Name" +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 "" + +#: frappe/core/doctype/data_export/exporter.py:185 +msgid "First data column must be blank." +msgstr "" + +#: frappe/website/doctype/website_slideshow/website_slideshow.js:7 +msgid "First set the name and save the record." +msgstr "" + +#: 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 "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. 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' +#. Option for the 'Fieldtype' (Select) field in DocType '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 "" + +#. Label of the float_precision (Select) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Float Precision" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. 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/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 "" + +#: frappe/core/doctype/doctype/doctype.py:1451 +msgid "Fold can not be at the end of the form" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1449 +msgid "Fold must come before a Section Break" +msgstr "" + +#. Label of the folder (Link) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "Folder" +msgstr "" + +#. Label of the folder_name (Data) field in DocType 'IMAP Folder' +#: frappe/email/doctype/imap_folder/imap_folder.json +msgid "Folder Name" +msgstr "" + +#: frappe/public/js/frappe/views/file/file_view.js:100 +msgid "Folder name should not include '/' (slash)" +msgstr "" + +#: frappe/core/doctype/file/file.py:497 +msgid "Folder {0} is not empty" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Folio" +msgstr "" + +#: frappe/public/js/frappe/form/templates/form_sidebar.html:106 +#: frappe/public/js/frappe/form/toolbar.js:879 +msgid "Follow" +msgstr "" + +#: 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 "" + +#: 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 "" + +#: frappe/public/js/frappe/ui/field_group.js:139 +msgid "Following fields have invalid values:" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:358 +msgid "Following fields have missing values" +msgstr "" + +#: frappe/public/js/frappe/ui/field_group.js:126 +msgid "Following fields have missing values:" +msgstr "" + +#. Label of the font (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Font" +msgstr "" + +#. Label of the font_properties (Data) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Font Properties" +msgstr "" + +#. 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 "" + +#. Label of the section_break_8 (Section Break) field in DocType 'Print +#. Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Fonts" +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' +#. 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 "" + +#. 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 the footer_source (Select) field in DocType 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json +msgid "Footer Based On" +msgstr "" + +#. 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 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 the footer (HTML Editor) field in DocType 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json +msgid "Footer HTML" +msgstr "" + +#: frappe/printing/doctype/letter_head/letter_head.py:81 +msgid "Footer HTML set from attachment {0}" +msgstr "" + +#. 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 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 "" + +#. Label of the footer_logo (Attach Image) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Footer Logo" +msgstr "" + +#. 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 "" + +#. 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 "" + +#: frappe/printing/page/print/print.js:129 +msgid "Footer might not be visible as {0} option is disabled
" +msgstr "" + +#. Description of the 'Footer HTML' (HTML Editor) field in DocType 'Letter +#. Head' +#: frappe/printing/doctype/letter_head/letter_head.json +msgid "Footer will display correctly only in 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' +#: frappe/custom/doctype/property_setter/property_setter.json +msgid "For DocType Link / DocType Action" +msgstr "" + +#. Label of the for_document (Dynamic Link) field in DocType 'Permission Log' +#: frappe/core/doctype/permission_log/permission_log.json +msgid "For Document" +msgstr "" + +#: frappe/core/doctype/user_permission/user_permission_list.js:155 +msgid "For Document Type" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:566 +msgid "For Example: {} Open" +msgstr "" + +#. Description of the 'Options' (Small Text) field in DocType 'DocField' +#. Description of the 'Options' (Small Text) field in DocType 'Customize Form +#. Field' +#: 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 "" + +#. 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 "" + +#. Label of the for_value (Dynamic Link) field in DocType 'User Permission' +#: frappe/core/doctype/user_permission/user_permission.json +msgid "For Value" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:2137 +#: frappe/public/js/frappe/views/reports/report_view.js:108 +msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)." +msgstr "" + +#: 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 "" + +#. Description of the 'Format' (Data) field in DocType 'Workspace Shortcut' +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +msgid "For example: {} Open" +msgstr "" + +#. 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 "" + +#: frappe/integrations/doctype/google_settings/google_settings.js:7 +msgid "For more information, {0}." +msgstr "" + +#. Description of the 'Email To' (Small Text) field in DocType '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 "" + +#: frappe/core/doctype/data_export/exporter.py:197 +msgid "For updating, you can update only selective columns." +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1765 +msgid "For {0} at level {1} in {2} in row {3}" +msgstr "" + +#. Label of the force (Check) field in DocType 'Package Import' +#. Option for the 'Skip Authorization' (Select) field in DocType 'OAuth +#. Provider Settings' +#: frappe/core/doctype/package_import/package_import.json +#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json +msgid "Force" +msgstr "" + +#. 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 the force_show (Check) field in DocType 'Desktop Icon' +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +msgid "Force Show" +msgstr "" + +#: frappe/core/doctype/rq_job/rq_job.js:13 +msgid "Force Stop job" +msgstr "" + +#. 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 "" + +#. 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 "" + +#: frappe/www/login.html:37 +msgid "Forgot Password?" +msgstr "" + +#. Label of the form_builder_tab (Tab Break) field in DocType 'DocType' +#. Option for the 'Apply To' (Select) field in DocType 'Client Script' +#. Label of the form_tab (Tab Break) field in DocType 'Customize Form' +#. Option for the 'View' (Select) field in DocType '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:96 +#: frappe/website/doctype/web_form/web_form.json +msgid "Form" +msgstr "" + +#. 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 the form_dict (Code) field in DocType 'Recorder' +#: frappe/core/doctype/recorder/recorder.json +msgid "Form Dict" +msgstr "" + +#. 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 "" + +#. 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 +#: 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' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "Form URL-Encoded" +msgstr "" + +#. 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 "" + +#. Label of the format_data (Code) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Format Data" +msgstr "" + +#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Fortnightly" +msgstr "" + +#: frappe/core/doctype/communication/communication.js:70 +msgid "Forward" +msgstr "" + +#. 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 "" + +#. Label of the fraction (Data) field in DocType 'Currency' +#: frappe/geo/doctype/currency/currency.json +msgid "Fraction" +msgstr "" + +#. Label of the fraction_units (Int) field in DocType 'Currency' +#: frappe/geo/doctype/currency/currency.json +msgid "Fraction Units" +msgstr "" + +#. Option for the 'Social Login Provider' (Select) field in DocType '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 "" + +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Frappe Blog" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Frappe Forum" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/about.js:8 +msgid "Frappe Framework" +msgstr "" + +#: 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: Route +#: frappe/hooks.py +msgid "Frappe Support" +msgstr "" + +#: frappe/website/doctype/web_page/web_page.js:92 +msgid "Frappe page builder using components" +msgstr "" + +#: frappe/public/js/frappe/file_uploader/ImageCropper.vue:112 +msgctxt "Image Cropper" +msgid "Free" +msgstr "" + +#. 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 "" + +#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day' +#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day' +#. 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' +#. 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 "" + +#. 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 "" + +#: frappe/public/js/frappe/views/communication.js:197 +msgctxt "Email Sender" +msgid "From" +msgstr "" + +#. 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 "" + +#. 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 "" + +#: frappe/public/js/frappe/views/reports/query_report.js:1848 +msgid "From Document Type" +msgstr "" + +#. Label of the sender_full_name (Data) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "From Full Name" +msgstr "" + +#. Label of the from_user (Link) field in DocType 'Notification Log' +#: frappe/desk/doctype/notification_log/notification_log.json +msgid "From User" +msgstr "" + +#: frappe/public/js/frappe/utils/diffview.js:31 +msgid "From version" +msgstr "" + +#. Option for the 'Width' (Select) field in DocType 'Dashboard Chart Link' +#: frappe/desk/doctype/dashboard_chart_link/dashboard_chart_link.json +msgid "Full" +msgstr "" + +#. 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' +#: 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 +msgid "Full Name" +msgstr "" + +#: frappe/printing/page/print/print.js:80 +#: frappe/public/js/frappe/form/templates/print_layout.html:42 +msgid "Full Page" +msgstr "" + +#. Label of the full_width (Check) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Full Width" +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:246 +#: frappe/public/js/frappe/widgets/widget_dialog.js:699 +msgid "Function" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:706 +msgid "Function Based On" +msgstr "" + +#: frappe/__init__.py:466 +msgid "Function {0} is not whitelisted." +msgstr "" + +#: frappe/database/query.py:1419 +msgid "Function {0} requires arguments but none were provided" +msgstr "" + +#: frappe/public/js/frappe/views/treeview.js:419 +msgid "Further sub-groups can only be created under records marked as 'Group'" +msgstr "" + +#: frappe/core/doctype/communication/communication.js:291 +msgid "Fw: {0}" +msgstr "" + +#. Option for the 'Method' (Select) field in DocType 'Recorder' +#: frappe/core/doctype/recorder/recorder.json +msgid "GET" +msgstr "" + +#. Option for the 'Service' (Select) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "GMail" +msgstr "" + +#. Option for the 'License Type' (Select) field in DocType 'Package' +#: frappe/core/doctype/package/package.json +msgid "GNU Affero General Public License" +msgstr "" + +#. Option for the 'License Type' (Select) field in DocType 'Package' +#: frappe/core/doctype/package/package.json +msgid "GNU General Public License" +msgstr "" + +#. Option for the 'Select List View' (Select) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/public/js/frappe/views/gantt/gantt_view.js:10 +msgid "Gantt" +msgstr "" + +#: frappe/public/js/frappe/list/base_list.js:205 +msgid "Gantt View" +msgstr "" + +#. 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 "" + +#: 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:882 +msgid "Generate New Report" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:394 +msgid "Generate Random Password" +msgstr "" + +#. Label of the generate_separate_documents_for_each_assignee (Check) field in +#. DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Generate Separate Documents For Each Assignee" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:178 +#: frappe/public/js/frappe/utils/utils.js:1827 +msgid "Generate Tracking URL" +msgstr "" + +#. 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' +#. 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 "" + +#. Name of a DocType +#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json +msgid "Geolocation Settings" +msgstr "" + +#: frappe/email/doctype/notification/notification.js:226 +msgid "Get Alerts for Today" +msgstr "" + +#: frappe/desk/page/backups/backups.js:21 +msgid "Get Backup Encryption Key" +msgstr "" + +#. Label of the get_contacts (Button) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Get Contacts" +msgstr "" + +#: frappe/website/doctype/web_form/web_form.js:93 +msgid "Get Fields" +msgstr "" + +#: 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 "" + +#: frappe/integrations/doctype/connected_app/connected_app.js:6 +msgid "Get OpenID Configuration" +msgstr "" + +#: frappe/www/printview.html:22 +msgid "Get PDF" +msgstr "" + +#. Description of the 'Try a Naming Series' (Data) field in DocType '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' +#: 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' +#: frappe/core/doctype/user/user.json +msgid "Get your globally recognized avatar from Gravatar.com" +msgstr "" + +#. Label of the git_branch (Data) field in DocType 'Installed Application' +#: frappe/core/doctype/installed_application/installed_application.json +msgid "Git Branch" +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 "GitHub" +msgstr "" + +#: frappe/website/doctype/web_page/web_page.js:92 +msgid "Github flavoured markdown syntax" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/global_search_doctype/global_search_doctype.json +msgid "Global Search DocType" +msgstr "" + +#: frappe/desk/doctype/global_search_settings/global_search_settings.js:24 +msgid "Global Search Document Types Reset." +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/global_search_settings/global_search_settings.json +msgid "Global Search Settings" +msgstr "" + +#: frappe/public/js/frappe/ui/keyboard.js:122 +msgid "Global Shortcuts" +msgstr "" + +#. Label of the global_unsubscribe (Check) field in DocType 'Email Unsubscribe' +#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json +msgid "Global Unsubscribe" +msgstr "" + +#: frappe/public/js/frappe/form/toolbar.js:843 +msgid "Go" +msgstr "" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:241 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:321 +msgid "Go Back" +msgstr "" + +#: 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' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Go to Page" +msgstr "" + +#: frappe/public/js/workflow_builder/workflow_builder.bundle.js:41 +msgid "Go to Workflow" +msgstr "" + +#: frappe/desk/doctype/workspace/workspace.js:18 +msgid "Go to Workspace" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:144 +msgid "Go to next record" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:154 +msgid "Go to previous record" +msgstr "" + +#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py:53 +msgid "Go to the document" +msgstr "" + +#. Description of the 'Success URL' (Data) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Go to this URL after completing the form" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.js:54 +#: frappe/custom/doctype/client_script/client_script.js:12 +msgid "Go to {0}" +msgstr "" + +#: 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 "" + +#: frappe/core/doctype/page/page.js:11 +msgid "Go to {0} Page" +msgstr "" + +#: frappe/utils/goal.py:115 frappe/utils/goal.py:122 +msgid "Goal" +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 "Google" +msgstr "" + +#. 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 "" + +#. 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 +#. Label of the sb_00 (Section Break) field in DocType 'Google Calendar' +#. Label of a Link in the Integrations Workspace +#: frappe/desk/doctype/event/event.json +#: frappe/integrations/doctype/google_calendar/google_calendar.json +#: frappe/integrations/workspace/integrations/integrations.json +msgid "Google Calendar" +msgstr "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:266 +msgid "Google Calendar - Could not create Calendar for {0}, error code {1}." +msgstr "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:610 +msgid "Google Calendar - Could not delete Event {0} from Google Calendar, error code {1}." +msgstr "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:305 +msgid "Google Calendar - Could not fetch event from Google Calendar, error code {0}." +msgstr "" + +#: 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 "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:496 +msgid "Google Calendar - Could not insert event in Google Calendar {0}, error code {1}." +msgstr "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:580 +msgid "Google Calendar - Could not update Event {0} in Google Calendar, error code {1}." +msgstr "" + +#. Label of the google_calendar_event_id (Data) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Google Calendar Event ID" +msgstr "" + +#. 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 "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:181 +msgid "Google Calendar has been configured." +msgstr "" + +#. 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 +#. Label of the sb_00 (Section Break) field in DocType 'Google Contacts' +#. Label of a Link in the Integrations Workspace +#: frappe/contacts/doctype/contact/contact.json +#: frappe/integrations/doctype/google_contacts/google_contacts.json +#: frappe/integrations/workspace/integrations/integrations.json +msgid "Google Contacts" +msgstr "" + +#: frappe/integrations/doctype/google_contacts/google_contacts.py:137 +msgid "Google Contacts - Could not sync contacts from Google Contacts {0}, error code {1}." +msgstr "" + +#: frappe/integrations/doctype/google_contacts/google_contacts.py:294 +msgid "Google Contacts - Could not update contact in Google Contacts {0}, error code {1}." +msgstr "" + +#. Label of the google_contacts_id (Data) field in DocType 'Contact' +#: frappe/contacts/doctype/contact/contact.json +msgid "Google Contacts Id" +msgstr "" + +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:164 +msgid "Google Drive" +msgstr "" + +#. 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 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 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 "" + +#. 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 +#: frappe/integrations/workspace/integrations/integrations.json +msgid "Google Services" +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" +msgstr "" + +#: frappe/utils/csvutils.py:226 +msgid "Google Sheets URL is invalid or not publicly accessible." +msgstr "" + +#: 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 "" + +#. Label of the grant_type (Select) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Grant Type" +msgstr "" + +#: 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' +#. 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 "" + +#: 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' +#. 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 "" + +#: frappe/public/js/form_builder/components/controls/TableControl.vue:53 +msgid "Grid Empty State" +msgstr "" + +#. 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 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 "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:408 +msgid "Group By field is required to create a dashboard chart" +msgstr "" + +#: frappe/database/query.py:752 +msgid "Group By must be a string" +msgstr "" + +#. 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 "" + +#. 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' +#: 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' +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +msgid "HH:mm" +msgstr "" + +#. 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 "" + +#. 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' +#. 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' +#. Label of the html (Code) field in DocType 'Print Format' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#. Option for the 'Content Type' (Select) field in DocType '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:101 +#: frappe/public/js/print_format_builder/Field.vue:86 +#: 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 "" + +#. 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' +#: 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 "" + +#. Label of the page (HTML Editor) field in DocType 'Access Log' +#: frappe/core/doctype/access_log/access_log.json +msgid "HTML Page" +msgstr "" + +#. 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 "" + +#: 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' +#: frappe/desk/doctype/dashboard_chart_link/dashboard_chart_link.json +msgid "Half" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#. Name of a DocType +#: frappe/core/doctype/has_domain/has_domain.json +msgid "Has Domain" +msgstr "" + +#. 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 +#: frappe/core/doctype/has_role/has_role.json +msgid "Has Role" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#. Label of the content (HTML Editor) field in DocType 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json +msgid "Header HTML" +msgstr "" + +#: frappe/printing/doctype/letter_head/letter_head.py:69 +msgid "Header HTML set from attachment {0}" +msgstr "" + +#. 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 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 "" + +#: 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 "" + +#: frappe/email/email_body.py:322 +msgid "Headers must be a dictionary" +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' +#. 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 "" + +#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Heatmap" +msgstr "" + +#: frappe/templates/emails/new_user.html:2 +msgid "Hello" +msgstr "" + +#: frappe/templates/emails/user_invitation.html:2 +#: frappe/templates/emails/user_invitation_cancelled.html:2 +#: frappe/templates/emails/user_invitation_expired.html:2 +msgid "Hello," +msgstr "" + +#. 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 "" + +#. 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 "" + +#. Label of the help_articles (Int) field in DocType 'Help Category' +#: frappe/website/doctype/help_category/help_category.json +msgid "Help Articles" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:149 +msgid "Help on Search" +msgstr "" + +#. 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 "" + +#. 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' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Helvetica" +msgstr "" + +#. Option for the 'Font' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Helvetica Neue" +msgstr "" + +#: frappe/public/js/frappe/utils/utils.js:1824 +msgid "Here's your tracking URL" +msgstr "" + +#: frappe/www/qrcode.html:9 +msgid "Hi {0}" +msgstr "" + +#. 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 "" + +#. 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 "" + +#: frappe/public/js/frappe/views/reports/query_report.js:1650 +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 +#: 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 "" + +#. 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 "" + +#. 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 "" + +#. 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 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 "" + +#. Label of the hide_custom (Check) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "Hide Custom DocTypes and Reports" +msgstr "" + +#. 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 "" + +#. 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 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 "" + +#: frappe/www/error.html:62 +msgid "Hide Error" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:488 +msgid "Hide Label" +msgstr "" + +#. 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' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Hide Previous, Next and Close button on highlight dialog." +msgstr "" + +#: frappe/public/js/frappe/list/list_filter.js:94 +msgid "Hide Saved" +msgstr "" + +#. 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 "" + +#. 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 the hide_standard_menu (Check) field in DocType 'Portal Settings' +#: frappe/website/doctype/portal_settings/portal_settings.json +msgid "Hide Standard Menu" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1851 +msgid "Hide Tags" +msgstr "" + +#: frappe/public/js/frappe/views/calendar/calendar.js:179 +msgid "Hide Weekends" +msgstr "" + +#. 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 "" + +#: frappe/public/js/frappe/form/layout.js:285 +msgid "Hide details" +msgstr "" + +#. 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 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 "" + +#. 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' +#: frappe/desk/doctype/todo/todo.json +#: frappe/public/js/frappe/form/sidebar/assign_to.js:225 +msgid "High" +msgstr "" + +#. 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 "" + +#. Label of the highlight (Text) field in DocType 'Company History' +#: frappe/website/doctype/company_history/company_history.json +msgid "Highlight" +msgstr "" + +#: frappe/www/update-password.html:301 +msgid "Hint: Include symbols, numbers and capital letters in the password" +msgstr "" + +#. 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:156 frappe/templates/doc.html:19 +#: frappe/templates/includes/navbar/navbar.html:9 +#: 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 "" + +#. 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 "" + +#. Label of the home_settings (Code) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Home Settings" +msgstr "" + +#: 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 "" + +#: frappe/core/doctype/file/test_file.py:376 +msgid "Home/Test Folder 1/Test Folder 3" +msgstr "" + +#: frappe/core/doctype/file/test_file.py:332 +msgid "Home/Test Folder 2" +msgstr "" + +#. 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' +#: 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 "" + +#. 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 "" + +#. 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' +#: frappe/core/doctype/system_settings/system_settings.json +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" +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: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:335 +#: frappe/public/js/frappe/list/list_view.js:386 +#: frappe/public/js/frappe/list/list_view.js:450 +#: frappe/public/js/frappe/model/meta.js:200 +#: frappe/public/js/frappe/model/model.js:122 +msgid "ID" +msgstr "" + +#: frappe/desk/reportview.py:526 +#: frappe/public/js/frappe/views/reports/report_view.js:989 +msgctxt "Label of name column in report" +msgid "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' +#: frappe/custom/doctype/property_setter/property_setter.json +msgid "ID (name) of the entity whose property is to be set" +msgstr "" + +#. 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 "" + +#. 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 +#: 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 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 "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. 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 "" + +#. 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 "" + +#. 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 "" + +#. Label of the idx (Int) field in DocType 'Desktop Icon' +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +msgid "Idx" +msgstr "" + +#. 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 "" + +#. Description of the 'Don't Override Status' (Check) field in DocType +#. 'Workflow' +#. Description of the 'Don't Override Status' (Check) field in DocType +#. '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 "" + +#: frappe/core/doctype/doctype/doctype.py:1777 +#: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45 +#: frappe/public/js/frappe/roles_editor.js:68 +msgid "If Owner" +msgstr "" + +#: 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' +#: frappe/workflow/doctype/workflow/workflow.json +msgid "If checked, all other workflows become inactive." +msgstr "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#. 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' +#: 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 "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#. 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' +#: frappe/email/doctype/email_domain/email_domain.json +msgid "If non standard port (e.g. 587)" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#: 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 "" + +#: frappe/templates/emails/user_invitation_cancelled.html:8 +msgid "If this was a mistake or you need access again, please reach out to your team." +msgstr "" + +#. Description of the 'Fetch on Save if Empty' (Check) field in DocType +#. '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 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 "" + +#: frappe/core/doctype/data_export/exporter.py:204 +msgid "If you are updating, please select \"Overwrite\" else existing rows will not be deleted." +msgstr "" + +#: frappe/core/doctype/data_export/exporter.py:188 +msgid "If you are uploading new records, \"Naming Series\" becomes mandatory, if present." +msgstr "" + +#: frappe/core/doctype/data_export/exporter.py:186 +msgid "If you are uploading new records, leave the \"name\" (ID) column blank." +msgstr "" + +#: frappe/templates/emails/user_invitation.html:19 +msgid "If you have any questions, reach out to your system administrator." +msgstr "" + +#: frappe/utils/password.py:213 +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' +#: 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 "" + +#: frappe/templates/emails/administrator_logged_in.html:3 +msgid "If you think this is unauthorized, please change the Administrator password." +msgstr "" + +#. 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' +#: frappe/core/doctype/translation/translation.json +msgid "If your data is in HTML, please copy paste the exact HTML code with the tags." +msgstr "" + +#. 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 "" + +#. 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 "" + +#. Description of the 'Attachment Limit (MB)' (Int) field in DocType 'Email +#. Account' +#. Description of the 'Attachment Limit (MB)' (Int) field in DocType '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 "" + +#. Label of the ignored_apps (Table) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Ignored Apps" +msgstr "" + +#: frappe/model/workflow.py:202 +msgid "Illegal Document Status for {0}" +msgstr "" + +#: frappe/model/db_query.py:454 frappe/model/db_query.py:457 +#: frappe/model/db_query.py:1122 +msgid "Illegal SQL Query" +msgstr "" + +#: frappe/utils/jinja.py:127 +msgid "Illegal template" +msgstr "" + +#. Label of the image (Attach Image) field in DocType 'Contact' +#. 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 'Select List View' (Select) field in DocType 'Form Tour' +#. 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 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' +#. 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 "" + +#. 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 "" + +#. 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 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 "" + +#: 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 "" + +#: frappe/core/doctype/doctype/doctype.py:1507 +msgid "Image field must be a valid fieldname" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1509 +msgid "Image field must be of type Attach Image" +msgstr "" + +#: frappe/core/doctype/file/utils.py:136 +msgid "Image link '{0}' is not valid" +msgstr "" + +#: frappe/core/doctype/file/file.js:108 +msgid "Image optimized" +msgstr "" + +#: 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 "" + +#. Option for the 'Operation' (Select) field in DocType 'Activity Log' +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/user/user.js:372 +msgid "Impersonate" +msgstr "" + +#: frappe/core/doctype/user/user.js:399 +msgid "Impersonate as {0}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:352 +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' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Implicit" +msgstr "" + +#. 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 "" + +#: frappe/public/js/frappe/list/list_view.js:1913 +msgctxt "Button in list view menu" +msgid "Import" +msgstr "" + +#. 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 "" + +#: frappe/email/doctype/email_group/email_group.js:14 +msgid "Import Email From" +msgstr "" + +#. Label of the import_file (Attach) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Import File" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#. Label of the import_preview (HTML) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Import Preview" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:41 +msgid "Import Progress" +msgstr "" + +#: frappe/email/doctype/email_group/email_group.js:8 +#: frappe/email/doctype/email_group/email_group.js:30 +msgid "Import Subscribers" +msgstr "" + +#. Label of the import_type (Select) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Import Type" +msgstr "" + +#. Label of the import_warnings (HTML) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Import Warnings" +msgstr "" + +#: frappe/public/js/frappe/views/file/file_view.js:117 +msgid "Import Zip" +msgstr "" + +#. 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 "" + +#: frappe/core/doctype/data_import/importer.py:612 +msgid "Import template should be of type .csv, .xlsx or .xls" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:482 +msgid "Import template should contain a Header and atleast one row." +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:165 +msgid "Import timed out, please re-try." +msgstr "" + +#: frappe/core/doctype/data_import/data_import.py:68 +msgid "Importing {0} is not allowed." +msgstr "" + +#: frappe/integrations/doctype/google_contacts/google_contacts.js:19 +msgid "Importing {0} of {1}" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:35 +msgid "Importing {0} of {1}, {2}" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:20 +msgid "In" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#: frappe/core/doctype/doctype/doctype.js:88 +msgid "In Grid View" +msgstr "" + +#. Label of the in_standard_filter (Check) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "In List Filter" +msgstr "" + +#. 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 "" + +#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.js:19 +msgid "In Minutes" +msgstr "" + +#. 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 "" + +#: frappe/core/doctype/data_import/data_import.js:42 +msgid "In Progress" +msgstr "" + +#: frappe/database/database.py:287 +msgid "In Read Only Mode" +msgstr "" + +#. Label of the in_reply_to (Link) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "In Reply To" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#: frappe/core/doctype/recorder/recorder_list.js:209 +msgid "Inactive" +msgstr "" + +#. 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 "" + +#. Name of a role +#: frappe/core/doctype/communication/communication.json +#: frappe/email/doctype/email_account/email_account.json +msgid "Inbox User" +msgstr "" + +#: 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 the navbar_search (Check) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Include Search in Top Bar" +msgstr "" + +#: frappe/website/doctype/website_theme/website_theme.js:61 +msgid "Include Theme from Apps" +msgstr "" + +#. 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 "" + +#: frappe/public/js/frappe/form/print_utils.js:59 +#: frappe/public/js/frappe/views/reports/query_report.js:1628 +msgid "Include filters" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:1648 +msgid "Include hidden columns" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:1620 +msgid "Include indentation" +msgstr "" + +#: frappe/public/js/frappe/form/controls/password.js:106 +msgid "Include symbols, numbers and capital letters in the password" +msgstr "" + +#. 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 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 the mailbox_settings (Section Break) field in DocType 'Email +#. Domain' +#: frappe/email/doctype/email_domain/email_domain.json +msgid "Incoming Settings" +msgstr "" + +#: frappe/email/doctype/email_domain/email_domain.py:32 +msgid "Incoming email account not correct" +msgstr "" + +#: frappe/model/virtual_doctype.py:79 frappe/model/virtual_doctype.py:92 +msgid "Incomplete Virtual Doctype Implementation" +msgstr "" + +#: frappe/auth.py:258 +msgid "Incomplete login details" +msgstr "" + +#: frappe/email/smtp.py:104 +msgid "Incorrect Configuration" +msgstr "" + +#: frappe/utils/csvutils.py:234 +msgid "Incorrect URL" +msgstr "" + +#: frappe/utils/password.py:100 +msgid "Incorrect User or Password" +msgstr "" + +#: frappe/twofactor.py:176 frappe/twofactor.py:188 +msgid "Incorrect Verification code" +msgstr "" + +#: frappe/model/document.py:1555 +msgid "Incorrect value in row {0}:" +msgstr "" + +#: frappe/model/document.py:1557 +msgid "Incorrect value:" +msgstr "" + +#. 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:1010 +msgid "Index" +msgstr "" + +#. 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 "" + +#: 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 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 the indicator (Select) field in DocType 'Kanban Board Column' +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json +msgid "Indicator" +msgstr "" + +#. Label of the indicator_color (Select) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "Indicator Color" +msgstr "" + +#: frappe/public/js/frappe/views/workspace/workspace.js:463 +msgid "Indicator color" +msgstr "" + +#. 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 "" + +#: frappe/core/doctype/data_export/exporter.py:144 +msgid "Info:" +msgstr "" + +#. 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 "" + +#. Option for the 'Database Engine' (Select) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "InnoDB" +msgstr "" + +#. 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 "" + +#: 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:1893 +msgid "Insert After" +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.py:251 +msgid "Insert After cannot be set as {0}" +msgstr "" + +#: 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 "" + +#: frappe/public/js/frappe/form/grid_row_form.js:42 +msgid "Insert Below" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:395 +msgid "Insert Column Before {0}" +msgstr "" + +#: 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' +#: frappe/core/doctype/data_import/data_import.json +msgid "Insert New Records" +msgstr "" + +#. Label of the insert_style (Check) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Insert Style" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Instagram" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:678 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:679 +msgid "Install {0} from Marketplace" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/installed_application/installed_application.json +msgid "Installed Application" +msgstr "" + +#. 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 "" + +#: frappe/core/doctype/installed_applications/installed_applications.js:18 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Installed Apps" +msgstr "" + +#. 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 "" + +#: frappe/database/query.py:808 frappe/database/query.py:1054 +msgid "Insufficient Permission for {0}" +msgstr "" + +#: frappe/desk/reportview.py:361 +msgid "Insufficient Permissions for deleting Report" +msgstr "" + +#: frappe/desk/reportview.py:332 +msgid "Insufficient Permissions for editing Report" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:446 +msgid "Insufficient attachment limit" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. 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' +#. 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/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Int" +msgstr "" + +#. Name of a DocType +#: frappe/integrations/doctype/integration_request/integration_request.json +msgid "Integration Request" +msgstr "" + +#. Group in User's connections +#. 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 "" + +#. 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 "" + +#. Option for the 'Font' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Inter" +msgstr "" + +#. Label of the interest (Small Text) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Interests" +msgstr "" + +#. Option for the 'Level' (Select) field in DocType 'Help Article' +#: frappe/website/doctype/help_article/help_article.json +msgid "Intermediate" +msgstr "" + +#: frappe/public/js/frappe/request.js:235 +msgid "Internal Server Error" +msgstr "" + +#. 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' +#: frappe/website/doctype/about_us_settings/about_us_settings.json +msgid "Introduce your company to the website visitor." +msgstr "" + +#. 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 "" + +#. 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 "" + +#. 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' +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +msgid "Invalid" +msgstr "" + +#: frappe/public/js/form_builder/utils.js:221 +#: frappe/public/js/frappe/form/grid_row.js:850 +#: frappe/public/js/frappe/form/layout.js:810 +#: frappe/public/js/frappe/views/reports/report_view.js:721 +msgid "Invalid \"depends_on\" expression" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:514 +msgid "Invalid \"depends_on\" expression set in filter {0}" +msgstr "" + +#: frappe/public/js/frappe/form/save.js:210 +msgid "Invalid \"mandatory_depends_on\" expression" +msgstr "" + +#: frappe/utils/nestedset.py:178 +msgid "Invalid Action" +msgstr "" + +#: frappe/utils/csvutils.py:37 +msgid "Invalid CSV Format" +msgstr "" + +#: frappe/integrations/frappe_providers/frappecloud_billing.py:111 +msgid "Invalid Code. Please try again." +msgstr "" + +#: frappe/integrations/doctype/webhook/webhook.py:91 +msgid "Invalid Condition: {}" +msgstr "" + +#: frappe/email/smtp.py:135 +msgid "Invalid Credentials" +msgstr "" + +#: frappe/utils/data.py:146 frappe/utils/data.py:309 +msgid "Invalid Date" +msgstr "" + +#: frappe/www/list.py:85 +msgid "Invalid DocType" +msgstr "" + +#: frappe/database/query.py:144 +msgid "Invalid DocType: {0}" +msgstr "" + +#: frappe/email/doctype/email_group/email_group.py:51 +msgid "Invalid Doctype" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1273 +msgid "Invalid Fieldname" +msgstr "" + +#: frappe/core/doctype/file/file.py:221 +msgid "Invalid File URL" +msgstr "" + +#: frappe/database/query.py:429 frappe/database/query.py:456 +#: frappe/database/query.py:466 frappe/database/query.py:489 +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 "" + +#: frappe/utils/dashboard.py:61 +msgid "Invalid Filter Value" +msgstr "" + +#: frappe/website/doctype/website_settings/website_settings.py:83 +msgid "Invalid Home Page" +msgstr "" + +#: frappe/utils/verified_command.py:48 frappe/www/update-password.html:178 +msgid "Invalid Link" +msgstr "" + +#: frappe/www/login.py:128 +msgid "Invalid Login Token" +msgstr "" + +#: 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 "" + +#: frappe/model/naming.py:109 +msgid "Invalid Naming Series: {}" +msgstr "" + +#: frappe/core/doctype/rq_job/rq_job.py:113 +#: frappe/core/doctype/rq_job/rq_job.py:122 +msgid "Invalid Operation" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1642 +#: frappe/core/doctype/doctype/doctype.py:1651 +msgid "Invalid Option" +msgstr "" + +#: frappe/email/smtp.py:103 +msgid "Invalid Outgoing Mail Server or Port: {0}" +msgstr "" + +#: frappe/email/doctype/auto_email_report/auto_email_report.py:200 +msgid "Invalid Output Format" +msgstr "" + +#: frappe/model/base_document.py:134 +msgid "Invalid Override" +msgstr "" + +#: frappe/integrations/doctype/connected_app/connected_app.py:202 +msgid "Invalid Parameters." +msgstr "" + +#: frappe/core/doctype/user/user.py:1241 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 "" + +#: frappe/utils/__init__.py:125 +msgid "Invalid Phone Number" +msgstr "" + +#: frappe/auth.py:97 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 +#: frappe/www/login.py:128 +msgid "Invalid Request" +msgstr "" + +#: frappe/desk/search.py:26 +msgid "Invalid Search Field {0}" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1215 +msgid "Invalid Table Fieldname" +msgstr "" + +#: frappe/public/js/workflow_builder/store.js:192 +msgid "Invalid Transition" +msgstr "" + +#: frappe/core/doctype/file/file.py:232 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:550 +#: frappe/public/js/frappe/widgets/widget_dialog.js:602 +#: frappe/utils/csvutils.py:226 frappe/utils/csvutils.py:247 +msgid "Invalid URL" +msgstr "" + +#: frappe/email/receive.py:157 +msgid "Invalid User Name or Support Password. Please rectify and try again." +msgstr "" + +#: frappe/public/js/frappe/ui/field_group.js:137 +msgid "Invalid Values" +msgstr "" + +#: frappe/integrations/doctype/webhook/webhook.py:120 +msgid "Invalid Webhook Secret" +msgstr "" + +#: frappe/desk/reportview.py:187 +msgid "Invalid aggregate function" +msgstr "" + +#: frappe/database/query.py:1544 +msgid "Invalid alias format: {0}. Alias must be a simple identifier." +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:195 +msgid "Invalid app" +msgstr "" + +#: frappe/database/query.py:1470 +msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed." +msgstr "" + +#: frappe/database/query.py:1446 +msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed." +msgstr "" + +#: frappe/database/query.py:462 +msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed." +msgstr "" + +#: frappe/database/query.py:577 +msgid "Invalid characters in table name: {0}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:404 +msgid "Invalid column" +msgstr "" + +#: frappe/database/query.py:383 +msgid "Invalid condition type in nested filters: {0}" +msgstr "" + +#: frappe/database/query.py:789 +msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'." +msgstr "" + +#: frappe/model/document.py:1020 frappe/model/document.py:1034 +msgid "Invalid docstatus" +msgstr "" + +#: frappe/public/js/frappe/utils/dashboard_utils.js:229 +msgid "Invalid expression set in filter {0}" +msgstr "" + +#: frappe/public/js/frappe/utils/dashboard_utils.js:219 +msgid "Invalid expression set in filter {0} ({1})" +msgstr "" + +#: frappe/database/query.py:1303 +msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'." +msgstr "" + +#: frappe/database/query.py:736 +msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'." +msgstr "" + +#: frappe/database/query.py:1622 +msgid "Invalid field name in function: {0}. Only simple field names are allowed." +msgstr "" + +#: frappe/utils/data.py:2241 +msgid "Invalid field name {0}" +msgstr "" + +#: frappe/database/query.py:670 +msgid "Invalid field type: {0}" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1086 +msgid "Invalid fieldname '{0}' in autoname" +msgstr "" + +#: frappe/deprecation_dumpster.py:283 +msgid "Invalid file path: {0}" +msgstr "" + +#: frappe/database/query.py:366 +msgid "Invalid filter condition: {0}. Expected a list or tuple." +msgstr "" + +#: frappe/database/query.py:452 +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:1424 +msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed." +msgstr "" + +#: frappe/database/query.py:1385 +msgid "Invalid function dictionary format" +msgstr "" + +#: frappe/core/api/user_invitation.py:17 +msgid "Invalid input" +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 "" + +#: frappe/core/api/user_invitation.py:115 +msgid "Invalid key" +msgstr "" + +#: frappe/model/naming.py:498 +msgid "Invalid name type (integer) for varchar name column" +msgstr "" + +#: frappe/model/naming.py:62 +msgid "Invalid naming series {}: dot (.) missing" +msgstr "" + +#: frappe/model/naming.py:76 +msgid "Invalid naming series {}: dot (.) missing before the numeric placeholders. Kindly use a format like ABCD.#####." +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:453 +msgid "Invalid or corrupted content for import" +msgstr "" + +#: frappe/website/doctype/website_settings/website_settings.py:139 +msgid "Invalid redirect regex in row #{}: {}" +msgstr "" + +#: frappe/app.py:340 +msgid "Invalid request arguments" +msgstr "" + +#: frappe/app.py:327 +msgid "Invalid request body" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:181 +msgid "Invalid role" +msgstr "" + +#: frappe/database/query.py:412 +msgid "Invalid simple filter format: {0}" +msgstr "" + +#: frappe/database/query.py:343 +msgid "Invalid start for filter condition: {0}. Expected a list or tuple." +msgstr "" + +#: frappe/database/query.py:1491 +msgid "Invalid string literal format: {0}" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:430 +msgid "Invalid template file for import" +msgstr "" + +#: frappe/integrations/doctype/connected_app/connected_app.py:208 +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 "" + +#: frappe/model/naming.py:176 +msgid "Invalid value specified for UUID: {}" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form.js:253 +msgctxt "Error message in web form" +msgid "Invalid values for fields:" +msgstr "" + +#: frappe/printing/page/print/print.js:654 +msgid "Invalid wkhtmltopdf version" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1565 +msgid "Invalid {0} condition" +msgstr "" + +#. Option for the 'Style' (Select) field in DocType 'Workflow State' +#: frappe/workflow/doctype/workflow_state/workflow_state.json +msgid "Inverse" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:95 +msgid "Invitation already accepted" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:99 +msgid "Invitation already exists" +msgstr "" + +#: frappe/core/api/user_invitation.py:84 +msgid "Invitation cannot be cancelled" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:127 +msgid "Invitation is cancelled" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:125 +msgid "Invitation is expired" +msgstr "" + +#: frappe/core/api/user_invitation.py:73 frappe/core/api/user_invitation.py:78 +msgid "Invitation not found" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:59 +msgid "Invitation to join {0} cancelled" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:76 +msgid "Invitation to join {0} expired" +msgstr "" + +#: frappe/contacts/doctype/contact/contact.js:30 +msgid "Invite as User" +msgstr "" + +#. Label of the invited_by (Link) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Invited By" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:22 +msgid "Is" +msgstr "" + +#. Label of the is_active (Check) field in DocType 'Workflow' +#: frappe/workflow/doctype/workflow/workflow.json +msgid "Is Active" +msgstr "" + +#. Label of the is_attachments_folder (Check) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "Is Attachments Folder" +msgstr "" + +#. 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 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:50 +#: frappe/core/doctype/doctype_link/doctype_link.json +msgid "Is Child Table" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. 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 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 "" + +#. 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 "" + +#. Label of the is_dynamic_url (Check) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "Is Dynamic URL?" +msgstr "" + +#. Label of the is_folder (Check) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "Is Folder" +msgstr "" + +#: frappe/public/js/frappe/list/list_filter.js:43 +msgid "Is Global" +msgstr "" + +#: frappe/public/js/frappe/views/treeview.js:418 +msgid "Is Group" +msgstr "" + +#. Label of the is_hidden (Check) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "Is Hidden" +msgstr "" + +#. Label of the is_home_folder (Check) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "Is Home Folder" +msgstr "" + +#. Label of the reqd (Check) field in DocType 'Custom Field' +#: frappe/custom/doctype/custom_field/custom_field.json +msgid "Is Mandatory Field" +msgstr "" + +#. 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 "" + +#. Label of the is_primary (Check) field in DocType 'Contact Email' +#: frappe/contacts/doctype/contact_email/contact_email.json +msgid "Is Primary" +msgstr "" + +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:43 +msgid "Is Primary Address" +msgstr "" + +#. Label of the is_primary_contact (Check) field in DocType 'Contact' +#: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:49 +msgid "Is Primary Contact" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. Label of the is_private (Check) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "Is Private" +msgstr "" + +#. 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 "" + +#. Label of the is_published_field (Data) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Is Published Field" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1516 +msgid "Is Published Field must be a valid fieldname" +msgstr "" + +#. 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 the is_remote_request (Check) field in DocType 'Integration +#. Request' +#: frappe/integrations/doctype/integration_request/integration_request.json +msgid "Is Remote Request?" +msgstr "" + +#. 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:65 +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Is Single" +msgstr "" + +#. Label of the is_skipped (Check) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Is Skipped" +msgstr "" + +#. Label of the is_spam (Check) field in DocType 'Email Rule' +#: frappe/email/doctype/email_rule/email_rule.json +msgid "Is Spam" +msgstr "" + +#. 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 "" + +#. Label of the is_submittable (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/doctype/doctype_list.js:40 +msgid "Is Submittable" +msgstr "" + +#. 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 the istable (Check) field in DocType 'Customize Form' +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Is Table" +msgstr "" + +#. 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 the is_tree (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Is Tree" +msgstr "" + +#. 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 "" + +#. 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 the is_standard (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Is standard" +msgstr "" + +#: 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 "" + +#. Label of the item_label (Data) field in DocType 'Navbar Item' +#: frappe/core/doctype/navbar_item/navbar_item.json +msgid "Item Label" +msgstr "" + +#. Label of the item_type (Select) field in DocType 'Navbar Item' +#: frappe/core/doctype/navbar_item/navbar_item.json +msgid "Item Type" +msgstr "" + +#: frappe/utils/nestedset.py:229 +msgid "Item cannot be added to its own descendants" +msgstr "" + +#. Option for the 'Print Format Type' (Select) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "JS" +msgstr "" + +#. 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 'Type' (Select) field in DocType 'DocField' +#. 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' +#: 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 "" + +#. Label of the webhook_json (Code) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "JSON Request Body" +msgstr "" + +#: frappe/templates/signup.html:5 +msgid "Jane Doe" +msgstr "" + +#. Label of the js (Code) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json +msgid "JavaScript" +msgstr "" + +#. Description of the 'Javascript' (Code) field in DocType 'Report' +#: frappe/core/doctype/report/report.json +msgid "JavaScript Format: frappe.query_reports['REPORTNAME'] = {}" +msgstr "" + +#. 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 "" + +#: frappe/www/login.html:74 +msgid "Javascript is disabled on your browser" +msgstr "" + +#. Option for the 'Print Format Type' (Select) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Jinja" +msgstr "" + +#. 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 the job_id (Link) field in DocType 'Submission Queue' +#: frappe/core/doctype/submission_queue/submission_queue.json +msgid "Job Id" +msgstr "" + +#. 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 the job_name (Data) field in DocType 'RQ Job' +#: frappe/core/doctype/rq_job/rq_job.json +msgid "Job Name" +msgstr "" + +#. 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 "" + +#: frappe/core/doctype/rq_job/rq_job.js:24 +msgid "Job Stopped Successfully" +msgstr "" + +#: 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 "" + +#: frappe/desk/doctype/event/event.js:55 +msgid "Join video conference with {0}" +msgstr "" + +#: frappe/public/js/frappe/form/toolbar.js:398 +#: frappe/public/js/frappe/form/toolbar.js:833 +msgid "Jump to field" +msgstr "" + +#: 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' +#. 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 "" + +#. Name of a DocType +#. 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 "" + +#. Name of a DocType +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json +msgid "Kanban Board Column" +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:402 +msgid "Kanban Board Name" +msgstr "" + +#: frappe/public/js/frappe/views/kanban/kanban_view.js:279 +msgctxt "Button in kanban view menu" +msgid "Kanban Settings" +msgstr "" + +#: frappe/public/js/frappe/list/base_list.js:206 +msgid "Kanban View" +msgstr "" + +#. Description of a DocType +#: frappe/core/doctype/activity_log/activity_log.json +msgid "Keep track of all update feeds" +msgstr "" + +#. Description of a DocType +#: frappe/core/doctype/communication/communication.json +msgid "Keeps track of all communications" +msgstr "" + +#. 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 'User Invitation' +#. 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/core/doctype/user_invitation/user_invitation.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 "" + +#. Label of a standard help item +#. Type: Action +#: frappe/hooks.py frappe/public/js/frappe/ui/keyboard.js:130 +msgid "Keyboard Shortcuts" +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 "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 +#: 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 "" + +#. Name of a role +#: frappe/website/doctype/help_article/help_article.json +msgid "Knowledge Base Contributor" +msgstr "" + +#. Name of a role +#: frappe/website/doctype/help_article/help_article.json +msgid "Knowledge Base Editor" +msgstr "" + +#: 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 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 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 the ldap_email_field (Data) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "LDAP Email Field" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#. Name of a DocType +#: frappe/integrations/doctype/ldap_group_mapping/ldap_group_mapping.json +msgid "LDAP Group Mapping" +msgstr "" + +#. 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 "" + +#. 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 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 "" + +#. 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 "" + +#. 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 "" + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:163 +msgid "LDAP Not Installed" +msgstr "" + +#. 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 "" + +#. 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 "" + +#: 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 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 the ldap_security (Section Break) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "LDAP Security" +msgstr "" + +#. 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 the ldap_server_url (Data) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "LDAP Server Url" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:309 +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:426 +msgid "LDAP is not enabled." +msgstr "" + +#. 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 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 "" + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:102 +msgid "LDAP settings incorrect. validation response was: {0}" +msgstr "" + +#. Option for the 'Comment Type' (Select) field in DocType '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 of the label_help (HTML) field in DocType 'Custom Field' +#: frappe/custom/doctype/custom_field/custom_field.json +msgid "Label Help" +msgstr "" + +#. 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 "" + +#: frappe/custom/doctype/custom_field/custom_field.py:145 +msgid "Label is mandatory" +msgstr "" + +#. Label of the sb0 (Section Break) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Landing Page" +msgstr "" + +#: frappe/public/js/frappe/form/print_utils.js:23 +msgid "Landscape" +msgstr "" + +#. Name of a DocType +#. 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' +#. Label of a field in the edit-profile Web Form +#: 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/core/web_form/edit_profile/edit_profile.json +#: frappe/printing/page/print/print.js:117 +#: frappe/public/js/frappe/form/templates/print_layout.html:11 +msgid "Language" +msgstr "" + +#. Label of the language_code (Data) field in DocType 'Language' +#: frappe/core/doctype/language/language.json +msgid "Language Code" +msgstr "" + +#. Label of the language_name (Data) field in DocType 'Language' +#: frappe/core/doctype/language/language.json +msgid "Language Name" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. 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 the last_ip (Read Only) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Last IP" +msgstr "" + +#. Label of the last_known_versions (Text) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Last Known Versions" +msgstr "" + +#. Label of the last_login (Read Only) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Last Login" +msgstr "" + +#: 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 "" + +#. 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 "" + +#. Label of the last_name (Data) field in DocType 'Contact' +#. Label of the last_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form +#: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:45 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:19 +msgid "Last Name" +msgstr "" + +#. Label of the last_password_reset_date (Date) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Last Password Reset Date" +msgstr "" + +#. 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:648 +msgid "Last Quarter" +msgstr "" + +#. Label of the last_received_at (Datetime) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Last Received At" +msgstr "" + +#. 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 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 "" + +#. 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 "" + +#: 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 "" + +#: 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 "" + +#. Label of the last_user (Link) field in DocType 'Assignment Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Last User" +msgstr "" + +#. 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:640 +msgid "Last Week" +msgstr "" + +#. 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:656 +msgid "Last Year" +msgstr "" + +#: frappe/public/js/frappe/widgets/chart_widget.js:753 +msgid "Last synced {0}" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:194 +msgid "Layout Reset" +msgstr "" + +#: 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 "" + +#: frappe/website/web_template/section_with_features/section_with_features.html:26 +msgid "Learn more" +msgstr "" + +#. Description of the 'Repeat Till' (Date) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Leave blank to repeat always" +msgstr "" + +#: frappe/core/doctype/communication/mixins.py:207 +#: frappe/email/doctype/email_account/email_account.py:720 +msgid "Leave this conversation" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Ledger" +msgstr "" + +#. Option for the 'Position' (Select) field in DocType 'Form Tour Step' +#. Option for the 'Align' (Select) field in DocType 'Letter Head' +#. Option for the 'Text Align' (Select) field in DocType '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 "" + +#: 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 "" + +#. 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 "" + +#. 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 "" + +#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:58 +msgid "Left this conversation" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Legal" +msgstr "" + +#. 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 "" + +#: frappe/public/js/frappe/ui/chart.js:11 +msgid "Length of passed data array is greater than value of maximum allowed label points!" +msgstr "" + +#: frappe/database/schema.py:138 +msgid "Length of {0} should be between 1 and 1000" +msgstr "" + +#: 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 "" + +#: 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 "" + +#: frappe/utils/password_strength.py:111 +msgid "Let's avoid repeated words and characters" +msgstr "" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:474 +msgid "Let's set up your account" +msgstr "" + +#: 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 "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Letter" +msgstr "" + +#. Label of the letter_head (Link) field in DocType 'Report' +#. Name of a DocType +#: frappe/core/doctype/report/report.json +#: frappe/printing/doctype/letter_head/letter_head.json +#: frappe/printing/page/print/print.js:140 +#: frappe/public/js/frappe/form/print_utils.js:50 +#: 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 "" + +#. Label of the source (Select) field in DocType 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json +msgid "Letter Head Based On" +msgstr "" + +#. 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 "" + +#. 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 "" + +#: frappe/printing/doctype/letter_head/letter_head.js:30 +msgid "Letter Head Scripts" +msgstr "" + +#: frappe/printing/doctype/letter_head/letter_head.py:49 +msgid "Letter Head cannot be both disabled and default" +msgstr "" + +#. 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 "" + +#. 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:68 +#: frappe/website/doctype/help_article/help_article.json +msgid "Level" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager.js:467 +msgid "Level 0 is for document level permissions, higher levels for field level permissions." +msgstr "" + +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:94 +msgid "Library" +msgstr "" + +#. Label of the license (Markdown Editor) field in DocType 'Package' +#: frappe/core/doctype/package/package.json frappe/www/attribution.html:36 +msgid "License" +msgstr "" + +#. 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' +#: frappe/core/doctype/user/user.json +msgid "Light" +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 "Light Blue" +msgstr "" + +#. Label of the light_color (Link) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Light Color" +msgstr "" + +#: frappe/public/js/frappe/ui/theme_switcher.js:60 +msgid "Light Theme" +msgstr "" + +#. 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 "" + +#: frappe/desk/like.py:92 +msgid "Liked" +msgstr "" + +#: 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 "" + +#. Label of the likes (Int) field in DocType 'Help Article' +#: frappe/website/doctype/help_article/help_article.json +msgid "Likes" +msgstr "" + +#. Label of the limit (Int) field in DocType 'Bulk Update' +#: frappe/desk/doctype/bulk_update/bulk_update.json +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" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. 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' +#. 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' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' +#. Label of the link (Dynamic Link) field in DocType 'Workflow Transition Task' +#: 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 +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Link" +msgstr "" + +#. Label of the tab_break_18 (Tab Break) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "Link Cards" +msgstr "" + +#. 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 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 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 "" + +#. Label of the link_doctype (Link) field in DocType 'Dynamic Link' +#: frappe/core/doctype/dynamic_link/dynamic_link.json +msgid "Link Document Type" +msgstr "" + +#: 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 "" + +#. 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 "" + +#. 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 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 "" + +#. 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 "" + +#. 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 "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:363 +msgid "Link To in Row" +msgstr "" + +#. 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 "" + +#: 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' +#: 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' +#: 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 "" + +#. 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 "" + +#: frappe/public/js/frappe/form/linked_with.js:23 +msgid "Linked With" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "LinkedIn" +msgstr "" + +#. 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 'Event' +#. 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/event/event.json +#: frappe/desk/doctype/workspace/workspace.json +msgid "Links" +msgstr "" + +#. Option for the 'Apply To' (Select) field in DocType 'Client Script' +#. Option for the 'View' (Select) field in DocType 'Form Tour' +#. Option for the 'Select List View' (Select) field in DocType 'Form Tour' +#. Option for the 'DocType View' (Select) field in DocType '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 "" + +#. 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 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 +#: frappe/desk/doctype/list_filter/list_filter.json +msgid "List Filter" +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 "" + +#: frappe/public/js/frappe/list/list_view.js:1993 +msgctxt "Button in list view menu" +msgid "List Settings" +msgstr "" + +#: frappe/public/js/frappe/list/base_list.js:202 +msgid "List View" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/list_view_settings/list_view_settings.json +msgid "List View Settings" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:161 +msgid "List a document type" +msgstr "" + +#. 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 "" + +#. 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:551 +msgid "Lists" +msgstr "" + +#. Option for the 'Rule' (Select) field in DocType 'Assignment Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Load Balancing" +msgstr "" + +#: frappe/public/js/frappe/list/base_list.js:399 +#: frappe/public/js/frappe/web_form/web_form_list.js:306 +#: frappe/website/doctype/help_article/templates/help_article_list.html:30 +msgid "Load More" +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:215 +msgctxt "Form timeline" +msgid "Load More Communications" +msgstr "" + +#: 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:526 +#: frappe/public/js/frappe/list/list_view.js:363 +#: frappe/public/js/frappe/ui/listing.html:16 +#: frappe/public/js/frappe/views/reports/query_report.js:1097 +msgid "Loading" +msgstr "" + +#: 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 "" + +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Loading versions..." +msgstr "" + +#: 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:188 +#: frappe/public/js/frappe/widgets/quick_list_widget.js:129 +msgid "Loading..." +msgstr "" + +#. Label of the location (Data) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Location" +msgstr "" + +#. Label of the log (Code) field in DocType 'Package Import' +#: frappe/core/doctype/package_import/package_import.json +msgid "Log" +msgstr "" + +#. 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 "" + +#. 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 "" + +#: frappe/templates/emails/login_with_email_link.html:27 +msgid "Log In To {0}" +msgstr "" + +#. 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 +#: frappe/core/doctype/log_setting_user/log_setting_user.json +msgid "Log Setting User" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/log_settings/log_settings.json +#: frappe/public/js/frappe/logtypes.js:20 +msgid "Log Settings" +msgstr "" + +#: frappe/www/app.py:23 +msgid "Log in to access this page." +msgstr "" + +#. Label of a standard navbar item +#. Type: Action +#: frappe/hooks.py +#: frappe/website/doctype/website_settings/website_settings.py:182 +msgid "Log out" +msgstr "" + +#: frappe/handler.py:119 +msgid "Logged Out" +msgstr "" + +#. Option for the 'Operation' (Select) field in DocType '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 "" + +#. Label of the login_after (Int) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Login After" +msgstr "" + +#. Label of the login_before (Int) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Login Before" +msgstr "" + +#: frappe/public/js/frappe/desk.js:256 +msgid "Login Failed please try again" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:144 +msgid "Login Id is required" +msgstr "" + +#. 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 the misc_section (Section Break) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Login Page" +msgstr "" + +#: frappe/www/login.py:156 +msgid "Login To {0}" +msgstr "" + +#: frappe/twofactor.py:260 +msgid "Login Verification Code from {}" +msgstr "" + +#: frappe/templates/emails/new_message.html:4 +msgid "Login and view in Browser" +msgstr "" + +#: frappe/website/doctype/web_form/web_form.js:368 +msgid "Login is required to see web form list view. Enable {0} to see list settings" +msgstr "" + +#: frappe/templates/includes/login/login.js:69 +msgid "Login link sent to your email" +msgstr "" + +#: frappe/auth.py:342 frappe/auth.py:345 +msgid "Login not allowed at this time" +msgstr "" + +#. 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 "" + +#: frappe/templates/includes/comments/comments.html:110 +msgid "Login to comment" +msgstr "" + +#: frappe/templates/includes/comments/comments.html:6 +msgid "Login to start a new discussion" +msgstr "" + +#: frappe/www/login.html:64 +msgid "Login to {0}" +msgstr "" + +#: 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 "" + +#: frappe/www/login.html:116 +msgid "Login with Frappe Cloud" +msgstr "" + +#: frappe/www/login.html:49 +msgid "Login with LDAP" +msgstr "" + +#. 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 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 "" + +#: frappe/auth.py:147 +msgid "Login with username and password is not allowed." +msgstr "" + +#: 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' +#: frappe/core/doctype/activity_log/activity_log.json frappe/www/apps.html:59 +#: frappe/www/me.html:84 +msgid "Logout" +msgstr "" + +#: frappe/core/doctype/user/user.js:190 +msgid "Logout All Sessions" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#. Name of a DocType +#: frappe/core/doctype/logs_to_clear/logs_to_clear.json +msgid "Logs To Clear" +msgstr "" + +#. 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 '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' +#: 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 "" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:317 +msgid "Looks like you didn't change the value" +msgstr "" + +#: frappe/www/third_party_apps.html:59 +msgid "Looks like you haven’t added any third party apps." +msgstr "" + +#: 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' +#: frappe/desk/doctype/todo/todo.json +#: frappe/public/js/frappe/form/sidebar/assign_to.js:217 +msgid "Low" +msgstr "" + +#: 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' +#: frappe/core/doctype/package/package.json +msgid "MIT License" +msgstr "" + +#: 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 "" + +#. 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 "" + +#. 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 "" + +#. Name of a role +#: frappe/contacts/doctype/contact/contact.json +msgid "Maintenance Manager" +msgstr "" + +#. Name of a role +#: frappe/contacts/doctype/address/address.json +#: frappe/contacts/doctype/contact/contact.json +msgid "Maintenance User" +msgstr "" + +#. Label of the major (Int) field in DocType 'Package Release' +#: frappe/core/doctype/package_release/package_release.json +msgid "Major" +msgstr "" + +#. Label of the show_name_in_global_search (Check) field in DocType 'DocType' +#. Label of the show_name_in_global_search (Check) field in DocType 'Customize +#. Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Make \"name\" searchable in Global Search" +msgstr "" + +#. 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' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Make sure to configure a Social Login Key before disabling to prevent lockout" +msgstr "" + +#: frappe/utils/password_strength.py:92 +msgid "Make use of longer keyboard patterns" +msgstr "" + +#: frappe/public/js/frappe/form/multi_select_dialog.js:87 +msgid "Make {0}" +msgstr "" + +#: frappe/website/doctype/web_page/web_page.js:77 +msgid "Makes the page public" +msgstr "" + +#: frappe/desk/page/setup_wizard/install_fixtures.py:28 +msgid "Male" +msgstr "" + +#: frappe/www/me.html:56 +msgid "Manage 3rd party apps" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. Label of the mandatory_depends_on (Code) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Mandatory Depends On (JS)" +msgstr "" + +#: frappe/website/doctype/web_form/web_form.py:536 +msgid "Mandatory Information missing:" +msgstr "" + +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:120 +msgid "Mandatory field: set role for" +msgstr "" + +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:124 +msgid "Mandatory field: {0}" +msgstr "" + +#: frappe/public/js/frappe/form/save.js:172 +msgid "Mandatory fields required in table {0}, Row {1}" +msgstr "" + +#: frappe/public/js/frappe/form/save.js:177 +msgid "Mandatory fields required in {0}" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form.js:258 +msgctxt "Error message in web form" +msgid "Mandatory fields required:" +msgstr "" + +#: frappe/core/doctype/data_export/exporter.py:142 +msgid "Mandatory:" +msgstr "" + +#. Option for the 'Select List View' (Select) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +msgid "Map" +msgstr "" + +#: frappe/public/js/frappe/data_import/import_preview.js:194 +#: frappe/public/js/frappe/data_import/import_preview.js:306 +msgid "Map Columns" +msgstr "" + +#: frappe/public/js/frappe/list/base_list.js:211 +msgid "Map View" +msgstr "" + +#: 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 "" + +#. 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 the margin_left (Float) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Margin Left" +msgstr "" + +#. 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 the margin_top (Float) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Margin Top" +msgstr "" + +#. 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 "" + +#: frappe/core/doctype/communication/communication.js:78 +#: frappe/core/doctype/communication/communication_list.js:19 +msgid "Mark as Read" +msgstr "" + +#: frappe/core/doctype/communication/communication.js:95 +msgid "Mark as Spam" +msgstr "" + +#: frappe/core/doctype/communication/communication.js:78 +#: frappe/core/doctype/communication/communication_list.js:22 +msgid "Mark as Unread" +msgstr "" + +#. Option for the 'Message Type' (Select) field in DocType 'Notification' +#. Option for the 'Content Type' (Select) field in DocType 'Web Page' +#: frappe/email/doctype/notification/notification.json +#: frappe/website/doctype/web_page/web_page.js:92 +#: frappe/website/doctype/web_page/web_page.json +msgid "Markdown" +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 "" + +#. 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 "" + +#. 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 "" + +#. 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 the max_height (Data) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Max Height" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#. Label of the max_signups_allowed_per_hour (Int) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Max signups allowed per hour" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1343 +msgid "Max width for type Currency is 100px in row {0}" +msgstr "" + +#. Option for the 'Function' (Select) field in DocType 'Number Card' +#: frappe/desk/doctype/number_card/number_card.json +msgid "Maximum" +msgstr "" + +#: frappe/core/doctype/file/file.py:332 +msgid "Maximum Attachment Limit of {0} has been reached for {1} {2}." +msgstr "" + +#: frappe/public/js/frappe/form/sidebar/attachments.js:38 +msgid "Maximum attachment limit of {0} has been reached." +msgstr "" + +#: frappe/model/rename_doc.py:689 +msgid "Maximum {0} rows allowed" +msgstr "" + +#: frappe/public/js/frappe/list/list_sidebar_group_by.js:221 +msgid "Me" +msgstr "" + +#: 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' +#. 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:1774 +#: frappe/website/doctype/web_page_view/web_page_view.json +#: frappe/website/report/website_analytics/website_analytics.js:40 +msgid "Medium" +msgstr "" + +#. 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 "" + +#: frappe/email/doctype/notification/notification.js:200 +#: frappe/integrations/doctype/webhook/webhook.js:96 +msgid "Meets Condition?" +msgstr "" + +#. Group in Email Group's connections +#: 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' +#: frappe/desk/doctype/notification_log/notification_log.json +msgid "Mention" +msgstr "" + +#. Label of the enable_email_mention (Check) field in DocType 'Notification +#. Settings' +#: frappe/desk/doctype/notification_settings/notification_settings.json +msgid "Mentions" +msgstr "" + +#: frappe/public/js/frappe/ui/page.html:41 +#: frappe/public/js/frappe/ui/page.js:162 +msgid "Menu" +msgstr "" + +#: frappe/public/js/frappe/form/toolbar.js:242 +#: frappe/public/js/frappe/model/model.js:705 +msgid "Merge with existing" +msgstr "" + +#: frappe/utils/nestedset.py:320 +msgid "Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node" +msgstr "" + +#. 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:205 +#: 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 "" + +#: frappe/public/js/frappe/ui/messages.js:274 frappe/utils/messages.py:78 +msgctxt "Default title of the message dialog" +msgid "Message" +msgstr "" + +#. Label of the message_examples (HTML) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Message Examples" +msgstr "" + +#. 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 "" + +#. Label of the message_parameter (Data) field in DocType 'SMS Settings' +#: frappe/core/doctype/sms_settings/sms_settings.json +msgid "Message Parameter" +msgstr "" + +#: frappe/templates/includes/contact.js:36 +msgid "Message Sent" +msgstr "" + +#. Label of the message_type (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Message Type" +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:956 +msgid "Message clipped" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:344 +msgid "Message from server: {0}" +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.js:104 +msgid "Message not setup" +msgstr "" + +#. 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 the message_id (Code) field in DocType 'Unhandled Email' +#: frappe/email/doctype/unhandled_email/unhandled_email.json +msgid "Message-id" +msgstr "" + +#. 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 the meta_section (Section Break) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Meta" +msgstr "" + +#: frappe/website/doctype/web_page/web_page.js:124 +msgid "Meta Description" +msgstr "" + +#: frappe/website/doctype/web_page/web_page.js:131 +msgid "Meta Image" +msgstr "" + +#. 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/web_page/web_page.json +#: frappe/website/doctype/website_route_meta/website_route_meta.json +msgid "Meta Tags" +msgstr "" + +#: frappe/website/doctype/web_page/web_page.js:117 +msgid "Meta Title" +msgstr "" + +#. 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 the meta_image (Attach Image) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Meta image" +msgstr "" + +#. 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 "" + +#. 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' +#: 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 "" + +#: frappe/__init__.py:468 +msgid "Method Not Allowed" +msgstr "" + +#: frappe/desk/doctype/number_card/number_card.py:74 +msgid "Method is required to create a number card" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Middle Name (Optional)" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. Option for the 'Function' (Select) field in DocType 'Number Card' +#: frappe/desk/doctype/number_card/number_card.json +msgid "Minimum" +msgstr "" + +#. 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 "" + +#. Label of the minor (Int) field in DocType 'Package Release' +#: frappe/core/doctype/package_release/package_release.json +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" +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 "" + +#: frappe/desk/page/setup_wizard/install_fixtures.py:49 +msgid "Miss" +msgstr "" + +#: frappe/desk/form/meta.py:194 +msgid "Missing DocType" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1527 +msgid "Missing Field" +msgstr "" + +#: frappe/public/js/frappe/form/save.js:183 +msgid "Missing Fields" +msgstr "" + +#: frappe/email/doctype/auto_email_report/auto_email_report.py:131 +msgid "Missing Filters Required" +msgstr "" + +#: frappe/desk/form/assign_to.py:110 +msgid "Missing Permission" +msgstr "" + +#: frappe/www/update-password.html:134 frappe/www/update-password.html:141 +msgid "Missing Value" +msgstr "" + +#: 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 "" + +#: frappe/www/login.py:107 +msgid "Mobile" +msgstr "" + +#. 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 "" + +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Mobile Number" +msgstr "" + +#. 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 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:31 +#: 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 "" + +#. 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 +#. Label of a Link in the Build Workspace +#. 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 "" + +#. 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 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 "" + +#. 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 "" + +#. Name of a DocType +#. Label of the module_profile (Link) field in DocType 'User' +#. Label of a Link in the Users Workspace +#: 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 the module_profile_name (Data) field in DocType 'Module Profile' +#: frappe/core/doctype/module_profile/module_profile.json +msgid "Module Profile Name" +msgstr "" + +#: frappe/desk/doctype/module_onboarding/module_onboarding.py:69 +msgid "Module onboarding progress reset" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:250 +msgid "Module to Export" +msgstr "" + +#: frappe/modules/utils.py:273 +msgid "Module {} not found" +msgstr "" + +#. 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 "" + +#. Label of the modules_html (HTML) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Modules HTML" +msgstr "" + +#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day' +#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day' +#. 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' +#. 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 "" + +#. 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' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Monospace" +msgstr "" + +#: frappe/public/js/frappe/views/calendar/calendar.js:275 +msgid "Month" +msgstr "" + +#. 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' +#: 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 "" + +#. 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 "" + +#: 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 "" + +#. 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 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' +#. Label of a field in the edit-profile Web Form +#: 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 +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "More Information" +msgstr "" + +#: 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 "" + +#. 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 "" + +#: frappe/public/js/frappe/ui/sort_selector.js:193 +msgid "Most Used" +msgstr "" + +#: frappe/utils/password.py:75 +msgid "Most probably your password is too long." +msgstr "" + +#: 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 "" + +#: frappe/public/js/frappe/form/grid_row.js:194 +msgid "Move To" +msgstr "" + +#: frappe/core/doctype/communication/communication.js:104 +msgid "Move To Trash" +msgstr "" + +#: 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 "" + +#: frappe/public/js/frappe/form/form.js:181 +msgid "Move cursor to below row" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:185 +msgid "Move cursor to next column" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:189 +msgid "Move cursor to previous column" +msgstr "" + +#: 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:169 +msgid "Move to Row Number" +msgstr "" + +#. 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 "" + +#. 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 "" + +#: 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:344 +msgid "Multiple root nodes not allowed." +msgstr "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#: frappe/desk/query_report.py:210 +msgid "Must have report permission to access this report." +msgstr "" + +#: frappe/core/doctype/report/report.py:151 +msgid "Must specify a Query to run" +msgstr "" + +#. Label of the mute_sounds (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Mute Sounds" +msgstr "" + +#: 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:525 +#: 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 "" + +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:57 +msgid "My Device" +msgstr "" + +#: frappe/public/js/frappe/ui/apps_switcher.js:71 +msgid "My Workspaces" +msgstr "" + +#. Option for the 'Database Engine' (Select) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "MyISAM" +msgstr "" + +#: 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' +#: 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 "" + +#. 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:76 +#: frappe/public/js/frappe/form/multi_select_dialog.js:240 +#: frappe/public/js/frappe/form/save.js:159 +#: frappe/public/js/frappe/views/file/file_view.js:97 +#: frappe/website/doctype/website_slideshow/website_slideshow.js:25 +msgid "Name" +msgstr "" + +#: frappe/integrations/doctype/webhook/webhook.js:29 +msgid "Name (Doc Name)" +msgstr "" + +#: frappe/desk/utils.py:24 +msgid "Name already taken, please set a new name" +msgstr "" + +#: frappe/model/naming.py:512 +msgid "Name cannot contain special characters like {0}" +msgstr "" + +#: 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 "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:117 +msgid "Name of the new Print Format" +msgstr "" + +#: frappe/model/naming.py:507 +msgid "Name of {0} cannot be {1}" +msgstr "" + +#: frappe/utils/password_strength.py:174 +msgid "Names and surnames by themselves are easy to guess." +msgstr "" + +#. 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 "" + +#. Description of the 'Auto Name' (Data) field in DocType 'Customize Form' +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Naming Options:\n" +"
  1. field:[fieldname] - By Field
  2. naming_series: - By Naming Series (field called naming_series must be present)
  3. Prompt - Prompt user for a name
  4. [series] - Series by prefix (separated by a dot); for example PRE.#####
  5. \n" +"
  6. 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 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 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 "" + +#: frappe/model/naming.py:268 +msgid "Naming Series mandatory" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType '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 "" + +#. Name of a DocType +#: frappe/core/doctype/navbar_item/navbar_item.json +msgid "Navbar Item" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#: frappe/public/js/frappe/list/list_view.js:1380 +msgctxt "Description of a list view shortcut" +msgid "Navigate list down" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1387 +msgctxt "Description of a list view shortcut" +msgid "Navigate list up" +msgstr "" + +#: frappe/public/js/frappe/ui/page.js:175 +msgid "Navigate to main content" +msgstr "" + +#. Label of the navigation_settings_section (Section Break) field in DocType +#. 'User' +#: frappe/core/doctype/user/user.json +msgid "Navigation Settings" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:485 +msgid "Need Help?" +msgstr "" + +#: frappe/desk/doctype/workspace/workspace.py:322 +msgid "Need Workspace Manager role to edit private workspace of other users" +msgstr "" + +#: frappe/model/document.py:794 +msgid "Negative Value" +msgstr "" + +#: frappe/database/query.py:335 +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 "" + +#. Name of a DocType +#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json +msgid "Network Printer Settings" +msgstr "" + +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Never" +msgstr "" + +#. Option for the 'DocType View' (Select) field in DocType '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:473 +#: 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 "" + +#: frappe/public/js/frappe/views/interaction.js:15 +msgid "New Activity" +msgstr "" + +#: 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/public/js/frappe/form/templates/contact_list.html:3 +msgid "New Contact" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:70 +msgid "New Custom Block" +msgstr "" + +#: frappe/printing/page/print/print.js:308 +#: frappe/printing/page/print/print.js:355 +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 "" + +#: frappe/desk/doctype/notification_log/notification_log.py:154 +msgid "New Document Shared {0}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:27 +#: frappe/public/js/frappe/views/communication.js:23 +msgid "New Email" +msgstr "" + +#: 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 "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:47 +msgid "New Event" +msgstr "" + +#: frappe/public/js/frappe/views/file/file_view.js:94 +msgid "New Folder" +msgstr "" + +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 +msgid "New Kanban Board" +msgstr "" + +#: 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 "" + +#: frappe/www/contact.py:61 +msgid "New Message from Website Contact Page" +msgstr "" + +#. 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 "" + +#: frappe/desk/doctype/notification_log/notification_log.py:151 +msgid "New Notification" +msgstr "" + +#: 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:178 frappe/www/update-password.html:43 +msgid "New Password" +msgstr "" + +#: frappe/printing/page/print/print.js:280 +#: frappe/printing/page/print/print.js:334 +#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:61 +msgid "New Print Format Name" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:68 +msgid "New Quick List" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1386 +msgid "New Report name" +msgstr "" + +#. 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:15 +#: frappe/core/doctype/version/version_view.html:77 +msgid "New Value" +msgstr "" + +#: frappe/workflow/page/workflow_builder/workflow_builder.js:61 +msgid "New Workflow Name" +msgstr "" + +#: frappe/public/js/frappe/views/workspace/workspace.js:390 +msgid "New Workspace" +msgstr "" + +#. 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 "" + +#: frappe/utils/change_log.py:389 +msgid "New updates are available" +msgstr "" + +#. 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 "" + +#. 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 "" + +#: 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:176 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:177 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:226 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:227 +#: 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:438 +msgid "New {0}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:393 +msgid "New {0} Created" +msgstr "" + +#: 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:390 +msgid "New {0} {1} created" +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:416 +msgid "New {0}: {1}" +msgstr "" + +#: frappe/utils/change_log.py:375 +msgid "New {} releases for the following apps are available" +msgstr "" + +#: frappe/core/doctype/user/user.py:815 +msgid "Newly created user {0} has no roles enabled." +msgstr "" + +#. 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 "" + +#: 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:93 +#: 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 "" + +#: frappe/public/js/frappe/ui/slides.js:359 +msgctxt "Go to next slide" +msgid "Next" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:684 +msgid "Next 14 Days" +msgstr "" + +#: 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 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 "" + +#: 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 "" + +#: 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 "" + +#. 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 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 "" + +#: frappe/public/js/frappe/ui/filters/filter.js:692 +msgid "Next Week" +msgstr "" + +#: 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 "" + +#. 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:100 +#: frappe/email/doctype/notification/notification.py:102 +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +#: frappe/integrations/doctype/webhook/webhook.py:132 +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/public/js/form_builder/utils.js:341 +#: frappe/public/js/frappe/form/controls/link.js:498 +#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 +#: frappe/website/doctype/help_article/templates/help_article.html:26 +msgid "No" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:546 +msgctxt "Checkbox is not checked" +msgid "No" +msgstr "" + +#: 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 "" + +#. 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 "" + +#: 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 "" + +#: 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 "" + +#: frappe/public/js/frappe/views/inbox/inbox_view.js:196 +msgid "No Email Accounts Assigned" +msgstr "" + +#: frappe/email/doctype/email_group/email_group.py:50 +msgid "No Email field found in {0}" +msgstr "" + +#: frappe/public/js/frappe/views/inbox/inbox_view.js:183 +msgid "No Emails" +msgstr "" + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:361 +msgid "No Entry for the User {0} found within LDAP!" +msgstr "" + +#: frappe/public/js/frappe/widgets/chart_widget.js:407 +msgid "No Filters Set" +msgstr "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:372 +msgid "No Google Calendar Event to sync." +msgstr "" + +#: frappe/public/js/frappe/ui/capture.js:262 +msgid "No Images" +msgstr "" + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:363 +msgid "No LDAP User found for email: {0}" +msgstr "" + +#: 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:743 +#: frappe/printing/page/print/print.js:824 +#: 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 "" + +#: frappe/model/naming.py:489 +msgid "No Name Specified for {0}" +msgstr "" + +#: frappe/public/js/frappe/ui/notifications/notifications.js:315 +msgid "No New notifications" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1757 +msgid "No Permissions Specified" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager.js:199 +msgid "No Permissions set for this criteria." +msgstr "" + +#: frappe/core/page/dashboard_view/dashboard_view.js:93 +msgid "No Permitted Charts" +msgstr "" + +#: frappe/core/page/dashboard_view/dashboard_view.js:92 +msgid "No Permitted Charts on this Dashboard" +msgstr "" + +#: frappe/printing/doctype/print_settings/print_settings.js:13 +msgid "No Preview" +msgstr "" + +#: frappe/printing/page/print/print.js:747 +msgid "No Preview Available" +msgstr "" + +#: frappe/printing/page/print/print.js:902 +msgid "No Printer is Available." +msgstr "" + +#: frappe/core/doctype/rq_worker/rq_worker_list.js:3 +msgid "No RQ Workers connected. Try restarting the bench." +msgstr "" + +#: 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 "" + +#: frappe/core/doctype/user/user.py:816 +msgid "No Roles Specified" +msgstr "" + +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 +msgid "No Select Field Found" +msgstr "" + +#: frappe/core/doctype/recorder/recorder.py:179 +msgid "No Suggestions" +msgstr "" + +#: frappe/desk/reportview.py:707 +msgid "No Tags" +msgstr "" + +#: 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:236 +msgid "No alerts for today" +msgstr "" + +#: frappe/core/doctype/recorder/recorder.py:178 +msgid "No automatic optimization suggestions available." +msgstr "" + +#: frappe/public/js/frappe/form/save.js:36 +msgid "No changes in document" +msgstr "" + +#: 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 "" + +#: frappe/custom/doctype/doctype_layout/doctype_layout.js:59 +msgid "No changes to sync" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:298 +msgid "No changes to update" +msgstr "" + +#: frappe/templates/includes/comments/comments.html:4 +msgid "No comments yet." +msgstr "" + +#: frappe/public/js/frappe/form/templates/contact_list.html:91 +msgid "No contacts added yet." +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:469 +msgid "No contacts linked to document" +msgstr "" + +#: frappe/desk/query_report.py:381 +msgid "No data to export" +msgstr "" + +#: 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 "" + +#: frappe/public/js/frappe/ui/toolbar/search.js:71 +msgid "No documents found tagged with {0}" +msgstr "" + +#: 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 "" + +#: frappe/core/api/user_invitation.py:17 +msgid "No email addresses to invite" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:478 +msgid "No failed logs" +msgstr "" + +#: frappe/public/js/frappe/views/kanban/kanban_view.js:385 +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 "" + +#: 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 "" + +#: frappe/templates/includes/search_template.html:49 +msgid "No matching records. Search something new" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form_list.js:162 +msgid "No more items to display" +msgstr "" + +#: frappe/utils/password_strength.py:45 +msgid "No need for symbols, digits, or uppercase letters." +msgstr "" + +#: frappe/integrations/doctype/google_contacts/google_contacts.py:195 +msgid "No new Google Contacts synced." +msgstr "" + +#: 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 "" + +#. 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 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 "" + +#. 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 "" + +#: frappe/__init__.py:623 frappe/client.py:109 frappe/client.py:151 +msgid "No permission for {0}" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:1142 +msgctxt "{0} = verb, {1} = object" +msgid "No permission to '{0}' {1}" +msgstr "" + +#: frappe/model/db_query.py:949 +msgid "No permission to read {0}" +msgstr "" + +#: frappe/share.py:220 +msgid "No permission to {0} {1} {2}" +msgstr "" + +#: frappe/core/doctype/user_permission/user_permission_list.js:175 +msgid "No records deleted" +msgstr "" + +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:115 +msgid "No records present in {0}" +msgstr "" + +#: 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 "" + +#: frappe/public/js/frappe/form/grid.js:66 +msgid "No rows" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:135 +msgid "No subject" +msgstr "" + +#: frappe/www/printview.py:472 +msgid "No template found at path: {0}" +msgstr "" + +#: 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 "" + +#: 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:234 +msgid "No {0} found" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:499 +msgid "No {0} found with matching filters. Clear filters to see all {0}." +msgstr "" + +#: frappe/public/js/frappe/views/inbox/inbox_view.js:171 +msgid "No {0} mail" +msgstr "" + +#: frappe/public/js/form_builder/utils.js:117 +#: frappe/public/js/frappe/form/grid_row.js:257 +msgctxt "Title of the 'row number' column" +msgid "No." +msgstr "" + +#. Option for the 'Provider' (Select) field in DocType 'Geolocation Settings' +#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json +msgid "Nomatim" +msgstr "" + +#. 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 "" + +#: frappe/desk/page/setup_wizard/install_fixtures.py:33 +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 "" + +#. 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 the normalized_query (Data) field in DocType 'Recorder Query' +#: frappe/core/doctype/recorder_query/recorder_query.json +msgid "Normalized Query" +msgstr "" + +#: frappe/core/doctype/user/user.py:1029 +#: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269 +msgid "Not Allowed" +msgstr "" + +#: 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 "" + +#: frappe/public/js/frappe/ui/filters/filter.js:34 +msgid "Not Descendants Of" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:17 +msgid "Not Equals" +msgstr "" + +#: frappe/app.py:390 frappe/www/404.html:3 +msgid "Not Found" +msgstr "" + +#. Label of the not_helpful (Int) field in DocType 'Help Article' +#: frappe/website/doctype/help_article/help_article.json +msgid "Not Helpful" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:21 +msgid "Not In" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:19 +msgid "Not Like" +msgstr "" + +#: frappe/public/js/frappe/form/linked_with.js:45 +msgid "Not Linked to any record" +msgstr "" + +#. Label of the not_nullable (Check) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Not Nullable" +msgstr "" + +#: frappe/__init__.py:550 frappe/app.py:383 frappe/desk/calendar.py:26 +#: frappe/public/js/frappe/web_form/webform_script.js:15 +#: frappe/website/doctype/web_form/web_form.py:774 +#: 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 "" + +#: frappe/desk/query_report.py:596 +msgid "Not Permitted to read {0}" +msgstr "" + +#: frappe/website/doctype/web_form/web_form_list.js:7 +#: frappe/website/doctype/web_page/web_page_list.js:7 +msgid "Not Published" +msgstr "" + +#: 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:183 +#: frappe/public/js/frappe/views/reports/report_view.js:209 +#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39 +#: frappe/website/doctype/web_form/templates/web_form.html:85 +msgid "Not Saved" +msgstr "" + +#: frappe/core/doctype/error_log/error_log_list.js:7 +msgid "Not Seen" +msgstr "" + +#. 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 "" + +#: frappe/public/js/frappe/list/list_sidebar_group_by.js:219 +msgid "Not Set" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:608 +msgctxt "Field value is not set" +msgid "Not Set" +msgstr "" + +#: frappe/utils/csvutils.py:102 +msgid "Not a valid Comma Separated Value (CSV File)" +msgstr "" + +#: frappe/core/doctype/user/user.py:266 +msgid "Not a valid User Image." +msgstr "" + +#: frappe/model/workflow.py:117 +msgid "Not a valid Workflow Action" +msgstr "" + +#: 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 "" + +#: frappe/permissions.py:383 +msgid "Not allowed for {0}: {1}" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:639 +msgid "Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:336 +msgid "Not allowed to create custom Virtual DocType." +msgstr "" + +#: frappe/www/printview.py:165 +msgid "Not allowed to print cancelled documents" +msgstr "" + +#: frappe/www/printview.py:162 +msgid "Not allowed to print draft documents" +msgstr "" + +#: frappe/permissions.py:213 +msgid "Not allowed via controller permission check" +msgstr "" + +#: frappe/public/js/frappe/request.js:147 frappe/website/js/website.js:94 +msgid "Not found" +msgstr "" + +#: frappe/core/doctype/page/page.py:62 +msgid "Not in Developer Mode" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:331 +msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType." +msgstr "" + +#: frappe/core/doctype/system_settings/system_settings.py:217 +#: 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:787 +#: frappe/website/js/website.js:97 +msgid "Not permitted" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:53 +msgid "Not permitted to view {0}" +msgstr "" + +#. Label of a Link in the Tools Workspace +#. Name of a DocType +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:438 +#: frappe/automation/workspace/tools/tools.json +#: frappe/desk/doctype/note/note.json +msgid "Note" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/note_seen_by/note_seen_by.json +msgid "Note Seen By" +msgstr "" + +#: frappe/www/confirm_workflow_action.html:8 +msgid "Note:" +msgstr "" + +#: frappe/public/js/frappe/utils/utils.js:775 +msgid "Note: Changing the Page Name will break previous URL to this page." +msgstr "" + +#: 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' +#: 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 "" + +#. 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 "" + +#: frappe/core/doctype/user/user.js:387 +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 "" + +#: frappe/core/doctype/data_export/exporter.py:183 +msgid "Notes:" +msgstr "" + +#: 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 "" + +#: frappe/public/js/frappe/form/undo_manager.js:33 +msgid "Nothing left to undo" +msgstr "" + +#: frappe/public/js/frappe/list/base_list.js:383 +#: frappe/public/js/frappe/views/reports/query_report.js:105 +#: frappe/templates/includes/list/list.html:9 +#: frappe/website/doctype/help_article/templates/help_article_list.html:21 +msgid "Nothing to show" +msgstr "" + +#: frappe/core/doctype/user_permission/user_permission_list.js:129 +msgid "Nothing to update" +msgstr "" + +#. Label of the notification (Tab Break) field in DocType 'Auto Repeat' +#. Label of a Link in the Tools Workspace +#. 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 "" + +#. Name of a DocType +#: frappe/desk/doctype/notification_log/notification_log.json +msgid "Notification Log" +msgstr "" + +#. Name of a DocType +#: frappe/email/doctype/notification_recipient/notification_recipient.json +msgid "Notification Recipient" +msgstr "" + +#. Label of a Link in the Tools Workspace +#. 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 "" + +#. Name of a DocType +#: frappe/desk/doctype/notification_subscribed_document/notification_subscribed_document.json +msgid "Notification Subscribed Document" +msgstr "" + +#: frappe/public/js/frappe/form/templates/timeline_message_box.html:8 +msgid "Notification sent to" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:544 +msgid "Notification: customer {0} has no Mobile number set" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:530 +msgid "Notification: document {0} has no {1} number set (field: {2})" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:539 +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 "" + +#: frappe/public/js/frappe/ui/notifications/notifications.js:299 +msgid "Notifications Disabled" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#. Label of the notify_by_email (Check) field in DocType 'DocShare' +#: frappe/core/doctype/docshare/docshare.json +msgid "Notify by email" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#: frappe/public/js/frappe/form/controls/datetime.js:41 +#: frappe/public/js/frappe/form/controls/time.js:37 +msgid "Now" +msgstr "" + +#. Label of the phone (Data) field in DocType 'Contact Phone' +#: frappe/contacts/doctype/contact_phone/contact_phone.json +msgid "Number" +msgstr "" + +#. 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 "" + +#. Name of a DocType +#: frappe/desk/doctype/number_card_link/number_card_link.json +msgid "Number Card Link" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#. Label of the backup_limit (Int) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Number of Backups" +msgstr "" + +#. 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 "" + +#. Label of the number_of_queries (Int) field in DocType 'Recorder' +#: frappe/core/doctype/recorder/recorder.json +msgid "Number of Queries" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:443 +#: frappe/public/js/frappe/doctype/index.js:59 +msgid "Number of attachment fields are more than {}, limit updated to {}." +msgstr "" + +#: frappe/core/doctype/system_settings/system_settings.py:172 +msgid "Number of backups must be greater than zero." +msgstr "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#. 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' +#: frappe/email/doctype/email_account/email_account.json +msgid "OAuth" +msgstr "" + +#. Name of a DocType +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +msgid "OAuth Authorization Code" +msgstr "" + +#. Name of a DocType +#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json +msgid "OAuth Bearer Token" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. 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 +#. 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 "" + +#. Name of a DocType +#: frappe/integrations/doctype/oauth_scope/oauth_scope.json +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 "" + +#. Option for the 'Method' (Select) field in DocType 'Recorder' +#: frappe/core/doctype/recorder/recorder.json +msgid "OPTIONS" +msgstr "" + +#: 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' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "OTP App" +msgstr "" + +#. 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 "" + +#: frappe/twofactor.py:450 +msgid "OTP Secret Reset - {0}" +msgstr "" + +#: frappe/twofactor.py:469 +msgid "OTP Secret has been reset. Re-registration will be required on next login." +msgstr "" + +#: 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' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "Off" +msgstr "" + +#. Option for the 'Address Type' (Select) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "Office" +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 "Office 365" +msgstr "" + +#: 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 the offset_y (Int) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +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 "" + +#: 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' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Older backups will be automatically deleted" +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' +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +msgid "On Hold" +msgstr "" + +#. Option for the 'DocType Event' (Select) field in DocType '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' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "On checking this option, URL will be treated like a jinja template string" +msgstr "" + +#: 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:966 +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 +#: frappe/desk/doctype/onboarding_permission/onboarding_permission.json +msgid "Onboarding Permission" +msgstr "" + +#. 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 +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Onboarding Step" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/onboarding_step_map/onboarding_step_map.json +msgid "Onboarding Step Map" +msgstr "" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:264 +msgid "Onboarding complete" +msgstr "" + +#. Description of the 'Is Submittable' (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/doctype/doctype_list.js:43 +msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended." +msgstr "" + +#: 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 "" + +#: frappe/twofactor.py:278 +msgid "One Time Password (OTP) Registration Code from {}" +msgstr "" + +#: frappe/core/doctype/data_export/exporter.py:331 +msgid "One of" +msgstr "" + +#: frappe/client.py:213 +msgid "Only 200 inserts allowed in one request" +msgstr "" + +#: frappe/email/doctype/email_queue/email_queue.py:87 +msgid "Only Administrator can delete Email Queue" +msgstr "" + +#: frappe/core/doctype/page/page.py:66 +msgid "Only Administrator can edit" +msgstr "" + +#: frappe/core/doctype/report/report.py:75 +msgid "Only Administrator can save a standard report. Please rename and save." +msgstr "" + +#: frappe/recorder.py:314 +msgid "Only Administrator is allowed to use Recorder" +msgstr "" + +#. 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 "" + +#: frappe/core/doctype/doctype/doctype.py:1621 +msgid "Only Options allowed for Data field are:" +msgstr "" + +#. 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 "" + +#: frappe/desk/doctype/workspace/workspace.js:32 +msgid "Only Workspace Manager can edit public workspaces" +msgstr "" + +#: frappe/modules/utils.py:65 +msgid "Only allowed to export customizations in developer mode" +msgstr "" + +#: frappe/model/document.py:1239 +msgid "Only draft documents can be discarded" +msgstr "" + +#. 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 "" + +#: 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 "" + +#: frappe/contacts/doctype/contact/contact.py:131 +#: frappe/contacts/doctype/contact/contact.py:158 +msgid "Only one {0} can be set as primary." +msgstr "" + +#: frappe/desk/reportview.py:358 +msgid "Only reports of type Report Builder can be deleted" +msgstr "" + +#: frappe/desk/reportview.py:329 +msgid "Only reports of type Report Builder can be edited" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.py:131 +msgid "Only standard DocTypes are allowed to be customized from Customize Form." +msgstr "" + +#: frappe/model/delete_doc.py:281 +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 "" + +#: frappe/email/doctype/auto_email_report/auto_email_report.py:108 +msgid "Only {0} emailed reports are allowed per user." +msgstr "" + +#: 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 "" + +#: frappe/desk/doctype/todo/todo_list.js:14 +msgctxt "Access" +msgid "Open" +msgstr "" + +#: frappe/public/js/frappe/ui/keyboard.js:207 +#: frappe/public/js/frappe/ui/keyboard.js:217 +msgid "Open Awesomebar" +msgstr "" + +#: 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 "" + +#. Label of the subscribed_documents (Table MultiSelect) field in DocType +#. 'Notification Settings' +#: frappe/desk/doctype/notification_settings/notification_settings.json +msgid "Open Documents" +msgstr "" + +#: frappe/public/js/frappe/ui/keyboard.js:243 +msgid "Open Help" +msgstr "" + +#. 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 "" + +#: frappe/public/js/frappe/ui/keyboard.js:226 +msgid "Open Settings" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +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 "" + +#. 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 "" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:176 +msgid "Open a module or tool" +msgstr "" + +#: frappe/public/js/frappe/ui/keyboard.js:367 +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:1433 +msgctxt "Description of a list view shortcut" +msgid "Open list item" +msgstr "" + +#: 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 "" + +#: 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:286 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:287 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:298 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:308 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:317 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:335 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:336 +msgid "Open {0}" +msgstr "" + +#. Label of the openid_configuration (Data) field in DocType 'Connected App' +#: frappe/integrations/doctype/connected_app/connected_app.json +msgid "OpenID Configuration" +msgstr "" + +#: frappe/integrations/doctype/connected_app/connected_app.js:15 +msgid "OpenID Configuration fetched successfully!" +msgstr "" + +#. Option for the 'Directory Server' (Select) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "OpenLDAP" +msgstr "" + +#. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Opened" +msgstr "" + +#. Label of the operation (Select) field in DocType 'Activity Log' +#: frappe/core/doctype/activity_log/activity_log.json +msgid "Operation" +msgstr "" + +#: frappe/utils/data.py:2172 +msgid "Operator must be one of {0}" +msgstr "" + +#: 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 "" + +#: frappe/core/doctype/file/file.js:106 +msgid "Optimizing image..." +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.js:100 +msgid "Option 1" +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.js:102 +msgid "Option 2" +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.js:104 +msgid "Option 3" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1639 +msgid "Option {0} for field {1} is not a child table" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. 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 (Text) field in DocType 'Web Form List Column' +#. 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_form_list_column/web_form_list_column.json +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Options" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1367 +msgid "Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType'" +msgstr "" + +#. Label of the options_help (HTML) field in DocType 'Custom Field' +#: frappe/custom/doctype/custom_field/custom_field.json +msgid "Options Help" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1661 +msgid "Options for Rating field can range from 3 to 10" +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.js:96 +msgid "Options for select. Each option on a new line." +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1384 +msgid "Options for {0} must be set before setting the default value." +msgstr "" + +#: frappe/public/js/form_builder/store.js:182 +msgid "Options is required for field {0} of type {1}" +msgstr "" + +#: frappe/model/base_document.py:928 +msgid "Options not set for link field {0}" +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 "Orange" +msgstr "" + +#. Label of the order (Code) field in DocType 'Kanban Board Column' +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json +msgid "Order" +msgstr "" + +#: frappe/database/query.py:769 +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 "" + +#. 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 "" + +#: frappe/public/js/frappe/form/print_utils.js:21 +msgid "Orientation" +msgstr "" + +#: frappe/core/doctype/version/version_view.html:14 +#: frappe/core/doctype/version/version_view.html:76 +msgid "Original Value" +msgstr "" + +#. Option for the 'Address Type' (Select) field in DocType 'Address' +#. Option for the 'Type' (Select) field in DocType 'Communication' +#. Option for the 'Show in Module Section' (Select) field in DocType 'DocType' +#. Option for the 'Event Category' (Select) field in DocType '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 "" + +#. Label of the outgoing_tab (Tab Break) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Outgoing" +msgstr "" + +#. 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 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 the outgoing_mail_settings (Section Break) field in DocType 'Email +#. Domain' +#: frappe/email/doctype/email_domain/email_domain.json +msgid "Outgoing Settings" +msgstr "" + +#: frappe/email/doctype/email_domain/email_domain.py:33 +msgid "Outgoing email account not correct" +msgstr "" + +#. Option for the 'Service' (Select) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Outlook.com" +msgstr "" + +#. 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 "" + +#: frappe/public/js/frappe/form/templates/form_dashboard.html:5 +msgid "Overview" +msgstr "" + +#. Option for the 'Method' (Select) field in DocType 'Recorder' +#: frappe/core/doctype/recorder/recorder.json +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:84 +#: frappe/public/js/frappe/form/templates/print_layout.html:44 +#: frappe/public/js/frappe/views/reports/query_report.js:1812 +msgid "PDF" +msgstr "" + +#: 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 the pdf_page_size (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "PDF Page Size" +msgstr "" + +#. 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 the pdf_settings (Section Break) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "PDF Settings" +msgstr "" + +#: frappe/utils/print_format.py:289 +msgid "PDF generation failed" +msgstr "" + +#: frappe/utils/pdf.py:106 +msgid "PDF generation failed because of broken image links" +msgstr "" + +#: frappe/printing/page/print/print.js:656 +msgid "PDF generation may not work as expected." +msgstr "" + +#: frappe/printing/page/print/print.js:574 +msgid "PDF printing via \"Raw Print\" is not supported." +msgstr "" + +#. 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' +#. 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 "" + +#. 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 "" + +#. Label of the package (Link) field in DocType 'Module Def' +#. Name of a DocType +#. Label of the package (Link) field in DocType 'Package Release' +#. Label of a Link in the Build Workspace +#: 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 +#. 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 "" + +#. Label of the package_name (Data) field in DocType 'Package' +#: frappe/core/doctype/package/package.json +msgid "Package Name" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/package_release/package_release.json +msgid "Package Release" +msgstr "" + +#. Label of a Card Break in the Build Workspace +#: 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 +#. Option for the 'Set Role For' (Select) field in DocType 'Role Permission for +#. Page and Report' +#. 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' +#. Option for the 'Type' (Select) field in DocType '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 "" + +#. 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 "" + +#. 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 "" + +#. Label of the page_blocks (Table) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Page Building Blocks" +msgstr "" + +#. Label of the page_html (Section Break) field in DocType 'Page' +#: frappe/core/doctype/page/page.json +msgid "Page HTML" +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:73 +msgid "Page Height (in mm)" +msgstr "" + +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:5 +msgid "Page Margins" +msgstr "" + +#. 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 the page_route (Small Text) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +msgid "Page Route" +msgstr "" + +#. 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 "" + +#: frappe/public/js/frappe/ui/keyboard.js:125 +msgid "Page Shortcuts" +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:66 +msgid "Page Size" +msgstr "" + +#. 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 "" + +#: frappe/public/js/frappe/list/bulk_operations.js:80 +msgid "Page Width (in mm)" +msgstr "" + +#: frappe/www/qrcode.py:35 +msgid "Page has expired!" +msgstr "" + +#: 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 "" + +#: frappe/public/js/frappe/views/container.js:52 frappe/www/404.html:23 +msgid "Page not found" +msgstr "" + +#. Description of a DocType +#: frappe/website/doctype/web_page/web_page.json +msgid "Page to show on the website\n" +msgstr "" + +#: 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:288 +#: frappe/templates/print_formats/standard.html:34 +msgid "Page {0} of {1}" +msgstr "" + +#. Label of the parameter (Data) field in DocType 'SMS Parameter' +#: frappe/core/doctype/sms_parameter/sms_parameter.json +msgid "Parameter" +msgstr "" + +#: frappe/public/js/frappe/model/model.js:142 +#: frappe/public/js/frappe/views/workspace/workspace.js:434 +msgid "Parent" +msgstr "" + +#. 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 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 "" + +#: frappe/desk/doctype/number_card/number_card.py:66 +msgid "Parent Document Type is required to create a number card" +msgstr "" + +#. 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 the parent_fieldname (Select) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Parent Field" +msgstr "" + +#. Label of the nsm_parent_field (Data) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/doctype/doctype.py:934 +msgid "Parent Field (Tree)" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:940 +msgid "Parent Field must be a valid fieldname" +msgstr "" + +#. 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 "" + +#: frappe/core/doctype/doctype/doctype.py:1198 +msgid "Parent Missing" +msgstr "" + +#. Label of the parent_page (Link) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "Parent Page" +msgstr "" + +#: frappe/core/doctype/data_export/exporter.py:24 +msgid "Parent Table" +msgstr "" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:404 +msgid "Parent document type is required to create a dashboard chart" +msgstr "" + +#: 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 "" + +#: 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 "" + +#: frappe/client.py:467 +msgid "Parenttype, Parent and Parentfield are required to insert a child record" +msgstr "" + +#. 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' +#: frappe/core/doctype/data_import/data_import.json +msgid "Partial Success" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Email Queue' +#: frappe/email/doctype/email_queue/email_queue.json +msgid "Partially Sent" +msgstr "" + +#. 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 "" + +#. 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' +#: frappe/contacts/doctype/contact/contact.json +msgid "Passive" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. 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' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/core/doctype/user/user.js:165 frappe/core/doctype/user/user.js:212 +#: frappe/core/doctype/user/user.js:232 +#: 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 "" + +#: frappe/core/doctype/user/user.py:1094 +msgid "Password Email Sent" +msgstr "" + +#: frappe/core/doctype/user/user.py:459 +msgid "Password Reset" +msgstr "" + +#. 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 "" + +#: frappe/public/js/frappe/form/grid_row.js:897 +msgid "Password cannot be filtered" +msgstr "" + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:357 +msgid "Password changed successfully." +msgstr "" + +#. Label of the password (Password) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "Password for Base DN" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:189 +msgid "Password is required or select Awaiting Password" +msgstr "" + +#: frappe/www/update-password.html:94 +msgid "Password is valid. 👍" +msgstr "" + +#: frappe/public/js/frappe/desk.js:212 +msgid "Password missing in Email Account" +msgstr "" + +#: frappe/utils/password.py:47 +msgid "Password not found for {0} {1} {2}" +msgstr "" + +#: frappe/core/doctype/user/user.py:1093 +msgid "Password reset instructions have been sent to {}'s email" +msgstr "" + +#: frappe/www/update-password.html:191 +msgid "Password set" +msgstr "" + +#: frappe/auth.py:261 +msgid "Password size exceeded the maximum allowed size" +msgstr "" + +#: frappe/core/doctype/user/user.py:882 +msgid "Password size exceeded the maximum allowed size." +msgstr "" + +#: frappe/www/update-password.html:93 +msgid "Passwords do not match" +msgstr "" + +#: frappe/core/doctype/user/user.js:198 +msgid "Passwords do not match!" +msgstr "" + +#: frappe/public/js/frappe/views/file/file_view.js:151 +msgid "Paste" +msgstr "" + +#. 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 "" + +#. Name of a DocType +#: frappe/core/doctype/patch_log/patch_log.json +msgid "Patch Log" +msgstr "" + +#: frappe/modules/patch_handler.py:136 +msgid "Patch type {} not found in patches.txt" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#: 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 "" + +#. 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 'User Invitation' +#. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion +#. Step' +#: frappe/core/doctype/data_import/data_import.json +#: frappe/core/doctype/translation/translation.json +#: frappe/core/doctype/user_invitation/user_invitation.json +#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json +msgid "Pending" +msgstr "" + +#. 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 "" + +#. 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' +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +msgid "Pending Verification" +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' +#: 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 "" + +#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Percentage" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. Option for the 'Address Type' (Select) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "Permanent" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:1028 +msgid "Permanently Cancel {0}?" +msgstr "" + +#: 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 "" + +#: frappe/public/js/frappe/model/model.js:684 +msgid "Permanently delete {0}?" +msgstr "" + +#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:535 +msgid "Permission Error" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "Permission Inspector" +msgstr "" + +#. 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 "" + +#: 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 +#: frappe/core/workspace/users/users.json +msgid "Permission Manager" +msgstr "" + +#. Option for the 'Script Type' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Permission Query" +msgstr "" + +#. Label of the permission_rules (Section Break) field in DocType 'Custom Role' +#: frappe/core/doctype/custom_role/custom_role.json +msgid "Permission Rules" +msgstr "" + +#. Label of the permission_type (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "Permission Type" +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 +#. 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:131 frappe/core/doctype/user/user.js:140 +#: frappe/core/doctype/user/user.js:149 +#: 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 "" + +#: frappe/core/doctype/doctype/doctype.py:1848 +#: frappe/core/doctype/doctype/doctype.py:1858 +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 +#: frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.json +#: frappe/core/workspace/users/users.json +msgid "Permitted Documents For User" +msgstr "" + +#. 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' +#: frappe/contacts/doctype/address/address.json +msgid "Personal" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +msgid "Personal Data Deletion Request" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json +msgid "Personal Data Deletion Step" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json +msgid "Personal Data Download Request" +msgstr "" + +#. 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' +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Label of the phone (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form +#. 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' +#: frappe/contacts/doctype/address/address.json +#: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:47 +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.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 "" + +#. Label of the phone_no (Data) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Phone No." +msgstr "" + +#: frappe/utils/__init__.py:124 +msgid "Phone Number {0} set in field {1} is not valid." +msgstr "" + +#: frappe/public/js/frappe/form/print_utils.js:68 +#: frappe/public/js/frappe/views/reports/report_view.js:1581 +#: frappe/public/js/frappe/views/reports/report_view.js:1584 +msgid "Pick Columns" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Pie" +msgstr "" + +#. Label of the pincode (Data) field in DocType 'Contact Us Settings' +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +msgid "Pincode" +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 "Pink" +msgstr "" + +#. 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' +#: frappe/email/doctype/notification/notification.json +msgid "Plain Text" +msgstr "" + +#. Option for the 'Address Type' (Select) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "Plant" +msgstr "" + +#: 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 "" + +#: frappe/website/doctype/website_theme/website_theme.py:77 +msgid "Please Duplicate this Website Theme to customize." +msgstr "" + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:162 +msgid "Please Install the ldap3 library via pip to use ldap functionality." +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:308 +msgid "Please Set Chart" +msgstr "" + +#: frappe/core/doctype/sms_settings/sms_settings.py:88 +msgid "Please Update SMS Settings" +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:613 +msgid "Please add a subject to your email" +msgstr "" + +#: frappe/templates/includes/comments/comments.html:168 +msgid "Please add a valid comment." +msgstr "" + +#: frappe/core/doctype/user/user.py:1076 +msgid "Please ask your administrator to verify your sign-up" +msgstr "" + +#: frappe/public/js/frappe/form/controls/select.js:101 +msgid "Please attach a file first." +msgstr "" + +#: frappe/printing/doctype/letter_head/letter_head.py:82 +msgid "Please attach an image file to set HTML for Footer." +msgstr "" + +#: frappe/printing/doctype/letter_head/letter_head.py:70 +msgid "Please attach an image file to set HTML for Letter Head." +msgstr "" + +#: frappe/core/doctype/package_import/package_import.py:39 +msgid "Please attach the package" +msgstr "" + +#: frappe/utils/dashboard.py:58 +msgid "Please check the filter values set for Dashboard Chart: {}" +msgstr "" + +#: frappe/model/base_document.py:1008 +msgid "Please check the value of \"Fetch From\" set for field {0}" +msgstr "" + +#: frappe/core/doctype/user/user.py:1074 +msgid "Please check your email for verification" +msgstr "" + +#: frappe/email/smtp.py:134 +msgid "Please check your email login credentials." +msgstr "" + +#: 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 "" + +#: 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 "" + +#: frappe/templates/emails/password_reset.html:2 +msgid "Please click on the following link to set your new password" +msgstr "" + +#: frappe/www/confirm_workflow_action.html:4 +msgid "Please confirm your action to {0} this document." +msgstr "" + +#: frappe/printing/page/print/print.js:658 +msgid "Please contact your system manager to install correct version." +msgstr "" + +#: frappe/desk/doctype/number_card/number_card.js:45 +msgid "Please create Card first" +msgstr "" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:42 +msgid "Please create chart first" +msgstr "" + +#: frappe/desk/form/meta.py:190 +msgid "Please delete the field from {0} or add the required doctype." +msgstr "" + +#: frappe/core/doctype/data_export/exporter.py:184 +msgid "Please do not change the template headings." +msgstr "" + +#: frappe/printing/doctype/print_format/print_format.js:19 +msgid "Please duplicate this to make changes" +msgstr "" + +#: frappe/core/doctype/system_settings/system_settings.py:165 +msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login." +msgstr "" + +#: 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:678 +#: frappe/printing/page/print/print.js:708 +#: frappe/public/js/frappe/list/bulk_operations.js:161 +#: frappe/public/js/frappe/utils/utils.js:1471 +msgid "Please enable pop-ups" +msgstr "" + +#: frappe/public/js/frappe/microtemplate.js:162 +#: frappe/public/js/frappe/microtemplate.js:177 +msgid "Please enable pop-ups in your browser" +msgstr "" + +#: frappe/integrations/google_oauth.py:55 +msgid "Please enable {} before continuing." +msgstr "" + +#: frappe/utils/oauth.py:191 +msgid "Please ensure that your profile has an email address" +msgstr "" + +#: 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:81 +msgid "Please enter Authorize URL" +msgstr "" + +#: 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:87 +msgid "Please enter Client ID before social login is enabled" +msgstr "" + +#: frappe/integrations/doctype/social_login_key/social_login_key.py:90 +msgid "Please enter Client Secret before social login is enabled" +msgstr "" + +#: frappe/integrations/doctype/connected_app/connected_app.py:54 +msgid "Please enter OpenID Configuration URL" +msgstr "" + +#: frappe/integrations/doctype/social_login_key/social_login_key.py:85 +msgid "Please enter Redirect URL" +msgstr "" + +#: frappe/templates/includes/comments/comments.html:163 +msgid "Please enter a valid email address." +msgstr "" + +#: 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 "" + +#: frappe/public/js/frappe/desk.js:217 +msgctxt "Email Account" +msgid "Please enter the password for: {0}" +msgstr "" + +#: frappe/core/doctype/sms_settings/sms_settings.py:43 +msgid "Please enter valid mobile nos" +msgstr "" + +#: frappe/www/update-password.html:142 +msgid "Please enter your new password." +msgstr "" + +#: frappe/www/update-password.html:135 +msgid "Please enter your old password." +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:444 +msgid "Please find attached {0}: {1}" +msgstr "" + +#: frappe/templates/includes/comments/comments.py:42 +#: frappe/templates/includes/comments/comments.py:45 +msgid "Please login to post a comment." +msgstr "" + +#: frappe/core/doctype/communication/communication.py:186 +msgid "Please make sure the Reference Communication Docs are not circularly linked." +msgstr "" + +#: frappe/model/document.py:992 +msgid "Please refresh to get the latest document." +msgstr "" + +#: frappe/printing/page/print/print.js:575 +msgid "Please remove the printer mapping in Printer Settings and try again." +msgstr "" + +#: frappe/public/js/frappe/form/form.js:358 +msgid "Please save before attaching." +msgstr "" + +#: frappe/public/js/frappe/form/sidebar/assign_to.js:52 +msgid "Please save the document before assignment" +msgstr "" + +#: frappe/public/js/frappe/form/sidebar/assign_to.js:72 +msgid "Please save the document before removing assignment" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1718 +msgid "Please save the report first" +msgstr "" + +#: frappe/website/doctype/web_template/web_template.js:22 +msgid "Please save to edit the template." +msgstr "" + +#: frappe/printing/doctype/print_format/print_format.js:31 +msgid "Please select DocType first" +msgstr "" + +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js:27 +msgid "Please select Entity Type first" +msgstr "" + +#: frappe/core/doctype/system_settings/system_settings.py:116 +msgid "Please select Minimum Password Score" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:1193 +msgid "Please select X and Y fields" +msgstr "" + +#: frappe/utils/__init__.py:131 +msgid "Please select a country code for field {1}." +msgstr "" + +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:526 +msgid "Please select a file first." +msgstr "" + +#: frappe/utils/file_manager.py:50 +msgid "Please select a file or url" +msgstr "" + +#: frappe/model/rename_doc.py:684 +msgid "Please select a valid csv file with data" +msgstr "" + +#: frappe/utils/data.py:309 +msgid "Please select a valid date filter" +msgstr "" + +#: frappe/core/doctype/user_permission/user_permission_list.js:203 +msgid "Please select applicable Doctypes" +msgstr "" + +#: frappe/model/db_query.py:1163 +msgid "Please select atleast 1 column from {0} to sort/group" +msgstr "" + +#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:214 +msgid "Please select prefix first" +msgstr "" + +#: frappe/core/doctype/data_export/data_export.js:42 +msgid "Please select the Document Type." +msgstr "" + +#. 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 "" + +#: frappe/website/doctype/website_settings/website_settings.js:100 +msgid "Please select {0}" +msgstr "" + +#: frappe/contacts/doctype/contact/contact.py:298 +msgid "Please set Email Address" +msgstr "" + +#: frappe/printing/page/print/print.js:589 +msgid "Please set a printer mapping for this print format in the Printer Settings" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:1416 +msgid "Please set filters" +msgstr "" + +#: frappe/email/doctype/auto_email_report/auto_email_report.py:263 +msgid "Please set filters value in Report Filter table." +msgstr "" + +#: frappe/model/naming.py:580 +msgid "Please set the document name" +msgstr "" + +#: frappe/desk/doctype/dashboard/dashboard.py:120 +msgid "Please set the following documents in this Dashboard as standard first." +msgstr "" + +#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:120 +msgid "Please set the series to be used." +msgstr "" + +#: frappe/core/doctype/system_settings/system_settings.py:129 +msgid "Please setup SMS before setting it as an authentication method, via SMS Settings" +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.js:104 +msgid "Please setup a message first" +msgstr "" + +#: frappe/core/doctype/user/user.py:424 +msgid "Please setup default outgoing Email Account from Settings > Email Account" +msgstr "" + +#: 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 "" + +#: frappe/permissions.py:796 +msgid "Please specify a valid parent DocType for {0}" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:163 +msgid "Please specify at least 10 minutes due to the trigger cadence of the scheduler" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:160 +msgid "Please specify the minutes offset" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:154 +msgid "Please specify which date field must be checked" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:158 +msgid "Please specify which datetime field must be checked" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:167 +msgid "Please specify which value field must be checked" +msgstr "" + +#: frappe/public/js/frappe/request.js:187 +#: frappe/public/js/frappe/views/translation_manager.js:102 +msgid "Please try again" +msgstr "" + +#: frappe/integrations/google_oauth.py:58 +msgid "Please update {} before continuing." +msgstr "" + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:333 +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:217 +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 +msgid "Polling" +msgstr "" + +#. 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 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 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 "" + +#. Label of the menu (Table) field in DocType 'Portal Settings' +#: frappe/website/doctype/portal_settings/portal_settings.json +msgid "Portal Menu" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/portal_menu_item/portal_menu_item.json +msgid "Portal Menu Item" +msgstr "" + +#. 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 "" + +#: frappe/public/js/frappe/form/print_utils.js:24 +msgid "Portrait" +msgstr "" + +#. Label of the position (Select) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Position" +msgstr "" + +#: 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 "" + +#: 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' +#: frappe/contacts/doctype/address/address.json +msgid "Postal" +msgstr "" + +#. Label of the pincode (Data) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:41 +msgid "Postal Code" +msgstr "" + +#. Label of the posting_timestamp (Datetime) field in DocType 'Changelog Feed' +#: frappe/desk/doctype/changelog_feed/changelog_feed.json +msgid "Posting Timestamp" +msgstr "" + +#: frappe/database/query.py:1520 +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' +#. 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 "" + +#: frappe/core/doctype/doctype/doctype.py:1670 +msgid "Precision ({0}) for {1} cannot be greater than its length ({2})." +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1401 +msgid "Precision should be between 1 and 6" +msgstr "" + +#: frappe/utils/password_strength.py:187 +msgid "Predictable substitutions like '@' instead of 'a' don't help very much." +msgstr "" + +#: 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 "" + +#. Label of the is_shipping_address (Check) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "Preferred Shipping Address" +msgstr "" + +#. 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 "" + +#. Name of a DocType +#. 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 "" + +#. Name of a report +#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.json +msgid "Prepared Report Analytics" +msgstr "" + +#. Name of a role +#: frappe/core/doctype/prepared_report/prepared_report.json +msgid "Prepared Report User" +msgstr "" + +#: frappe/desk/query_report.py:308 +msgid "Prepared report render failed" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:473 +msgid "Preparing Report" +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:434 +msgid "Prepend the template to the email message" +msgstr "" + +#: 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 "" + +#. 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:194 +#: 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 "" + +#. Label of the preview_html (HTML) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "Preview HTML" +msgstr "" + +#. Label of the preview_message (Button) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Preview Message" +msgstr "" + +#: frappe/public/js/form_builder/form_builder.bundle.js:83 +msgid "Preview Mode" +msgstr "" + +#. 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 "" + +#: 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:97 +#: 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 "" + +#: frappe/public/js/frappe/ui/slides.js:351 +msgctxt "Go to previous slide" +msgid "Previous" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:2216 +msgid "Previous Submission" +msgstr "" + +#. Option for the 'Style' (Select) field in DocType 'Workflow State' +#: frappe/workflow/doctype/workflow_state/workflow_state.json +msgid "Primary" +msgstr "" + +#: 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 "" + +#: 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:78 +#: 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:1797 +#: frappe/public/js/frappe/views/reports/report_view.js:1539 +#: frappe/public/js/frappe/views/treeview.js:492 frappe/www/printview.html:18 +msgid "Print" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:2166 +msgctxt "Button in list view actions menu" +msgid "Print" +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:48 +msgid "Print Documents" +msgstr "" + +#. Label of the print_format (Link) field in DocType 'Auto Repeat' +#. Label of a Link in the Build Workspace +#. 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:107 +#: frappe/printing/page/print/print.js:861 +#: frappe/public/js/frappe/list/bulk_operations.js:59 +#: frappe/website/doctype/web_form/web_form.json +msgid "Print Format" +msgstr "" + +#. Label of a Link in the Tools Workspace +#. 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 "" + +#. Label of a Link in the Tools Workspace +#: frappe/automation/workspace/tools/tools.json +msgid "Print Format Builder (New)" +msgstr "" + +#. 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 "" + +#: frappe/utils/pdf.py:63 +msgid "Print Format Error" +msgstr "" + +#. Name of a DocType +#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json +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" +msgstr "" + +#. 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 "" + +#: frappe/public/js/frappe/views/reports/query_report.js:1586 +msgid "Print Format not found" +msgstr "" + +#: frappe/www/printview.py:451 +msgid "Print Format {0} is disabled" +msgstr "" + +#. Label of a Link in the Tools Workspace +#. 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 "" + +#. 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 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 "" + +#: frappe/public/js/frappe/views/communication.js:168 +msgid "Print Language" +msgstr "" + +#: frappe/public/js/frappe/form/print_utils.js:225 +msgid "Print Sent to the printer!" +msgstr "" + +#. Label of the server_printer (Section Break) field in DocType 'Print +#. Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Print Server" +msgstr "" + +#. Label of a Link in the Tools Workspace +#. 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:173 +#: frappe/public/js/frappe/form/print_utils.js:99 +#: frappe/public/js/frappe/form/templates/print_layout.html:35 +msgid "Print Settings" +msgstr "" + +#. 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 +#: frappe/printing/doctype/print_settings/print_settings.json +#: frappe/printing/doctype/print_style/print_style.json +msgid "Print Style" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#: frappe/public/js/frappe/form/form.js:170 +msgid "Print document" +msgstr "" + +#. Label of the with_letterhead (Check) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Print with letterhead" +msgstr "" + +#: frappe/printing/page/print/print.js:870 +msgid "Printer" +msgstr "" + +#: frappe/printing/page/print/print.js:847 +msgid "Printer Mapping" +msgstr "" + +#. 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 "" + +#: frappe/printing/page/print/print.js:839 +msgid "Printer Settings" +msgstr "" + +#: frappe/printing/page/print/print.js:588 +msgid "Printer mapping not set." +msgstr "" + +#. Label of a Card Break in the Tools Workspace +#: frappe/automation/workspace/tools/tools.json +msgid "Printing" +msgstr "" + +#: frappe/utils/print_format.py:291 +msgid "Printing failed" +msgstr "" + +#. 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 "" + +#. Label of the private (Check) field in DocType 'Custom HTML Block' +#. Option for the 'Event Type' (Select) field in DocType '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 "" + +#. 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' +#: frappe/email/doctype/email_account/email_account.json +msgid "ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference" +msgstr "" + +#: frappe/core/doctype/document_naming_rule/document_naming_rule.js:22 +msgid "Proceed" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:940 +msgid "Proceed Anyway" +msgstr "" + +#: frappe/public/js/frappe/form/controls/table.js:104 +msgid "Processing" +msgstr "" + +#: frappe/email/doctype/email_queue/email_queue_list.js:52 +msgid "Processing..." +msgstr "" + +#: frappe/desk/page/setup_wizard/install_fixtures.py:51 +msgid "Prof" +msgstr "" + +#. Group in User's connections +#: frappe/core/doctype/user/user.json +msgid "Profile" +msgstr "" + +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile Picture" +msgstr "" + +#. Success message of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile updated successfully." +msgstr "" + +#: frappe/public/js/frappe/socketio_client.js:82 +msgid "Progress" +msgstr "" + +#: frappe/public/js/frappe/views/kanban/kanban_view.js:422 +msgid "Project" +msgstr "" + +#. Label of the property (Data) field in DocType 'Property Setter' +#: frappe/core/doctype/version/version_view.html:13 +#: frappe/core/doctype/version/version_view.html:38 +#: frappe/core/doctype/version/version_view.html:75 +#: frappe/custom/doctype/property_setter/property_setter.json +msgid "Property" +msgstr "" + +#. 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 "" + +#. Name of a DocType +#: frappe/custom/doctype/property_setter/property_setter.json +msgid "Property Setter" +msgstr "" + +#. 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 the property_type (Data) field in DocType 'Property Setter' +#: frappe/custom/doctype/property_setter/property_setter.json +msgid "Property Type" +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:526 +msgid "Protected File" +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 "" + +#. 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 "" + +#. 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 "" + +#. 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:633 +#: frappe/website/doctype/web_form/web_form.js:86 +msgid "Publish" +msgstr "" + +#. Label of the published (Check) field in DocType 'Comment' +#. 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/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 "" + +#. 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 "" + +#: frappe/email/doctype/email_account/email_account.js:208 +msgid "Pull Emails" +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 "" + +#. 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 "" + +#. Label of the pulled_from_google_calendar (Check) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Pulled from Google Calendar" +msgstr "" + +#. Label of the pulled_from_google_contacts (Check) field in DocType 'Contact' +#: frappe/contacts/doctype/contact/contact.json +msgid "Pulled from Google Contacts" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.js:209 +msgid "Pulling emails..." +msgstr "" + +#. Name of a role +#: frappe/contacts/doctype/contact/contact.json +msgid "Purchase Manager" +msgstr "" + +#. Name of a role +#: frappe/contacts/doctype/contact/contact.json +msgid "Purchase Master Manager" +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 "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#: 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' +#. Option for the 'Condition Type' (Select) field in DocType 'Notification' +#: frappe/desk/doctype/system_console/system_console.json +#: frappe/email/doctype/notification/notification.json +msgid "Python" +msgstr "" + +#: frappe/www/qrcode.html:3 +msgid "QR Code" +msgstr "" + +#: frappe/www/qrcode.html:6 +msgid "QR Code for Login Verification" +msgstr "" + +#: frappe/public/js/frappe/form/print_utils.js:234 +msgid "QZ Tray Failed:" +msgstr "" + +#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' +#. Option for the 'Time Interval' (Select) field in DocType '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 "" + +#. 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 "" + +#. Label of the section_break_6 (Section Break) field in DocType 'Report' +#: frappe/core/doctype/report/report.json +msgid "Query / Script" +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 "" + +#. 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 "" + +#. 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 "" + +#: frappe/core/doctype/recorder/recorder.py:188 +msgid "Query analysis complete. Check suggested indexes." +msgstr "" + +#: frappe/utils/safe_exec.py:497 +msgid "Query must be of SELECT or read-only WITH type." +msgstr "" + +#. 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 "" + +#: 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 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 "" + +#: frappe/utils/background_jobs.py:556 +msgid "Queue should be one of {0}" +msgstr "" + +#. Label of the queue (Data) field in DocType 'RQ Worker' +#: frappe/core/doctype/rq_worker/rq_worker.json +msgid "Queue(s)" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Prepared Report' +#. Option for the 'Status' (Select) field in DocType '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 "" + +#. 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 the queued_by (Data) field in DocType 'Prepared Report' +#: frappe/core/doctype/prepared_report/prepared_report.json +msgid "Queued By" +msgstr "" + +#: frappe/core/doctype/submission_queue/submission_queue.py:174 +msgid "Queued for Submission. You can track the progress over {0}." +msgstr "" + +#: frappe/desk/page/backups/backups.py:96 +msgid "Queued for backup. You will receive an email with the download link" +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/desk/doctype/bulk_update/bulk_update.py:85 +msgid "Queuing {0} for Submission" +msgstr "" + +#. 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 "" + +#: frappe/core/page/permission_manager/permission_manager_help.html:3 +msgid "Quick Help for Setting Permissions" +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 "" + +#. 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 "" + +#: frappe/public/js/frappe/views/reports/report_utils.js:314 +msgid "Quoting must be between 0 and 3" +msgstr "" + +#. 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 "" + +#. Name of a DocType +#: frappe/core/doctype/rq_job/rq_job.json +msgid "RQ Job" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/rq_worker/rq_worker.json +msgid "RQ Worker" +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 "Random" +msgstr "" + +#: frappe/website/report/website_analytics/website_analytics.js:20 +msgid "Range" +msgstr "" + +#. 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 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' +#. 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' +#: 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 "" + +#. 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:98 +msgid "Raw Commands" +msgstr "" + +#. Label of the raw (Code) field in DocType 'Unhandled Email' +#: frappe/email/doctype/unhandled_email/unhandled_email.json +msgid "Raw Email" +msgstr "" + +#. 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 "" + +#: frappe/printing/page/print/print.js:178 +msgid "Raw Printing Setting" +msgstr "" + +#: 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 "" + +#: frappe/email/doctype/email_account/email_account.py:726 +msgid "Re:" +msgstr "" + +#: frappe/core/doctype/communication/communication.js:268 +#: frappe/public/js/frappe/form/footer/form_timeline.js:601 +#: frappe/public/js/frappe/views/communication.js:370 +msgid "Re: {0}" +msgstr "" + +#. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#. 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' +#: 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 "" + +#. Option for the 'Type' (Select) field in DocType '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 "" + +#. 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 "" + +#. 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 "" + +#: frappe/public/js/frappe/ui/toolbar/navbar.html:16 +#: frappe/templates/includes/navbar/navbar_items.html:97 +msgid "Read Only Mode" +msgstr "" + +#. Label of the read_by_recipient (Check) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Read by Recipient" +msgstr "" + +#. Label of the read_by_recipient_on (Datetime) field in DocType +#. 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Read by Recipient On" +msgstr "" + +#: frappe/desk/doctype/note/note.js:10 +msgid "Read mode" +msgstr "" + +#: frappe/utils/safe_exec.py:99 +msgid "Read the documentation to know more" +msgstr "" + +#. Label of the readme (Markdown Editor) field in DocType 'Package' +#: frappe/core/doctype/package/package.json +msgid "Readme" +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 "" + +#. Label of the reason (Long Text) field in DocType 'Unhandled Email' +#: frappe/email/doctype/unhandled_email/unhandled_email.json +msgid "Reason" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:894 +msgid "Rebuild" +msgstr "" + +#: frappe/public/js/frappe/views/treeview.js:511 +msgid "Rebuild Tree" +msgstr "" + +#: frappe/utils/nestedset.py:177 +msgid "Rebuilding of tree is not supported for {}" +msgstr "" + +#. Option for the 'Sent or Received' (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Received" +msgstr "" + +#: frappe/integrations/doctype/token_cache/token_cache.py:49 +msgid "Received an invalid token type." +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 "" + +#. 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 "" + +#. Label of the receiver_parameter (Data) field in DocType 'SMS Settings' +#: frappe/core/doctype/sms_settings/sms_settings.json +msgid "Receiver Parameter" +msgstr "" + +#: frappe/utils/password_strength.py:123 +msgid "Recent years are easy to guess." +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:541 +msgid "Recents" +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 "" + +#. Label of the recipient_account_field (Data) field in DocType 'DocType' +#. Label of the recipient_account_field (Data) field in DocType 'Customize +#. Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Recipient Account Field" +msgstr "" + +#. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Recipient Unsubscribed" +msgstr "" + +#. 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 "" + +#. Name of a DocType +#: frappe/core/doctype/recorder/recorder.json +msgid "Recorder" +msgstr "" + +#. Name of a DocType +#: 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:1609 +msgid "Recursive Fetch From" +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 "" + +#. 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 the redirect_to_path (Data) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Redirect To Path" +msgstr "" + +#. 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 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 "" + +#. Label of the redirect_uris (Text) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Redirect URIs" +msgstr "" + +#. 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 "" + +#. 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' +#: frappe/email/doctype/email_group/email_group.json +msgid "Redirect to this URL after successful confirmation." +msgstr "" + +#. Label of the redirects_tab (Tab Break) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Redirects" +msgstr "" + +#: frappe/sessions.py:149 +msgid "Redis cache server not running. Please contact Administrator / Tech support" +msgstr "" + +#: 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:538 +msgid "Redo last action" +msgstr "" + +#. Label of the ref_doctype (Link) field in DocType 'Report' +#: frappe/core/doctype/report/report.json +msgid "Ref DocType" +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 "" + +#. 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 "" + +#. Label of the date_changed (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Reference Date" +msgstr "" + +#. Label of the datetime_changed (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Reference Datetime" +msgstr "" + +#. Label of the reference_docname (Dynamic Link) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Reference Doc" +msgstr "" + +#. Label of the reference_name (Data) field in DocType 'Email Queue' +#: frappe/email/doctype/email_queue/email_queue.json +msgid "Reference DocName" +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 "" + +#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:26 +msgid "Reference DocType and Reference Name are required" +msgstr "" + +#. 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 "" + +#. 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/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 "" + +#. 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 "" + +#. 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 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 (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' +#. 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/view_log/view_log.json +#: frappe/desk/doctype/calendar_view/calendar_view.json +#: frappe/desk/doctype/event/event.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 "" + +#. 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/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 "" + +#. 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 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 "" + +#. 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 "" + +#. Label of the reference_name (Dynamic Link) field in DocType 'View Log' +#: frappe/core/doctype/view_log/view_log.json +msgid "Reference name" +msgstr "" + +#: frappe/templates/emails/auto_reply.html:3 +msgid "Reference: {0} {1}" +msgstr "" + +#. 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 "" + +#: frappe/printing/page/print/print.js:86 frappe/public/js/frappe/desk.js:168 +#: frappe/public/js/frappe/desk.js:552 +#: 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:1786 +#: frappe/public/js/frappe/views/treeview.js:498 +#: frappe/public/js/frappe/widgets/chart_widget.js:291 +#: frappe/public/js/frappe/widgets/number_card_widget.js:352 +#: frappe/public/js/print_format_builder/Preview.vue:24 +msgid "Refresh" +msgstr "" + +#: frappe/core/page/dashboard_view/dashboard_view.js:177 +msgid "Refresh All" +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 "" + +#: frappe/printing/page/print/print.js:371 +msgid "Refresh Print Preview" +msgstr "" + +#. 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 "" + +#: frappe/public/js/frappe/list/list_view.js:536 +msgctxt "Document count in list view" +msgid "Refreshing" +msgstr "" + +#: frappe/core/doctype/system_settings/system_settings.js:57 +#: frappe/core/doctype/user/user.js:362 +#: frappe/desk/page/setup_wizard/setup_wizard.js:211 +msgid "Refreshing..." +msgstr "" + +#: frappe/core/doctype/user/user.py:1036 +msgid "Registered but disabled" +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 "" + +#: 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 +#: frappe/core/doctype/package/package.json +msgid "Release" +msgstr "" + +#. Label of the release_notes (Markdown Editor) field in DocType 'Package +#. Release' +#: frappe/core/doctype/package_release/package_release.json +msgid "Release Notes" +msgstr "" + +#: frappe/core/doctype/communication/communication.js:48 +#: frappe/core/doctype/communication/communication.js:159 +msgid "Relink" +msgstr "" + +#: frappe/core/doctype/communication/communication.js:138 +msgid "Relink Communication" +msgstr "" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#: frappe/core/doctype/comment/comment.json +msgid "Relinked" +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:447 +msgid "Reload" +msgstr "" + +#: 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 "" + +#: frappe/public/js/frappe/views/reports/query_report.js:100 +msgid "Reload Report" +msgstr "" + +#. 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 "" + +#. 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 "" + +#: frappe/public/js/frappe/form/toolbar.js:479 +msgid "Remind Me" +msgstr "" + +#: frappe/public/js/frappe/form/reminders.js:13 +msgid "Remind Me In" +msgstr "" + +#. Name of a DocType +#: frappe/automation/doctype/reminder/reminder.json +msgid "Reminder" +msgstr "" + +#: frappe/automation/doctype/reminder/reminder.py:39 +msgid "Reminder cannot be created in past." +msgstr "" + +#: frappe/public/js/frappe/form/reminders.js:96 +msgid "Reminder set at {0}" +msgstr "" + +#: 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 "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:493 +msgid "Remove Field" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:427 +msgid "Remove Section" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:138 +msgid "Remove all customizations?" +msgstr "" + +#: 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 "" + +#: frappe/public/js/form_builder/components/Field.vue:260 +msgid "Remove field" +msgstr "" + +#: 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 "" + +#: frappe/custom/doctype/custom_field/custom_field.js:116 +#: frappe/custom/doctype/custom_field/custom_field.js:136 +msgid "Rename Fieldname" +msgstr "" + +#: frappe/public/js/frappe/model/model.js:710 +msgid "Rename {0}" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:699 +msgid "Renamed files and replaced code in controllers, please check!" +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 "" + +#: frappe/core/doctype/communication/communication.js:43 +#: frappe/desk/doctype/todo/todo.js:36 +msgid "Reopen" +msgstr "" + +#: frappe/public/js/frappe/form/toolbar.js:547 +msgid "Repeat" +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 "" + +#. Label of the repeat_on (Select) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Repeat On" +msgstr "" + +#. Label of the repeat_till (Date) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Repeat Till" +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 "" + +#. 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 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 "" + +#. Label of the repeat_this_event (Check) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Repeat this Event" +msgstr "" + +#: frappe/utils/password_strength.py:110 +msgid "Repeats like \"aaa\" are easy to guess" +msgstr "" + +#: frappe/utils/password_strength.py:105 +msgid "Repeats like \"abcabcabc\" are only slightly harder to guess than \"abc\"" +msgstr "" + +#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:151 +msgid "Repeats {0}" +msgstr "" + +#: 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' +#. Option for the 'Status' (Select) field in DocType 'Communication' +#: frappe/contacts/doctype/contact/contact.json +#: frappe/core/doctype/communication/communication.json +msgid "Replied" +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 "" + +#: frappe/core/doctype/communication/communication.js:62 +msgid "Reply All" +msgstr "" + +#. 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 +#. Option for the 'Set Role For' (Select) field in DocType 'Role Permission for +#. Page and Report' +#. 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' +#. 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 +#: 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:104 +#: frappe/public/js/frappe/form/print_utils.js:31 +#: frappe/public/js/frappe/request.js:616 +#: frappe/public/js/frappe/utils/utils.js:923 +msgid "Report" +msgstr "" + +#. Option for the 'Report Type' (Select) field in DocType 'Report' +#. Option for the 'DocType View' (Select) field in DocType '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 "" + +#. Name of a DocType +#: frappe/core/doctype/report_column/report_column.json +msgid "Report Column" +msgstr "" + +#. Label of the report_description (Data) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Report Description" +msgstr "" + +#: frappe/core/doctype/report/report.py:151 +msgid "Report Document Error" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/report_filter/report_filter.json +msgid "Report Filter" +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 "" + +#. 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 "" + +#. 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 "" + +#. Name of a role +#: frappe/core/doctype/report/report.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Report Manager" +msgstr "" + +#. 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:1973 +msgid "Report Name" +msgstr "" + +#: frappe/desk/doctype/number_card/number_card.py:70 +msgid "Report Name, Report Field and Fucntion are required to create a number card" +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 "" + +#. 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 "" + +#. 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 "" + +#: frappe/public/js/frappe/list/base_list.js:203 +msgid "Report View" +msgstr "" + +#: frappe/public/js/frappe/form/templates/form_sidebar.html:26 +msgid "Report bug" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1823 +msgid "Report cannot be set for Single types" +msgstr "" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:208 +#: frappe/desk/doctype/number_card/number_card.js:194 +msgid "Report has no data, please modify the filters or change the Report Name" +msgstr "" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:196 +#: frappe/desk/doctype/number_card/number_card.js:189 +msgid "Report has no numeric fields, please change the Report Name" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:1021 +msgid "Report initiated, click to view status" +msgstr "" + +#: frappe/email/doctype/auto_email_report/auto_email_report.py:110 +msgid "Report limit reached" +msgstr "" + +#: frappe/core/doctype/prepared_report/prepared_report.py:223 +msgid "Report timed out." +msgstr "" + +#: frappe/desk/query_report.py:651 +msgid "Report updated successfully" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1359 +msgid "Report was not saved (there were errors)" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:2011 +msgid "Report with more than 10 columns looks better in Landscape mode." +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:260 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:261 +msgid "Report {0}" +msgstr "" + +#: frappe/desk/reportview.py:365 +msgid "Report {0} deleted" +msgstr "" + +#: frappe/desk/query_report.py:54 +msgid "Report {0} is disabled" +msgstr "" + +#: frappe/desk/reportview.py:342 +msgid "Report {0} saved" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:20 +msgid "Report:" +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:556 +msgid "Reports" +msgstr "" + +#: frappe/patches/v14_0/update_workspace2.py:50 +msgid "Reports & Masters" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:937 +msgid "Reports already in Queue" +msgstr "" + +#. Description of a DocType +#: frappe/core/doctype/user/user.json +msgid "Represents a User in the system." +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 "" + +#: frappe/integrations/doctype/webhook/webhook.js:101 +msgid "Request Body" +msgstr "" + +#. Label of the data (Code) field in DocType 'Integration Request' +#. Title of the request-data Web Form +#. Button label of the request-data Web Form +#: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/website/web_form/request_data/request_data.json +msgid "Request Data" +msgstr "" + +#. 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 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 the request_id (Data) field in DocType 'Integration Request' +#: frappe/integrations/doctype/integration_request/integration_request.json +msgid "Request ID" +msgstr "" + +#. 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 the request_method (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "Request Method" +msgstr "" + +#. Label of the request_structure (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "Request Structure" +msgstr "" + +#: frappe/public/js/frappe/request.js:231 +msgid "Request Timed Out" +msgstr "" + +#. 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 the request_url (Small Text) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "Request URL" +msgstr "" + +#. Title of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "Request for Account Deletion" +msgstr "" + +#. 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 the require_trusted_certificate (Select) field in DocType 'LDAP +#. Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "Require Trusted Certificate" +msgstr "" + +#. 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 "" + +#. 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 "" + +#: frappe/core/doctype/communication/communication.js:279 +msgid "Res: {0}" +msgstr "" + +#: 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 "" + +#: frappe/custom/doctype/customize_form/customize_form.js:136 +msgid "Reset All Customizations" +msgstr "" + +#: 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 "" + +#: frappe/public/js/frappe/widgets/chart_widget.js:306 +msgid "Reset Chart" +msgstr "" + +#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:39 +msgid "Reset Dashboard Customizations" +msgstr "" + +#: frappe/public/js/frappe/list/list_settings.js:228 +msgid "Reset Fields" +msgstr "" + +#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:175 +msgid "Reset LDAP Password" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:128 +msgid "Reset Layout" +msgstr "" + +#: frappe/core/doctype/user/user.js:223 +msgid "Reset OTP Secret" +msgstr "" + +#: frappe/core/doctype/user/user.js:156 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 "" + +#. Label of the reset_password_key (Data) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Reset Password Key" +msgstr "" + +#. 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 the reset_password_template (Link) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Reset Password Template" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager.js:116 +msgid "Reset Permissions for {0}?" +msgstr "" + +#: 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 "" + +#: frappe/public/js/frappe/form/grid_row.js:434 +msgid "Reset to default" +msgstr "" + +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:19 +msgid "Reset to defaults" +msgstr "" + +#: frappe/templates/emails/password_reset.html:3 +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_html (Code) 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_type (Select) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Response Type" +msgstr "" + +#: frappe/public/js/frappe/ui/notifications/notifications.js:414 +msgid "Rest of the day" +msgstr "" + +#: frappe/core/doctype/deleted_document/deleted_document.js:11 +#: frappe/core/doctype/deleted_document/deleted_document_list.js:48 +msgid "Restore" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager.js:509 +msgid "Restore Original Permissions" +msgstr "" + +#: frappe/website/doctype/portal_settings/portal_settings.js:20 +msgid "Restore to default settings?" +msgstr "" + +#. Label of the restored (Check) field in DocType 'Deleted Document' +#: frappe/core/doctype/deleted_document/deleted_document.json +msgid "Restored" +msgstr "" + +#: frappe/core/doctype/deleted_document/deleted_document.py:74 +msgid "Restoring Deleted Document" +msgstr "" + +#. Label of the restrict_ip (Small Text) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Restrict IP" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#: frappe/public/js/frappe/list/list_view.js:199 +msgctxt "Title of message showing restrictions in list view" +msgid "Restrictions" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:382 +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:397 +msgid "Result" +msgstr "" + +#: frappe/email/doctype/email_queue/email_queue_list.js:27 +msgid "Resume Sending" +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 "" + +#: frappe/email/doctype/email_queue/email_queue_list.js:47 +msgid "Retry Sending" +msgstr "" + +#: frappe/www/qrcode.html:15 +msgid "Return to the Verification screen and enter the code displayed by your authentication app" +msgstr "" + +#. Label of the reverse (Check) field in DocType 'Desktop Icon' +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +msgid "Reverse Icon Color" +msgstr "" + +#: frappe/database/schema.py:165 +msgid "Reverting length to {0} for '{1}' in '{2}'. Setting the length as {3} will cause truncation of data." +msgstr "" + +#. Label of the revocation_uri (Data) field in DocType 'Connected App' +#: frappe/integrations/doctype/connected_app/connected_app.json +msgid "Revocation URI" +msgstr "" + +#: frappe/www/third_party_apps.html:47 +msgid "Revoke" +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 "" + +#. 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 "Rich Text" +msgstr "" + +#. Option for the 'Position' (Select) field in DocType 'Form Tour Step' +#. Option for the 'Align' (Select) field in DocType 'Letter Head' +#. Option for the 'Text Align' (Select) field in DocType '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 "" + +#: 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 "" + +#. 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 "" + +#. 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 "" + +#. Label of the robots_txt (Code) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "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 +#. Label of the role (Link) field in DocType 'User Role' +#. 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 +#. 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_role/user_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 "" + +#: frappe/core/doctype/role/role.js:8 +msgid "Role 'All' will be given to all system + website users." +msgstr "" + +#: frappe/core/doctype/role/role.js:13 +msgid "Role 'Desk User' will be given to all system users." +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 "" + +#. 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 "" + +#. 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:114 +msgid "Role Permissions" +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 "" + +#: frappe/public/js/frappe/list/list_view.js:1935 +msgctxt "Button in list view menu" +msgid "Role Permissions Manager" +msgstr "" + +#. Name of a DocType +#. 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 +#: 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 "" + +#. Label of the role_profiles (Table MultiSelect) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Role Profiles" +msgstr "" + +#. 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 "" + +#: frappe/core/doctype/user/user.py:365 +msgid "Role has been set as per the user type {0}" +msgstr "" + +#. 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 (Table MultiSelect) field in DocType 'User Invitation' +#. 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/doctype/user_invitation/user_invitation.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 "" + +#. Label of the roles_permissions_tab (Tab Break) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Roles & Permissions" +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 "" + +#. 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 "" + +#. 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 "" + +#: 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:293 +msgid "Root {0} cannot be deleted" +msgstr "" + +#. Option for the 'Rule' (Select) field in DocType 'Assignment Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Round Robin" +msgstr "" + +#. 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 the route (Data) field in DocType 'DocType' +#. Option for the 'Action Type' (Select) field in DocType 'DocType Action' +#. Option for the 'Item Type' (Select) field in DocType '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 '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/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 "" + +#. Name of a DocType +#: frappe/desk/doctype/route_history/route_history.json +msgid "Route History" +msgstr "" + +#. Label of the route_redirects (Table) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Route Redirects" +msgstr "" + +#. Description of the 'Home Page' (Data) field in DocType 'Role' +#: frappe/core/doctype/role/role.json +msgid "Route: Example \"/app\"" +msgstr "" + +#: frappe/model/base_document.py:909 frappe/model/document.py:779 +msgid "Row" +msgstr "" + +#: frappe/core/doctype/version/version_view.html:74 +msgid "Row #" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1845 +#: frappe/core/doctype/doctype/doctype.py:1855 +msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype" +msgstr "" + +#: frappe/model/base_document.py:1039 +msgid "Row #{0}:" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:492 +msgid "Row #{}: Fieldname is required" +msgstr "" + +#. Label of the row_format (Select) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Row Format" +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 the row_name (Data) field in DocType 'Property Setter' +#: frappe/custom/doctype/property_setter/property_setter.json +msgid "Row Name" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:483 +msgid "Row Number" +msgstr "" + +#: frappe/core/doctype/version/version_view.html:69 +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:357 +msgid "Row {0}: Not allowed to disable Mandatory for standard fields" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.py:346 +msgid "Row {0}: Not allowed to enable Allow on Submit for standard fields" +msgstr "" + +#. 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:33 +msgid "Rows Added" +msgstr "" + +#. 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:33 +msgid "Rows Removed" +msgstr "" + +#. Label of the rows_threshold_for_grid_search (Int) field in DocType 'DocType' +#. Label of the rows_threshold_for_grid_search (Int) field in DocType +#. 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.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 "" + +#. 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 "" + +#: frappe/permissions.py:675 +msgid "Rule for this doctype, role, permlevel and if-owner combination already exists." +msgstr "" + +#. Group in DocType's connections +#: frappe/core/doctype/doctype/doctype.json +msgid "Rules" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:57 +msgid "Runtime in Minutes" +msgstr "" + +#: 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' +#. Option for the 'Two Factor Authentication method' (Select) field in DocType +#. '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 "" + +#. 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 "" + +#. Name of a DocType +#: frappe/core/doctype/sms_log/sms_log.json +msgid "SMS Log" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/sms_parameter/sms_parameter.json +msgid "SMS Parameter" +msgstr "" + +#. 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 "" + +#: frappe/core/doctype/sms_settings/sms_settings.py:114 +msgid "SMS sent successfully" +msgstr "" + +#: 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 "" + +#. Option for the 'Type' (Select) field in DocType 'System Console' +#: frappe/desk/doctype/system_console/system_console.json +msgid "SQL" +msgstr "" + +#. 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 "" + +#. 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 the sql_output (HTML) field in DocType 'System Console' +#: frappe/desk/doctype/system_console/system_console.json +msgid "SQL Output" +msgstr "" + +#. Label of the sql_queries (Table) field in DocType 'Recorder' +#: frappe/core/doctype/recorder/recorder.json +msgid "SQL Queries" +msgstr "" + +#. 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 "" + +#: frappe/public/js/frappe/color_picker/color_picker.js:20 +msgid "SWATCHES" +msgstr "" + +#. Name of a role +#: frappe/contacts/doctype/contact/contact.json +msgid "Sales Manager" +msgstr "" + +#. Name of a role +#: frappe/contacts/doctype/contact/contact.json +msgid "Sales Master Manager" +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 "" + +#. 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 "" + +#. Label of the salutation (Link) field in DocType 'Contact' +#. Name of a DocType +#. Label of the salutation (Data) field in DocType 'Salutation' +#: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/doctype/salutation/salutation.json +msgid "Salutation" +msgstr "" + +#: frappe/integrations/doctype/webhook/webhook.py:113 +msgid "Same Field is entered more than once" +msgstr "" + +#. Label of the sample (HTML) field in DocType 'Client Script' +#: frappe/custom/doctype/client_script/client_script.json +msgid "Sample" +msgstr "" + +#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day' +#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day' +#. 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' +#. 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 "" + +#. Option for the 'Send Alert On' (Select) field in DocType 'Notification' +#: frappe/core/doctype/data_import/data_import.js:113 +#: frappe/email/doctype/notification/notification.json +#: frappe/printing/page/print/print.js:898 +#: frappe/printing/page/print_format_builder/print_format_builder.js:160 +#: frappe/public/js/frappe/form/footer/form_timeline.js:678 +#: frappe/public/js/frappe/form/quick_entry.js:185 +#: frappe/public/js/frappe/list/list_settings.js:37 +#: frappe/public/js/frappe/list/list_settings.js:245 +#: 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:357 +#: frappe/public/js/frappe/views/reports/query_report.js:1965 +#: frappe/public/js/frappe/views/reports/report_view.js:1735 +#: 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 "" + +#: frappe/workflow/doctype/workflow/workflow.js:143 +msgid "Save Anyway" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1390 +#: frappe/public/js/frappe/views/reports/report_view.js:1742 +msgid "Save As" +msgstr "" + +#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:63 +msgid "Save Customizations" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:1968 +msgid "Save Report" +msgstr "" + +#: frappe/public/js/frappe/views/kanban/kanban_view.js:107 +msgid "Save filters" +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 "" + +#: frappe/public/js/frappe/form/form_tour.js:295 +msgid "Save the document." +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:286 +#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:917 +#: frappe/public/js/frappe/views/workspace/workspace.js:684 +msgid "Saved" +msgstr "" + +#: frappe/public/js/frappe/list/list_sidebar.html:88 +msgid "Saved Filters" +msgstr "" + +#: frappe/public/js/frappe/list/list_settings.js:41 +#: frappe/public/js/frappe/views/kanban/kanban_settings.js:47 +#: frappe/public/js/frappe/views/workspace/workspace.js:348 +msgid "Saving" +msgstr "" + +#: frappe/public/js/frappe/form/save.js:9 +msgctxt "Freeze message while saving a document" +msgid "Saving" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:411 +msgid "Saving Customization..." +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 "" + +#: 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 "" + +#: frappe/public/js/frappe/scanner/index.js:72 +msgid "Scan QRCode" +msgstr "" + +#: frappe/www/qrcode.html:14 +msgid "Scan the QR Code and enter the resulting code displayed." +msgstr "" + +#. Label of the section_break_10 (Tab Break) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Schedule" +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:97 +msgid "Schedule Send At" +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 +msgid "Scheduled" +msgstr "" + +#. 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 "" + +#. Name of a DocType +#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json +msgid "Scheduled Job Log" +msgstr "" + +#. Name of a DocType +#. 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 "" + +#. Label of a Link in the Build Workspace +#: frappe/core/workspace/build/build.json +msgid "Scheduled Jobs Logs" +msgstr "" + +#: frappe/core/doctype/server_script/server_script.py:150 +msgid "Scheduled execution for script {0} has updated" +msgstr "" + +#: frappe/email/doctype/auto_email_report/auto_email_report.js:26 +msgid "Scheduled to send" +msgstr "" + +#. 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 "" + +#. 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:107 +msgid "Scheduler Inactive" +msgstr "" + +#. 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 "" + +#: frappe/core/doctype/data_import/data_import.py:107 +msgid "Scheduler is inactive. Cannot import data." +msgstr "" + +#: frappe/core/doctype/rq_job/rq_job_list.js:19 +msgid "Scheduler: Active" +msgstr "" + +#: frappe/core/doctype/rq_job/rq_job_list.js:21 +msgid "Scheduler: Inactive" +msgstr "" + +#. Label of the scope (Data) field in DocType 'OAuth Scope' +#: frappe/integrations/doctype/oauth_scope/oauth_scope.json +msgid "Scope" +msgstr "" + +#. 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 "" + +#. 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' +#. 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 "" + +#. Name of a role +#: frappe/core/doctype/server_script/server_script.json +msgid "Script Manager" +msgstr "" + +#. Option for the 'Report Type' (Select) field in DocType 'Report' +#: frappe/core/doctype/report/report.json +msgid "Script Report" +msgstr "" + +#. Label of the script_type (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "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 +#. 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 the section_break_6 (Section Break) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Scripting / Style" +msgstr "" + +#. 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 "" + +#. Label of the search_bar (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Search Bar" +msgstr "" + +#. 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 "" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:186 +msgid "Search Help" +msgstr "" + +#. 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 "" + +#: 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:1468 +msgid "Search field {0} is not valid" +msgstr "" + +#: 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 "" + +#: 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 "" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:166 +msgid "Search in a document type" +msgstr "" + +#: 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 "" + +#: 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 "" + +#: frappe/public/js/frappe/ui/toolbar/search.js:210 +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 +msgid "Section" +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 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_form_field/web_form_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Section Break" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:421 +msgid "Section Heading" +msgstr "" + +#. 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 "" + +#: frappe/public/js/form_builder/components/Section.vue:28 +#: frappe/public/js/print_format_builder/PrintFormatSection.vue:8 +msgid "Section Title" +msgstr "" + +#: 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:863 +msgid "See all past reports." +msgstr "" + +#: frappe/public/js/frappe/form/form.js:1235 +#: frappe/website/doctype/contact_us_settings/contact_us_settings.js:4 +msgid "See on Website" +msgstr "" + +#: frappe/website/doctype/web_form/templates/web_form.html:160 +msgctxt "Button in web form" +msgid "See previous responses" +msgstr "" + +#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py:49 +msgid "See the document at {0}" +msgstr "" + +#. 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 "" + +#. Label of the seen_by_section (Section Break) field in DocType 'Note' +#: frappe/desk/doctype/note/note.json +msgid "Seen By" +msgstr "" + +#. Label of the seen_by (Table) field in DocType 'Note' +#: frappe/desk/doctype/note/note.json +msgid "Seen By Table" +msgstr "" + +#. Label of the select (Check) field in DocType 'Custom DocPerm' +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Label of the select (Check) field in DocType 'DocPerm' +#. 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' +#. 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/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:642 +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Select" +msgstr "" + +#: 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:498 +msgid "Select All" +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:177 +#: frappe/public/js/frappe/views/communication.js:601 +#: frappe/public/js/frappe/views/interaction.js:93 +#: frappe/public/js/frappe/views/interaction.js:155 +msgid "Select Attachments" +msgstr "" + +#: frappe/custom/doctype/client_script/client_script.js:27 +#: frappe/custom/doctype/client_script/client_script.js:30 +msgid "Select Child Table" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:388 +msgid "Select Column" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder_field.html:42 +#: frappe/public/js/frappe/form/print_utils.js:73 +msgid "Select Columns" +msgstr "" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:399 +msgid "Select Country" +msgstr "" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:415 +msgid "Select Currency" +msgstr "" + +#. 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 "" + +#. Option for the 'Timespan' (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Select Date Range" +msgstr "" + +#. 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 "" + +#. 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 "" + +#: frappe/core/page/permission_manager/permission_manager.js:179 +msgid "Select Document Type or Role to start." +msgstr "" + +#: 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 "" + +#: 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:490 +#: frappe/public/js/frappe/views/kanban/kanban_settings.js:181 +msgid "Select Fields" +msgstr "" + +#: frappe/public/js/frappe/list/list_settings.js:234 +msgid "Select Fields (Up to {0})" +msgstr "" + +#: frappe/public/js/frappe/data_import/data_exporter.js:147 +msgid "Select Fields To Insert" +msgstr "" + +#: frappe/public/js/frappe/data_import/data_exporter.js:148 +msgid "Select Fields To Update" +msgstr "" + +#: frappe/public/js/frappe/list/list_sidebar_group_by.js:21 +msgid "Select Filters" +msgstr "" + +#: frappe/desk/doctype/event/event.py:107 +msgid "Select Google Calendar to which event should be synced." +msgstr "" + +#: frappe/contacts/doctype/contact/contact.py:77 +msgid "Select Google Contacts to which contact should be synced." +msgstr "" + +#: 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 "" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:391 +msgid "Select Language" +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 "" + +#: frappe/public/js/frappe/data_import/data_exporter.js:158 +msgid "Select Mandatory" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:280 +msgid "Select Module" +msgstr "" + +#: frappe/printing/page/print/print.js:188 +#: frappe/printing/page/print/print.js:625 +msgid "Select Network Printer" +msgstr "" + +#. Label of the page_name (Link) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +msgid "Select Page" +msgstr "" + +#: 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 "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:82 +msgid "Select Print Format to Edit" +msgstr "" + +#. Label of the report_name (Link) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +msgid "Select Report" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:631 +msgid "Select Table Columns for {0}" +msgstr "" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:408 +msgid "Select Time Zone" +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 "" + +#: frappe/workflow/page/workflow_builder/workflow_builder.js:68 +msgid "Select Workflow" +msgstr "" + +#. Label of the workspace_name (Link) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +msgid "Select Workspace" +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 "" + +#: frappe/website/doctype/website_settings/website_settings.js:23 +msgid "Select a Brand Image first." +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:108 +msgid "Select a DocType to make a new format" +msgstr "" + +#: frappe/public/js/form_builder/components/Sidebar.vue:56 +msgid "Select a field to edit its properties." +msgstr "" + +#: frappe/public/js/frappe/views/treeview.js:358 +msgid "Select a group {0} first." +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1956 +msgid "Select a valid Sender Field for creating documents from Email" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1940 +msgid "Select a valid Subject field for creating documents from Email" +msgstr "" + +#: 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' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Select an image of approx width 150px with a transparent background for best results." +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:36 +msgid "Select atleast 1 record for printing" +msgstr "" + +#: frappe/core/doctype/success_action/success_action.js:18 +msgid "Select atleast 2 actions" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1447 +msgctxt "Description of a list view shortcut" +msgid "Select list item" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1399 +#: frappe/public/js/frappe/list/list_view.js:1415 +msgctxt "Description of a list view shortcut" +msgid "Select multiple list items" +msgstr "" + +#: frappe/public/js/frappe/views/calendar/calendar.js:167 +msgid "Select or drag across time slots to create a new event." +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:239 +msgid "Select records for assignment" +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:260 +msgid "Select records for removing assignment" +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 "" + +#: frappe/public/js/frappe/utils/diffview.js:102 +msgid "Select two versions to view the diff." +msgstr "" + +#: 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 "" + +#: frappe/model/workflow.py:120 +msgid "Self approval is not allowed" +msgstr "" + +#: frappe/www/contact.html:41 +msgid "Send" +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:26 +msgctxt "Send Email" +msgid "Send" +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 "" + +#. 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 "" + +#. Label of the send_email_alert (Check) field in DocType 'Workflow' +#: frappe/workflow/doctype/workflow/workflow.json +msgid "Send Email Alert" +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 "" + +#. 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 "" + +#. 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 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 "" + +#. 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 "" + +#. 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 "" + +#. Label of the thread_notify (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Send Notifications For Email Threads" +msgstr "" + +#: frappe/email/doctype/auto_email_report/auto_email_report.js:21 +msgid "Send Now" +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 "" + +#: frappe/public/js/frappe/views/communication.js:150 +msgid "Send Read Receipt" +msgstr "" + +#. Label of the send_system_notification (Check) field in DocType +#. 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Send System Notification" +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_welcome_email (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Send Welcome Email" +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 "" + +#. 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' +#: frappe/email/doctype/notification/notification.json +msgid "Send alert if this field's value changes" +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 "" + +#. 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 "" + +#. 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' +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +msgid "Send enquiries to this email address" +msgstr "" + +#: frappe/templates/includes/login/login.js:72 frappe/www/login.html:230 +msgid "Send login link" +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:144 +msgid "Send me a copy" +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 "" + +#. 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 "" + +#. 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 "" + +#. Label of the sender_email (Data) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Sender Email" +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 "" + +#: frappe/core/doctype/doctype/doctype.py:1959 +msgid "Sender Field should have Email in options" +msgstr "" + +#. 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 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' +#: frappe/email/doctype/email_account/email_account.json +msgid "Sendgrid" +msgstr "" + +#. 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 "" + +#. 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' +#. Option for the 'Status' (Select) field in DocType '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 "" + +#. 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 the read_receipt (Check) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Sent Read Receipt" +msgstr "" + +#. 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 the sent_or_received (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Sent or Received" +msgstr "" + +#. Option for the 'Event Category' (Select) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Sent/Received Email" +msgstr "" + +#. 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 "" + +#. 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 "" + +#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:223 +msgid "Series counter for {} updated to {} successfully" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1110 +#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:170 +msgid "Series {0} already used in {1}" +msgstr "" + +#. Option for the 'Action Type' (Select) field in DocType 'DocType Action' +#: frappe/core/doctype/doctype_action/doctype_action.json +msgid "Server Action" +msgstr "" + +#: frappe/app.py:399 frappe/public/js/frappe/request.js:611 +#: frappe/www/error.html:36 frappe/www/error.py:15 +msgid "Server Error" +msgstr "" + +#. 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 "" + +#. Label of the server_script (Link) field in DocType 'Scheduled Job Type' +#. Name of a DocType +#. Label of a Link in the Build Workspace +#: 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 "" + +#: frappe/utils/safe_exec.py:98 +msgid "Server Scripts are disabled. Please enable server scripts from bench configuration." +msgstr "" + +#: frappe/core/doctype/server_script/server_script.js:39 +msgid "Server Scripts feature is not available on this site." +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 "" + +#: frappe/public/js/frappe/request.js:246 +msgid "Server was too busy to process this request. Please try again." +msgstr "" + +#. 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 "" + +#. Name of a DocType +#: frappe/core/doctype/session_default/session_default.json +msgid "Session Default" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/session_default_settings/session_default_settings.json +msgid "Session Default Settings" +msgstr "" + +#. Label of a standard navbar item +#. Type: Action +#. 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 "" + +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:348 +msgid "Session Defaults Saved" +msgstr "" + +#: frappe/app.py:376 +msgid "Session Expired" +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 "" + +#: frappe/core/doctype/system_settings/system_settings.py:123 +msgid "Session Expiry must be in format {0}" +msgstr "" + +#: 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:307 +#: frappe/desk/doctype/number_card/number_card.js:404 +#: frappe/public/js/frappe/widgets/chart_widget.js:447 +msgid "Set" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:607 +msgctxt "Field value is set" +msgid "Set" +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 "" + +#: frappe/public/js/frappe/views/reports/query_report.js:200 +msgid "Set Chart" +msgstr "" + +#. 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 "" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:467 +#: frappe/desk/doctype/number_card/number_card.js:384 +msgid "Set Dynamic Filters" +msgstr "" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:381 +#: frappe/desk/doctype/number_card/number_card.js:292 +#: frappe/public/js/form_builder/components/Field.vue:80 +#: frappe/website/doctype/web_form/web_form.js:269 +msgid "Set Filters" +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 "" + +#: frappe/public/js/frappe/views/reports/query_report.js:2121 +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' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Set Naming Series options on your transactions." +msgstr "" + +#. Label of the new_password (Password) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Set New Password" +msgstr "" + +#: frappe/desk/page/backups/backups.js:8 +msgid "Set Number of Backups" +msgstr "" + +#: frappe/www/update-password.html:32 +msgid "Set Password" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:112 +msgid "Set Permissions" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:471 +msgid "Set Properties" +msgstr "" + +#. 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 "" + +#: frappe/public/js/frappe/form/link_selector.js:207 +#: frappe/public/js/frappe/form/link_selector.js:208 +msgid "Set Quantity" +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 "" + +#: frappe/core/doctype/user/user.js:124 +#: frappe/core/page/permission_manager/permission_manager.js:72 +msgid "Set User Permissions" +msgstr "" + +#. Label of the value (Small Text) field in DocType 'Property Setter' +#: frappe/custom/doctype/property_setter/property_setter.json +msgid "Set Value" +msgstr "" + +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:94 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:146 +msgid "Set all private" +msgstr "" + +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:94 +msgid "Set all public" +msgstr "" + +#: frappe/printing/doctype/print_format/print_format.js:50 +msgid "Set as Default" +msgstr "" + +#: frappe/website/doctype/website_theme/website_theme.js:33 +msgid "Set as Default Theme" +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 "" + +#: 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 'Custom Field' +#. Description of the 'Precision' (Select) field in DocType 'Customize Form +#. Field' +#. Description of the 'Precision' (Select) 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 "Set non-standard precision for a Float or Currency field" +msgstr "" + +#. Description of the 'Precision' (Select) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Set non-standard precision for a Float, Currency or Percent field" +msgstr "" + +#. 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' +#: frappe/desk/doctype/number_card/number_card.json +msgid "Set the filters here. For example:\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"
+"
" +msgstr "" + +#. Description of the 'Method' (Data) field in DocType 'Number Card' +#: 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"
+"\t\"fieldtype\": \"Currency\",\n"
+"\t\"route_options\": {\"from_date\": \"2023-05-23\"},\n"
+"\t\"route\": [\"query-report\", \"Permitted Documents For User\"]\n"
+"}
" +msgstr "" + +#: frappe/contacts/doctype/address_template/address_template.py:33 +msgid "Setting this Address Template as default as there is no other default" +msgstr "" + +#: frappe/desk/doctype/global_search_settings/global_search_settings.py:86 +msgid "Setting up Global Search documents." +msgstr "" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:285 +msgid "Setting up your system" +msgstr "" + +#. 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 +#. 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 +#: 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 "" + +#. Label of the settings_dropdown (Table) field in DocType 'Navbar Settings' +#: frappe/core/doctype/navbar_settings/navbar_settings.json +msgid "Settings Dropdown" +msgstr "" + +#. 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 "" + +#. 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:576 +msgid "Setup" +msgstr "" + +#: 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:1834 +#: frappe/public/js/frappe/views/reports/report_view.js:1713 +msgid "Setup Auto Email" +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 "" + +#. 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 "" + +#: 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' +#: 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 "" + +#: frappe/public/js/frappe/form/sidebar/share.js:107 +msgid "Share With" +msgstr "" + +#: 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 "" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#: frappe/core/doctype/comment/comment.json +msgid "Shared" +msgstr "" + +#: frappe/desk/form/assign_to.py:132 +msgid "Shared with the following Users with Read access:{0}" +msgstr "" + +#. Option for the 'Address Type' (Select) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "Shipping" +msgstr "" + +#: frappe/public/js/frappe/form/templates/address_list.html:31 +msgid "Shipping Address" +msgstr "" + +#. Option for the 'Address Type' (Select) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "Shop" +msgstr "" + +#: frappe/utils/password_strength.py:91 +msgid "Short keyboard patterns are easy to guess" +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 "" + +#: 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 "" + +#. 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 "" + +#: frappe/public/js/frappe/form/templates/form_sidebar.html:73 +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 "" + +#. 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 "" + +#. 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 "" + +#. Label of the show_document (Button) field in DocType 'Access Log' +#: frappe/core/doctype/access_log/access_log.json +msgid "Show Document" +msgstr "" + +#: frappe/www/error.html:42 frappe/www/error.html:65 +msgid "Show Error" +msgstr "" + +#. Label of the show_external_link_warning (Select) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Show External Link Warning" +msgstr "" + +#: frappe/public/js/frappe/form/layout.js:578 +msgid "Show Fieldname (click to copy on clipboard)" +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 "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#. 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 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 the line_breaks (Check) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Show Line Breaks after Sections" +msgstr "" + +#: frappe/public/js/frappe/form/toolbar.js:410 +msgid "Show Links" +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 "" + +#. 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 "" + +#: 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 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 "" + +#. Label of the show_processlist (Check) field in DocType 'System Console' +#: frappe/desk/doctype/system_console/system_console.json +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 "" + +#. 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 "" + +#: frappe/public/js/frappe/list/list_filter.js:15 +#: frappe/public/js/frappe/list/list_filter.js:94 +msgid "Show Saved" +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 "" + +#. Label of the show_sidebar (Check) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +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:1851 +msgid "Show Tags" +msgstr "" + +#. Label of the show_title (Check) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Show Title" +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 +#. Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Show Title in Link Fields" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1529 +msgid "Show Totals" +msgstr "" + +#: frappe/desk/doctype/form_tour/form_tour.js:116 +msgid "Show Tour" +msgstr "" + +#: 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 "" + +#: frappe/public/js/frappe/views/calendar/calendar.js:179 +msgid "Show Weekends" +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 "" + +#: frappe/core/doctype/version/version.js:6 +msgid "Show all Versions" +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:69 +msgid "Show all activity" +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 "" + +#. 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' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Show full form instead of a quick entry modal" +msgstr "" + +#. Label of the document_type (Select) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +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" +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 "" + +#. 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:272 +#: frappe/public/js/frappe/form/layout.js:290 +msgid "Show more details" +msgstr "" + +#. 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' +#: frappe/desk/doctype/number_card/number_card.json +msgid "Show percentage difference according to this time interval" +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' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Show title in browser window as \"Prefix - title\"" +msgstr "" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:148 +msgid "Show {0} List" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:506 +msgid "Showing only Numeric fields from Report" +msgstr "" + +#: 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 the sidebar_items (Table) field in DocType 'Website Sidebar' +#: frappe/website/doctype/website_sidebar/website_sidebar.json +msgid "Sidebar Items" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#: frappe/core/doctype/user/user.py:1029 +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:71 +msgid "Sign up" +msgstr "" + +#. 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 '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' +#. 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' +#: 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 "" + +#: frappe/www/login.html:168 +msgid "Signup Disabled" +msgstr "" + +#: frappe/www/login.html:169 +msgid "Signups have been disabled for this website." +msgstr "" + +#. 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 == \"Invalid\"" +msgstr "" + +#. 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 issue_type == 'Bug'" +msgstr "" + +#. 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 "" + +#. Label of the simultaneous_sessions (Int) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Simultaneous Sessions" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.py:128 +msgid "Single DocTypes cannot be customized." +msgstr "" + +#. Description of the 'Is Single' (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/doctype/doctype_list.js:68 +msgid "Single Types have only one record no tables associated. Values are stored in tabSingles" +msgstr "" + +#: 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 "" + +#: frappe/public/js/frappe/views/file/file_view.js:370 +msgid "Size" +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 "" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:82 +#: frappe/public/js/onboarding_tours/onboarding_tours.js:18 +msgid "Skip" +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 "" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:332 +msgid "Skip Step" +msgstr "" + +#. Label of the skipped (Check) field in DocType 'Patch Log' +#: frappe/core/doctype/patch_log/patch_log.json +msgid "Skipped" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:952 +msgid "Skipping Duplicate Column {0}" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:977 +msgid "Skipping Untitled Column" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:963 +msgid "Skipping column {0}" +msgstr "" + +#: frappe/modules/utils.py:176 +msgid "Skipping fixture syncing for doctype {0} from file {1}" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:39 +msgid "Skipping {0} of {1}, {2}" +msgstr "" + +#. Label of the skype (Data) field in DocType 'Contact Us Settings' +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +msgid "Skype" +msgstr "" + +#. Option for the 'Channel' (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Slack" +msgstr "" + +#. Label of the slack_webhook_url (Link) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Slack Channel" +msgstr "" + +#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py:65 +msgid "Slack Webhook Error" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. Label of the slideshow_items (Table) field in DocType 'Website Slideshow' +#: frappe/website/doctype/website_slideshow/website_slideshow.json +msgid "Slideshow Items" +msgstr "" + +#. Label of the slideshow_name (Data) field in DocType 'Website Slideshow' +#: frappe/website/doctype/website_slideshow/website_slideshow.json +msgid "Slideshow Name" +msgstr "" + +#. Description of a DocType +#: frappe/website/doctype/website_slideshow/website_slideshow.json +msgid "Slideshow like display for the website" +msgstr "" + +#. 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' +#. 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' +#. 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_form_field/web_form_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Small Text" +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 "" + +#. 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 "" + +#: frappe/printing/doctype/letter_head/letter_head.js:32 +msgid "Snippet and more variables: {0}" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/social_link_settings/social_link_settings.json +msgid "Social Link Settings" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#. Label of the social_logins (Table) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Social Logins" +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' +#: frappe/core/doctype/communication/communication.json +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 "" + +#. 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 "" + +#: frappe/public/js/frappe/views/translation_manager.js:101 +msgid "Something went wrong" +msgstr "" + +#: 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 "" + +#: frappe/templates/includes/login/login.js:293 +msgid "Something went wrong." +msgstr "" + +#: frappe/public/js/frappe/views/pageview.js:117 +msgid "Sorry! I could not find what you were looking for." +msgstr "" + +#: frappe/public/js/frappe/views/pageview.js:125 +msgid "Sorry! You are not permitted to view this page." +msgstr "" + +#: frappe/public/js/frappe/utils/datatable.js:6 +msgid "Sort Ascending" +msgstr "" + +#: frappe/public/js/frappe/utils/datatable.js:7 +msgid "Sort Descending" +msgstr "" + +#. Label of the sort_field (Select) field in DocType 'Customize Form' +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Sort Field" +msgstr "" + +#. 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 the sort_order (Select) field in DocType 'Customize Form' +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Sort Order" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1551 +msgid "Sort field {0} must be a valid fieldname" +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/utils/utils.js:1757 +#: 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 "" + +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Source Code" +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 "" + +#. 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 "" + +#: 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' +#: frappe/core/doctype/communication/communication.json +msgid "Spam" +msgstr "" + +#. Option for the 'Service' (Select) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "SparkPost" +msgstr "" + +#. Description of the 'Asynchronous' (Check) field in DocType 'Workflow +#. Transition Task' +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Spawns actions in a background job" +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.js:83 +msgid "Special Characters are not allowed" +msgstr "" + +#: frappe/model/naming.py:68 +msgid "Special Characters except '-', '#', '.', '/', '{{' and '}}' not allowed in naming series {0}" +msgstr "" + +#. 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 "" + +#: frappe/desk/reportview.py:455 +#: frappe/public/js/frappe/web_form/web_form_list.js:176 +#: frappe/templates/print_formats/standard_macros.html:44 +msgid "Sr" +msgstr "" + +#: 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 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 "" + +#: frappe/model/delete_doc.py:119 +msgid "Standard DocType can not be deleted." +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:229 +msgid "Standard DocType cannot have default print format, use Customize Form" +msgstr "" + +#: frappe/desk/doctype/dashboard/dashboard.py:58 +msgid "Standard Not Set" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager.js:132 +msgid "Standard Permissions" +msgstr "" + +#: frappe/printing/doctype/print_format/print_format.py:82 +msgid "Standard Print Format cannot be updated" +msgstr "" + +#: frappe/printing/doctype/print_style/print_style.py:31 +msgid "Standard Print Style cannot be changed. Please duplicate to edit." +msgstr "" + +#: frappe/desk/reportview.py:355 +msgid "Standard Reports cannot be deleted" +msgstr "" + +#: frappe/desk/reportview.py:326 +msgid "Standard Reports cannot be edited" +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 "" + +#: 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 "" + +#: frappe/core/doctype/role/role.py:32 +msgid "Standard roles cannot be renamed" +msgstr "" + +#: frappe/core/doctype/user_type/user_type.py:61 +msgid "Standard user type {0} can not be deleted." +msgstr "" + +#: 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:309 +#: frappe/printing/page/print/print.js:356 +msgid "Start" +msgstr "" + +#. 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:150 +#: 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 "" + +#. 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 "" + +#: frappe/core/doctype/data_import/data_import.js:110 +msgid "Start Import" +msgstr "" + +#: frappe/core/doctype/recorder/recorder_list.js:201 +msgid "Start Recording" +msgstr "" + +#. 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 "" + +#: frappe/core/doctype/data_export/exporter.py:22 +msgid "Start entering data below this line" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:165 +msgid "Start new Format" +msgstr "" + +#. Option for the 'SSL/TLS Mode' (Select) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "StartTLS" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Prepared Report' +#: frappe/core/doctype/prepared_report/prepared_report.json +msgid "Started" +msgstr "" + +#. Label of the started_at (Datetime) field in DocType 'RQ Job' +#: frappe/core/doctype/rq_job/rq_job.json +msgid "Started At" +msgstr "" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:286 +msgid "Starting Frappe ..." +msgstr "" + +#. Label of the starts_on (Datetime) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Starts on" +msgstr "" + +#. 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/contacts/report/addresses_and_contacts/addresses_and_contacts.py:40 +#: 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 "" + +#: frappe/public/js/workflow_builder/components/Properties.vue:26 +msgid "State Properties" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. Label of the parameters (Table) field in DocType 'SMS Settings' +#: frappe/core/doctype/sms_settings/sms_settings.json +msgid "Static Parameters" +msgstr "" + +#. Label of the statistics_section (Section Break) field in DocType 'RQ Worker' +#: frappe/core/doctype/rq_worker/rq_worker.json +msgid "Statistics" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. 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 'User Invitation' +#. 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/core/doctype/user_invitation/user_invitation.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:357 +#: frappe/public/js/frappe/views/reports/report_view.js:980 +#: 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 "" + +#: frappe/www/update-password.html:188 +msgid "Status Updated" +msgstr "" + +#: 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 "" + +#. Label of the step (Link) field in DocType 'Onboarding Step Map' +#: frappe/desk/doctype/onboarding_step_map/onboarding_step_map.json +msgid "Step" +msgstr "" + +#. 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 "" + +#: frappe/www/qrcode.html:11 +msgid "Steps to verify your login" +msgstr "" + +#. Label of the sticky (Check) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/public/js/frappe/form/grid_row.js:455 +msgid "Sticky" +msgstr "" + +#: frappe/core/doctype/recorder/recorder_list.js:87 +msgid "Stop" +msgstr "" + +#. Label of the stopped (Check) field in DocType 'Scheduled Job Type' +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +msgid "Stopped" +msgstr "" + +#. 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 "" + +#: frappe/core/doctype/user/user.js:497 +msgid "Store the API secret securely. It won't be displayed again." +msgstr "" + +#. 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 "" + +#. 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 "" + +#: frappe/utils/password_strength.py:97 +msgid "Straight rows of keys are easy to guess" +msgstr "" + +#. 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 "" + +#: frappe/public/js/frappe/form/controls/password.js:89 +msgid "Strong" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#. Label of the stylesheet_section (Tab Break) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Stylesheet" +msgstr "" + +#. Description of the 'Fraction' (Data) field in DocType 'Currency' +#: frappe/geo/doctype/currency/currency.json +msgid "Sub-currency. For e.g. \"Cent\"" +msgstr "" + +#. 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 "" + +#. Label of the subdomain (Small Text) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Subdomain" +msgstr "" + +#. 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:204 +#: 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 "" + +#. 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 "" + +#: frappe/core/doctype/doctype/doctype.py:1949 +msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/submission_queue/submission_queue.json +msgid "Submission Queue" +msgstr "" + +#. 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' +#. Button label of the request-to-delete-data Web Form +#: 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 +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "Submit" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:2233 +msgctxt "Button in list view actions menu" +msgid "Submit" +msgstr "" + +#: frappe/website/doctype/web_form/templates/web_form.html:47 +msgctxt "Button in web form" +msgid "Submit" +msgstr "" + +#: frappe/public/js/frappe/ui/dialog.js:64 +msgctxt "Primary action in dialog" +msgid "Submit" +msgstr "" + +#: frappe/public/js/frappe/ui/messages.js:97 +msgctxt "Primary action of prompt dialog" +msgid "Submit" +msgstr "" + +#: frappe/public/js/frappe/desk.js:227 +msgctxt "Submit password for Email Account" +msgid "Submit" +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 "" + +#: frappe/core/page/permission_manager/permission_manager_help.html:39 +msgid "Submit an Issue" +msgstr "" + +#: frappe/website/doctype/web_form/templates/web_form.html:163 +msgctxt "Button in web form" +msgid "Submit another response" +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 "" + +#. 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:132 +msgid "Submit on Creation" +msgstr "" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:395 +msgid "Submit this document to complete this step." +msgstr "" + +#: frappe/public/js/frappe/form/form.js:1221 +msgid "Submit this document to confirm" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:2238 +msgctxt "Title of confirmation dialog" +msgid "Submit {0} documents?" +msgstr "" + +#. Option for the 'Comment Type' (Select) field in DocType '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:143 +msgid "Submitted" +msgstr "" + +#: frappe/workflow/doctype/workflow/workflow.py:104 +msgid "Submitted Document cannot be converted back to draft. Transition row {0}" +msgstr "" + +#: 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 "" + +#: frappe/public/js/frappe/form/save.js:10 +msgctxt "Freeze message while submitting a document" +msgid "Submitting" +msgstr "" + +#: frappe/desk/doctype/bulk_update/bulk_update.py:88 +msgid "Submitting {0}" +msgstr "" + +#. Option for the 'Address Type' (Select) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "Subsidiary" +msgstr "" + +#. Label of the subtitle (Data) field in DocType 'Module Onboarding' +#: frappe/desk/doctype/module_onboarding/module_onboarding.json +msgid "Subtitle" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Activity Log' +#. Option for the 'Status' (Select) field in DocType 'Data Import' +#. Label of the success (Check) field in DocType 'Data Import Log' +#. Option for the 'Style' (Select) field in DocType '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:1172 +#: 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 "" + +#. Name of a DocType +#: frappe/core/doctype/success_action/success_action.json +msgid "Success Action" +msgstr "" + +#. Label of the success_message (Data) field in DocType 'Module Onboarding' +#: frappe/desk/doctype/module_onboarding/module_onboarding.json +msgid "Success Message" +msgstr "" + +#. 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 the success_url (Data) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Success URL" +msgstr "" + +#. 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 "" + +#. 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 "" + +#: frappe/model/workflow.py:363 +msgid "Successful Transactions" +msgstr "" + +#: frappe/model/rename_doc.py:698 +msgid "Successful: {0} to {1}" +msgstr "" + +#: 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 "" + +#: frappe/core/doctype/data_import/data_import.js:423 +msgid "Successfully imported {0}" +msgstr "" + +#: 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 "" + +#: frappe/public/js/frappe/views/translation_manager.js:22 +msgid "Successfully updated translations" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:431 +msgid "Successfully updated {0}" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:149 +msgid "Successfully updated {0} out of {1} records." +msgstr "" + +#: frappe/core/doctype/recorder/recorder.js:15 +msgid "Suggest Optimizations" +msgstr "" + +#. Label of the suggested_indexes (Table) field in DocType 'Recorder' +#: frappe/core/doctype/recorder/recorder.json +msgid "Suggested Indexes" +msgstr "" + +#: frappe/core/doctype/user/user.py:733 +msgid "Suggested Username: {0}" +msgstr "" + +#. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart' +#. Option for the 'Group By Type' (Select) field in DocType 'Dashboard Chart' +#. Option for the 'Function' (Select) field in DocType '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 "" + +#: frappe/public/js/frappe/ui/group_by/group_by.js:340 +msgid "Sum of {0}" +msgstr "" + +#: frappe/public/js/frappe/views/interaction.js:88 +msgid "Summary" +msgstr "" + +#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day' +#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day' +#. 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' +#. 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 "" + +#: frappe/email/doctype/email_queue/email_queue_list.js:27 +msgid "Suspend Sending" +msgstr "" + +#: frappe/public/js/frappe/ui/capture.js:276 +msgid "Switch Camera" +msgstr "" + +#: frappe/public/js/frappe/desk.js:96 +#: frappe/public/js/frappe/ui/theme_switcher.js:11 +msgid "Switch Theme" +msgstr "" + +#: frappe/templates/includes/navbar/navbar_login.html:17 +msgid "Switch To Desk" +msgstr "" + +#: 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 the symbol (Data) field in DocType 'Currency' +#: frappe/geo/doctype/currency/currency.json +msgid "Symbol" +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 "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.js:28 +msgid "Sync Calendar" +msgstr "" + +#: frappe/integrations/doctype/google_contacts/google_contacts.js:28 +msgid "Sync Contacts" +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 "" + +#: frappe/custom/doctype/customize_form/customize_form.js:256 +msgid "Sync on Migrate" +msgstr "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:312 +msgid "Sync token was invalid and has been reset, Retry syncing." +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 "" + +#. Label of the sync_with_google_contacts (Check) field in DocType 'Contact' +#: frappe/contacts/doctype/contact/contact.json +msgid "Sync with Google Contacts" +msgstr "" + +#: frappe/custom/doctype/doctype_layout/doctype_layout.js:46 +msgid "Sync {0} Fields" +msgstr "" + +#: frappe/custom/doctype/doctype_layout/doctype_layout.js:100 +msgid "Synced Fields" +msgstr "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.js:31 +#: frappe/integrations/doctype/google_contacts/google_contacts.js:31 +msgid "Syncing" +msgstr "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.js:19 +msgid "Syncing {0} of {1}" +msgstr "" + +#: frappe/utils/data.py:2573 +msgid "Syntax Error" +msgstr "" + +#. Option for the 'Show in Module Section' (Select) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "System" +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 "" + +#: 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 +#: frappe/core/workspace/build/build.json +msgid "System Logs" +msgstr "" + +#. Name of a role +#: 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_invitation/user_invitation.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 +#: frappe/workflow/doctype/workflow_transition_tasks/workflow_transition_tasks.json +msgid "System Manager" +msgstr "" + +#: frappe/desk/page/backups/backups.js:38 +msgid "System Manager privileges required." +msgstr "" + +#. Option for the 'Channel' (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "System Notification" +msgstr "" + +#. Label of the system_page (Check) field in DocType 'Page' +#: frappe/core/doctype/page/page.json +msgid "System Page" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/system_settings/system_settings.json +msgid "System Settings" +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 "" + +#: frappe/public/js/frappe/utils/number_systems.js:5 +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' +#: 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 "" + +#: frappe/public/js/form_builder/components/Tabs.vue:135 +msgid "Tab Label" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. 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' +#: 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 "" + +#. 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 "" + +#: frappe/core/doctype/version/version_view.html:73 +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 "" + +#: frappe/core/doctype/doctype/doctype.py:1204 +msgid "Table Fieldname Missing" +msgstr "" + +#. Label of the table_html (HTML) field in DocType 'Version' +#: frappe/core/doctype/version/version.json +msgid "Table HTML" +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' +#: 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 "" + +#: frappe/custom/doctype/customize_form/customize_form.js:229 +msgid "Table Trimmed" +msgstr "" + +#: frappe/public/js/frappe/form/grid.js:1171 +msgid "Table updated" +msgstr "" + +#: frappe/model/document.py:1578 +msgid "Table {0} cannot be empty" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Tabloid" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/tag/tag.json +msgid "Tag" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/tag_link/tag_link.json +msgid "Tag Link" +msgstr "" + +#: 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 "" + +#: frappe/public/js/frappe/ui/capture.js:220 +msgid "Take Photo" +msgstr "" + +#. 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 "" + +#. Label of the task (Select) field in DocType 'Workflow Transition Task' +#: frappe/desk/doctype/todo/todo_calendar.js:19 +#: frappe/desk/doctype/todo/todo_calendar.js:25 +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Task" +msgstr "" + +#. Label of the tasks (Table) field in DocType 'Workflow Transition Tasks' +#: frappe/workflow/doctype/workflow_transition_tasks/workflow_transition_tasks.json +msgid "Tasks" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. 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 the telemetry_section (Section Break) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Telemetry" +msgstr "" + +#. 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 "" + +#: frappe/core/doctype/data_import/importer.py:483 +#: frappe/core/doctype/data_import/importer.py:610 +msgid "Template Error" +msgstr "" + +#. 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 the template_options (Code) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Template Options" +msgstr "" + +#. Label of the template_warnings (Code) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Template Warnings" +msgstr "" + +#: frappe/public/js/frappe/views/workspace/blocks/paragraph.js:78 +msgid "Templates" +msgstr "" + +#: frappe/core/doctype/user/user.py:1042 +msgid "Temporarily Disabled" +msgstr "" + +#: frappe/core/doctype/translation/test_translation.py:47 +#: frappe/core/doctype/translation/test_translation.py:54 +msgid "Test Data" +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 "" + +#: 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 "" + +#. 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 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_form_field/web_form_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Text" +msgstr "" + +#. Label of the text_align (Select) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Text Align" +msgstr "" + +#. Label of the text_color (Link) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Text Color" +msgstr "" + +#. Label of the text_content (Code) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Text Content" +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 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 "" + +#: frappe/templates/emails/password_reset.html:5 +msgid "Thank you" +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" +"Your query:\n\n" +"{0}" +msgstr "" + +#: frappe/website/doctype/web_form/templates/web_form.html:147 +msgid "Thank you for spending your valuable time to fill this form" +msgstr "" + +#: frappe/templates/emails/auto_reply.html:1 +msgid "Thank you for your email" +msgstr "" + +#: frappe/website/doctype/help_article/templates/help_article.html:27 +msgid "Thank you for your feedback!" +msgstr "" + +#: frappe/templates/includes/contact.js:36 +msgid "Thank you for your message" +msgstr "" + +#: frappe/templates/emails/new_user.html:16 +msgid "Thanks" +msgstr "" + +#: frappe/templates/emails/auto_repeat_fail.html:3 +msgid "The Auto Repeat for this document has been disabled." +msgstr "" + +#: frappe/public/js/frappe/form/grid.js:1194 +msgid "The CSV format is case sensitive" +msgstr "" + +#. 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 "" + +#: frappe/email/doctype/notification/notification.py:219 +msgid "The Condition '{0}' is invalid" +msgstr "" + +#: frappe/core/doctype/file/file.py:220 +msgid "The File URL you've entered is incorrect" +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:112 +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 "" + +#: frappe/public/js/frappe/desk.js:162 +msgid "The application has been updated to a new version, please refresh this page" +msgstr "" + +#. 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 "" + +#: frappe/public/js/frappe/views/interaction.js:323 +msgid "The attachments could not be correctly linked to the new document" +msgstr "" + +#. 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 "" + +#: frappe/database/database.py:474 +msgid "The changes have been reverted." +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 "" + +#: frappe/templates/includes/comments/comments.py:48 +msgid "The comment cannot be empty" +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 "" + +#: frappe/public/js/frappe/list/list_view.js:687 +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 "" + +#: frappe/public/js/frappe/views/interaction.js:295 +msgid "The document has been assigned to {0}" +msgstr "" + +#. Description of the 'Parent Document Type' (Link) field in DocType 'Dashboard +#. Chart' +#. Description 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 "The document type selected is a child table, so the parent document type is required." +msgstr "" + +#: frappe/core/doctype/user_type/user_type.py:110 +msgid "The field {0} is mandatory" +msgstr "" + +#: frappe/core/doctype/file/file.py:157 +msgid "The fieldname you've specified in Attached To Field is invalid" +msgstr "" + +#: 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 "" + +#: frappe/core/doctype/data_import/importer.py:1046 +msgid "The following values do not exist for {0}: {1}" +msgstr "" + +#: 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 "" + +#: frappe/templates/emails/login_with_email_link.html:21 +msgid "The link will expire in {0} minutes" +msgstr "" + +#: frappe/www/login.py:194 +msgid "The link you trying to login is invalid or expired." +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 "" + +#: 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 "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#: frappe/www/update-password.html:101 +msgid "The password of your account has expired." +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 "" + +#. 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 "" + +#: frappe/desk/utils.py:106 +msgid "The report you requested has been generated.

Click here to download:
{0}

This link will expire in {1} hours." +msgstr "" + +#: frappe/core/doctype/user/user.py:1000 +msgid "The reset password link has been expired" +msgstr "" + +#: frappe/core/doctype/user/user.py:1002 +msgid "The reset password link has either been used before or is invalid" +msgstr "" + +#: frappe/app.py:391 frappe/public/js/frappe/request.js:149 +msgid "The resource you are looking for is not available" +msgstr "" + +#: frappe/core/doctype/user_type/user_type.py:114 +msgid "The role {0} should be a custom role." +msgstr "" + +#: frappe/core/doctype/audit_trail/audit_trail.py:46 +msgid "The selected document {0} is not a {1}." +msgstr "" + +#: frappe/utils/response.py:336 +msgid "The system is being updated. Please refresh again after a few moments." +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 "" + +#: frappe/core/doctype/user_type/user_type.py:97 +msgid "The total number of user document types limit has been crossed." +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 "" + +#. 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 "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:183 +msgid "The {0} is already on auto repeat {1}" +msgstr "" + +#. 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 "" + +#: frappe/public/js/frappe/ui/theme_switcher.js:130 +msgid "Theme Changed" +msgstr "" + +#. 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 "" + +#. Label of the theme_url (Data) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Theme URL" +msgstr "" + +#: 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 "" + +#: frappe/public/js/frappe/views/reports/query_report.js:973 +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:318 +msgid "There can be only 9 Page Break fields in a Web Form" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1444 +msgid "There can be only one Fold in a form" +msgstr "" + +#: frappe/contacts/doctype/address/address.py:183 +msgid "There is an error in your Address Template {0}" +msgstr "" + +#: frappe/core/doctype/data_export/exporter.py:162 +msgid "There is no data to be exported" +msgstr "" + +#: frappe/model/workflow.py:170 +msgid "There is no task called \"{}\"" +msgstr "" + +#: 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:643 frappe/utils/file_manager.py:372 +msgid "There is some problem with the file url: {0}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:970 +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 "" + +#: frappe/www/error.py:17 +msgid "There was an error building this page" +msgstr "" + +#: frappe/public/js/frappe/views/kanban/kanban_view.js:196 +msgid "There was an error saving filters" +msgstr "" + +#: frappe/public/js/frappe/form/sidebar/attachments.js:216 +msgid "There were errors" +msgstr "" + +#: frappe/public/js/frappe/views/interaction.js:277 +msgid "There were errors while creating the document. Please try again." +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:843 +msgid "There were errors while sending email. Please try again." +msgstr "" + +#: frappe/model/naming.py:502 +msgid "There were some errors setting the name, please contact the administrator" +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 "" + +#. 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 +msgid "These settings are required if 'Custom' LDAP Directory is used" +msgstr "" + +#. 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 "" + +#: frappe/www/third_party_apps.html:3 frappe/www/third_party_apps.html:14 +msgid "Third Party Apps" +msgstr "" + +#. Label of the third_party_authentication (Section Break) field in DocType +#. 'User' +#: frappe/core/doctype/user/user.json +msgid "Third Party Authentication" +msgstr "" + +#: frappe/geo/doctype/currency/currency.js:8 +msgid "This Currency is disabled. Enable to use in transactions" +msgstr "" + +#: frappe/public/js/frappe/views/kanban/kanban_view.js:405 +msgid "This Kanban Board will be private" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:666 +msgid "This Month" +msgstr "" + +#: frappe/core/doctype/file/file.py:396 +msgid "This PDF cannot be uploaded as it contains unsafe content." +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 "" + +#: frappe/public/js/frappe/form/toolbar.js:117 +#: frappe/public/js/frappe/model/model.js:706 +msgid "This cannot be undone" +msgstr "" + +#: frappe/desk/doctype/number_card/number_card.js:484 +msgctxt "Number Card" +msgid "This card is visible only to Administrator and System Managers by default. Set a DocType to share with users who have read access." +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 "" + +#. 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 "" + +#: 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:1055 +msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes." +msgstr "" + +#: frappe/model/delete_doc.py:153 +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 "" + +#: 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 "" + +#: frappe/public/js/frappe/form/form.js:1102 +msgid "This document is already amended, you cannot ammend it again" +msgstr "" + +#: frappe/model/document.py:475 +msgid "This document is currently locked and queued for execution. Please try again after some time." +msgstr "" + +#: frappe/templates/emails/auto_repeat_fail.html:7 +msgid "This email is autogenerated" +msgstr "" + +#: 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' +#: 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 "" + +#: frappe/core/doctype/file/file.py:525 +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 "" + +#: frappe/public/js/frappe/form/form.js:1199 +msgid "This form has been modified after you have loaded it" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:2259 +msgid "This form is not editable due to a Workflow." +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 "" + +#: 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' +#: frappe/website/doctype/website_slideshow/website_slideshow.json +msgid "This goes above the slideshow." +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:2197 +msgid "This is a background report. Please set the appropriate filters and then generate a new one." +msgstr "" + +#: frappe/utils/password_strength.py:158 +msgid "This is a top-10 common password." +msgstr "" + +#: frappe/utils/password_strength.py:160 +msgid "This is a top-100 common password." +msgstr "" + +#: frappe/utils/password_strength.py:162 +msgid "This is a very common password." +msgstr "" + +#: frappe/core/doctype/rq_job/rq_job.js:9 +msgid "This is a virtual doctype and data is cleared periodically." +msgstr "" + +#: frappe/templates/emails/auto_reply.html:5 +msgid "This is an automatically generated reply" +msgstr "" + +#: frappe/utils/password_strength.py:164 +msgid "This is similar to a commonly used password." +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 "" + +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:407 +msgid "This link has already been activated for verification." +msgstr "" + +#: frappe/utils/verified_command.py:49 +msgid "This link is invalid or expired. Please make sure you have pasted correctly." +msgstr "" + +#: frappe/printing/page/print/print.js:431 +msgid "This may get printed on multiple pages" +msgstr "" + +#: frappe/utils/goal.py:109 +msgid "This month" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:1045 +msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead." +msgstr "" + +#: frappe/templates/emails/auto_email_report.html:57 +msgid "This report was generated on {0}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:861 +msgid "This report was generated {0}." +msgstr "" + +#: 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 "" + +#: frappe/templates/includes/navbar/navbar_items.html:95 +msgid "This site is in read only mode, full functionality will be restored soon." +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 "" + +#: 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 "" + +#: frappe/public/js/frappe/form/controls/base_input.js:129 +msgid "This value is fetched from {0}'s {1} field" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#: frappe/www/third_party_apps.html:23 +msgid "This will log out {0} from all other devices" +msgstr "" + +#: frappe/templates/emails/delete_data_confirmation.html:3 +msgid "This will permanently remove your data." +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 "" + +#: frappe/core/doctype/rq_job/rq_job.js:15 +msgid "This will terminate the job immediately and might be dangerous, are you sure?" +msgstr "" + +#: frappe/core/doctype/user/user.py:1255 +msgid "Throttled" +msgstr "" + +#. Label of the thumbnail_url (Small Text) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "Thumbnail URL" +msgstr "" + +#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day' +#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day' +#. 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' +#. 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 "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Label of the time (Datetime) field in DocType 'Recorder' +#. 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' +#. Option for the 'Fieldtype' (Select) field in DocType '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 "" + +#. 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 "" + +#. Label of the time_interval (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Time Interval" +msgstr "" + +#. Label of the timeseries (Check) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Time Series" +msgstr "" + +#. 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 "" + +#. 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 the rate_limit_seconds (Int) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Time Window (Seconds)" +msgstr "" + +#. Label of the time_zone (Select) field in DocType 'System Settings' +#. Label of the time_zone (Autocomplete) field in DocType 'User' +#. Label of a field in the edit-profile Web Form +#. 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/core/web_form/edit_profile/edit_profile.json +#: frappe/desk/page/setup_wizard/setup_wizard.js:407 +#: frappe/website/doctype/web_page_view/web_page_view.json +msgid "Time Zone" +msgstr "" + +#. Label of the time_zones (Text) field in DocType 'Country' +#: frappe/geo/doctype/country/country.json +msgid "Time Zones" +msgstr "" + +#. Label of the time_format (Data) field in DocType 'Country' +#: frappe/geo/doctype/country/country.json +msgid "Time format" +msgstr "" + +#. 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' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Time in seconds to retain QR code image on server. Min:240" +msgstr "" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:413 +msgid "Time series based on is required to create a dashboard chart" +msgstr "" + +#: frappe/public/js/frappe/form/controls/time.js:124 +msgid "Time {0} must be in format: {1}" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Timed Out" +msgstr "" + +#: frappe/public/js/frappe/ui/theme_switcher.js:64 +msgid "Timeless Night" +msgstr "" + +#. Label of the timeline (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Timeline" +msgstr "" + +#. Label of the timeline_doctype (Link) field in DocType 'Activity Log' +#: frappe/core/doctype/activity_log/activity_log.json +msgid "Timeline DocType" +msgstr "" + +#. Label of the timeline_field (Data) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Timeline Field" +msgstr "" + +#. 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 "" + +#. Label of the timeline_name (Dynamic Link) field in DocType 'Activity Log' +#: frappe/core/doctype/activity_log/activity_log.json +msgid "Timeline Name" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1539 +msgid "Timeline field must be a Link or Dynamic Link" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1535 +msgid "Timeline field must be a valid fieldname" +msgstr "" + +#. Label of the timeout (Duration) field in DocType 'RQ Job' +#: frappe/core/doctype/rq_job/rq_job.json +msgid "Timeout" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. Label of the timestamp (Datetime) field in DocType 'Access Log' +#: frappe/core/doctype/access_log/access_log.json +msgid "Timestamp" +msgstr "" + +#: frappe/desk/doctype/system_console/system_console.js:41 +msgid "Tip: Try the new dropdown console using" +msgstr "" + +#. 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 '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/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 "" + +#. 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 "" + +#. Label of the title_prefix (Data) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Title Prefix" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1476 +msgid "Title field must be a valid fieldname" +msgstr "" + +#: frappe/website/doctype/web_page/web_page.js:70 +msgid "Title of the page" +msgstr "" + +#. 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 "" + +#: frappe/public/js/frappe/views/communication.js:53 +msgctxt "Email Recipients" +msgid "To" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#. 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 }}
" +msgstr "" + +#. Description of the 'Subject' (Data) field in DocType 'Notification' +#: 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' +#: 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 "" + +#: frappe/email/doctype/auto_email_report/auto_email_report.py:109 +msgid "To allow more reports update limit in System Settings." +msgstr "" + +#. Label of the section_break_10 (Section Break) field in DocType +#. 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "To and CC" +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 "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.js:35 +msgid "To configure Auto Repeat, enable \"Allow Auto Repeat\" from {0}." +msgstr "" + +#: frappe/www/login.html:76 +msgid "To enable it follow the instructions in the following link: {0}" +msgstr "" + +#: 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 "" + +#: 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:862 +msgid "To get the updated report, click on {0}." +msgstr "" + +#: 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' +#: frappe/desk/doctype/system_console/system_console.json +msgid "To print output use print(text)" +msgstr "" + +#: 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 "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.js:8 +msgid "To use Google Calendar, enable {0}." +msgstr "" + +#: frappe/integrations/doctype/google_contacts/google_contacts.js:8 +msgid "To use Google Contacts, enable {0}." +msgstr "" + +#. 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 "" + +#. 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 "" + +#: 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 +#: 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 "" + +#: 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 "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1572 +msgid "Toggle Chart" +msgstr "" + +#. Label of a standard navbar item +#. Type: Action +#: frappe/hooks.py +msgid "Toggle Full Width" +msgstr "" + +#: frappe/public/js/frappe/views/file/file_view.js:33 +msgid "Toggle Grid View" +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:1576 +msgid "Toggle Sidebar" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1966 +msgctxt "Button in list view menu" +msgid "Toggle Sidebar" +msgstr "" + +#. Label of a standard navbar item +#. Type: Action +#: frappe/hooks.py +msgid "Toggle Theme" +msgstr "" + +#. Option for the 'Response Type' (Select) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Token" +msgstr "" + +#. Name of a DocType +#: frappe/integrations/doctype/token_cache/token_cache.json +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" +msgstr "" + +#. Label of the token_uri (Data) field in DocType 'Connected App' +#: frappe/integrations/doctype/connected_app/connected_app.json +msgid "Token URI" +msgstr "" + +#: frappe/utils/oauth.py:184 +msgid "Token is missing" +msgstr "" + +#: 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:310 +msgid "Too Many Documents" +msgstr "" + +#: frappe/rate_limiter.py:101 +msgid "Too Many Requests" +msgstr "" + +#: frappe/database/database.py:473 +msgid "Too many changes to database in single action." +msgstr "" + +#: 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:1043 +msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour" +msgstr "" + +#. Name of a Workspace +#. Label of a Card Break in the Tools Workspace +#: frappe/automation/workspace/tools/tools.json +msgid "Tools" +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 "" + +#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.js:13 +msgid "Top 10" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/top_bar_item/top_bar_item.json +msgid "Top Bar Item" +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 "" + +#. Option for the 'Position' (Select) field in DocType '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 "" + +#. 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' +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:244 +msgid "Top Left" +msgstr "" + +#. Option for the 'Position' (Select) field in DocType '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:246 +msgid "Top Right" +msgstr "" + +#. Label of the topic (Link) field in DocType 'Discussion Reply' +#: frappe/website/doctype/discussion_reply/discussion_reply.json +msgid "Topic" +msgstr "" + +#: frappe/desk/query_report.py:587 +#: frappe/public/js/frappe/views/reports/print_grid.html:45 +#: frappe/public/js/frappe/views/reports/query_report.js:1332 +#: frappe/public/js/frappe/views/reports/report_view.js:1553 +msgid "Total" +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 "" + +#. 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' +#: frappe/email/doctype/email_account/email_account.json +msgid "Total number of emails to sync in initial sync process" +msgstr "" + +#: frappe/public/js/print_format_builder/ConfigureColumns.vue:12 +msgid "Total:" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1258 +msgid "Totals" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1233 +msgid "Totals Row" +msgstr "" + +#. 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 the traceback (Code) field in DocType 'Patch Log' +#: frappe/core/doctype/patch_log/patch_log.json +msgid "Traceback" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. Label of the track_field (Data) field in DocType 'Milestone' +#: frappe/automation/doctype/milestone/milestone.json +msgid "Track Field" +msgstr "" + +#. Label of the track_seen (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Track Seen" +msgstr "" + +#. 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 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 "" + +#. Description of the 'Track Email Status' (Check) field in DocType 'Email +#. Account' +#: 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 "" + +#. 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:1821 +msgid "Tracking URL generated and copied to clipboard" +msgstr "" + +#: 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 "" + +#. Label of the transition_tasks (Link) field in DocType 'Workflow Transition' +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +msgid "Transition Tasks" +msgstr "" + +#. Label of the transitions (Table) field in DocType 'Workflow' +#: frappe/workflow/doctype/workflow/workflow.json +msgid "Transitions" +msgstr "" + +#. 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 "" + +#: frappe/public/js/frappe/views/reports/query_report.js:2252 +msgid "Translate Data" +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 "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1658 +msgid "Translate values" +msgstr "" + +#: frappe/public/js/frappe/views/translation_manager.js:11 +msgid "Translate {0}" +msgstr "" + +#. Label of the translated_text (Code) field in DocType 'Translation' +#: frappe/core/doctype/translation/translation.json +msgid "Translated Text" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/translation/translation.json +msgid "Translation" +msgstr "" + +#: frappe/public/js/frappe/views/translation_manager.js:46 +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" +msgstr "" + +#. 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 "" + +#: frappe/public/js/frappe/list/base_list.js:210 +msgid "Tree View" +msgstr "" + +#. 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 "" + +#: frappe/public/js/frappe/views/treeview.js:19 +msgid "Tree view is not available for {0}" +msgstr "" + +#. Label of the method (Data) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Trigger Method" +msgstr "" + +#: frappe/public/js/frappe/ui/keyboard.js:196 +msgid "Trigger Primary Action" +msgstr "" + +#: frappe/tests/test_translate.py:55 +msgid "Trigger caching" +msgstr "" + +#. 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 "" + +#: 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 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 "" + +#: frappe/printing/page/print/print.js:202 +#: frappe/printing/page/print/print.js:208 +msgid "Try the new Print Designer" +msgstr "" + +#: frappe/utils/password_strength.py:106 +msgid "Try to avoid repeated words and characters" +msgstr "" + +#: frappe/utils/password_strength.py:98 +msgid "Try to use a longer keyboard pattern with more turns" +msgstr "" + +#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day' +#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day' +#. 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' +#. 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 "" + +#. 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 "" + +#. 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 "" + +#. 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:370 +#: 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 "" + +#: frappe/public/js/frappe/form/controls/comment.js:90 +msgid "Type a reply / comment" +msgstr "" + +#: frappe/templates/includes/search_template.html:51 +msgid "Type something in the search box to search" +msgstr "" + +#: 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 "" + +#: frappe/templates/discussions/discussions.js:341 +msgid "Type your reply here..." +msgstr "" + +#: frappe/core/doctype/data_export/exporter.py:143 +msgid "Type:" +msgstr "" + +#. 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 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 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 "" + +#. 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 "" + +#. Option for the 'Email Sync Option' (Select) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "UNSEEN" +msgstr "" + +#. 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 "" + +#. Option for the 'Type' (Select) field in DocType 'Workspace' +#. Option for the 'Type' (Select) field in DocType '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 "" + +#. Description of the 'Documentation Link' (Data) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "URL for documentation or help" +msgstr "" + +#: frappe/core/doctype/file/file.py:231 +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" +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 "" + +#: frappe/public/js/frappe/ui/capture.js:338 +msgid "Unable to load camera." +msgstr "" + +#: frappe/public/js/frappe/model/model.js:230 +msgid "Unable to load: {0}" +msgstr "" + +#: frappe/utils/csvutils.py:37 +msgid "Unable to open attached file. Did you export it as CSV?" +msgstr "" + +#: frappe/core/doctype/file/utils.py:98 frappe/core/doctype/file/utils.py:130 +msgid "Unable to read file format for {0}" +msgstr "" + +#: 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 "" + +#: frappe/public/js/frappe/views/calendar/calendar.js:450 +msgid "Unable to update event" +msgstr "" + +#: frappe/core/doctype/file/file.py:489 +msgid "Unable to write file format for {0}" +msgstr "" + +#. Label of the unassign_condition (Code) field in DocType 'Assignment Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Unassign Condition" +msgstr "" + +#: frappe/app.py:399 +msgid "Uncaught Exception" +msgstr "" + +#: frappe/public/js/frappe/form/toolbar.js:103 +msgid "Unchanged" +msgstr "" + +#: frappe/public/js/frappe/form/toolbar.js:518 +msgid "Undo" +msgstr "" + +#: frappe/public/js/frappe/form/toolbar.js:526 +msgid "Undo last action" +msgstr "" + +#: frappe/database/query.py:1497 +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 "" + +#. Name of a DocType +#: frappe/email/doctype/unhandled_email/unhandled_email.json +msgid "Unhandled Email" +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 "" + +#. 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 "" + +#. 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 "" + +#: frappe/public/js/frappe/model/model.js:209 +msgid "Unknown Column: {0}" +msgstr "" + +#: frappe/utils/data.py:1256 +msgid "Unknown Rounding Method: {}" +msgstr "" + +#: frappe/auth.py:319 +msgid "Unknown User" +msgstr "" + +#: frappe/utils/csvutils.py:54 +msgid "Unknown file encoding. Tried to use: {0}" +msgstr "" + +#: frappe/core/doctype/submission_queue/submission_queue.js:7 +msgid "Unlock Reference Document" +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:633 +#: frappe/website/doctype/web_form/web_form.js:86 +msgid "Unpublish" +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 "" + +#. Label of the unread_notification_sent (Check) field in DocType +#. 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Unread Notification Sent" +msgstr "" + +#: frappe/utils/safe_exec.py:498 +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' +#: frappe/core/doctype/comment/comment.json +msgid "Unshared" +msgstr "" + +#: frappe/email/queue.py:67 +msgid "Unsubscribe" +msgstr "" + +#. Label of the unsubscribe_method (Data) field in DocType 'Email Queue' +#: frappe/email/doctype/email_queue/email_queue.json +msgid "Unsubscribe Method" +msgstr "" + +#. Label of the unsubscribe_params (Code) field in DocType 'Email Queue' +#: frappe/email/doctype/email_queue/email_queue.json +msgid "Unsubscribe Params" +msgstr "" + +#. 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 "" + +#: frappe/database/query.py:655 frappe/database/query.py:1389 +#: frappe/database/query.py:1399 +msgid "Unsupported function or invalid field name: {0}" +msgstr "" + +#: frappe/public/js/frappe/data_import/import_preview.js:72 +msgid "Untitled Column" +msgstr "" + +#: frappe/core/doctype/file/file.js:38 +msgid "Unzip" +msgstr "" + +#: frappe/public/js/frappe/views/file/file_view.js:132 +msgid "Unzipped {0} files" +msgstr "" + +#: frappe/public/js/frappe/views/file/file_view.js:125 +msgid "Unzipping files..." +msgstr "" + +#: frappe/desk/doctype/event/event.py:273 +msgid "Upcoming Events for Today" +msgstr "" + +#. 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:428 +msgid "Update" +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 "" + +#. Option for the 'Import Type' (Select) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Update Existing Records" +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 "" + +#: frappe/core/doctype/installed_applications/installed_applications.js:6 +#: frappe/core/doctype/installed_applications/installed_applications.js:13 +msgid "Update Hooks Resolution Order" +msgstr "" + +#: frappe/core/doctype/installed_applications/installed_applications.js:45 +msgid "Update Order" +msgstr "" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:494 +msgid "Update Password" +msgstr "" + +#. Title of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Update Profile" +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 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 "" + +#. Option for the 'Action' (Select) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Update Settings" +msgstr "" + +#: frappe/public/js/frappe/views/translation_manager.js:13 +msgid "Update Translations" +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 "" + +#: frappe/utils/change_log.py:381 +msgid "Update from Frappe Cloud" +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:375 +msgid "Update {0} records" +msgstr "" + +#. Option for the 'Comment Type' (Select) field in DocType '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:451 +msgid "Updated" +msgstr "" + +#: frappe/desk/doctype/bulk_update/bulk_update.js:32 +msgid "Updated Successfully" +msgstr "" + +#: frappe/public/js/frappe/desk.js:446 +msgid "Updated To A New Version 🎉" +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:372 +msgid "Updated successfully" +msgstr "" + +#: frappe/utils/response.py:335 +msgid "Updating" +msgstr "" + +#: frappe/public/js/frappe/form/save.js:11 +msgctxt "Freeze message while updating a document" +msgid "Updating" +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 "" + +#: 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 "" + +#: frappe/desk/page/setup_wizard/setup_wizard.py:23 +msgid "Updating global settings" +msgstr "" + +#: frappe/core/doctype/document_naming_settings/document_naming_settings.js:59 +msgid "Updating naming series options" +msgstr "" + +#: frappe/public/js/frappe/form/toolbar.js:136 +msgid "Updating related fields..." +msgstr "" + +#: frappe/desk/doctype/bulk_update/bulk_update.py:95 +msgid "Updating {0}" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:36 +msgid "Updating {0} of {1}, {2}" +msgstr "" + +#: 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:143 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:144 +#: frappe/public/js/frappe/form/grid.js:66 +#: frappe/public/js/frappe/form/templates/form_sidebar.html:13 +msgid "Upload" +msgstr "" + +#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:93 +msgid "Upload Image" +msgstr "" + +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:215 +msgid "Upload file" +msgstr "" + +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:218 +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 "" + +#. 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 "" + +#. 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 "" + +#. 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 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 "" + +#. 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 the use_post (Check) field in DocType 'SMS Settings' +#: frappe/core/doctype/sms_settings/sms_settings.json +msgid "Use POST" +msgstr "" + +#. 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 "" + +#. 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 "" + +#. 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 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 "" + +#: frappe/utils/password_strength.py:44 +msgid "Use a few words, avoid common phrases." +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 "" + +#. 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:411 +msgid "Use of sub-query or function is restricted" +msgstr "" + +#: frappe/printing/page/print/print.js:292 +msgid "Use the new Print Format Builder" +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 "" + +#. 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 'Auto Repeat User' +#. Label of the user (Link) field in DocType 'Reminder' +#. Label of the user (Link) field in DocType 'Access Log' +#. 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 +#. Label of the user (Link) field in DocType 'User Group Member' +#. Label of the user (Link) field in DocType 'User Invitation' +#. 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 +#. 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 '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/auto_repeat_user/auto_repeat_user.json +#: frappe/automation/doctype/reminder/reminder.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/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_invitation/user_invitation.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/personal_data_download_request/personal_data_download_request.json +#: frappe/workflow/doctype/workflow_action/workflow_action.json +msgid "User" +msgstr "" + +#: frappe/core/doctype/has_role/has_role.py:25 +msgid "User '{0}' already has the role '{1}'" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/report/user_activity_report.json +msgid "User Activity Report" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/report/user_activity_report_without_sort.json +msgid "User Activity Report Without Sort" +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 "" + +#. Label of the in_create (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "User Cannot Create" +msgstr "" + +#. Label of the read_only (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "User Cannot Search" +msgstr "" + +#: frappe/public/js/frappe/desk.js:550 +msgid "User Changed" +msgstr "" + +#. Label of the defaults (Table) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "User Defaults" +msgstr "" + +#. 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 +#: frappe/core/doctype/user_document_type/user_document_type.json +msgid "User Document Type" +msgstr "" + +#: frappe/core/doctype/user_type/user_type.py:98 +msgid "User Document Types Limit Exceeded" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/user_email/user_email.json +msgid "User Email" +msgstr "" + +#. Label of the user_emails (Table) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "User Emails" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/user_group/user_group.json +msgid "User Group" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/user_group_member/user_group_member.json +msgid "User Group Member" +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 "" + +#. 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 "" + +#. 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 "" + +#. Label of the user (Link) field in DocType 'Contact' +#: frappe/contacts/doctype/contact/contact.json +msgid "User Id" +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 "" + +#: frappe/core/doctype/user_type/user_type.py:283 +msgid "User Id Field is mandatory in the user type {0}" +msgstr "" + +#. Label of the user_image (Attach Image) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "User Image" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "User Invitation" +msgstr "" + +#: 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 "" + +#. Name of a DocType +#: frappe/core/doctype/user_permission/user_permission.json +msgid "User Permission" +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:1952 +#: frappe/public/js/frappe/views/reports/report_view.js:1761 +msgid "User Permissions" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1924 +msgctxt "Button in list view menu" +msgid "User Permissions" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager_help.html:32 +msgid "User Permissions are used to limit users to specific records." +msgstr "" + +#: frappe/core/doctype/user_permission/user_permission_list.js:124 +msgid "User Permissions created successfully" +msgstr "" + +#. Name of a DocType +#. Label of the erpnext_role (Link) field in DocType 'LDAP Group Mapping' +#: frappe/core/doctype/user_role/user_role.json +#: frappe/integrations/doctype/ldap_group_mapping/ldap_group_mapping.json +msgid "User Role" +msgstr "" + +#. Name of a DocType +#: 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 +#: frappe/core/doctype/user_social_login/user_social_login.json +msgid "User Social Login" +msgstr "" + +#. Label of the _user_tags (Data) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "User Tags" +msgstr "" + +#. 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 "" + +#. 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' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "User can login using Email id or Mobile number" +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 "" + +#: frappe/templates/includes/login/login.js:292 +msgid "User does not exist." +msgstr "" + +#: frappe/core/doctype/user_type/user_type.py:83 +msgid "User does not have permission to create the new {0}" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:102 +msgid "User is disabled" +msgstr "" + +#: frappe/core/doctype/docshare/docshare.py:56 +msgid "User is mandatory for Share" +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 "" + +#: frappe/core/doctype/user_permission/user_permission.py:60 +msgid "User permission already exists" +msgstr "" + +#: frappe/www/login.py:171 +msgid "User with email address {0} does not exist" +msgstr "" + +#: 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 "" + +#: frappe/core/doctype/user/user.py:538 +msgid "User {0} cannot be deleted" +msgstr "" + +#: frappe/core/doctype/user/user.py:328 +msgid "User {0} cannot be disabled" +msgstr "" + +#: frappe/core/doctype/user/user.py:611 +msgid "User {0} cannot be renamed" +msgstr "" + +#: frappe/permissions.py:139 +msgid "User {0} does not have access to this document" +msgstr "" + +#: frappe/permissions.py:162 +msgid "User {0} does not have doctype access via role permission for document {1}" +msgstr "" + +#: 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 "" + +#: frappe/core/doctype/user/user.py:1384 +msgid "User {0} impersonated as {1}" +msgstr "" + +#: frappe/utils/oauth.py:269 +msgid "User {0} is disabled" +msgstr "" + +#: frappe/sessions.py:243 +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 the userinfo_uri (Data) field in DocType 'Connected App' +#: frappe/integrations/doctype/connected_app/connected_app.json +msgid "Userinfo URI" +msgstr "" + +#. 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 "" + +#: frappe/core/doctype/user/user.py:700 +msgid "Username {0} already exists" +msgstr "" + +#. Label of the users (Table MultiSelect) field in DocType 'Assignment Rule' +#. Name of a Workspace +#. Label of a Card Break in the Users Workspace +#. 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 "" + +#. 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 "" + +#: frappe/core/page/permission_manager/permission_manager.js:355 +msgid "Users with role {0}:" +msgstr "" + +#: frappe/public/js/frappe/ui/theme_switcher.js:70 +msgid "Uses system's theme to switch between light and dark mode" +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 "" + +#. 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' +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +msgid "Valid" +msgstr "" + +#: 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 "" + +#. 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:384 +msgid "Validation Error" +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 "" + +#. 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:208 +#: frappe/desk/doctype/number_card/number_card.js:347 +#: 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 "" + +#. 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 "" + +#. Option for the 'Send Alert On' (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Value Change" +msgstr "" + +#. Label of the value_changed (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Value Changed" +msgstr "" + +#. Label of the property_value (Data) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Value To Be Set" +msgstr "" + +#: frappe/model/base_document.py:1115 frappe/model/document.py:835 +msgid "Value cannot be changed for {0}" +msgstr "" + +#: frappe/model/document.py:781 +msgid "Value cannot be negative for" +msgstr "" + +#: frappe/model/document.py:785 +msgid "Value cannot be negative for {0}: {1}" +msgstr "" + +#: frappe/custom/doctype/property_setter/property_setter.js:7 +msgid "Value for a check field can be either 0 or 1" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.py:616 +msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters" +msgstr "" + +#: frappe/model/base_document.py:502 +msgid "Value for {0} cannot be a list" +msgstr "" + +#. 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 "" + +#: frappe/core/doctype/data_import/importer.py:714 +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" +msgstr "" + +#: frappe/model/base_document.py:1185 +msgid "Value too big" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:727 +msgid "Value {0} missing for {1}" +msgstr "" + +#: 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 "" + +#: frappe/core/doctype/data_import/importer.py:745 +#: frappe/core/doctype/data_import/importer.py:760 +msgid "Value {0} must in {1} format" +msgstr "" + +#: frappe/core/doctype/version/version_view.html:9 +msgid "Values Changed" +msgstr "" + +#. Option for the 'Font' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Verdana" +msgstr "" + +#: frappe/templates/includes/login/login.js:333 +msgid "Verification" +msgstr "" + +#: frappe/templates/includes/login/login.js:336 frappe/twofactor.py:357 +msgid "Verification Code" +msgstr "" + +#: frappe/templates/emails/delete_data_confirmation.html:10 +msgid "Verification Link" +msgstr "" + +#: 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 "" + +#. Option for the 'Contribution Status' (Select) field in DocType 'Translation' +#: frappe/core/doctype/translation/translation.json +msgid "Verified" +msgstr "" + +#: frappe/public/js/frappe/ui/messages.js:359 +#: frappe/templates/includes/login/login.js:337 +msgid "Verify" +msgstr "" + +#: frappe/public/js/frappe/ui/messages.js:358 +msgid "Verify Password" +msgstr "" + +#: frappe/templates/includes/login/login.js:171 +msgid "Verifying..." +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/version/version.json +msgid "Version" +msgstr "" + +#: frappe/public/js/frappe/desk.js:166 +msgid "Version Updated" +msgstr "" + +#. Label of the video_url (Data) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Video URL" +msgstr "" + +#. Label of the view_name (Select) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +msgid "View" +msgstr "" + +#: frappe/core/doctype/success_action/success_action.js:60 +#: frappe/public/js/frappe/form/success_action.js:89 +msgid "View All" +msgstr "" + +#: frappe/public/js/frappe/form/toolbar.js:580 +msgid "View Audit Trail" +msgstr "" + +#: frappe/core/doctype/user/user.js:144 +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:486 +#: frappe/public/js/frappe/widgets/quick_list_widget.js:258 +msgid "View List" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/view_log/view_log.json +msgid "View Log" +msgstr "" + +#: frappe/core/doctype/user/user.js:135 +#: frappe/core/doctype/user_permission/user_permission.js:24 +msgid "View Permitted Documents" +msgstr "" + +#. Label of the view_properties (Button) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "View Properties (via Customize Form)" +msgstr "" + +#. Option for the 'Action' (Select) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "View Report" +msgstr "" + +#. 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 "" + +#. 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 +#: frappe/hooks.py +#: frappe/website/doctype/website_settings/website_settings.js:16 +msgid "View Website" +msgstr "" + +#: frappe/www/confirm_workflow_action.html:12 +msgid "View document" +msgstr "" + +#: frappe/templates/emails/auto_email_report.html:60 +msgid "View report in your browser" +msgstr "" + +#: frappe/templates/emails/print_link.html:2 +msgid "View this in your browser" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form.js:478 +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 "" + +#. Label of the viewed_by (Data) field in DocType 'View Log' +#: frappe/core/doctype/view_log/view_log.json +msgid "Viewed By" +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 "" + +#. Label of the is_virtual (Check) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Virtual" +msgstr "" + +#: frappe/model/virtual_doctype.py:76 +msgid "Virtual DocType {} requires a static method called {} found {}" +msgstr "" + +#: frappe/model/virtual_doctype.py:89 +msgid "Virtual DocType {} requires overriding an instance method called {} found {}" +msgstr "" + +#. Label of the visibility_section (Section Break) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Visibility" +msgstr "" + +#: frappe/public/js/frappe/form/templates/timeline_message_box.html:41 +msgid "Visible to website/portal users." +msgstr "" + +#. 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 "" + +#. 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 "" + +#: frappe/templates/discussions/reply_section.html:39 +msgid "Want to discuss?" +msgstr "" + +#. Option for the 'Address Type' (Select) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "Warehouse" +msgstr "" + +#. Option for the 'Style' (Select) field in DocType 'Workflow State' +#: frappe/public/js/frappe/router.js:613 +#: frappe/workflow/doctype/workflow_state/workflow_state.json +msgid "Warning" +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 "" + +#: frappe/core/doctype/doctype/doctype.py:1126 +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 "" + +#. 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 "" + +#: frappe/website/doctype/help_article/templates/help_article.html:24 +msgid "Was this article helpful?" +msgstr "" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:127 +msgid "Watch Tutorial" +msgstr "" + +#. 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 "" + +#: frappe/templates/emails/delete_data_confirmation.html:2 +msgid "We have received a request for deletion of {0} data associated with: {1}" +msgstr "" + +#: frappe/templates/emails/download_data.html:2 +msgid "We have received a request from you to download your {0} data associated with: {1}" +msgstr "" + +#: 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 +#. Label of a Link in the Website Workspace +#. Label of a shortcut in the Website Workspace +#: frappe/website/doctype/web_form/web_form.json +#: frappe/website/workspace/website/website.json +msgid "Web Form" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Web Form Field" +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 "" + +#. Name of a DocType +#: frappe/website/doctype/web_form_list_column/web_form_list_column.json +msgid "Web Form List Column" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Website Workspace +#. Label of a shortcut in the Website Workspace +#: frappe/website/doctype/web_page/web_page.json +#: frappe/website/workspace/website/website.json +msgid "Web Page" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/web_page_block/web_page_block.json +msgid "Web Page Block" +msgstr "" + +#: frappe/public/js/frappe/utils/utils.js:1749 +msgid "Web Page URL" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/web_page_view/web_page_view.json +msgid "Web Page View" +msgstr "" + +#. Label of a Card Break in the Website Workspace +#: frappe/website/workspace/website/website.json +msgid "Web Site" +msgstr "" + +#. 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 "" + +#. Name of a DocType +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Web Template Field" +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 "" + +#: frappe/utils/jinja_globals.py:48 +msgid "Web Template is not specified" +msgstr "" + +#. Label of the web_view (Tab Break) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Web View" +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 +msgid "Webhook" +msgstr "" + +#. 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 "" + +#. Name of a DocType +#: frappe/integrations/doctype/webhook_header/webhook_header.json +msgid "Webhook Header" +msgstr "" + +#. Label of the sb_webhook_headers (Section Break) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "Webhook Headers" +msgstr "" + +#. Label of the sb_webhook (Section Break) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "Webhook Request" +msgstr "" + +#. 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 "" + +#. Label of the webhook_secret (Password) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "Webhook Secret" +msgstr "" + +#. Label of the sb_security (Section Break) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "Webhook Security" +msgstr "" + +#. Label of the sb_condition (Section Break) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "Webhook Trigger" +msgstr "" + +#. 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 "" + +#. Group in Module Def's connections +#. 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:11 +#: frappe/website/workspace/website/website.json +msgid "Website" +msgstr "" + +#. Name of a report +#: frappe/website/report/website_analytics/website_analytics.json +msgid "Website Analytics" +msgstr "" + +#. Name of a role +#: frappe/core/doctype/comment/comment.json +#: frappe/website/doctype/about_us_settings/about_us_settings.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 "" + +#. Name of a DocType +#: frappe/website/doctype/website_meta_tag/website_meta_tag.json +msgid "Website Meta Tag" +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 "" + +#. Name of a DocType +#: frappe/website/doctype/website_route_redirect/website_route_redirect.json +msgid "Website Route Redirect" +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 "" + +#. Label of the website_search_field (Data) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Website Search Field" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1523 +msgid "Website Search Field must be a valid fieldname" +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 "" + +#. 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 +#. Label of a Link in the Website Workspace +#: 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 "" + +#. Name of a DocType +#: frappe/website/doctype/website_sidebar_item/website_sidebar_item.json +msgid "Website Sidebar Item" +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 "" + +#. Name of a DocType +#: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json +msgid "Website Slideshow Item" +msgstr "" + +#. Label of the website_theme (Link) field in DocType 'Website Settings' +#. Name of a DocType +#. Label of a Link in the Website Workspace +#: 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 "" + +#. Name of a DocType +#: frappe/website/doctype/website_theme_ignore_app/website_theme_ignore_app.json +msgid "Website Theme Ignore App" +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 "" + +#. 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' +#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day' +#. 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' +#. 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 "" + +#: frappe/public/js/frappe/views/calendar/calendar.js:276 +msgid "Week" +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 "" + +#. 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' +#: 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 "" + +#. 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 "" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:384 +msgid "Welcome" +msgstr "" + +#. 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 "" + +#. 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 +#: frappe/core/workspace/welcome_workspace/welcome_workspace.json +msgid "Welcome Workspace" +msgstr "" + +#: frappe/core/doctype/user/user.py:416 +msgid "Welcome email sent" +msgstr "" + +#: frappe/core/doctype/user/user.py:477 +msgid "Welcome to {0}" +msgstr "" + +#: 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' +#: 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 "" + +#. 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' +#: 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 "" + +#: 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' +#: 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 "" + +#. 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 "" + +#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:2 +msgid "Widths can be set in px or %." +msgstr "" + +#. Label of the wildcard_filter (Check) field in DocType 'Report Filter' +#: frappe/core/doctype/report_filter/report_filter.json +msgid "Wildcard Filter" +msgstr "" + +#. 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 "" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:485 +msgid "Will be your login ID" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:424 +msgid "Will only be shown if section headings are enabled" +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 "" + +#: frappe/public/js/frappe/form/print_utils.js:45 +msgid "With Letter head" +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 "" + +#. Label of the worker_name (Data) field in DocType 'RQ Worker' +#: frappe/core/doctype/rq_worker/rq_worker.json +msgid "Worker Name" +msgstr "" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#. Group in DocType's connections +#. 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 "" + +#. 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 "" + +#. Name of a DocType +#. Description of a DocType +#: frappe/workflow/doctype/workflow_action_master/workflow_action_master.json +msgid "Workflow Action Master" +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 "" + +#. Name of a DocType +#: 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' +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json +msgid "Workflow Action is not created for optional states" +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 "" + +#. 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 "" + +#: 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 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:44 +msgid "Workflow Details" +msgstr "" + +#. Name of a DocType +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json +msgid "Workflow Document State" +msgstr "" + +#. Label of the workflow_name (Data) field in DocType 'Workflow' +#: frappe/workflow/doctype/workflow/workflow.json +msgid "Workflow Name" +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 "" + +#. Label of the workflow_state_field (Data) field in DocType 'Workflow' +#: frappe/workflow/doctype/workflow/workflow.json +msgid "Workflow State Field" +msgstr "" + +#: frappe/model/workflow.py:64 +msgid "Workflow State not set" +msgstr "" + +#: frappe/model/workflow.py:260 frappe/model/workflow.py:268 +msgid "Workflow State transition not allowed from {0} to {1}" +msgstr "" + +#: frappe/workflow/doctype/workflow/workflow.js:140 +msgid "Workflow States Don't Exist" +msgstr "" + +#: frappe/model/workflow.py:384 +msgid "Workflow Status" +msgstr "" + +#. Option for the 'Script Type' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Workflow Task" +msgstr "" + +#. Name of a DocType +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +msgid "Workflow Transition" +msgstr "" + +#. Name of a DocType +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Workflow Transition Task" +msgstr "" + +#. Name of a DocType +#: frappe/workflow/doctype/workflow_transition_tasks/workflow_transition_tasks.json +msgid "Workflow Transition Tasks" +msgstr "" + +#. Description of a DocType +#: frappe/workflow/doctype/workflow_state/workflow_state.json +msgid "Workflow state represents the current state of a document." +msgstr "" + +#: 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 +#. 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:566 +#: frappe/public/js/frappe/utils/utils.js:932 +#: frappe/public/js/frappe/views/workspace/workspace.js:10 +msgid "Workspace" +msgstr "" + +#: frappe/public/js/frappe/router.js:180 +msgid "Workspace {0} does not exist" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/workspace_chart/workspace_chart.json +msgid "Workspace Chart" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/workspace_custom_block/workspace_custom_block.json +msgid "Workspace Custom Block" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/workspace_link/workspace_link.json +msgid "Workspace Link" +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 "" + +#. Name of a DocType +#: frappe/desk/doctype/workspace_number_card/workspace_number_card.json +msgid "Workspace Number Card" +msgstr "" + +#. Name of a DocType +#: 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 +#: 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 "" + +#. Label of the workspace_visibility_json (JSON) field in DocType 'Workspace +#. Settings' +#: frappe/desk/doctype/workspace_settings/workspace_settings.json +msgid "Workspace Visibility" +msgstr "" + +#: frappe/public/js/frappe/views/workspace/workspace.js:538 +msgid "Workspace {0} created" +msgstr "" + +#. Option for the 'View' (Select) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +msgid "Workspaces" +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:757 +msgid "Would you like to publish this comment? This means it will become visible to website/portal users." +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:761 +msgid "Would you like to unpublish this comment? This means it will no longer be visible to website/portal users." +msgstr "" + +#: frappe/desk/page/setup_wizard/setup_wizard.py:41 +msgid "Wrapping up" +msgstr "" + +#. 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 "" + +#: frappe/model/base_document.py:1011 +msgid "Wrong Fetch From value" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:495 +msgid "X Axis Field" +msgstr "" + +#. Label of the x_field (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "X Field" +msgstr "" + +#. Option for the 'Format' (Select) field in DocType 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "XLSX" +msgstr "" + +#. Label of the y_axis (Table) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Y Axis" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:502 +msgid "Y Axis Fields" +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:1233 +msgid "Y Field" +msgstr "" + +#. Option for the 'Service' (Select) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Yahoo Mail" +msgstr "" + +#. Option for the 'Service' (Select) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Yandex.Mail" +msgstr "" + +#. 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 "" + +#. 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' +#: 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 "" + +#. 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 "" + +#. 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:95 +#: frappe/email/doctype/notification/notification.py:100 +#: frappe/email/doctype/notification/notification.py:102 +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +#: frappe/integrations/doctype/webhook/webhook.py:125 +#: frappe/integrations/doctype/webhook/webhook.py:132 +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/public/js/form_builder/utils.js:336 +#: frappe/public/js/frappe/form/controls/link.js:498 +#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 +#: frappe/website/doctype/help_article/templates/help_article.html:25 +msgid "Yes" +msgstr "" + +#: frappe/public/js/frappe/ui/messages.js:32 +msgctxt "Approve confirmation dialog" +msgid "Yes" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:545 +msgctxt "Checkbox is checked" +msgid "Yes" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:727 +msgid "Yesterday" +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 "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:463 +msgid "You Liked" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:266 +msgid "You added 1 row to {0}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:244 +msgid "You added {0} rows to {1}" +msgstr "" + +#: frappe/public/js/frappe/router.js:642 +msgid "You are about to open an external link. To confirm, click the link again." +msgstr "" + +#: frappe/public/js/frappe/dom.js:438 +msgid "You are connected to internet." +msgstr "" + +#: 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 "" + +#: 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 "" + +#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:68 +msgid "You are not allowed to create columns" +msgstr "" + +#: frappe/core/doctype/report/report.py:97 +msgid "You are not allowed to delete Standard Report" +msgstr "" + +#: frappe/website/doctype/website_theme/website_theme.py:73 +msgid "You are not allowed to delete a standard Website Theme" +msgstr "" + +#: frappe/core/doctype/report/report.py:391 +msgid "You are not allowed to edit the report." +msgstr "" + +#: frappe/core/doctype/data_import/exporter.py:121 +#: frappe/core/doctype/data_import/exporter.py:125 +#: frappe/desk/reportview.py:444 frappe/desk/reportview.py:447 +#: frappe/permissions.py:626 +msgid "You are not allowed to export {} doctype" +msgstr "" + +#: frappe/public/js/frappe/views/treeview.js:450 +msgid "You are not allowed to print this report" +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:787 +msgid "You are not allowed to send emails related to this document" +msgstr "" + +#: frappe/website/doctype/web_form/web_form.py:632 +msgid "You are not allowed to update this Web Form Document" +msgstr "" + +#: frappe/public/js/frappe/request.js:37 +msgid "You are not connected to Internet. Retry after sometime." +msgstr "" + +#: frappe/public/js/frappe/web_form/webform_script.js:22 +msgid "You are not permitted to access this page without login." +msgstr "" + +#: frappe/www/app.py:27 +msgid "You are not permitted to access this page." +msgstr "" + +#: frappe/__init__.py:465 +msgid "You are not permitted to access this resource. Login to access" +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 "" + +#: frappe/core/doctype/installed_applications/installed_applications.py:117 +msgid "You are only allowed to update order, do not remove or add apps." +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 "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:414 +msgctxt "Form timeline" +msgid "You attached {0}" +msgstr "" + +#: 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 "" + +#: 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 "" + +#: frappe/templates/emails/download_data.html:9 +msgid "You can also copy-paste this" +msgstr "" + +#: frappe/templates/emails/delete_data_confirmation.html:11 +msgid "You can also copy-paste this {0} to your browser" +msgstr "" + +#: frappe/templates/emails/user_invitation_expired.html:8 +msgid "You can ask your team to resend the invitation if you'd still like to join." +msgstr "" + +#: 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 "" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:194 +msgid "You can continue with the onboarding after exploring this page" +msgstr "" + +#: frappe/model/delete_doc.py:177 +msgid "You can disable this {0} instead of deleting it." +msgstr "" + +#: frappe/core/doctype/file/file.py:761 +msgid "You can increase the limit from System Settings." +msgstr "" + +#: frappe/utils/synchronization.py:48 +msgid "You can manually remove the lock if you think it's safe: {}" +msgstr "" + +#: frappe/public/js/frappe/form/controls/markdown_editor.js:75 +msgid "You can only insert images in Markdown fields" +msgstr "" + +#: 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 "" + +#: frappe/handler.py:183 +msgid "You can only upload JPG, PNG, PDF, TXT, CSV or Microsoft documents." +msgstr "" + +#: 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 "" + +#: 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:382 +msgid "You can try changing the filters of your report." +msgstr "" + +#: 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 "" + +#: frappe/custom/doctype/customize_form/customize_form.py:394 +msgid "You can't set 'Options' for field {0}" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.py:398 +msgid "You can't set 'Translatable' for field {0}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:74 +msgctxt "Form timeline" +msgid "You cancelled this document" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:61 +msgctxt "Form timeline" +msgid "You cancelled this document {1}" +msgstr "" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:417 +msgid "You cannot create a dashboard chart from single DocTypes" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.py:390 +msgid "You cannot unset 'Read Only' for field {0}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:125 +msgid "You changed the value of {0}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:114 +msgid "You changed the value of {0} {1}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:191 +msgid "You changed the values for {0}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:180 +msgid "You changed the values for {0} {1}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:443 +msgctxt "Form timeline" +msgid "You changed {0} to {1}" +msgstr "" + +#: 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 "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:340 +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 "" + +#: 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 "" + +#: frappe/app.py:384 +msgid "You do not have enough permissions to complete the action" +msgstr "" + +#: frappe/database/query.py:531 +msgid "You do not have permission to access field: {0}" +msgstr "" + +#: frappe/desk/query_report.py:923 +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 "" + +#: frappe/desk/query_report.py:43 +msgid "You don't have access to Report: {0}" +msgstr "" + +#: frappe/website/doctype/web_form/web_form.py:835 +msgid "You don't have permission to access the {0} DocType." +msgstr "" + +#: frappe/utils/response.py:289 frappe/utils/response.py:293 +msgid "You don't have permission to access this file" +msgstr "" + +#: frappe/desk/query_report.py:49 +msgid "You don't have permission to get a report on: {0}" +msgstr "" + +#: frappe/website/doctype/web_form/web_form.py:175 +msgid "You don't have the permissions to access this document" +msgstr "" + +#: frappe/templates/emails/new_message.html:1 +msgid "You have a new message from:" +msgstr "" + +#: frappe/handler.py:119 +msgid "You have been successfully logged out" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.py:247 +msgid "You have hit the row size limit on database table: {0}" +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:412 +msgid "You have not entered a value. The field will be set to empty." +msgstr "" + +#: frappe/twofactor.py:437 +msgid "You have to enable Two Factor Auth from System Settings." +msgstr "" + +#: frappe/public/js/frappe/model/create_new.js:328 +msgid "You have unsaved changes in this form. Please save before you continue." +msgstr "" + +#: 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 "" + +#: 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:503 +msgid "You haven't created a {0} yet" +msgstr "" + +#: frappe/rate_limiter.py:166 +msgid "You hit the rate limit because of too many requests. Please try after sometime." +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 "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:352 +msgid "You must add atleast one link." +msgstr "" + +#: frappe/website/doctype/web_form/web_form.py:831 +msgid "You must be logged in to use this form." +msgstr "" + +#: frappe/website/doctype/web_form/web_form.py:672 +msgid "You must login to submit this form" +msgstr "" + +#: 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 "" + +#: 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 "" + +#: frappe/utils/response.py:278 +msgid "You need to be logged in and have System Manager Role to be able to access backups." +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 "" + +#: frappe/website/doctype/web_form/web_form.py:164 +msgid "You need to be logged in to access this {0}." +msgstr "" + +#: 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 "" + +#: frappe/core/doctype/docshare/docshare.py:62 +msgid "You need to have \"Share\" permission" +msgstr "" + +#: frappe/utils/print_format.py:268 +msgid "You need to install pycups to use this feature!" +msgstr "" + +#: 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 "" + +#: frappe/model/rename_doc.py:391 +msgid "You need write permission on {0} {1} to merge" +msgstr "" + +#: 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 "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:311 +msgid "You removed 1 row from {0}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:419 +msgctxt "Form timeline" +msgid "You removed attachment {0}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:289 +msgid "You removed {0} rows from {1}" +msgstr "" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:520 +msgid "You seem good to go!" +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 "" + +#: frappe/public/js/frappe/list/bulk_operations.js:31 +msgid "You selected Draft or Cancelled documents" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:48 +msgctxt "Form timeline" +msgid "You submitted this document" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:35 +msgctxt "Form timeline" +msgid "You submitted this document {0}" +msgstr "" + +#: frappe/public/js/frappe/form/sidebar/document_follow.js:144 +msgid "You unfollowed this document" +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:183 +msgid "You viewed this" +msgstr "" + +#: frappe/public/js/frappe/router.js:653 +msgid "You will be redirected to:" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:113 +msgid "You've been invited to join {0}" +msgstr "" + +#: frappe/templates/emails/user_invitation.html:5 +msgid "You've been invited to join {0}." +msgstr "" + +#: frappe/public/js/frappe/desk.js:547 +msgid "You've logged in as another user from another tab. Refresh this page to continue using system." +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "YouTube" +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 "" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:389 +msgid "Your Language" +msgstr "" + +#: frappe/templates/includes/comments/comments.html:21 +msgid "Your Name" +msgstr "" + +#: 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 "" + +#: 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 "" + +#: frappe/auth.py:517 +msgid "Your account has been locked and will resume after {0} seconds" +msgstr "" + +#: frappe/desk/form/assign_to.py:279 +msgid "Your assignment on {0} {1} has been removed by {2}" +msgstr "" + +#: 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 "" + +#: frappe/www/contact.html:35 +msgid "Your email address" +msgstr "" + +#: frappe/desk/utils.py:105 +msgid "Your exported report: {0}" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form.js:452 +msgid "Your form has been successfully updated" +msgstr "" + +#: frappe/templates/emails/user_invitation_cancelled.html:5 +msgid "Your invitation to join {0} has been cancelled by the site administrator." +msgstr "" + +#: frappe/templates/emails/user_invitation_expired.html:5 +msgid "Your invitation to join {0} has expired." +msgstr "" + +#: frappe/templates/emails/new_user.html:6 +msgid "Your login id is" +msgstr "" + +#: frappe/www/update-password.html:192 +msgid "Your new password has been set successfully." +msgstr "" + +#: 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' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Your organization name and address for the email footer." +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 "" + +#: frappe/desk/query_report.py:342 frappe/desk/reportview.py:396 +msgid "Your report is being generated in the background. You will receive an email on {0} with a download link once it is ready." +msgstr "" + +#: frappe/app.py:377 +msgid "Your session has expired, please login again to continue." +msgstr "" + +#: 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 "" + +#: frappe/utils/data.py:1558 +msgid "Zero" +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 "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:358 +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 "" + +#. Label of the _report (Link) field in DocType 'Desktop Icon' +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +msgid "_report" +msgstr "" + +#: 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 "" + +#. Option for the 'Doc Event' (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "after_insert" +msgstr "" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "amend" +msgstr "" + +#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1564 +msgid "and" +msgstr "" + +#: frappe/public/js/frappe/ui/sort_selector.html:5 +#: frappe/public/js/frappe/ui/sort_selector.js:48 +msgid "ascending" +msgstr "" + +#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "blue" +msgstr "" + +#: frappe/public/js/frappe/form/workflow.js:35 +msgid "by Role" +msgstr "" + +#. Label of the profile (Code) field in DocType 'Recorder' +#: frappe/core/doctype/recorder/recorder.json +msgid "cProfile Output" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:295 +msgid "calendar" +msgstr "" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "cancel" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'RQ Job' +#: frappe/core/doctype/rq_job/rq_job.json +msgid "canceled" +msgstr "" + +#: frappe/templates/includes/list/filters.html:19 +msgid "clear" +msgstr "" + +#: 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' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "create" +msgstr "" + +#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "cyan" +msgstr "" + +#: frappe/public/js/frappe/form/controls/duration.js:218 +#: frappe/public/js/frappe/utils/utils.js:1119 +msgctxt "Days (Field: Duration)" +msgid "d" +msgstr "" + +#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "darkgrey" +msgstr "" + +#: frappe/core/page/dashboard_view/dashboard_view.js:65 +msgid "dashboard" +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 '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' +#: 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' +#: frappe/core/doctype/rq_job/rq_job.json +msgid "deferred" +msgstr "" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "delete" +msgstr "" + +#: frappe/public/js/frappe/ui/sort_selector.html:5 +#: frappe/public/js/frappe/ui/sort_selector.js:48 +msgid "descending" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:163 +msgid "document type..., e.g. customer" +msgstr "" + +#. 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 "" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:183 +msgid "e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)..." +msgstr "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#: frappe/custom/doctype/custom_field/custom_field.js:98 +msgid "e.g.:" +msgstr "" + +#. 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' +#. Option for the 'Social Link Type' (Select) field in DocType 'Social Link +#. Settings' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +#: frappe/website/doctype/social_link_settings/social_link_settings.json +msgid "email" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:314 +msgid "email inbox" +msgstr "" + +#: frappe/permissions.py:425 frappe/permissions.py:436 +#: frappe/public/js/frappe/form/controls/link.js:507 +msgid "empty" +msgstr "" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "export" +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 "" + +#. Option for the 'Status' (Select) field in DocType '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' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "fairlogin" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'RQ Job' +#: frappe/core/doctype/rq_job/rq_job.json +msgid "finished" +msgstr "" + +#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "gray" +msgstr "" + +#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "green" +msgstr "" + +#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "grey" +msgstr "" + +#: frappe/utils/backups.py:399 +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:1123 +msgctxt "Hours (Field: Duration)" +msgid "h" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:305 +msgid "hub" +msgstr "" + +#. Label of the icon (Data) field in DocType 'Page' +#: frappe/core/doctype/page/page.json +msgid "icon" +msgstr "" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "import" +msgstr "" + +#: frappe/templates/signup.html:11 frappe/www/login.html:11 +msgid "jane@example.com" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:46 +msgid "just now" +msgstr "" + +#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:291 +msgid "label" +msgstr "" + +#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "light-blue" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Desktop Icon' +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +msgid "link" +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 "" + +#. Option for the 'Type' (Select) field in DocType 'Desktop Icon' +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +msgid "list" +msgstr "" + +#: frappe/www/third_party_apps.html:43 +msgid "logged in" +msgstr "" + +#: frappe/website/doctype/web_form/web_form.js:363 +msgid "login_required" +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 "" + +#: frappe/public/js/frappe/form/controls/duration.js:220 +#: frappe/public/js/frappe/utils/utils.js:1127 +msgctxt "Minutes (Field: Duration)" +msgid "m" +msgstr "" + +#: frappe/model/rename_doc.py:215 +msgid "merged {0} into {1}" +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 "" + +#. 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 "" + +#. Option for the 'Type' (Select) field in DocType 'Desktop Icon' +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +msgid "module" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:178 +msgid "module name..." +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:169 +msgid "new" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:158 +msgid "new type of document" +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 "" + +#. Label of the nonce (Data) field in DocType 'OAuth Authorization Code' +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +msgid "nonce" +msgstr "" + +#. Label of the notified (Check) field in DocType 'Reminder' +#: frappe/automation/doctype/reminder/reminder.json +msgid "notified" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:25 +msgid "now" +msgstr "" + +#: frappe/public/js/frappe/form/grid_pagination.js:116 +msgid "of" +msgstr "" + +#. Label of the old_parent (Data) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "old_parent" +msgstr "" + +#. Option for the 'Doc Event' (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "on_cancel" +msgstr "" + +#. Option for the 'Doc Event' (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "on_change" +msgstr "" + +#. Option for the 'Doc Event' (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "on_submit" +msgstr "" + +#. Option for the 'Doc Event' (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "on_trash" +msgstr "" + +#. Option for the 'Doc Event' (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "on_update" +msgstr "" + +#. Option for the 'Doc Event' (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "on_update_after_submit" +msgstr "" + +#: frappe/public/js/frappe/utils/utils.js:392 frappe/www/login.html:90 +#: frappe/www/login.py:112 +msgid "or" +msgstr "" + +#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "orange" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Desktop Icon' +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +msgid "page" +msgstr "" + +#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "pink" +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 "" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "print" +msgstr "" + +#. 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' +#: frappe/desk/doctype/workspace/workspace.json +msgid "purple" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Desktop Icon' +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +msgid "query-report" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'RQ Job' +#: frappe/core/doctype/rq_job/rq_job.json +msgid "queued" +msgstr "" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "read" +msgstr "" + +#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "red" +msgstr "" + +#: frappe/model/rename_doc.py:217 +msgid "renamed from {0} to {1}" +msgstr "" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "report" +msgstr "" + +#. Label of the response (HTML) field in DocType 'Custom Role' +#: frappe/core/doctype/custom_role/custom_role.json +msgid "response" +msgstr "" + +#: frappe/core/doctype/deleted_document/deleted_document.py:61 +msgid "restored {0} as {1}" +msgstr "" + +#: frappe/public/js/frappe/form/controls/duration.js:221 +#: frappe/public/js/frappe/utils/utils.js:1131 +msgctxt "Seconds (Field: Duration)" +msgid "s" +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 "s256" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'RQ Job' +#: frappe/core/doctype/rq_job/rq_job.json +msgid "scheduled" +msgstr "" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "select" +msgstr "" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "share" +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 "" + +#: frappe/public/js/frappe/widgets/number_card_widget.js:310 +msgid "since last month" +msgstr "" + +#: frappe/public/js/frappe/widgets/number_card_widget.js:309 +msgid "since last week" +msgstr "" + +#: frappe/public/js/frappe/widgets/number_card_widget.js:311 +msgid "since last year" +msgstr "" + +#: frappe/public/js/frappe/widgets/number_card_widget.js:308 +msgid "since yesterday" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'RQ Job' +#: frappe/core/doctype/rq_job/rq_job.json +msgid "started" +msgstr "" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:201 +msgid "starting the setup..." +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 "" + +#. 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 "" + +#. 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 "" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "submit" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:173 +msgid "tag name..., e.g. #tag" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:168 +msgid "text in document type" +msgstr "" + +#: frappe/public/js/frappe/form/controls/data.js:36 +msgid "this form" +msgstr "" + +#: frappe/tests/test_translate.py:174 +msgid "this shouldn't break" +msgstr "" + +#: frappe/templates/emails/download_data.html:9 +msgid "to your browser" +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 "" + +#: frappe/public/js/frappe/change_log.html:7 +msgid "updated to {0}" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:361 +msgid "use % as wildcard" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:360 +msgid "values separated by commas" +msgstr "" + +#. Label of the version_table (HTML) field in DocType 'Audit Trail' +#: frappe/core/doctype/audit_trail/audit_trail.json +msgid "version_table" +msgstr "" + +#: frappe/automation/doctype/assignment_rule/assignment_rule.py:382 +msgid "via Assignment Rule" +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:264 +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 "" + +#. Description of the 'Add Video Conferencing' (Check) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "via Google Meet" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:405 +msgid "via Notification" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:17 +msgid "via {0}" +msgstr "" + +#. Option for the 'Code Editor Type' (Select) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "vim" +msgstr "" + +#. Option for the 'Code Editor Type' (Select) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "vscode" +msgstr "" + +#: frappe/templates/includes/oauth_confirmation.html:5 +msgid "wants to access the following details from your account" +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 "" + +#. 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:662 +msgid "wkhtmltopdf 0.12.x (with patched qt)." +msgstr "" + +#. Option for the 'Doc Event' (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "workflow_transition" +msgstr "" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "write" +msgstr "" + +#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "yellow" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:58 +msgid "yesterday" +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 "" + +#: frappe/desk/doctype/event/event.js:87 +#: frappe/public/js/frappe/form/footer/form_timeline.js:547 +msgid "{0}" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:202 +msgid "{0} ${skip_list ? \"\" : type}" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:207 +msgid "{0} ${type}" +msgstr "" + +#: frappe/public/js/frappe/data_import/data_exporter.js:80 +#: frappe/public/js/frappe/views/gantt/gantt_view.js:54 +msgid "{0} ({1})" +msgstr "" + +#: frappe/public/js/frappe/data_import/data_exporter.js:77 +msgid "{0} ({1}) (1 row mandatory)" +msgstr "" + +#: frappe/public/js/frappe/views/gantt/gantt_view.js:53 +msgid "{0} ({1}) - {2}%" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:374 +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:377 +msgid "{0} = {1}" +msgstr "" + +#: frappe/public/js/frappe/views/calendar/calendar.js:30 +msgid "{0} Calendar" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:575 +msgid "{0} Chart" +msgstr "" + +#: frappe/core/page/dashboard_view/dashboard_view.js:67 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:356 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:357 +#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:12 +msgid "{0} Dashboard" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row.js:487 +#: frappe/public/js/frappe/list/list_settings.js:225 +#: frappe/public/js/frappe/views/kanban/kanban_settings.js:178 +msgid "{0} Fields" +msgstr "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:376 +msgid "{0} Google Calendar Events synced." +msgstr "" + +#: frappe/integrations/doctype/google_contacts/google_contacts.py:193 +msgid "{0} Google Contacts synced." +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:464 +msgid "{0} Liked" +msgstr "" + +#: 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 "" + +#: frappe/public/js/frappe/list/list_settings.js:33 +msgid "{0} List View Settings" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:37 +msgid "{0} M" +msgstr "" + +#: frappe/public/js/frappe/views/map/map_view.js:14 +msgid "{0} Map" +msgstr "" + +#: frappe/public/js/frappe/form/quick_entry.js:122 +msgid "{0} Name" +msgstr "" + +#: frappe/model/base_document.py:1215 +msgid "{0} Not allowed to change {1} after submission from {2} to {3}" +msgstr "" + +#: 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 "" + +#: frappe/public/js/frappe/views/reports/query_report.js:964 +msgid "{0} Reports" +msgstr "" + +#: frappe/public/js/frappe/views/kanban/kanban_settings.js:26 +msgid "{0} Settings" +msgstr "" + +#: 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 "" + +#: 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 "" + +#: 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 "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:268 +msgid "{0} added 1 row to {1}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:246 +msgid "{0} added {1} rows to {2}" +msgstr "" + +#: frappe/public/js/frappe/form/controls/data.js:215 +msgid "{0} already exists. Select another name" +msgstr "" + +#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:36 +msgid "{0} already unsubscribed" +msgstr "" + +#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:49 +msgid "{0} already unsubscribed for {1} {2}" +msgstr "" + +#: frappe/utils/data.py:1765 +msgid "{0} and {1}" +msgstr "" + +#: frappe/public/js/frappe/form/sidebar/form_sidebar_users.js:72 +msgid "{0} are currently {1}" +msgstr "" + +#: frappe/printing/doctype/print_format/print_format.py:98 +msgid "{0} are required" +msgstr "" + +#: frappe/desk/form/assign_to.py:286 +msgid "{0} assigned a new task {1} {2} to you" +msgstr "" + +#: frappe/desk/doctype/todo/todo.py:48 +msgid "{0} assigned {1}: {2}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:415 +msgctxt "Form timeline" +msgid "{0} attached {1}" +msgstr "" + +#: frappe/core/doctype/system_settings/system_settings.py:153 +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 "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:68 +msgctxt "Form timeline" +msgid "{0} cancelled this document {1}" +msgstr "" + +#: 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 "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:128 +msgid "{0} changed the value of {1}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:119 +msgid "{0} changed the value of {1} {2}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:194 +msgid "{0} changed the values for {1}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:185 +msgid "{0} changed the values for {1} {2}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:444 +msgctxt "Form timeline" +msgid "{0} changed {1} to {2}" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1606 +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 "" + +#: 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 "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:343 +msgctxt "Form timeline" +msgid "{0} created this document {1}" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:33 +msgid "{0} d" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:60 +msgid "{0} days ago" +msgstr "" + +#: 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 "" + +#: 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 "" + +#: frappe/database/query.py:710 +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 "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:101 +msgid "{0} from {1} to {2}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:165 +msgid "{0} from {1} to {2} in row #{3}" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:29 +msgid "{0} h" +msgstr "" + +#: frappe/core/doctype/user_permission/user_permission.py:77 +msgid "{0} has already assigned default value for {1}." +msgstr "" + +#: frappe/email/queue.py:124 +msgid "{0} has left the conversation in {1} {2}" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:54 +msgid "{0} hours ago" +msgstr "" + +#: frappe/website/doctype/web_form/templates/web_form.html:155 +msgid "{0} if you are not redirected within {1} seconds" +msgstr "" + +#: 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 "" + +#: frappe/core/doctype/doctype/doctype.py:935 +msgid "{0} is a mandatory field" +msgstr "" + +#: frappe/core/doctype/file/file.py:569 +msgid "{0} is a not a valid zip file" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1619 +msgid "{0} is an invalid Data field." +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:162 +msgid "{0} is an invalid email address in 'Recipients'" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1470 +msgid "{0} is between {1} and {2}" +msgstr "" + +#: 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 "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1439 +msgid "{0} is equal to {1}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1459 +msgid "{0} is greater than or equal to {1}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1449 +msgid "{0} is greater than {1}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1464 +msgid "{0} is less than or equal to {1}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1454 +msgid "{0} is less than {1}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1489 +msgid "{0} is like {1}" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:193 +msgid "{0} is mandatory" +msgstr "" + +#: frappe/database/query.py:487 +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 "" + +#: frappe/www/printview.py:384 +msgid "{0} is not a raw printing format." +msgstr "" + +#: frappe/public/js/frappe/views/calendar/calendar.js:82 +msgid "{0} is not a valid Calendar. Redirecting to default Calendar." +msgstr "" + +#: 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:23 +msgid "{0} is not a valid DocType for Dynamic Link" +msgstr "" + +#: frappe/email/doctype/email_group/email_group.py:140 +#: frappe/utils/__init__.py:208 +msgid "{0} is not a valid Email Address" +msgstr "" + +#: frappe/geo/doctype/country/country.py:30 +msgid "{0} is not a valid ISO 3166 ALPHA-2 code." +msgstr "" + +#: frappe/utils/__init__.py:176 +msgid "{0} is not a valid Name" +msgstr "" + +#: frappe/utils/__init__.py:155 +msgid "{0} is not a valid Phone Number" +msgstr "" + +#: frappe/model/workflow.py:245 +msgid "{0} is not a valid Workflow State. Please update your Workflow and try again." +msgstr "" + +#: frappe/permissions.py:809 +msgid "{0} is not a valid parent DocType for {1}" +msgstr "" + +#: frappe/permissions.py:829 +msgid "{0} is not a valid parentfield for {1}" +msgstr "" + +#: 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 "" + +#: frappe/core/doctype/file/file.py:549 +msgid "{0} is not a zip file" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:182 +msgid "{0} is not an allowed role for {1}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1444 +msgid "{0} is not equal to {1}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1491 +msgid "{0} is not like {1}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1485 +msgid "{0} is not one of {1}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1495 +msgid "{0} is not set" +msgstr "" + +#: frappe/printing/doctype/print_format/print_format.py:176 +msgid "{0} is now default print format for {1} doctype" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1478 +msgid "{0} is one of {1}" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:304 +#: frappe/model/naming.py:226 +#: frappe/printing/doctype/print_format/print_format.py:101 +#: frappe/printing/doctype/print_format/print_format.py:104 +#: frappe/utils/csvutils.py:156 +msgid "{0} is required" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1494 +msgid "{0} is set" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1473 +msgid "{0} is within {1}" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1841 +msgid "{0} items selected" +msgstr "" + +#: frappe/core/doctype/user/user.py:1393 +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 "" + +#: frappe/core/doctype/activity_log/feed.py:13 +msgid "{0} logged in" +msgstr "" + +#: frappe/core/doctype/activity_log/feed.py:19 +msgid "{0} logged out: {1}" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:27 +msgid "{0} m" +msgstr "" + +#: frappe/desk/notifications.py:408 +msgid "{0} mentioned you in a comment in {1} {2}" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:50 +msgid "{0} minutes ago" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:68 +msgid "{0} months ago" +msgstr "" + +#: frappe/model/document.py:1808 +msgid "{0} must be after {1}" +msgstr "" + +#: frappe/model/document.py:1564 +msgid "{0} must be beginning with '{1}'" +msgstr "" + +#: frappe/model/document.py:1566 +msgid "{0} must be equal to '{1}'" +msgstr "" + +#: frappe/model/document.py:1562 +msgid "{0} must be none of {1}" +msgstr "" + +#: frappe/model/document.py:1560 frappe/utils/csvutils.py:161 +msgid "{0} must be one of {1}" +msgstr "" + +#: frappe/model/base_document.py:933 +msgid "{0} must be set first" +msgstr "" + +#: frappe/model/base_document.py:786 +msgid "{0} must be unique" +msgstr "" + +#: frappe/model/document.py:1568 +msgid "{0} must be {1} {2}" +msgstr "" + +#: 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:91 +msgid "{0} not a valid State" +msgstr "" + +#: frappe/model/rename_doc.py:394 +msgid "{0} not allowed to be renamed" +msgstr "" + +#: frappe/desk/doctype/desktop_icon/desktop_icon.py:365 +msgid "{0} not found" +msgstr "" + +#: frappe/core/doctype/report/report.py:427 +#: frappe/public/js/frappe/list/list_view.js:1213 +msgid "{0} of {1}" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1215 +msgid "{0} of {1} ({2} rows with children)" +msgstr "" + +#: frappe/utils/data.py:1566 +msgctxt "Money in words" +msgid "{0} only." +msgstr "" + +#: frappe/utils/data.py:1747 +msgid "{0} or {1}" +msgstr "" + +#: frappe/core/doctype/user_permission/user_permission_list.js:177 +msgid "{0} record deleted" +msgstr "" + +#: frappe/public/js/frappe/logtypes.js:22 +msgid "{0} records are not automatically deleted." +msgstr "" + +#: frappe/public/js/frappe/logtypes.js:29 +msgid "{0} records are retained for {1} days." +msgstr "" + +#: frappe/core/doctype/user_permission/user_permission_list.js:179 +msgid "{0} records deleted" +msgstr "" + +#: frappe/public/js/frappe/data_import/data_exporter.js:229 +msgid "{0} records will be exported" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:313 +msgid "{0} removed 1 row from {1}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:420 +msgctxt "Form timeline" +msgid "{0} removed attachment {1}" +msgstr "" + +#: frappe/desk/doctype/todo/todo.py:58 +msgid "{0} removed their assignment." +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:291 +msgid "{0} removed {1} rows from {2}" +msgstr "" + +#: frappe/public/js/frappe/roles_editor.js:64 +msgid "{0} role does not have permission on any doctype" +msgstr "" + +#: frappe/model/document.py:1799 +msgid "{0} row #{1}:" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:299 +msgctxt "User removed rows from child table" +msgid "{0} rows from {1}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:254 +msgctxt "User added rows to child table" +msgid "{0} rows to {1}" +msgstr "" + +#: frappe/desk/query_report.py:666 +msgid "{0} saved successfully" +msgstr "" + +#: frappe/desk/doctype/todo/todo.py:44 +msgid "{0} self assigned this task: {1}" +msgstr "" + +#: frappe/share.py:233 +msgid "{0} shared a document {1} {2} with you" +msgstr "" + +#: frappe/core/doctype/docshare/docshare.py:77 +msgid "{0} shared this document with everyone" +msgstr "" + +#: frappe/core/doctype/docshare/docshare.py:80 +msgid "{0} shared this document with {1}" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:317 +msgid "{0} should be indexed because it's referred in dashboard connections" +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:149 +msgid "{0} should not be same as {1}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:51 +msgid "{0} submitted this document" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:42 +msgctxt "Form timeline" +msgid "{0} submitted this document {1}" +msgstr "" + +#: frappe/email/doctype/email_group/email_group.py:71 +#: frappe/email/doctype/email_group/email_group.py:142 +msgid "{0} subscribers added" +msgstr "" + +#: frappe/email/queue.py:69 +msgid "{0} to stop receiving emails of this type" +msgstr "" + +#: 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:238 +msgid "{0} to {1}" +msgstr "" + +#: frappe/core/doctype/docshare/docshare.py:89 +msgid "{0} un-shared this document with {1}" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.py:256 +msgid "{0} updated" +msgstr "" + +#: frappe/public/js/frappe/form/controls/multiselect_list.js:198 +msgid "{0} values selected" +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:184 +msgid "{0} viewed this" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:35 +msgid "{0} w" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:64 +msgid "{0} weeks ago" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:39 +msgid "{0} y" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:72 +msgid "{0} years ago" +msgstr "" + +#: frappe/public/js/frappe/form/link_selector.js:219 +msgid "{0} {1} added" +msgstr "" + +#: frappe/public/js/frappe/utils/dashboard_utils.js:270 +msgid "{0} {1} added to Dashboard {2}" +msgstr "" + +#: frappe/model/base_document.py:719 frappe/model/rename_doc.py:110 +msgid "{0} {1} already exists" +msgstr "" + +#: frappe/model/base_document.py:1044 +msgid "{0} {1} cannot be \"{2}\". It should be one of \"{3}\"" +msgstr "" + +#: frappe/utils/nestedset.py:353 +msgid "{0} {1} cannot be a leaf node as it has children" +msgstr "" + +#: frappe/model/rename_doc.py:376 +msgid "{0} {1} does not exist, select a new target to merge" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:951 +msgid "{0} {1} is linked with the following submitted documents: {2}" +msgstr "" + +#: frappe/model/document.py:258 frappe/permissions.py:580 +msgid "{0} {1} not found" +msgstr "" + +#: frappe/model/delete_doc.py:288 +msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first." +msgstr "" + +#: frappe/model/base_document.py:1176 +msgid "{0}, Row {1}" +msgstr "" + +#: 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:1181 +msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1814 +msgid "{0}: Cannot set Amend without Cancel" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1832 +msgid "{0}: Cannot set Assign Amend if not Submittable" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1830 +msgid "{0}: Cannot set Assign Submit if not Submittable" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1809 +msgid "{0}: Cannot set Cancel without Submit" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1816 +msgid "{0}: Cannot set Import without Create" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1812 +msgid "{0}: Cannot set Submit, Cancel, Amend without Write" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1836 +msgid "{0}: Cannot set import as {1} is not importable" +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:436 +msgid "{0}: Failed to attach new recurring document. To enable attaching document in the auto repeat notification email, enable {1} in Print Settings" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1427 +msgid "{0}: Field '{1}' cannot be set as Unique as it has non-unique values" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1335 +msgid "{0}: Field {1} in row {2} cannot be hidden and mandatory without default" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1294 +msgid "{0}: Field {1} of type {2} cannot be mandatory" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1282 +msgid "{0}: Fieldname {1} appears multiple times in rows {2}" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1414 +msgid "{0}: Fieldtype {1} for {2} cannot be unique" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1769 +msgid "{0}: No basic permissions set" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1783 +msgid "{0}: Only one rule allowed with the same Role, Level and {1}" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1316 +msgid "{0}: Options must be a valid DocType for field {1} in row {2}" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1305 +msgid "{0}: Options required for Link or Table type field {1} in row {2}" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1323 +msgid "{0}: Options {1} must be the same as doctype name {2} for the field {3}" +msgstr "" + +#: frappe/public/js/frappe/form/workflow.js:45 +msgid "{0}: Other permission rules may also apply" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1798 +msgid "{0}: Permission at level 0 must be set before higher levels are set" +msgstr "" + +#: frappe/public/js/frappe/form/controls/data.js:51 +msgid "{0}: You can increase the limit for the field if required via {1}" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1269 +msgid "{0}: fieldname cannot be set to reserved keyword {1}" +msgstr "" + +#: frappe/contacts/doctype/address/address.js:35 +#: frappe/contacts/doctype/contact/contact.js:88 +msgid "{0}: {1}" +msgstr "" + +#: frappe/workflow/doctype/workflow_action/workflow_action.py:172 +msgid "{0}: {1} is set to state {2}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:1291 +msgid "{0}: {1} vs {2}" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1435 +msgid "{0}:Fieldtype {1} for {2} cannot be indexed" +msgstr "" + +#: 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 "" + +#: frappe/public/js/frappe/utils/datatable.js:13 +msgid "{count} cells copied" +msgstr "" + +#: frappe/public/js/frappe/utils/datatable.js:16 +msgid "{count} row selected" +msgstr "" + +#: frappe/public/js/frappe/utils/datatable.js:17 +msgid "{count} rows selected" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1489 +msgid "{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}." +msgstr "" + +#: frappe/public/js/frappe/form/form.js:521 +msgid "{} Complete" +msgstr "" + +#: frappe/utils/data.py:2567 +msgid "{} Invalid python code on line {}" +msgstr "" + +#: frappe/utils/data.py:2576 +msgid "{} Possibly invalid python code.
{}" +msgstr "" + +#. 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 "" + +#: frappe/core/doctype/audit_trail/audit_trail.py:41 +msgid "{} field cannot be empty." +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 "" + +#: frappe/utils/data.py:145 +msgid "{} is not a valid date string." +msgstr "" + +#: frappe/commands/utils.py:561 +msgid "{} not found in PATH! This is required to access the console." +msgstr "" + +#: frappe/database/db_manager.py:99 +msgid "{} not found in PATH! This is required to restore the database." +msgstr "" + +#: 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/th.po b/frappe/locale/th.po index 8b87a2ea3f..27dc152377 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-09-21 09:33+0000\n" -"PO-Revision-Date: 2025-09-21 19:58\n" +"POT-Creation-Date: 2025-10-05 09:33+0000\n" +"PO-Revision-Date: 2025-10-06 22:59\n" "Last-Translator: developers@frappe.io\n" "Language-Team: Thai\n" "MIME-Version: 1.0\n" @@ -78,7 +78,7 @@ msgstr "ในการค้นหาระดับโลก ไม่อน msgid "'In List View' is not allowed for field {0} of type {1}" msgstr "ในมุมมองรายการ ไม่อนุญาตสำหรับฟิลด์ {0} ของประเภท {1}" -#: frappe/custom/doctype/customize_form/customize_form.py:363 +#: frappe/custom/doctype/customize_form/customize_form.py:367 msgid "'In List View' not allowed for type {0} in row {1}" msgstr "ในมุมมองรายการ ไม่อนุญาตสำหรับประเภท {0} ในแถว {1}" @@ -122,7 +122,7 @@ msgstr "0 - ร่าง; 1 - ส่ง; 2 - ยกเลิก" msgid "0 is highest" msgstr "0 คือสูงสุด" -#: frappe/public/js/frappe/form/grid_row.js:892 +#: frappe/public/js/frappe/form/grid_row.js:893 msgid "1 = True & 0 = False" msgstr "1 = จริง & 0 = เท็จ" @@ -140,11 +140,11 @@ msgstr "1 วัน" msgid "1 Google Calendar Event synced." msgstr "1 เหตุการณ์ Google Calendar ซิงค์แล้ว" -#: frappe/public/js/frappe/views/reports/query_report.js:955 +#: frappe/public/js/frappe/views/reports/query_report.js:963 msgid "1 Report" msgstr "1 รายงาน" -#: frappe/tests/test_utils.py:739 +#: frappe/tests/test_utils.py:845 msgid "1 day ago" msgstr "1 วันที่ผ่านมา" @@ -153,17 +153,17 @@ msgid "1 hour" msgstr "1 ชั่วโมง" #: frappe/public/js/frappe/utils/pretty_date.js:52 -#: frappe/tests/test_utils.py:737 +#: frappe/tests/test_utils.py:843 msgid "1 hour ago" msgstr "1 ชั่วโมงที่แล้ว" #: frappe/public/js/frappe/utils/pretty_date.js:48 -#: frappe/tests/test_utils.py:735 +#: frappe/tests/test_utils.py:841 msgid "1 minute ago" msgstr "1 นาทีที่แล้ว" #: frappe/public/js/frappe/utils/pretty_date.js:66 -#: frappe/tests/test_utils.py:743 +#: frappe/tests/test_utils.py:849 msgid "1 month ago" msgstr "1 เดือนที่แล้ว" @@ -185,37 +185,37 @@ msgctxt "User added row to child table" msgid "1 row to {0}" msgstr "" -#: frappe/tests/test_utils.py:734 +#: frappe/tests/test_utils.py:840 msgid "1 second ago" msgstr "1 วินาทีที่แล้ว" #: frappe/public/js/frappe/utils/pretty_date.js:62 -#: frappe/tests/test_utils.py:741 +#: frappe/tests/test_utils.py:847 msgid "1 week ago" msgstr "1 สัปดาห์ที่แล้ว" #: frappe/public/js/frappe/utils/pretty_date.js:70 -#: frappe/tests/test_utils.py:745 +#: frappe/tests/test_utils.py:851 msgid "1 year ago" msgstr "1 ปีที่แล้ว" -#: frappe/tests/test_utils.py:738 +#: frappe/tests/test_utils.py:844 msgid "2 hours ago" msgstr "2 ชั่วโมงที่แล้ว" -#: frappe/tests/test_utils.py:744 +#: frappe/tests/test_utils.py:850 msgid "2 months ago" msgstr "2 เดือนที่แล้ว" -#: frappe/tests/test_utils.py:742 +#: frappe/tests/test_utils.py:848 msgid "2 weeks ago" msgstr "2 สัปดาห์ที่แล้ว" -#: frappe/tests/test_utils.py:746 +#: frappe/tests/test_utils.py:852 msgid "2 years ago" msgstr "2 ปีที่แล้ว" -#: frappe/tests/test_utils.py:736 +#: frappe/tests/test_utils.py:842 msgid "3 minutes ago" msgstr "3 นาทีที่แล้ว" @@ -231,7 +231,7 @@ msgstr "4 ชั่วโมง" msgid "5 Records" msgstr "5 รายการ" -#: frappe/tests/test_utils.py:740 +#: frappe/tests/test_utils.py:846 msgid "5 days ago" msgstr "5 วันที่ผ่านมา" @@ -267,6 +267,16 @@ msgstr "{0} ไม่ใช่ URL ที่ถูกต้อง" 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 "" +#. Introduction text of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "

Request a file containing your personally identifiable information (PII) that is saved on our system. The file will be in JSON format and is sent to you by email. If you would like to have your PII deleted from our system, please make a request to delete data.

" +msgstr "" + +#. Introduction text of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "

Send a request to delete your account and personally identifiable information (PII) that is stored on our system. You will receive an email to verify your request. Once the request is verified we will take care of deleting your PII. If you just want to check what PII we have stored, you can request your data.

" +msgstr "" + #. Content of the 'Help HTML' (HTML) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -568,6 +578,11 @@ msgstr "" msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three." msgstr "" +#. Success message of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "A download link with your data will be sent to the email address associated with your account." +msgstr "" + #: frappe/custom/doctype/custom_field/custom_field.py:175 msgid "A field with the name {0} already exists in {1}" msgstr "" @@ -694,7 +709,7 @@ msgstr "" #. 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.js:452 frappe/core/doctype/user/user.json +#: frappe/core/doctype/user/user.js:459 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 @@ -713,7 +728,7 @@ msgstr "" msgid "API Key cannot be regenerated" msgstr "" -#: frappe/core/doctype/user/user.js:449 +#: frappe/core/doctype/user/user.js:456 msgid "API Keys" msgstr "" @@ -737,7 +752,7 @@ msgstr "" #. 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.js:459 frappe/core/doctype/user/user.json +#: frappe/core/doctype/user/user.js:466 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" @@ -823,7 +838,7 @@ msgstr "" msgid "Access Token URL" msgstr "" -#: frappe/auth.py:491 +#: frappe/auth.py:494 msgid "Access not allowed from this IP Address" msgstr "" @@ -939,7 +954,7 @@ msgstr "" #: 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:842 +#: frappe/public/js/frappe/views/reports/query_report.js:850 msgid "Actions" msgstr "" @@ -996,7 +1011,7 @@ msgstr "" #: 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:501 +#: frappe/public/js/frappe/form/grid_row.js:502 #: 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 @@ -1007,7 +1022,7 @@ msgstr "" msgid "Add" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:454 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Add / Remove Columns" msgstr "" @@ -1052,8 +1067,8 @@ msgid "Add Child" msgstr "" #: frappe/public/js/frappe/views/kanban/kanban_board.html:4 -#: frappe/public/js/frappe/views/reports/query_report.js:1832 -#: frappe/public/js/frappe/views/reports/query_report.js:1835 +#: frappe/public/js/frappe/views/reports/query_report.js:1840 +#: frappe/public/js/frappe/views/reports/query_report.js:1843 #: frappe/public/js/frappe/views/reports/report_view.js:360 #: frappe/public/js/frappe/views/reports/report_view.js:385 #: frappe/public/js/print_format_builder/Field.vue:112 @@ -1147,7 +1162,7 @@ msgstr "" msgid "Add Tags" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2149 +#: frappe/public/js/frappe/list/list_view.js:2151 msgctxt "Button in list view actions menu" msgid "Add Tags" msgstr "" @@ -1528,11 +1543,11 @@ msgstr "" msgid "Alerts and Notifications" msgstr "" -#: frappe/database/query.py:1608 +#: frappe/database/query.py:1610 msgid "Alias cannot be a SQL keyword: {0}" msgstr "" -#: frappe/database/query.py:1533 +#: frappe/database/query.py:1535 msgid "Alias must be a string" msgstr "" @@ -1979,6 +1994,12 @@ msgstr "" msgid "Alternative Email ID" msgstr "" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Always" +msgstr "" + #. Label of the always_bcc (Data) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Always BCC Address" @@ -2055,6 +2076,11 @@ msgstr "" msgid "Amendment naming rules updated." msgstr "" +#. Success message of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "An email to verify your request has been sent to your email address. Please verify your request to complete the process." +msgstr "" + #: frappe/public/js/frappe/ui/toolbar/toolbar.js:354 msgid "An error occurred while setting Session Defaults" msgstr "" @@ -2237,7 +2263,7 @@ msgstr "" msgid "Apply" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2134 +#: frappe/public/js/frappe/list/list_view.js:2136 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" msgstr "" @@ -2322,7 +2348,7 @@ msgstr "" msgid "Are you sure you want to cancel the invitation?" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2113 +#: frappe/public/js/frappe/list/list_view.js:2115 msgid "Are you sure you want to clear the assignments?" msgstr "" @@ -2358,7 +2384,7 @@ msgstr "" msgid "Are you sure you want to discard the changes?" msgstr "คุณแน่ใจหรือไม่ว่าต้องการละทิ้งการเปลี่ยนแปลง?" -#: frappe/public/js/frappe/views/reports/query_report.js:969 +#: frappe/public/js/frappe/views/reports/query_report.js:977 msgid "Are you sure you want to generate a new report?" msgstr "คุณแน่ใจหรือไม่ว่าต้องการสร้างรายงานใหม่?" @@ -2366,7 +2392,7 @@ msgstr "คุณแน่ใจหรือไม่ว่าต้องกา msgid "Are you sure you want to merge {0} with {1}?" msgstr "คุณแน่ใจหรือไม่ว่าต้องการรวม {0} กับ {1}?" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:108 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:118 msgid "Are you sure you want to proceed?" msgstr "คุณแน่ใจหรือไม่ว่าต้องการดำเนินการต่อ?" @@ -2421,6 +2447,12 @@ msgstr "เนื่องจากการแชร์เอกสารถู msgid "As per your request, your account and data on {0} associated with email {1} has been permanently deleted" msgstr "ตามคำขอของคุณ บัญชีและข้อมูลของคุณบน {0} ที่เชื่อมโยงกับอีเมล {1} ได้ถูกลบอย่างถาวร" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Ask" +msgstr "" + #. Label of the assign_condition (Code) field in DocType 'Assignment Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Assign Condition" @@ -2430,7 +2462,7 @@ msgstr "" msgid "Assign To" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2095 +#: frappe/public/js/frappe/list/list_view.js:2097 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "" @@ -2573,7 +2605,7 @@ msgstr "" msgid "Asynchronous" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:696 +#: frappe/public/js/frappe/form/grid_row.js:697 msgid "At least one column is required to show in the grid." msgstr "" @@ -3553,7 +3585,7 @@ msgstr "" msgid "Bulk Edit" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1189 +#: frappe/public/js/frappe/form/grid.js:1190 msgid "Bulk Edit {0}" msgstr "" @@ -3845,7 +3877,7 @@ msgstr "" #. 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/doctype/doctype_list.js:131 #: frappe/core/doctype/user_document_type/user_document_type.json #: frappe/core/doctype/user_invitation/user_invitation.js:17 #: frappe/email/doctype/notification/notification.json @@ -3853,7 +3885,7 @@ msgstr "" msgid "Cancel" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2204 +#: frappe/public/js/frappe/list/list_view.js:2206 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "" @@ -3871,7 +3903,7 @@ msgstr "" msgid "Cancel All Documents" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2209 +#: frappe/public/js/frappe/list/list_view.js:2211 msgctxt "Title of confirmation dialog" msgid "Cancel {0} documents?" msgstr "" @@ -3924,7 +3956,7 @@ msgstr "" msgid "Cannot Update After Submit" msgstr "" -#: frappe/core/doctype/file/file.py:643 +#: frappe/core/doctype/file/file.py:646 msgid "Cannot access file path {0}" msgstr "" @@ -3972,7 +4004,7 @@ msgstr "" msgid "Cannot delete Home and Attachments folders" msgstr "" -#: frappe/model/delete_doc.py:379 +#: frappe/model/delete_doc.py:419 msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}" msgstr "" @@ -4052,7 +4084,7 @@ msgstr "" msgid "Cannot find file {} on disk" msgstr "" -#: frappe/core/doctype/file/file.py:583 +#: frappe/core/doctype/file/file.py:586 msgid "Cannot get file contents of a Folder" msgstr "" @@ -4060,7 +4092,7 @@ msgstr "" msgid "Cannot have multiple printers mapped to a single print format." msgstr "" -#: frappe/public/js/frappe/form/grid.js:1133 +#: frappe/public/js/frappe/form/grid.js:1134 msgid "Cannot import table with more than 5000 rows." msgstr "" @@ -4076,7 +4108,7 @@ msgstr "" msgid "Cannot match column {0} with any field" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:175 +#: frappe/public/js/frappe/form/grid_row.js:176 msgid "Cannot move row" msgstr "" @@ -4105,11 +4137,11 @@ msgstr "" msgid "Cannot update {0}" msgstr "" -#: frappe/model/db_query.py:1130 +#: frappe/model/db_query.py:1136 msgid "Cannot use sub-query here." msgstr "" -#: frappe/model/db_query.py:1162 +#: frappe/model/db_query.py:1168 msgid "Cannot use {0} in order/group by" msgstr "" @@ -4381,11 +4413,11 @@ msgstr "" #. Description of the 'Is Child Table' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:52 +#: frappe/core/doctype/doctype/doctype_list.js:53 msgid "Child Tables are shown as a Grid in other DocTypes" msgstr "" -#: frappe/database/query.py:660 +#: frappe/database/query.py:662 msgid "Child query fields for '{0}' must be a list or tuple." msgstr "" @@ -4441,7 +4473,7 @@ msgstr "" msgid "Clear All" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2110 +#: frappe/public/js/frappe/list/list_view.js:2112 msgctxt "Button in list view actions menu" msgid "Clear Assignment" msgstr "" @@ -4535,7 +4567,7 @@ msgstr "" msgid "Click to Set Filters" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:739 +#: frappe/public/js/frappe/list/list_view.js:741 msgid "Click to sort by {0}" msgstr "" @@ -4713,7 +4745,7 @@ msgctxt "Shrink code field." msgid "Collapse" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2113 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 #: frappe/public/js/frappe/views/treeview.js:123 msgid "Collapse All" msgstr "" @@ -4768,7 +4800,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:1233 +#: frappe/public/js/frappe/views/reports/query_report.js:1241 #: frappe/public/js/frappe/widgets/widget_dialog.js:546 #: frappe/public/js/frappe/widgets/widget_dialog.js:694 #: frappe/website/doctype/color/color.json @@ -4824,11 +4856,11 @@ msgstr "" msgid "Column Name cannot be empty" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:454 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Column Width" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:661 +#: frappe/public/js/frappe/form/grid_row.js:662 msgid "Column width cannot be zero." msgstr "" @@ -4855,7 +4887,7 @@ msgstr "" msgid "Columns / Fields" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:397 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:411 msgid "Columns based on" msgstr "" @@ -5119,7 +5151,7 @@ msgstr "" msgid "Configure Chart" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:406 +#: frappe/public/js/frappe/form/grid_row.js:407 msgid "Configure Columns" msgstr "" @@ -5144,7 +5176,7 @@ msgstr "" msgid "Configure various aspects of how document naming works like naming series, current counter." msgstr "" -#: frappe/core/doctype/user/user.js:412 frappe/public/js/frappe/dom.js:345 +#: frappe/core/doctype/user/user.js:400 frappe/public/js/frappe/dom.js:345 #: frappe/www/update-password.html:66 msgid "Confirm" msgstr "" @@ -5163,7 +5195,7 @@ msgstr "" msgid "Confirm Deletion of Account" msgstr "" -#: frappe/core/doctype/user/user.js:196 +#: frappe/core/doctype/user/user.js:184 msgid "Confirm New Password" msgstr "" @@ -5416,7 +5448,7 @@ msgstr "คัดลอกข้อผิดพลาดไปยังคลิ msgid "Copy to Clipboard" msgstr "คัดลอกไปยังคลิปบอร์ด" -#: frappe/core/doctype/user/user.js:480 +#: frappe/core/doctype/user/user.js:487 msgid "Copy token to clipboard" msgstr "" @@ -5425,7 +5457,7 @@ msgstr "" msgid "Copyright" msgstr "ลิขสิทธิ์" -#: frappe/custom/doctype/customize_form/customize_form.py:123 +#: frappe/custom/doctype/customize_form/customize_form.py:125 msgid "Core DocTypes cannot be customized." msgstr "ไม่สามารถปรับแต่ง DocTypes หลักได้" @@ -5449,7 +5481,7 @@ msgstr "" msgid "Could not map column {0} to field {1}" msgstr "" -#: frappe/database/query.py:564 +#: frappe/database/query.py:566 msgid "Could not parse field: {0}" msgstr "" @@ -5541,13 +5573,13 @@ 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:1265 +#: frappe/public/js/frappe/views/reports/query_report.js:1273 #: frappe/public/js/frappe/views/workspace/workspace.js:469 #: frappe/workflow/page/workflow_builder/workflow_builder.js:46 msgid "Create" msgstr "" -#: frappe/core/doctype/doctype/doctype_list.js:102 +#: frappe/core/doctype/doctype/doctype_list.js:103 msgid "Create & Continue" msgstr "" @@ -5561,7 +5593,7 @@ msgid "Create Card" msgstr "" #: frappe/public/js/frappe/views/reports/query_report.js:285 -#: frappe/public/js/frappe/views/reports/query_report.js:1192 +#: frappe/public/js/frappe/views/reports/query_report.js:1200 msgid "Create Chart" msgstr "" @@ -5595,12 +5627,12 @@ msgstr "" msgid "Create New" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:512 +#: frappe/public/js/frappe/list/list_view.js:514 msgctxt "Create a new document from list view" msgid "Create New" msgstr "" -#: frappe/core/doctype/doctype/doctype_list.js:100 +#: frappe/core/doctype/doctype/doctype_list.js:101 msgid "Create New DocType" msgstr "" @@ -5608,7 +5640,7 @@ msgstr "" msgid "Create New Kanban Board" msgstr "" -#: frappe/core/doctype/user/user.js:276 +#: frappe/core/doctype/user/user.js:264 msgid "Create User Email" msgstr "" @@ -5631,8 +5663,8 @@ msgstr "" #: frappe/public/js/frappe/form/controls/link.js:315 #: frappe/public/js/frappe/form/controls/link.js:317 #: frappe/public/js/frappe/form/link_selector.js:139 -#: frappe/public/js/frappe/list/list_view.js:504 -#: frappe/public/js/frappe/web_form/web_form_list.js:225 +#: frappe/public/js/frappe/list/list_view.js:506 +#: frappe/public/js/frappe/web_form/web_form_list.js:226 msgid "Create a new {0}" msgstr "" @@ -5648,7 +5680,7 @@ msgstr "" msgid "Create or Edit Workflow" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:507 +#: frappe/public/js/frappe/list/list_view.js:509 msgid "Create your first {0}" msgstr "" @@ -5995,7 +6027,7 @@ 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/core/doctype/doctype/doctype_list.js:83 #: frappe/website/doctype/website_theme/website_theme.json msgid "Custom?" msgstr "" @@ -6030,7 +6062,7 @@ msgstr "การปรับแต่งสำหรับ {0} ถูก msgid "Customize" msgstr "ปรับแต่ง" -#: frappe/public/js/frappe/list/list_view.js:1947 +#: frappe/public/js/frappe/list/list_view.js:1949 msgctxt "Button in list view menu" msgid "Customize" msgstr "ปรับแต่ง" @@ -6049,7 +6081,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:343 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 msgid "Customize Form" msgstr "ปรับแต่งฟอร์ม" @@ -6280,7 +6312,7 @@ msgstr "บันทึกการนำเข้าข้อมูล" msgid "Data Import Template" msgstr "แม่แบบการนำเข้าข้อมูล" -#: frappe/custom/doctype/customize_form/customize_form.py:615 +#: frappe/custom/doctype/customize_form/customize_form.py:619 msgid "Data Too Long" msgstr "ข้อมูลยาวเกินไป" @@ -6311,7 +6343,7 @@ msgstr "การใช้งานขนาดแถวฐานข้อมู msgid "Database Storage Usage By Tables" msgstr "การใช้งานพื้นที่จัดเก็บฐานข้อมูลตามตาราง" -#: frappe/custom/doctype/customize_form/customize_form.py:249 +#: frappe/custom/doctype/customize_form/customize_form.py:251 msgid "Database Table Row Size Limit" msgstr "ขีดจำกัดขนาดแถวของตารางฐานข้อมูล" @@ -6681,13 +6713,13 @@ msgstr "ล่าช้า" #: frappe/public/js/frappe/form/toolbar.js:464 #: frappe/public/js/frappe/views/reports/report_view.js:1749 #: frappe/public/js/frappe/views/treeview.js:329 -#: frappe/public/js/frappe/web_form/web_form_list.js:282 +#: frappe/public/js/frappe/web_form/web_form_list.js:283 #: frappe/templates/discussions/reply_card.html:35 #: frappe/templates/discussions/reply_section.html:29 msgid "Delete" msgstr "ลบ" -#: frappe/public/js/frappe/list/list_view.js:2172 +#: frappe/public/js/frappe/list/list_view.js:2174 msgctxt "Button in list view actions menu" msgid "Delete" msgstr "ลบ" @@ -6720,7 +6752,7 @@ msgstr "ลบคอลัมน์" msgid "Delete Data" msgstr "ลบข้อมูล" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:106 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:116 msgid "Delete Kanban Board" msgstr "ลบกระดานคัมบัง" @@ -6734,7 +6766,7 @@ msgctxt "Title of confirmation dialog" msgid "Delete Tab" msgstr "ลบแท็บ" -#: frappe/public/js/frappe/views/reports/query_report.js:936 +#: frappe/public/js/frappe/views/reports/query_report.js:944 msgid "Delete and Generate New" msgstr "ลบและสร้างใหม่" @@ -6776,12 +6808,12 @@ msgstr "ลบแท็บ" msgid "Delete this record to allow sending to this email address" msgstr "ลบบันทึกนี้เพื่ออนุญาตให้ส่งไปยังที่อยู่อีเมลนี้" -#: frappe/public/js/frappe/list/list_view.js:2177 +#: frappe/public/js/frappe/list/list_view.js:2179 msgctxt "Title of confirmation dialog" msgid "Delete {0} item permanently?" msgstr "ลบ {0} รายการอย่างถาวร?" -#: frappe/public/js/frappe/list/list_view.js:2183 +#: frappe/public/js/frappe/list/list_view.js:2185 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "ลบ {0} รายการอย่างถาวร?" @@ -7278,10 +7310,14 @@ msgstr "" msgid "Do not create new user if user with email does not exist in the system" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1194 +#: frappe/public/js/frappe/form/grid.js:1195 msgid "Do not edit headers which are preset in the template" msgstr "" +#: frappe/public/js/frappe/router.js:624 +msgid "Do not warn me again about {0}" +msgstr "" + #: frappe/core/doctype/system_settings/system_settings.js:71 msgid "Do you still want to proceed?" msgstr "" @@ -7705,7 +7741,7 @@ msgstr "" #: 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/public/js/frappe/roles_editor.js:68 #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json #: frappe/workflow/doctype/workflow/workflow.json msgid "Document Type" @@ -7756,15 +7792,15 @@ msgstr "เอกสารถูกปลดล็อก" msgid "Document follow is not enabled for this user." msgstr "การติดตามเอกสารไม่ได้เปิดใช้งานสำหรับผู้ใช้นี้" -#: frappe/public/js/frappe/list/list_view.js:1300 +#: frappe/public/js/frappe/list/list_view.js:1302 msgid "Document has been cancelled" msgstr "เอกสารถูกยกเลิกแล้ว" -#: frappe/public/js/frappe/list/list_view.js:1299 +#: frappe/public/js/frappe/list/list_view.js:1301 msgid "Document has been submitted" msgstr "เอกสารถูกส่งแล้ว" -#: frappe/public/js/frappe/list/list_view.js:1298 +#: frappe/public/js/frappe/list/list_view.js:1300 msgid "Document is in draft state" msgstr "เอกสารอยู่ในสถานะร่าง" @@ -7906,7 +7942,7 @@ msgstr "โดนัท" msgid "Double click to edit label" msgstr "ดับเบิลคลิกเพื่อแก้ไขป้ายกำกับ" -#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:467 +#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:474 #: frappe/email/doctype/auto_email_report/auto_email_report.js:8 #: frappe/public/js/frappe/form/grid.js:66 msgid "Download" @@ -7939,7 +7975,7 @@ msgstr "ดาวน์โหลดลิงก์" msgid "Download PDF" msgstr "ดาวน์โหลด PDF" -#: frappe/public/js/frappe/views/reports/query_report.js:832 +#: frappe/public/js/frappe/views/reports/query_report.js:840 msgid "Download Report" msgstr "ดาวน์โหลดรายงาน" @@ -8139,8 +8175,8 @@ msgstr "" #: 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:880 -#: frappe/public/js/frappe/views/reports/query_report.js:1783 +#: frappe/public/js/frappe/views/reports/query_report.js:888 +#: frappe/public/js/frappe/views/reports/query_report.js:1791 #: 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 @@ -8152,7 +8188,7 @@ msgstr "" msgid "Edit" msgstr "แก้ไข" -#: frappe/public/js/frappe/list/list_view.js:2258 +#: frappe/public/js/frappe/list/list_view.js:2260 msgctxt "Button in list view actions menu" msgid "Edit" msgstr "แก้ไข" @@ -8162,7 +8198,7 @@ msgctxt "Button in web form" msgid "Edit" msgstr "แก้ไข" -#: frappe/public/js/frappe/form/grid_row.js:349 +#: frappe/public/js/frappe/form/grid_row.js:350 msgctxt "Edit grid row" msgid "Edit" msgstr "แก้ไข" @@ -8191,7 +8227,7 @@ msgstr "แก้ไข HTML ที่กำหนดเอง" msgid "Edit DocType" msgstr "แก้ไข DocType" -#: frappe/public/js/frappe/list/list_view.js:1974 +#: frappe/public/js/frappe/list/list_view.js:1976 msgctxt "Button in list view menu" msgid "Edit DocType" msgstr "แก้ไข DocType" @@ -8311,7 +8347,7 @@ msgstr "แก้ไข {0}" #. 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/core/doctype/doctype/doctype_list.js:58 #: frappe/custom/doctype/customize_form/customize_form.json msgid "Editable Grid" msgstr "กริดที่แก้ไขได้" @@ -8356,6 +8392,8 @@ msgstr "ตัวเลือกองค์ประกอบ" #. 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' +#. Label of a field in the request-data Web Form +#. Label of a field in the request-to-delete-data Web Form #: frappe/automation/workspace/tools/tools.json #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/custom_docperm/custom_docperm.json @@ -8374,6 +8412,8 @@ msgstr "ตัวเลือกองค์ประกอบ" #: 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/website/web_form/request_data/request_data.json +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json #: frappe/www/login.html:8 frappe/www/login.py:104 msgid "Email" msgstr "อีเมล" @@ -8605,7 +8645,7 @@ msgstr "อีเมลถูกทำเครื่องหมายว่า msgid "Email has been moved to trash" msgstr "อีเมลถูกย้ายไปที่ถังขยะ" -#: frappe/core/doctype/user/user.js:278 +#: frappe/core/doctype/user/user.js:266 msgid "Email is mandatory to create User Email" msgstr "อีเมลเป็นสิ่งจำเป็นในการสร้างอีเมลผู้ใช้" @@ -8648,7 +8688,7 @@ msgstr "อีเมลจะถูกส่งพร้อมกับการ msgid "Embed code copied" msgstr "คัดลอกรหัสฝังแล้ว" -#: frappe/database/query.py:1537 +#: frappe/database/query.py:1539 msgid "Empty alias is not allowed" msgstr "" @@ -8656,7 +8696,7 @@ msgstr "" msgid "Empty column" msgstr "คอลัมน์ว่างเปล่า" -#: frappe/database/query.py:1455 +#: frappe/database/query.py:1457 msgid "Empty string arguments are not allowed" msgstr "" @@ -9112,9 +9152,9 @@ msgstr "ข้อผิดพลาดใน Client Script." msgid "Error in Header/Footer Script" msgstr "ข้อผิดพลาดในสคริปต์ส่วนหัว/ส่วนท้าย" -#: frappe/email/doctype/notification/notification.py:640 -#: frappe/email/doctype/notification/notification.py:780 -#: frappe/email/doctype/notification/notification.py:786 +#: frappe/email/doctype/notification/notification.py:642 +#: frappe/email/doctype/notification/notification.py:782 +#: frappe/email/doctype/notification/notification.py:788 msgid "Error in Notification" msgstr "ข้อผิดพลาดในการแจ้งเตือน" @@ -9134,7 +9174,7 @@ msgstr "" msgid "Error while connecting to email account {0}" msgstr "ข้อผิดพลาดขณะเชื่อมต่อกับบัญชีอีเมล {0}" -#: frappe/email/doctype/notification/notification.py:777 +#: frappe/email/doctype/notification/notification.py:779 msgid "Error while evaluating Notification {0}. Please fix your template." msgstr "ข้อผิดพลาดขณะประเมินการแจ้งเตือน {0} โปรดแก้ไขแม่แบบของคุณ" @@ -9295,7 +9335,7 @@ msgstr "กำลังดำเนินการโค้ด" msgid "Executing..." msgstr "กำลังดำเนินการ..." -#: frappe/public/js/frappe/views/reports/query_report.js:2132 +#: frappe/public/js/frappe/views/reports/query_report.js:2140 msgid "Execution Time: {0} sec" msgstr "เวลาการดำเนินการ: {0} วินาที" @@ -9321,12 +9361,12 @@ msgctxt "Enlarge code field." msgid "Expand" msgstr "ขยาย" -#: frappe/public/js/frappe/views/reports/query_report.js:2113 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 #: frappe/public/js/frappe/views/treeview.js:133 msgid "Expand All" msgstr "ขยายทั้งหมด" -#: frappe/database/query.py:352 +#: frappe/database/query.py:354 msgid "Expected 'and' or 'or' operator, found: {0}" msgstr "" @@ -9384,13 +9424,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:1820 +#: frappe/public/js/frappe/views/reports/query_report.js:1828 #: frappe/public/js/frappe/views/reports/report_view.js:1629 #: frappe/public/js/frappe/widgets/chart_widget.js:315 msgid "Export" msgstr "ส่งออก" -#: frappe/public/js/frappe/list/list_view.js:2280 +#: frappe/public/js/frappe/list/list_view.js:2282 msgctxt "Button in list view actions menu" msgid "Export" msgstr "ส่งออก" @@ -9583,7 +9623,7 @@ msgstr "" msgid "Failed to connect to server" msgstr "" -#: frappe/auth.py:698 +#: frappe/auth.py:701 msgid "Failed to decode token, please provide a valid base64-encoded token." msgstr "" @@ -9747,7 +9787,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:236 -#: frappe/public/js/frappe/views/reports/query_report.js:1879 +#: frappe/public/js/frappe/views/reports/query_report.js:1887 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_form_list_column/web_form_list_column.json msgid "Field" @@ -9830,7 +9870,7 @@ msgstr "" msgid "Field {0} not found." msgstr "" -#: frappe/email/doctype/notification/notification.py:545 +#: frappe/email/doctype/notification/notification.py:547 msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link" msgstr "" @@ -9848,7 +9888,7 @@ msgstr "" #: 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:454 +#: frappe/public/js/frappe/form/grid_row.js:455 #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Fieldname" msgstr "" @@ -9929,7 +9969,7 @@ msgstr "" msgid "Fields must be a list or tuple when as_list is enabled" msgstr "" -#: frappe/database/query.py:611 +#: frappe/database/query.py:613 msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function" msgstr "" @@ -9957,7 +9997,7 @@ msgstr "" msgid "Fieldtype cannot be changed from {0} to {1}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:589 +#: frappe/custom/doctype/customize_form/customize_form.py:593 msgid "Fieldtype cannot be changed from {0} to {1} in row {2}" msgstr "" @@ -10023,7 +10063,7 @@ msgstr "" msgid "File backup is ready" msgstr "" -#: frappe/core/doctype/file/file.py:646 +#: frappe/core/doctype/file/file.py:649 msgid "File name cannot have {0}" msgstr "" @@ -10031,7 +10071,7 @@ msgstr "" msgid "File not attached" msgstr "" -#: frappe/core/doctype/file/file.py:756 frappe/public/js/frappe/request.js:200 +#: frappe/core/doctype/file/file.py:759 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 "" @@ -10044,7 +10084,7 @@ msgstr "" msgid "File type of {0} is not allowed" msgstr "" -#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:448 +#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:451 msgid "File {0} does not exist" msgstr "" @@ -10098,11 +10138,11 @@ msgstr "" msgid "Filter Values" msgstr "" -#: frappe/database/query.py:358 +#: frappe/database/query.py:360 msgid "Filter condition missing after operator: {0}" msgstr "" -#: frappe/database/query.py:425 +#: frappe/database/query.py:427 msgid "Filter fields cannot contain backticks (`)." msgstr "" @@ -10179,7 +10219,7 @@ msgstr "" msgid "Filters applied for {0}" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:188 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:202 msgid "Filters saved" msgstr "" @@ -10227,9 +10267,12 @@ msgstr "" #. Label of the first_name (Data) field in DocType 'Contact' #. Label of the first_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json #: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:44 -#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:15 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:15 msgid "First Name" msgstr "ชื่อแรก" @@ -10310,7 +10353,7 @@ msgstr "ชื่อโฟลเดอร์" msgid "Folder name should not include '/' (slash)" msgstr "ชื่อโฟลเดอร์ไม่ควรรวม '/' (สแลช)" -#: frappe/core/doctype/file/file.py:494 +#: frappe/core/doctype/file/file.py:497 msgid "Folder {0} is not empty" msgstr "โฟลเดอร์ {0} ไม่ว่างเปล่า" @@ -10512,7 +10555,7 @@ msgstr "" msgid "For Value" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2129 +#: frappe/public/js/frappe/views/reports/query_report.js:2137 #: frappe/public/js/frappe/views/reports/report_view.js:108 msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)." msgstr "" @@ -10797,7 +10840,7 @@ msgstr "จากวันที่" msgid "From Date Field" msgstr "ฟิลด์จากวันที่" -#: frappe/public/js/frappe/views/reports/query_report.js:1840 +#: frappe/public/js/frappe/views/reports/query_report.js:1848 msgid "From Document Type" msgstr "จากประเภทเอกสาร" @@ -10859,13 +10902,13 @@ msgstr "ฟังก์ชันตาม" msgid "Function {0} is not whitelisted." msgstr "ฟังก์ชัน {0} ไม่ได้อยู่ในรายการที่อนุญาต" -#: frappe/database/query.py:1417 +#: frappe/database/query.py:1419 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 "สามารถสร้างโหนดเพิ่มเติมได้เฉพาะภายใต้โหนดประเภท 'กลุ่ม'" +msgid "Further sub-groups can only be created under records marked as 'Group'" +msgstr "" #: frappe/core/doctype/communication/communication.js:291 msgid "Fw: {0}" @@ -10924,7 +10967,7 @@ msgstr "" msgid "Generate Keys" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:874 +#: frappe/public/js/frappe/views/reports/query_report.js:882 msgid "Generate New Report" msgstr "" @@ -11340,14 +11383,10 @@ msgstr "จัดกลุ่มตามประเภท" msgid "Group By field is required to create a dashboard chart" msgstr "ฟิลด์จัดกลุ่มตามเป็นสิ่งจำเป็นในการสร้างแผนภูมิแดชบอร์ด" -#: frappe/database/query.py:750 +#: frappe/database/query.py:752 msgid "Group By must be a string" msgstr "" -#: frappe/public/js/frappe/views/treeview.js:418 -msgid "Group Node" -msgstr "โหนดกลุ่ม" - #. Label of the ldap_group_objectclass (Data) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Group Object Class" @@ -11677,7 +11716,7 @@ msgstr "ซ่อน" msgid "Hidden Fields" msgstr "ฟิลด์ที่ซ่อนอยู่" -#: frappe/public/js/frappe/views/reports/query_report.js:1642 +#: frappe/public/js/frappe/views/reports/query_report.js:1650 msgid "Hidden columns include: {0}" msgstr "" @@ -11789,7 +11828,7 @@ msgstr "ซ่อนแถบด้านข้าง เมนู และค msgid "Hide Standard Menu" msgstr "ซ่อนเมนูมาตรฐาน" -#: frappe/public/js/frappe/list/list_view.js:1849 +#: frappe/public/js/frappe/list/list_view.js:1851 msgid "Hide Tags" msgstr "ซ่อนแท็ก" @@ -12048,7 +12087,7 @@ msgstr "หากเลือก สถานะเวิร์กโฟลว #: frappe/core/doctype/doctype/doctype.py:1777 #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45 -#: frappe/public/js/frappe/roles_editor.js:66 +#: frappe/public/js/frappe/roles_editor.js:68 msgid "If Owner" msgstr "หากเป็นเจ้าของ" @@ -12276,8 +12315,8 @@ msgstr "แอปที่ถูกละเว้น" msgid "Illegal Document Status for {0}" msgstr "สถานะเอกสารไม่ถูกต้องสำหรับ {0}" -#: frappe/model/db_query.py:453 frappe/model/db_query.py:456 -#: frappe/model/db_query.py:1121 +#: frappe/model/db_query.py:454 frappe/model/db_query.py:457 +#: frappe/model/db_query.py:1122 msgid "Illegal SQL Query" msgstr "คำสั่ง SQL ไม่ถูกต้อง" @@ -12364,11 +12403,11 @@ msgstr "ภาพ" #. Option for the 'Operation' (Select) field in DocType 'Activity Log' #: frappe/core/doctype/activity_log/activity_log.json -#: frappe/core/doctype/user/user.js:384 +#: frappe/core/doctype/user/user.js:372 msgid "Impersonate" msgstr "แอบอ้าง" -#: frappe/core/doctype/user/user.js:411 +#: frappe/core/doctype/user/user.js:399 msgid "Impersonate as {0}" msgstr "แอบอ้างเป็น {0}" @@ -12398,7 +12437,7 @@ msgstr "โดยนัย" msgid "Import" msgstr "นำเข้า" -#: frappe/public/js/frappe/list/list_view.js:1911 +#: frappe/public/js/frappe/list/list_view.js:1913 msgctxt "Button in list view menu" msgid "Import" msgstr "นำเข้า" @@ -12627,15 +12666,15 @@ msgid "Include Web View Link in Email" msgstr "รวมลิงก์มุมมองเว็บในอีเมล" #: frappe/public/js/frappe/form/print_utils.js:59 -#: frappe/public/js/frappe/views/reports/query_report.js:1620 +#: frappe/public/js/frappe/views/reports/query_report.js:1628 msgid "Include filters" msgstr "รวมตัวกรอง" -#: frappe/public/js/frappe/views/reports/query_report.js:1640 +#: frappe/public/js/frappe/views/reports/query_report.js:1648 msgid "Include hidden columns" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1612 +#: frappe/public/js/frappe/views/reports/query_report.js:1620 msgid "Include indentation" msgstr "รวมการเยื้อง" @@ -12682,7 +12721,7 @@ msgstr "บัญชีอีเมลขาเข้าไม่ถูกต้ msgid "Incomplete Virtual Doctype Implementation" msgstr "การดำเนินการ Virtual Doctype ไม่สมบูรณ์" -#: frappe/auth.py:255 +#: frappe/auth.py:258 msgid "Incomplete login details" msgstr "รายละเอียดการเข้าสู่ระบบไม่สมบูรณ์" @@ -12793,7 +12832,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:1885 +#: frappe/public/js/frappe/views/reports/query_report.js:1893 msgid "Insert After" msgstr "แทรกหลังจาก" @@ -12866,7 +12905,7 @@ msgstr "ส่งคำแนะนำทางอีเมลแล้ว" msgid "Insufficient Permission Level for {0}" msgstr "ระดับสิทธิ์ไม่เพียงพอสำหรับ {0}" -#: frappe/database/query.py:806 frappe/database/query.py:1052 +#: frappe/database/query.py:808 frappe/database/query.py:1054 msgid "Insufficient Permission for {0}" msgstr "สิทธิ์ไม่เพียงพอสำหรับ {0}" @@ -12982,7 +13021,7 @@ msgid "Invalid" msgstr "ไม่ถูกต้อง" #: frappe/public/js/form_builder/utils.js:221 -#: frappe/public/js/frappe/form/grid_row.js:849 +#: frappe/public/js/frappe/form/grid_row.js:850 #: frappe/public/js/frappe/form/layout.js:810 #: frappe/public/js/frappe/views/reports/report_view.js:721 msgid "Invalid \"depends_on\" expression" @@ -13040,8 +13079,8 @@ 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 +#: frappe/database/query.py:429 frappe/database/query.py:456 +#: frappe/database/query.py:466 frappe/database/query.py:489 msgid "Invalid Filter" msgstr "" @@ -13113,7 +13152,7 @@ msgstr "รหัสผ่านไม่ถูกต้อง" msgid "Invalid Phone Number" msgstr "หมายเลขโทรศัพท์ไม่ถูกต้อง" -#: frappe/auth.py:94 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 +#: frappe/auth.py:97 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 #: frappe/www/login.py:128 msgid "Invalid Request" msgstr "คำขอไม่ถูกต้อง" @@ -13153,7 +13192,7 @@ msgstr "Webhook Secret ไม่ถูกต้อง" msgid "Invalid aggregate function" msgstr "ฟังก์ชันการรวมไม่ถูกต้อง" -#: frappe/database/query.py:1542 +#: frappe/database/query.py:1544 msgid "Invalid alias format: {0}. Alias must be a simple identifier." msgstr "" @@ -13161,19 +13200,19 @@ msgstr "" msgid "Invalid app" msgstr "" -#: frappe/database/query.py:1468 +#: frappe/database/query.py:1470 msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed." msgstr "" -#: frappe/database/query.py:1444 +#: frappe/database/query.py:1446 msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed." msgstr "" -#: frappe/database/query.py:460 +#: frappe/database/query.py:462 msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed." msgstr "" -#: frappe/database/query.py:575 +#: frappe/database/query.py:577 msgid "Invalid characters in table name: {0}" msgstr "" @@ -13181,11 +13220,11 @@ msgstr "" msgid "Invalid column" msgstr "คอลัมน์ไม่ถูกต้อง" -#: frappe/database/query.py:381 +#: frappe/database/query.py:383 msgid "Invalid condition type in nested filters: {0}" msgstr "" -#: frappe/database/query.py:787 +#: frappe/database/query.py:789 msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'." msgstr "" @@ -13201,23 +13240,23 @@ msgstr "นิพจน์ที่ตั้งค่าในตัวกรอ msgid "Invalid expression set in filter {0} ({1})" msgstr "นิพจน์ที่ตั้งค่าในตัวกรอง {0} ({1}) ไม่ถูกต้อง" -#: frappe/database/query.py:1301 +#: frappe/database/query.py:1303 msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'." msgstr "" -#: frappe/database/query.py:734 +#: frappe/database/query.py:736 msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'." msgstr "" -#: frappe/database/query.py:1620 +#: frappe/database/query.py:1622 msgid "Invalid field name in function: {0}. Only simple field names are allowed." msgstr "" -#: frappe/utils/data.py:2215 +#: frappe/utils/data.py:2241 msgid "Invalid field name {0}" msgstr "ชื่อฟิลด์ไม่ถูกต้อง {0}" -#: frappe/database/query.py:668 +#: frappe/database/query.py:670 msgid "Invalid field type: {0}" msgstr "" @@ -13229,11 +13268,11 @@ msgstr "ชื่อฟิลด์ไม่ถูกต้อง '{0}' ใน a msgid "Invalid file path: {0}" msgstr "เส้นทางไฟล์ไม่ถูกต้อง: {0}" -#: frappe/database/query.py:364 +#: frappe/database/query.py:366 msgid "Invalid filter condition: {0}. Expected a list or tuple." msgstr "" -#: frappe/database/query.py:450 +#: frappe/database/query.py:452 msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'." msgstr "" @@ -13241,11 +13280,11 @@ msgstr "" msgid "Invalid filter: {0}" msgstr "ตัวกรองไม่ถูกต้อง: {0}" -#: frappe/database/query.py:1422 +#: frappe/database/query.py:1424 msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed." msgstr "" -#: frappe/database/query.py:1383 +#: frappe/database/query.py:1385 msgid "Invalid function dictionary format" msgstr "" @@ -13282,23 +13321,27 @@ msgstr "เนื้อหาไม่ถูกต้องหรือเสี msgid "Invalid redirect regex in row #{}: {}" msgstr "รีไดเรกต์ regex ไม่ถูกต้องในแถว #{}: {}" -#: frappe/app.py:337 +#: frappe/app.py:340 msgid "Invalid request arguments" msgstr "อาร์กิวเมนต์คำขอไม่ถูกต้อง" +#: frappe/app.py:327 +msgid "Invalid request body" +msgstr "" + #: frappe/core/doctype/user_invitation/user_invitation.py:181 msgid "Invalid role" msgstr "" -#: frappe/database/query.py:410 +#: frappe/database/query.py:412 msgid "Invalid simple filter format: {0}" msgstr "" -#: frappe/database/query.py:341 +#: frappe/database/query.py:343 msgid "Invalid start for filter condition: {0}. Expected a list or tuple." msgstr "" -#: frappe/database/query.py:1489 +#: frappe/database/query.py:1491 msgid "Invalid string literal format: {0}" msgstr "" @@ -13402,7 +13445,7 @@ msgstr "" #. 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/doctype_list.js:50 #: frappe/core/doctype/doctype_link/doctype_link.json msgid "Is Child Table" msgstr "" @@ -13455,6 +13498,10 @@ msgstr "" msgid "Is Global" msgstr "เป็นสากล" +#: frappe/public/js/frappe/views/treeview.js:418 +msgid "Is Group" +msgstr "เป็นกลุ่ม" + #. Label of the is_hidden (Check) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "Is Hidden" @@ -13543,7 +13590,7 @@ 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/core/doctype/doctype/doctype_list.js:65 #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Is Single" msgstr "เป็นเดี่ยว" @@ -13579,7 +13626,7 @@ msgstr "เป็นมาตรฐาน" #. Label of the is_submittable (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:39 +#: frappe/core/doctype/doctype/doctype_list.js:40 msgid "Is Submittable" msgstr "สามารถส่งได้" @@ -13785,11 +13832,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:388 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:402 msgid "Kanban Board Name" msgstr "ชื่อกระดานคัมบัง" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:265 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:279 msgctxt "Button in kanban view menu" msgid "Kanban Settings" msgstr "การตั้งค่าคัมบัง" @@ -14087,10 +14134,13 @@ msgstr "แนวนอน" #. 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' +#. Label of a field in the edit-profile Web Form #: 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:117 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/printing/page/print/print.js:117 #: frappe/public/js/frappe/form/templates/print_layout.html:11 msgid "Language" msgstr "ภาษา" @@ -14178,9 +14228,12 @@ msgstr "เดือนที่แล้ว" #. Label of the last_name (Data) field in DocType 'Contact' #. Label of the last_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json #: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:45 -#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:19 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:19 msgid "Last Name" msgstr "นามสกุล" @@ -14421,7 +14474,7 @@ msgstr "หัวจดหมายใน HTML" #: 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/public/js/frappe/roles_editor.js:68 #: frappe/website/doctype/help_article/help_article.json msgid "Level" msgstr "ระดับ" @@ -14714,7 +14767,7 @@ msgstr "" msgid "List Settings" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1991 +#: frappe/public/js/frappe/list/list_view.js:1993 msgctxt "Button in list view menu" msgid "List Settings" msgstr "" @@ -14765,7 +14818,7 @@ msgid "Load Balancing" msgstr "" #: frappe/public/js/frappe/list/base_list.js:399 -#: frappe/public/js/frappe/web_form/web_form_list.js:305 +#: frappe/public/js/frappe/web_form/web_form_list.js:306 #: frappe/website/doctype/help_article/templates/help_article_list.html:30 msgid "Load More" msgstr "" @@ -14785,7 +14838,7 @@ msgstr "" #: frappe/public/js/frappe/list/base_list.js:526 #: frappe/public/js/frappe/list/list_view.js:363 #: frappe/public/js/frappe/ui/listing.html:16 -#: frappe/public/js/frappe/views/reports/query_report.js:1089 +#: frappe/public/js/frappe/views/reports/query_report.js:1097 msgid "Loading" msgstr "" @@ -14928,7 +14981,7 @@ msgstr "รหัสยืนยันการเข้าสู่ระบบ msgid "Login and view in Browser" msgstr "เข้าสู่ระบบและดูในเบราว์เซอร์" -#: frappe/website/doctype/web_form/web_form.js:367 +#: frappe/website/doctype/web_form/web_form.js:368 msgid "Login is required to see web form list view. Enable {0} to see list settings" msgstr "ต้องเข้าสู่ระบบเพื่อดูมุมมองรายการฟอร์มเว็บ เปิดใช้งาน {0} เพื่อดูการตั้งค่ารายการ" @@ -14936,7 +14989,7 @@ msgstr "ต้องเข้าสู่ระบบเพื่อดูมุ msgid "Login link sent to your email" msgstr "ลิงก์เข้าสู่ระบบถูกส่งไปยังอีเมลของคุณ" -#: frappe/auth.py:339 frappe/auth.py:342 +#: frappe/auth.py:342 frappe/auth.py:345 msgid "Login not allowed at this time" msgstr "ไม่อนุญาตให้เข้าสู่ระบบในขณะนี้" @@ -14989,7 +15042,7 @@ msgstr "เข้าสู่ระบบด้วยลิงก์อีเม msgid "Login with email link expiry (in minutes)" msgstr "ลิงก์อีเมลหมดอายุ (ในนาที)" -#: frappe/auth.py:144 +#: frappe/auth.py:147 msgid "Login with username and password is not allowed." msgstr "ไม่อนุญาตให้เข้าสู่ระบบด้วยชื่อผู้ใช้และรหัสผ่าน" @@ -15008,7 +15061,7 @@ msgstr "" msgid "Logout" msgstr "ออกจากระบบ" -#: frappe/core/doctype/user/user.js:202 +#: frappe/core/doctype/user/user.js:190 msgid "Logout All Sessions" msgstr "ออกจากระบบทุกเซสชัน" @@ -15112,7 +15165,10 @@ msgid "Major" msgstr "หลัก" #. Label of the show_name_in_global_search (Check) field in DocType 'DocType' +#. Label of the show_name_in_global_search (Check) field in DocType 'Customize +#. Form' #: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Make \"name\" searchable in Global Search" msgstr "" @@ -15188,7 +15244,7 @@ msgstr "ขึ้นอยู่กับที่จำเป็น" msgid "Mandatory Depends On (JS)" msgstr "ขึ้นอยู่กับที่จำเป็น (JS)" -#: frappe/website/doctype/web_form/web_form.py:509 +#: frappe/website/doctype/web_form/web_form.py:536 msgid "Mandatory Information missing:" msgstr "ข้อมูลที่จำเป็นหายไป:" @@ -15645,6 +15701,11 @@ msgstr "กลางกลาง" msgid "Middle Name" msgstr "ชื่อกลาง" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Middle Name (Optional)" +msgstr "" + #. Name of a DocType #. Label of a Link in the Tools Workspace #: frappe/automation/doctype/milestone/milestone.json @@ -15751,6 +15812,11 @@ msgstr "มือถือ" msgid "Mobile No" msgstr "" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Mobile Number" +msgstr "หมายเลขมือถือ" + #. 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" @@ -15776,7 +15842,7 @@ msgstr "ตัวกระตุ้นโมดอล" #. 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/doctype/doctype_list.js:31 #: 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 @@ -15952,10 +16018,12 @@ msgstr "ข้อมูลเพิ่มเติม" #. Label of the additional_info (Section Break) field in DocType #. 'Communication' #. Label of the short_bio (Tab Break) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: 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 +#: frappe/core/web_form/edit_profile/edit_profile.json msgid "More Information" msgstr "ข้อมูลเพิ่มเติม" @@ -15985,7 +16053,7 @@ msgstr "รหัสผ่านของคุณอาจยาวเกิน msgid "Move" msgstr "ย้าย" -#: frappe/public/js/frappe/form/grid_row.js:193 +#: frappe/public/js/frappe/form/grid_row.js:194 msgid "Move To" msgstr "ย้ายไปยัง" @@ -16021,7 +16089,7 @@ msgstr "ย้ายส่วนไปยังแท็บใหม่" msgid "Move the current field and the following fields to a new column" msgstr "ย้ายฟิลด์ปัจจุบันและฟิลด์ถัดไปไปยังคอลัมน์ใหม่" -#: frappe/public/js/frappe/form/grid_row.js:168 +#: frappe/public/js/frappe/form/grid_row.js:169 msgid "Move to Row Number" msgstr "ย้ายไปยังหมายเลขแถว" @@ -16089,7 +16157,7 @@ msgid "Mx" msgstr "" #: frappe/templates/includes/web_sidebar.html:41 -#: frappe/website/doctype/web_form/web_form.py:498 +#: frappe/website/doctype/web_form/web_form.py:525 #: 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" @@ -16231,12 +16299,12 @@ msgstr "แม่แบบแถบนำทาง" msgid "Navbar Template Values" msgstr "ค่าของแม่แบบแถบนำทาง" -#: frappe/public/js/frappe/list/list_view.js:1378 +#: frappe/public/js/frappe/list/list_view.js:1380 msgctxt "Description of a list view shortcut" msgid "Navigate list down" msgstr "เลื่อนรายการลง" -#: frappe/public/js/frappe/list/list_view.js:1385 +#: frappe/public/js/frappe/list/list_view.js:1387 msgctxt "Description of a list view shortcut" msgid "Navigate list up" msgstr "เลื่อนรายการขึ้น" @@ -16251,6 +16319,10 @@ msgstr "ไปยังเนื้อหาหลัก" msgid "Navigation Settings" msgstr "การตั้งค่าการนำทาง" +#: frappe/public/js/frappe/list/list_view.js:485 +msgid "Need Help?" +msgstr "" + #: frappe/desk/doctype/workspace/workspace.py:322 msgid "Need Workspace Manager role to edit private workspace of other users" msgstr "ต้องการบทบาทผู้จัดการพื้นที่ทำงานเพื่อแก้ไขพื้นที่ทำงานส่วนตัวของผู้ใช้อื่น" @@ -16259,7 +16331,7 @@ msgstr "ต้องการบทบาทผู้จัดการพื้ msgid "Negative Value" msgstr "ค่าติดลบ" -#: frappe/database/query.py:333 +#: frappe/database/query.py:335 msgid "Nested filters must be provided as a list or tuple." msgstr "" @@ -16272,6 +16344,12 @@ msgstr "ข้อผิดพลาดชุดซ้อน โปรดติ msgid "Network Printer Settings" msgstr "การตั้งค่าเครื่องพิมพ์เครือข่าย" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Never" +msgstr "" + #. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/core/doctype/success_action/success_action.js:57 @@ -16280,7 +16358,7 @@ msgstr "การตั้งค่าเครื่องพิมพ์เค #: 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/treeview.js:473 #: frappe/public/js/frappe/views/workspace/workspace.js:64 #: frappe/website/doctype/web_form/templates/web_list.html:15 #: frappe/www/list.html:19 @@ -16341,7 +16419,7 @@ msgstr "เหตุการณ์ใหม่" msgid "New Folder" msgstr "โฟลเดอร์ใหม่" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 msgid "New Kanban Board" msgstr "กระดานคัมบังใหม่" @@ -16376,7 +16454,7 @@ msgstr "การ์ดตัวเลขใหม่" msgid "New Onboarding" msgstr "การเริ่มต้นใช้งานใหม่" -#: frappe/core/doctype/user/user.js:190 frappe/www/update-password.html:43 +#: frappe/core/doctype/user/user.js:178 frappe/www/update-password.html:43 msgid "New Password" msgstr "รหัสผ่านใหม่" @@ -16472,7 +16550,7 @@ msgstr "ค่าที่จะตั้งใหม่" #: frappe/public/js/frappe/ui/toolbar/search_utils.js:227 #: 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:411 +#: frappe/website/doctype/web_form/web_form.py:438 msgid "New {0}" msgstr "{0} ใหม่" @@ -16624,7 +16702,7 @@ msgstr "ถัดไปเมื่อคลิก" #: frappe/public/js/form_builder/utils.js:341 #: frappe/public/js/frappe/form/controls/link.js:498 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1665 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 #: frappe/website/doctype/help_article/templates/help_article.html:26 msgid "No" msgstr "" @@ -16773,7 +16851,7 @@ msgstr "" msgid "No Roles Specified" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 msgid "No Select Field Found" msgstr "" @@ -16857,7 +16935,7 @@ msgstr "" msgid "No failed logs" msgstr "ไม่มีบันทึกที่ล้มเหลว" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:371 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:385 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 "" @@ -16881,7 +16959,7 @@ msgstr "ไม่มีบันทึกเพิ่มเติม" msgid "No matching records. Search something new" msgstr "ไม่พบบันทึกที่ตรงกัน ค้นหาใหม่" -#: frappe/public/js/frappe/web_form/web_form_list.js:161 +#: frappe/public/js/frappe/web_form/web_form_list.js:162 msgid "No more items to display" msgstr "ไม่มีรายการเพิ่มเติมที่จะแสดง" @@ -16925,7 +17003,7 @@ msgctxt "{0} = verb, {1} = object" msgid "No permission to '{0}' {1}" msgstr "ไม่มีสิทธิ์ในการ '{0}' {1}" -#: frappe/model/db_query.py:948 +#: frappe/model/db_query.py:949 msgid "No permission to read {0}" msgstr "ไม่มีสิทธิ์ในการอ่าน {0}" @@ -16973,11 +17051,11 @@ msgstr "ไม่มี {0}" msgid "No {0} Found" msgstr "ไม่พบ {0}" -#: frappe/public/js/frappe/web_form/web_form_list.js:233 +#: frappe/public/js/frappe/web_form/web_form_list.js:234 msgid "No {0} found" msgstr "ไม่พบ {0}" -#: frappe/public/js/frappe/list/list_view.js:497 +#: frappe/public/js/frappe/list/list_view.js:499 msgid "No {0} found with matching filters. Clear filters to see all {0}." msgstr "ไม่พบ {0} ที่ตรงกับตัวกรอง ล้างตัวกรองเพื่อดู {0} ทั้งหมด" @@ -16986,7 +17064,7 @@ msgid "No {0} mail" msgstr "ไม่มีจดหมาย {0}" #: frappe/public/js/form_builder/utils.js:117 -#: frappe/public/js/frappe/form/grid_row.js:256 +#: frappe/public/js/frappe/form/grid_row.js:257 msgctxt "Title of the 'row number' column" msgid "No." msgstr "เลขที่" @@ -17050,7 +17128,7 @@ msgstr "ไม่ใช่ลูกหลานของ" msgid "Not Equals" msgstr "ไม่เท่ากับ" -#: frappe/app.py:387 frappe/www/404.html:3 +#: frappe/app.py:390 frappe/www/404.html:3 msgid "Not Found" msgstr "ไม่พบ" @@ -17076,9 +17154,9 @@ msgstr "ไม่ได้ลิงก์กับบันทึกใด ๆ" msgid "Not Nullable" msgstr "ไม่สามารถเป็นค่าว่างได้" -#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26 +#: frappe/__init__.py:550 frappe/app.py:383 frappe/desk/calendar.py:26 #: frappe/public/js/frappe/web_form/webform_script.js:15 -#: frappe/website/doctype/web_form/web_form.py:747 +#: frappe/website/doctype/web_form/web_form.py:774 #: 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 @@ -17097,7 +17175,7 @@ msgstr "ไม่ได้เผยแพร่" #: 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/kanban/kanban_view.js:183 #: frappe/public/js/frappe/views/reports/report_view.js:209 #: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39 #: frappe/website/doctype/web_form/templates/web_form.html:85 @@ -17148,7 +17226,7 @@ msgstr "ไม่ใช้งาน" msgid "Not allowed for {0}: {1}" msgstr "ไม่อนุญาตสำหรับ {0}: {1}" -#: frappe/email/doctype/notification/notification.py:637 +#: frappe/email/doctype/notification/notification.py:639 msgid "Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings" msgstr "ไม่อนุญาตให้แนบเอกสาร {0} โปรดเปิดใช้งานอนุญาตการพิมพ์สำหรับ {0} ในการตั้งค่าการพิมพ์" @@ -17180,12 +17258,12 @@ msgstr "ไม่ได้อยู่ในโหมดนักพัฒนา msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType." msgstr "ไม่ได้อยู่ในโหมดนักพัฒนา! ตั้งค่าใน site_config.json หรือสร้าง DocType 'Custom'" -#: frappe/core/doctype/system_settings/system_settings.py:216 +#: frappe/core/doctype/system_settings/system_settings.py:217 #: 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:760 +#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:787 #: frappe/website/js/website.js:97 msgid "Not permitted" msgstr "ไม่ได้รับอนุญาต" @@ -17231,7 +17309,7 @@ msgstr "หมายเหตุ: เพื่อผลลัพธ์ที่ msgid "Note: Multiple sessions will be allowed in case of mobile device" msgstr "หมายเหตุ: จะอนุญาตให้มีหลายเซสชันในกรณีของอุปกรณ์มือถือ" -#: frappe/core/doctype/user/user.js:399 +#: frappe/core/doctype/user/user.js:387 msgid "Note: This will be shared with user." msgstr "หมายเหตุ: สิ่งนี้จะถูกแชร์กับผู้ใช้" @@ -17303,15 +17381,15 @@ msgstr "เอกสารที่สมัครรับการแจ้ง msgid "Notification sent to" msgstr "การแจ้งเตือนถูกส่งไปยัง" -#: frappe/email/doctype/notification/notification.py:542 +#: frappe/email/doctype/notification/notification.py:544 msgid "Notification: customer {0} has no Mobile number set" msgstr "การแจ้งเตือน: ลูกค้า {0} ไม่มีการตั้งหมายเลขมือถือ" -#: frappe/email/doctype/notification/notification.py:528 +#: frappe/email/doctype/notification/notification.py:530 msgid "Notification: document {0} has no {1} number set (field: {2})" msgstr "การแจ้งเตือน: เอกสาร {0} ไม่มีการตั้งหมายเลข {1} (ฟิลด์: {2})" -#: frappe/email/doctype/notification/notification.py:537 +#: frappe/email/doctype/notification/notification.py:539 msgid "Notification: user {0} has no Mobile number set" msgstr "การแจ้งเตือน: ผู้ใช้ {0} ไม่มีการตั้งหมายเลขมือถือ" @@ -17425,7 +17503,7 @@ msgstr "จำนวนคำสั่ง Query" msgid "Number of attachment fields are more than {}, limit updated to {}." msgstr "จำนวนฟิลด์ไฟล์แนบมากกว่า {} ขีดจำกัดอัปเดตเป็น {}" -#: frappe/core/doctype/system_settings/system_settings.py:171 +#: frappe/core/doctype/system_settings/system_settings.py:172 msgid "Number of backups must be greater than zero." msgstr "จำนวนการสำรองข้อมูลต้องมากกว่าศูนย์" @@ -17697,7 +17775,7 @@ msgstr "การเริ่มต้นใช้งานเสร็จสม #. Description of the 'Is Submittable' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:42 +#: frappe/core/doctype/doctype/doctype_list.js:43 msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended." msgstr "เมื่อส่งแล้ว เอกสารที่สามารถส่งได้จะไม่สามารถเปลี่ยนแปลงได้ สามารถยกเลิกและแก้ไขได้เท่านั้น" @@ -17786,11 +17864,11 @@ msgstr "สามารถลบรายงานประเภท Report Buil msgid "Only reports of type Report Builder can be edited" msgstr "สามารถแก้ไขรายงานประเภท Report Builder ได้เท่านั้น" -#: frappe/custom/doctype/customize_form/customize_form.py:129 +#: frappe/custom/doctype/customize_form/customize_form.py:131 msgid "Only standard DocTypes are allowed to be customized from Customize Form." msgstr "อนุญาตให้ปรับแต่งเฉพาะ DocTypes มาตรฐานจากฟอร์มที่กำหนดเอง" -#: frappe/model/delete_doc.py:241 +#: frappe/model/delete_doc.py:281 msgid "Only the Administrator can delete a standard DocType." msgstr "เฉพาะผู้ดูแลระบบเท่านั้นที่สามารถลบ DocType มาตรฐานได้" @@ -17886,7 +17964,7 @@ msgstr "" msgid "Open in a new tab" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1431 +#: frappe/public/js/frappe/list/list_view.js:1433 msgctxt "Description of a list view shortcut" msgid "Open list item" msgstr "" @@ -17935,7 +18013,7 @@ msgstr "" msgid "Operation" msgstr "" -#: frappe/utils/data.py:2146 +#: frappe/utils/data.py:2172 msgid "Operator must be one of {0}" msgstr "ผู้ปฏิบัติงานต้องเป็นหนึ่งใน {0}" @@ -17981,6 +18059,7 @@ msgstr "ไม่บังคับ: การแจ้งเตือนจะ #. 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 (Text) field in DocType 'Web Form List Column' #. 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 @@ -17989,6 +18068,7 @@ msgstr "ไม่บังคับ: การแจ้งเตือนจะ #: 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_form_list_column/web_form_list_column.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Options" msgstr "ตัวเลือก" @@ -18034,7 +18114,7 @@ msgstr "สีส้ม" msgid "Order" msgstr "คำสั่งซื้อ" -#: frappe/database/query.py:767 +#: frappe/database/query.py:769 msgid "Order By must be a string" msgstr "" @@ -18132,7 +18212,7 @@ msgstr "แพตช์" #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/printing/page/print/print.js:84 #: frappe/public/js/frappe/form/templates/print_layout.html:44 -#: frappe/public/js/frappe/views/reports/query_report.js:1804 +#: frappe/public/js/frappe/views/reports/query_report.js:1812 msgid "PDF" msgstr "" @@ -18480,8 +18560,8 @@ msgstr "ไม่กระตือรือร้น" #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/system_settings/system_settings.json -#: frappe/core/doctype/user/user.js:177 frappe/core/doctype/user/user.js:224 -#: frappe/core/doctype/user/user.js:244 +#: frappe/core/doctype/user/user.js:165 frappe/core/doctype/user/user.js:212 +#: frappe/core/doctype/user/user.js:232 #: 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 @@ -18504,7 +18584,7 @@ msgstr "รีเซ็ตรหัสผ่าน" msgid "Password Reset Link Generation Limit" msgstr "ขีดจำกัดการสร้างลิงก์รีเซ็ตรหัสผ่าน" -#: frappe/public/js/frappe/form/grid_row.js:896 +#: frappe/public/js/frappe/form/grid_row.js:897 msgid "Password cannot be filtered" msgstr "ไม่สามารถกรองรหัสผ่านได้" @@ -18541,7 +18621,7 @@ msgstr "คำแนะนำการรีเซ็ตรหัสผ่าน msgid "Password set" msgstr "ตั้งค่ารหัสผ่านแล้ว" -#: frappe/auth.py:258 +#: frappe/auth.py:261 msgid "Password size exceeded the maximum allowed size" msgstr "ขนาดรหัสผ่านเกินขนาดสูงสุดที่อนุญาต" @@ -18553,7 +18633,7 @@ msgstr "ขนาดรหัสผ่านเกินขนาดสูงส msgid "Passwords do not match" msgstr "รหัสผ่านไม่ตรงกัน" -#: frappe/core/doctype/user/user.js:210 +#: frappe/core/doctype/user/user.js:198 msgid "Passwords do not match!" msgstr "รหัสผ่านไม่ตรงกัน!" @@ -18704,7 +18784,7 @@ msgstr "ส่ง {0} อย่างถาวร?" msgid "Permanently delete {0}?" msgstr "ลบ {0} อย่างถาวร?" -#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533 +#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:535 msgid "Permission Error" msgstr "ข้อผิดพลาดในการอนุญาต" @@ -18764,8 +18844,8 @@ msgstr "ประเภทการอนุญาต" #: 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:143 frappe/core/doctype/user/user.js:152 -#: frappe/core/doctype/user/user.js:161 +#: frappe/core/doctype/user/user.js:131 frappe/core/doctype/user/user.js:140 +#: frappe/core/doctype/user/user.js:149 #: 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 @@ -18835,6 +18915,7 @@ msgstr "คำขอดาวน์โหลดข้อมูลส่วนต #. Option for the 'Type' (Select) field in DocType 'Communication' #. Option for the 'Type' (Select) field in DocType 'DocField' #. Label of the phone (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #. 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' @@ -18845,6 +18926,7 @@ msgstr "คำขอดาวน์โหลดข้อมูลส่วนต #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.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 @@ -19019,7 +19101,7 @@ msgstr "โปรดอย่าเปลี่ยนหัวข้อแม่ msgid "Please duplicate this to make changes" msgstr "โปรดทำสำเนานี้เพื่อทำการเปลี่ยนแปลง" -#: frappe/core/doctype/system_settings/system_settings.py:164 +#: frappe/core/doctype/system_settings/system_settings.py:165 msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login." msgstr "โปรดเปิดใช้งานคีย์เข้าสู่ระบบโซเชียลอย่างน้อยหนึ่งคีย์หรือ LDAP หรือเข้าสู่ระบบด้วยลิงก์อีเมลก่อนปิดใช้งานการเข้าสู่ระบบด้วยชื่อผู้ใช้/รหัสผ่าน" @@ -19151,11 +19233,11 @@ msgstr "โปรดเลือก DocType ก่อน" msgid "Please select Entity Type first" msgstr "โปรดเลือกประเภทเอนทิตีก่อน" -#: frappe/core/doctype/system_settings/system_settings.py:115 +#: frappe/core/doctype/system_settings/system_settings.py:116 msgid "Please select Minimum Password Score" msgstr "โปรดเลือกคะแนนรหัสผ่านขั้นต่ำ" -#: frappe/public/js/frappe/views/reports/query_report.js:1185 +#: frappe/public/js/frappe/views/reports/query_report.js:1193 msgid "Please select X and Y fields" msgstr "โปรดเลือกฟิลด์ X และ Y" @@ -19183,7 +19265,7 @@ msgstr "โปรดเลือกตัวกรองวันที่ที msgid "Please select applicable Doctypes" msgstr "โปรดเลือกประเภทเอกสารที่เกี่ยวข้อง" -#: frappe/model/db_query.py:1157 +#: frappe/model/db_query.py:1163 msgid "Please select atleast 1 column from {0} to sort/group" msgstr "โปรดเลือกอย่างน้อย 1 คอลัมน์จาก {0} เพื่อจัดเรียง/จัดกลุ่ม" @@ -19213,7 +19295,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:1408 +#: frappe/public/js/frappe/views/reports/query_report.js:1416 msgid "Please set filters" msgstr "โปรดตั้งค่าตัวกรอง" @@ -19233,7 +19315,7 @@ msgstr "โปรดตั้งค่าเอกสารต่อไปนี msgid "Please set the series to be used." msgstr "โปรดตั้งค่าซีรีส์ที่จะใช้" -#: frappe/core/doctype/system_settings/system_settings.py:128 +#: frappe/core/doctype/system_settings/system_settings.py:129 msgid "Please setup SMS before setting it as an authentication method, via SMS Settings" msgstr "โปรดตั้งค่า SMS ก่อนตั้งค่าเป็นวิธีการยืนยันตัวตนผ่านการตั้งค่า SMS" @@ -19385,7 +19467,7 @@ msgstr "รหัสไปรษณีย์" msgid "Posting Timestamp" msgstr "การประทับเวลาที่โพสต์" -#: frappe/database/query.py:1518 +#: frappe/database/query.py:1520 msgid "Potentially dangerous content in string literal: {0}" msgstr "" @@ -19587,13 +19669,13 @@ msgstr "คีย์หลักของประเภทเอกสาร {0 #: 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:1789 +#: frappe/public/js/frappe/views/reports/query_report.js:1797 #: frappe/public/js/frappe/views/reports/report_view.js:1539 -#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18 +#: frappe/public/js/frappe/views/treeview.js:492 frappe/www/printview.html:18 msgid "Print" msgstr "พิมพ์" -#: frappe/public/js/frappe/list/list_view.js:2164 +#: frappe/public/js/frappe/list/list_view.js:2166 msgctxt "Button in list view actions menu" msgid "Print" msgstr "พิมพ์" @@ -19663,7 +19745,7 @@ msgstr "ความช่วยเหลือรูปแบบการพิ msgid "Print Format Type" msgstr "ประเภทรูปแบบการพิมพ์" -#: frappe/public/js/frappe/views/reports/query_report.js:1578 +#: frappe/public/js/frappe/views/reports/query_report.js:1586 msgid "Print Format not found" msgstr "" @@ -19844,11 +19926,11 @@ msgstr "เคล็ดลับ: เพิ่ม อ้างอิง: { msgid "Proceed" msgstr "ดำเนินการต่อ" -#: frappe/public/js/frappe/views/reports/query_report.js:932 +#: frappe/public/js/frappe/views/reports/query_report.js:940 msgid "Proceed Anyway" msgstr "ดำเนินการต่ออยู่ดี" -#: frappe/public/js/frappe/form/controls/table.js:123 +#: frappe/public/js/frappe/form/controls/table.js:104 msgid "Processing" msgstr "กำลังประมวลผล" @@ -19865,11 +19947,21 @@ msgstr "ศาสตราจารย์" msgid "Profile" msgstr "โปรไฟล์" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile Picture" +msgstr "" + +#. Success message of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile updated successfully." +msgstr "" + #: frappe/public/js/frappe/socketio_client.js:82 msgid "Progress" msgstr "ความคืบหน้า" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:408 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:422 msgid "Project" msgstr "โครงการ" @@ -19913,7 +20005,7 @@ msgstr "ประเภททรัพย์สิน" msgid "Protect Attached Files" msgstr "ป้องกันไฟล์ที่แนบมา" -#: frappe/core/doctype/file/file.py:523 +#: frappe/core/doctype/file/file.py:526 msgid "Protected File" msgstr "ไฟล์ที่ป้องกัน" @@ -20419,11 +20511,11 @@ msgstr "เรียลไทม์ (SocketIO)" msgid "Reason" msgstr "เหตุผล" -#: frappe/public/js/frappe/views/reports/query_report.js:886 +#: frappe/public/js/frappe/views/reports/query_report.js:894 msgid "Rebuild" msgstr "สร้างใหม่" -#: frappe/public/js/frappe/views/treeview.js:509 +#: frappe/public/js/frappe/views/treeview.js:511 msgid "Rebuild Tree" msgstr "สร้างโครงสร้างใหม่" @@ -20804,8 +20896,8 @@ 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:1778 -#: frappe/public/js/frappe/views/treeview.js:496 +#: frappe/public/js/frappe/views/reports/query_report.js:1786 +#: frappe/public/js/frappe/views/treeview.js:498 #: frappe/public/js/frappe/widgets/chart_widget.js:291 #: frappe/public/js/frappe/widgets/number_card_widget.js:352 #: frappe/public/js/print_format_builder/Preview.vue:24 @@ -20836,13 +20928,13 @@ msgstr "" msgid "Refresh Token" msgstr "รีเฟรชโทเค็น" -#: frappe/public/js/frappe/list/list_view.js:534 +#: frappe/public/js/frappe/list/list_view.js:536 msgctxt "Document count in list view" msgid "Refreshing" msgstr "กำลังรีเฟรช" #: frappe/core/doctype/system_settings/system_settings.js:57 -#: frappe/core/doctype/user/user.js:374 +#: frappe/core/doctype/user/user.js:362 #: frappe/desk/page/setup_wizard/setup_wizard.js:211 msgid "Refreshing..." msgstr "กำลังรีเฟรช..." @@ -21227,7 +21319,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:1965 +#: frappe/public/js/frappe/views/reports/query_report.js:1973 msgid "Report Name" msgstr "ชื่อรายงาน" @@ -21279,7 +21371,7 @@ msgstr "รายงานไม่มีข้อมูล โปรดแก msgid "Report has no numeric fields, please change the Report Name" msgstr "รายงานไม่มีฟิลด์ตัวเลข โปรดเปลี่ยนชื่อรายงาน" -#: frappe/public/js/frappe/views/reports/query_report.js:1013 +#: frappe/public/js/frappe/views/reports/query_report.js:1021 msgid "Report initiated, click to view status" msgstr "เริ่มต้นรายงานแล้ว คลิกเพื่อดูสถานะ" @@ -21299,7 +21391,7 @@ msgstr "อัปเดตรายงานเรียบร้อยแล้ msgid "Report was not saved (there were errors)" msgstr "รายงานไม่ได้รับการบันทึก (มีข้อผิดพลาด)" -#: frappe/public/js/frappe/views/reports/query_report.js:2003 +#: frappe/public/js/frappe/views/reports/query_report.js:2011 msgid "Report with more than 10 columns looks better in Landscape mode." msgstr "รายงานที่มีมากกว่า 10 คอลัมน์ดูดีกว่าในโหมดแนวนอน" @@ -21335,7 +21427,7 @@ msgstr "รายงาน" msgid "Reports & Masters" msgstr "รายงานและมาสเตอร์" -#: frappe/public/js/frappe/views/reports/query_report.js:929 +#: frappe/public/js/frappe/views/reports/query_report.js:937 msgid "Reports already in Queue" msgstr "รายงานอยู่ในคิวแล้ว" @@ -21354,7 +21446,10 @@ msgid "Request Body" msgstr "" #. Label of the data (Code) field in DocType 'Integration Request' +#. Title of the request-data Web Form +#. Button label of the request-data Web Form #: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/website/web_form/request_data/request_data.json msgid "Request Data" msgstr "" @@ -21406,6 +21501,11 @@ msgstr "" msgid "Request URL" msgstr "" +#. Title of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "Request for Account Deletion" +msgstr "" + #. Label of the requested_numbers (Code) field in DocType 'SMS Log' #: frappe/core/doctype/sms_log/sms_log.json msgid "Requested Numbers" @@ -21461,7 +21561,7 @@ msgstr "" msgid "Reset Fields" msgstr "" -#: frappe/core/doctype/user/user.js:184 frappe/core/doctype/user/user.js:187 +#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:175 msgid "Reset LDAP Password" msgstr "" @@ -21469,11 +21569,11 @@ msgstr "" msgid "Reset Layout" msgstr "" -#: frappe/core/doctype/user/user.js:235 +#: frappe/core/doctype/user/user.js:223 msgid "Reset OTP Secret" msgstr "" -#: frappe/core/doctype/user/user.js:168 frappe/www/login.html:199 +#: frappe/core/doctype/user/user.js:156 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" @@ -21508,7 +21608,7 @@ msgstr "" msgid "Reset sorting" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:433 +#: frappe/public/js/frappe/form/grid_row.js:434 msgid "Reset to default" msgstr "" @@ -21760,7 +21860,7 @@ 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 +#: frappe/public/js/frappe/roles_editor.js:114 msgid "Role Permissions" msgstr "สิทธิ์บทบาท" @@ -21770,7 +21870,7 @@ msgstr "สิทธิ์บทบาท" msgid "Role Permissions Manager" msgstr "ผู้จัดการสิทธิ์บทบาท" -#: frappe/public/js/frappe/list/list_view.js:1933 +#: frappe/public/js/frappe/list/list_view.js:1935 msgctxt "Button in list view menu" msgid "Role Permissions Manager" msgstr "ผู้จัดการสิทธิ์บทบาท" @@ -21963,11 +22063,11 @@ msgstr "" msgid "Row {0}" msgstr "แถว {0}" -#: frappe/custom/doctype/customize_form/customize_form.py:353 +#: frappe/custom/doctype/customize_form/customize_form.py:357 msgid "Row {0}: Not allowed to disable Mandatory for standard fields" msgstr "แถว {0}: ไม่อนุญาตให้ปิดใช้งานข้อบังคับสำหรับฟิลด์มาตรฐาน" -#: frappe/custom/doctype/customize_form/customize_form.py:342 +#: frappe/custom/doctype/customize_form/customize_form.py:346 msgid "Row {0}: Not allowed to enable Allow on Submit for standard fields" msgstr "แถว {0}: ไม่อนุญาตให้เปิดใช้งานอนุญาตในการส่งสำหรับฟิลด์มาตรฐาน" @@ -21986,7 +22086,10 @@ msgid "Rows Removed" msgstr "" #. Label of the rows_threshold_for_grid_search (Int) field in DocType 'DocType' +#. Label of the rows_threshold_for_grid_search (Int) field in DocType +#. 'Customize Form' #: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Rows Threshold for Grid Search" msgstr "" @@ -22194,8 +22297,8 @@ msgstr "วันเสาร์" #: 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:1957 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 +#: frappe/public/js/frappe/views/reports/query_report.js:1965 #: frappe/public/js/frappe/views/reports/report_view.js:1735 #: frappe/public/js/frappe/views/workspace/workspace.js:335 #: frappe/public/js/frappe/widgets/base_widget.js:142 @@ -22218,11 +22321,11 @@ msgstr "บันทึกเป็น" msgid "Save Customizations" msgstr "บันทึกการปรับแต่ง" -#: frappe/public/js/frappe/views/reports/query_report.js:1960 +#: frappe/public/js/frappe/views/reports/query_report.js:1968 msgid "Save Report" msgstr "บันทึกรายงาน" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:97 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:107 msgid "Save filters" msgstr "บันทึกตัวกรอง" @@ -22594,7 +22697,7 @@ msgstr "" msgid "See all Activity" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:855 +#: frappe/public/js/frappe/views/reports/query_report.js:863 msgid "See all past reports." msgstr "" @@ -22658,7 +22761,7 @@ msgstr "" #: 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:497 +#: frappe/public/js/frappe/form/grid_row.js:498 msgid "Select All" msgstr "เลือกทั้งหมด" @@ -22738,7 +22841,7 @@ msgstr "" msgid "Select Field..." msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:489 +#: frappe/public/js/frappe/form/grid_row.js:490 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:181 msgid "Select Fields" msgstr "เลือกฟิลด์" @@ -22858,8 +22961,8 @@ msgid "Select a field to edit its properties." msgstr "เลือกฟิลด์เพื่อแก้ไขคุณสมบัติ" #: frappe/public/js/frappe/views/treeview.js:358 -msgid "Select a group node first." -msgstr "เลือกโหนดกลุ่มก่อน" +msgid "Select a group {0} first." +msgstr "" #: frappe/core/doctype/doctype/doctype.py:1956 msgid "Select a valid Sender Field for creating documents from Email" @@ -22895,13 +22998,13 @@ msgstr "เลือกอย่างน้อย 1 รายการสำห msgid "Select atleast 2 actions" msgstr "เลือกอย่างน้อย 2 การกระทำ" -#: frappe/public/js/frappe/list/list_view.js:1445 +#: frappe/public/js/frappe/list/list_view.js:1447 msgctxt "Description of a list view shortcut" msgid "Select list item" msgstr "เลือกรายการในรายการ" -#: frappe/public/js/frappe/list/list_view.js:1397 -#: frappe/public/js/frappe/list/list_view.js:1413 +#: frappe/public/js/frappe/list/list_view.js:1399 +#: frappe/public/js/frappe/list/list_view.js:1415 msgctxt "Description of a list view shortcut" msgid "Select multiple list items" msgstr "เลือกรายการในรายการหลายรายการ" @@ -23223,7 +23326,7 @@ msgstr "" msgid "Server Action" msgstr "" -#: frappe/app.py:396 frappe/public/js/frappe/request.js:611 +#: frappe/app.py:399 frappe/public/js/frappe/request.js:611 #: frappe/www/error.html:36 frappe/www/error.py:15 msgid "Server Error" msgstr "" @@ -23289,7 +23392,7 @@ msgstr "ค่าเริ่มต้นของเซสชัน" msgid "Session Defaults Saved" msgstr "บันทึกค่าเริ่มต้นของเซสชันแล้ว" -#: frappe/app.py:373 +#: frappe/app.py:376 msgid "Session Expired" msgstr "เซสชันหมดอายุ" @@ -23298,7 +23401,7 @@ msgstr "เซสชันหมดอายุ" msgid "Session Expiry (idle timeout)" msgstr "การหมดอายุของเซสชัน (หมดเวลาไม่ใช้งาน)" -#: frappe/core/doctype/system_settings/system_settings.py:122 +#: frappe/core/doctype/system_settings/system_settings.py:123 msgid "Session Expiry must be in format {0}" msgstr "การหมดอายุของเซสชันต้องอยู่ในรูปแบบ {0}" @@ -23347,7 +23450,7 @@ msgstr "ตั้งค่าตัวกรอง" msgid "Set Filters for {0}" msgstr "ตั้งค่าตัวกรองสำหรับ {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:2113 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 msgid "Set Level" msgstr "ตั้งค่าระดับ" @@ -23401,7 +23504,7 @@ msgstr "ตั้งค่าปริมาณ" msgid "Set Role For" msgstr "ตั้งค่าบทบาทสำหรับ" -#: frappe/core/doctype/user/user.js:136 +#: frappe/core/doctype/user/user.js:124 #: frappe/core/page/permission_manager/permission_manager.js:72 msgid "Set User Permissions" msgstr "ตั้งค่าสิทธิ์ผู้ใช้" @@ -23563,7 +23666,7 @@ msgstr "การตั้งค่า > ผู้ใช้" msgid "Setup > User Permissions" msgstr "การตั้งค่า > สิทธิ์ผู้ใช้" -#: frappe/public/js/frappe/views/reports/query_report.js:1826 +#: frappe/public/js/frappe/views/reports/query_report.js:1834 #: frappe/public/js/frappe/views/reports/report_view.js:1713 msgid "Setup Auto Email" msgstr "ตั้งค่าอีเมลอัตโนมัติ" @@ -23704,6 +23807,12 @@ msgstr "แสดงเอกสาร" msgid "Show Error" msgstr "แสดงข้อผิดพลาด" +#. Label of the show_external_link_warning (Select) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Show External Link Warning" +msgstr "" + #: frappe/public/js/frappe/form/layout.js:578 msgid "Show Fieldname (click to copy on clipboard)" msgstr "แสดงชื่อฟิลด์ (คลิกเพื่อคัดลอกไปยังคลิปบอร์ด)" @@ -23832,7 +23941,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:1849 +#: frappe/public/js/frappe/list/list_view.js:1851 msgid "Show Tags" msgstr "แสดงแท็ก" @@ -24039,22 +24148,22 @@ msgstr "" msgid "Signups have been disabled for this website." msgstr "การลงทะเบียนถูกปิดใช้งานสำหรับเว็บไซต์นี้" -#. 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 "" - #. 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\")" +msgid "Simple Python Expression, Example: status == \"Invalid\"" msgstr "" #. 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'" +msgid "Simple Python Expression, Example: status == 'Open' and issue_type == 'Bug'" +msgstr "" + +#. 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 "" #. Label of the simultaneous_sessions (Int) field in DocType 'User' @@ -24062,13 +24171,13 @@ msgstr "" msgid "Simultaneous Sessions" msgstr "เซสชันพร้อมกัน" -#: frappe/custom/doctype/customize_form/customize_form.py:126 +#: frappe/custom/doctype/customize_form/customize_form.py:128 msgid "Single DocTypes cannot be customized." 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 +#: frappe/core/doctype/doctype/doctype_list.js:68 msgid "Single Types have only one record no tables associated. Values are stored in tabSingles" msgstr "ประเภทเดี่ยวมีเพียงหนึ่งระเบียนไม่มีตารางที่เกี่ยวข้อง ค่าเก็บไว้ใน tabSingles" @@ -24404,7 +24513,7 @@ msgid "Splash Image" msgstr "ภาพสแปลช" #: frappe/desk/reportview.py:455 -#: frappe/public/js/frappe/web_form/web_form_list.js:175 +#: frappe/public/js/frappe/web_form/web_form_list.js:176 #: frappe/templates/print_formats/standard_macros.html:44 msgid "Sr" msgstr "ลำดับ" @@ -24436,7 +24545,7 @@ msgstr "การติดตามสแต็ก" msgid "Standard" msgstr "มาตรฐาน" -#: frappe/model/delete_doc.py:79 +#: frappe/model/delete_doc.py:119 msgid "Standard DocType can not be deleted." msgstr "ไม่สามารถลบประเภทเอกสารมาตรฐานได้" @@ -24706,7 +24815,7 @@ msgstr "" #. Label of the sticky (Check) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json -#: frappe/public/js/frappe/form/grid_row.js:454 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Sticky" msgstr "" @@ -24736,7 +24845,7 @@ msgstr "" msgid "Store Attached PDF Document" msgstr "" -#: frappe/core/doctype/user/user.js:490 +#: frappe/core/doctype/user/user.js:497 msgid "Store the API secret securely. It won't be displayed again." msgstr "" @@ -24848,6 +24957,7 @@ msgstr "คิวการส่ง" #. 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' +#. Button label of the request-to-delete-data Web Form #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/docshare/docshare.json @@ -24856,10 +24966,11 @@ msgstr "คิวการส่ง" #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/quick_entry.js:225 #: frappe/public/js/frappe/ui/capture.js:307 +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json msgid "Submit" msgstr "ส่ง" -#: frappe/public/js/frappe/list/list_view.js:2231 +#: frappe/public/js/frappe/list/list_view.js:2233 msgctxt "Button in list view actions menu" msgid "Submit" msgstr "ส่ง" @@ -24869,7 +24980,7 @@ msgctxt "Button in web form" msgid "Submit" msgstr "ส่ง" -#: frappe/public/js/frappe/ui/dialog.js:63 +#: frappe/public/js/frappe/ui/dialog.js:64 msgctxt "Primary action in dialog" msgid "Submit" msgstr "ส่ง" @@ -24917,7 +25028,7 @@ msgstr "ส่งเอกสารนี้เพื่อดำเนินก msgid "Submit this document to confirm" msgstr "ส่งเอกสารนี้เพื่อยืนยัน" -#: frappe/public/js/frappe/list/list_view.js:2236 +#: frappe/public/js/frappe/list/list_view.js:2238 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "ส่งเอกสาร {0} หรือไม่?" @@ -24967,7 +25078,7 @@ msgstr "คำบรรยาย" #: 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:1171 +#: frappe/public/js/frappe/form/grid.js:1172 #: frappe/public/js/frappe/views/translation_manager.js:21 #: frappe/templates/includes/login/login.js:230 #: frappe/templates/includes/login/login.js:236 @@ -25182,7 +25293,7 @@ msgstr "กำลังซิงค์" msgid "Syncing {0} of {1}" msgstr "กำลังซิงค์ {0} จาก {1}" -#: frappe/utils/data.py:2547 +#: frappe/utils/data.py:2573 msgid "Syntax Error" msgstr "ข้อผิดพลาดทางไวยากรณ์" @@ -25493,7 +25604,7 @@ msgstr "" msgid "Table Trimmed" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1170 +#: frappe/public/js/frappe/form/grid.js:1171 msgid "Table updated" msgstr "" @@ -25708,7 +25819,7 @@ msgstr "ขอบคุณ" msgid "The Auto Repeat for this document has been disabled." msgstr "" -#: frappe/public/js/frappe/form/grid.js:1193 +#: frappe/public/js/frappe/form/grid.js:1194 msgid "The CSV format is case sensitive" msgstr "" @@ -25776,7 +25887,7 @@ msgstr "ความคิดเห็นต้องไม่ว่างเป 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:685 +#: frappe/public/js/frappe/list/list_view.js:687 msgid "The count shown is an estimated count. Click here to see the accurate count." msgstr "จำนวนที่แสดงเป็นจำนวนโดยประมาณ คลิกที่นี่เพื่อดูจำนวนที่ถูกต้อง" @@ -25888,7 +25999,7 @@ msgstr "ลิงก์รีเซ็ตรหัสผ่านหมดอา msgid "The reset password link has either been used before or is invalid" msgstr "ลิงก์รีเซ็ตรหัสผ่านถูกใช้ไปแล้วหรือไม่ถูกต้อง" -#: frappe/app.py:388 frappe/public/js/frappe/request.js:149 +#: frappe/app.py:391 frappe/public/js/frappe/request.js:149 msgid "The resource you are looking for is not available" msgstr "ทรัพยากรที่คุณกำลังมองหาไม่มีอยู่" @@ -25961,12 +26072,12 @@ 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:965 +#: frappe/public/js/frappe/views/reports/query_report.js:973 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 +#: frappe/website/doctype/web_form/web_form.js:318 msgid "There can be only 9 Page Break fields in a Web Form" msgstr "" @@ -25990,11 +26101,11 @@ msgstr "" msgid "There is nothing new to show you right now." msgstr "" -#: frappe/core/doctype/file/file.py:640 frappe/utils/file_manager.py:372 +#: frappe/core/doctype/file/file.py:643 frappe/utils/file_manager.py:372 msgid "There is some problem with the file url: {0}" msgstr "มีปัญหากับ URL ของไฟล์: {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:962 +#: frappe/public/js/frappe/views/reports/query_report.js:970 msgid "There is {0} with the same filters already in the queue:" msgstr "มี {0} ที่มีตัวกรองเดียวกันอยู่ในคิวแล้ว:" @@ -26006,7 +26117,7 @@ msgstr "ต้องมีอย่างน้อยหนึ่งกฎสิ msgid "There was an error building this page" msgstr "เกิดข้อผิดพลาดในการสร้างหน้านี้" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:182 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:196 msgid "There was an error saving filters" msgstr "เกิดข้อผิดพลาดในการบันทึกตัวกรอง" @@ -26063,7 +26174,7 @@ msgstr "การตรวจสอบสิทธิ์ของบุคคล msgid "This Currency is disabled. Enable to use in transactions" msgstr "สกุลเงินนี้ถูกปิดใช้งาน เปิดใช้งานเพื่อใช้ในธุรกรรม" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:391 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:405 msgid "This Kanban Board will be private" msgstr "กระดาน Kanban นี้จะเป็นส่วนตัว" @@ -26100,7 +26211,7 @@ msgstr "การกระทำนี้อนุญาตเฉพาะสำ msgid "This cannot be undone" msgstr "ไม่สามารถย้อนกลับได้" -#: frappe/desk/doctype/number_card/number_card.js:480 +#: frappe/desk/doctype/number_card/number_card.js:484 msgctxt "Number Card" msgid "This card is visible only to Administrator and System Managers by default. Set a DocType to share with users who have read access." msgstr "" @@ -26123,7 +26234,7 @@ msgstr "ประเภทเอกสารนี้ไม่มีฟิลด msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes." msgstr "ประเภทเอกสารนี้มีการย้ายข้อมูลที่ค้างอยู่ ให้รัน 'bench migrate' ก่อนแก้ไขประเภทเอกสารเพื่อหลีกเลี่ยงการสูญเสียการเปลี่ยนแปลง" -#: frappe/model/delete_doc.py:113 +#: frappe/model/delete_doc.py:153 msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time." msgstr "ไม่สามารถลบเอกสารนี้ได้ในขณะนี้เนื่องจากกำลังถูกแก้ไขโดยผู้ใช้อื่น โปรดลองอีกครั้งหลังจากสักครู่" @@ -26165,7 +26276,7 @@ msgid "This field will appear only if the fieldname defined here has value OR th "eval:doc.age>18" msgstr "" -#: frappe/core/doctype/file/file.py:522 +#: frappe/core/doctype/file/file.py:525 msgid "This file is attached to a protected document and cannot be deleted." msgstr "ไฟล์นี้แนบกับเอกสารที่ได้รับการป้องกันและไม่สามารถลบได้" @@ -26200,7 +26311,7 @@ msgstr "ผู้ให้บริการตำแหน่งทางภู msgid "This goes above the slideshow." msgstr "สิ่งนี้จะอยู่เหนือสไลด์โชว์" -#: frappe/public/js/frappe/views/reports/query_report.js:2189 +#: frappe/public/js/frappe/views/reports/query_report.js:2197 msgid "This is a background report. Please set the appropriate filters and then generate a new one." msgstr "นี่คือรายงานพื้นหลัง โปรดตั้งค่าตัวกรองที่เหมาะสมแล้วสร้างใหม่" @@ -26250,7 +26361,7 @@ msgstr "สิ่งนี้อาจถูกพิมพ์ในหลาย msgid "This month" msgstr "เดือนนี้" -#: frappe/public/js/frappe/views/reports/query_report.js:1037 +#: frappe/public/js/frappe/views/reports/query_report.js:1045 msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead." msgstr "รายงานนี้มี {0} แถวและใหญ่เกินไปที่จะแสดงในเบราว์เซอร์ คุณสามารถ {1} รายงานนี้แทน" @@ -26258,7 +26369,7 @@ msgstr "รายงานนี้มี {0} แถวและใหญ่เ msgid "This report was generated on {0}" msgstr "รายงานนี้ถูกสร้างขึ้นเมื่อ {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:853 +#: frappe/public/js/frappe/views/reports/query_report.js:861 msgid "This report was generated {0}." msgstr "รายงานนี้ถูกสร้างขึ้น {0}" @@ -26400,9 +26511,11 @@ msgstr "" #. Label of the time_zone (Select) field in DocType 'System Settings' #. Label of the time_zone (Autocomplete) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #. 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/core/web_form/edit_profile/edit_profile.json #: frappe/desk/page/setup_wizard/setup_wizard.js:407 #: frappe/website/doctype/web_page_view/web_page_view.json msgid "Time Zone" @@ -26663,7 +26776,7 @@ msgstr "เพื่อส่งออกขั้นตอนนี้เป็ msgid "To generate password click {0}" msgstr "เพื่อสร้างรหัสผ่าน คลิก {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:854 +#: frappe/public/js/frappe/views/reports/query_report.js:862 msgid "To get the updated report, click on {0}." msgstr "เพื่อรับรายงานที่อัปเดต คลิกที่ {0}" @@ -26738,7 +26851,7 @@ msgstr "สลับมุมมองตาราง" msgid "Toggle Sidebar" msgstr "สลับแถบด้านข้าง" -#: frappe/public/js/frappe/list/list_view.js:1964 +#: frappe/public/js/frappe/list/list_view.js:1966 msgctxt "Button in list view menu" msgid "Toggle Sidebar" msgstr "สลับแถบด้านข้าง" @@ -26864,7 +26977,7 @@ msgstr "หัวข้อ" #: frappe/desk/query_report.py:587 #: frappe/public/js/frappe/views/reports/print_grid.html:45 -#: frappe/public/js/frappe/views/reports/query_report.js:1324 +#: frappe/public/js/frappe/views/reports/query_report.js:1332 #: frappe/public/js/frappe/views/reports/report_view.js:1553 msgid "Total" msgstr "รวม" @@ -27021,7 +27134,7 @@ msgstr "การเปลี่ยนผ่าน" msgid "Translatable" msgstr "สามารถแปลได้" -#: frappe/public/js/frappe/views/reports/query_report.js:2244 +#: frappe/public/js/frappe/views/reports/query_report.js:2252 msgid "Translate Data" msgstr "แปลข้อมูล" @@ -27379,7 +27492,7 @@ msgstr "ไม่สามารถส่งอีเมลได้เนื่ msgid "Unable to update event" msgstr "ไม่สามารถอัปเดตกิจกรรมได้" -#: frappe/core/doctype/file/file.py:486 +#: frappe/core/doctype/file/file.py:489 msgid "Unable to write file format for {0}" msgstr "ไม่สามารถเขียนรูปแบบไฟล์สำหรับ {0}" @@ -27388,7 +27501,7 @@ msgstr "ไม่สามารถเขียนรูปแบบไฟล์ msgid "Unassign Condition" msgstr "ยกเลิกการกำหนดเงื่อนไข" -#: frappe/app.py:396 +#: frappe/app.py:399 msgid "Uncaught Exception" msgstr "ข้อยกเว้นที่ไม่ได้จับ" @@ -27404,7 +27517,7 @@ msgstr "เลิกทำ" msgid "Undo last action" msgstr "เลิกทำการกระทำล่าสุด" -#: frappe/database/query.py:1495 +#: frappe/database/query.py:1497 msgid "Unescaped quotes in string literal: {0}" msgstr "" @@ -27451,7 +27564,7 @@ msgstr "คอลัมน์ที่ไม่ทราบ: {0}" msgid "Unknown Rounding Method: {}" msgstr "วิธีการปัดเศษที่ไม่ทราบ: {}" -#: frappe/auth.py:316 +#: frappe/auth.py:319 msgid "Unknown User" msgstr "ผู้ใช้ที่ไม่ทราบ" @@ -27517,8 +27630,8 @@ msgstr "พารามิเตอร์ยกเลิกการสมัค msgid "Unsubscribed" msgstr "ยกเลิกการสมัครสมาชิกแล้ว" -#: frappe/database/query.py:653 frappe/database/query.py:1387 -#: frappe/database/query.py:1397 +#: frappe/database/query.py:655 frappe/database/query.py:1389 +#: frappe/database/query.py:1399 msgid "Unsupported function or invalid field name: {0}" msgstr "" @@ -27552,7 +27665,7 @@ msgstr "กิจกรรมที่กำลังจะมาถึงสำ #: 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:427 +#: frappe/public/js/frappe/form/grid_row.js:428 msgid "Update" msgstr "อัปเดต" @@ -27586,6 +27699,11 @@ msgstr "อัปเดตคำสั่งซื้อ" msgid "Update Password" msgstr "อัปเดตรหัสผ่าน" +#. Title of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Update Profile" +msgstr "" + #. Label of the update_series (Section Break) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -27801,11 +27919,7 @@ msgstr "ใช้รหัสอีเมลที่แตกต่าง" msgid "Use if the default settings don't seem to detect your data correctly" msgstr "ใช้หากการตั้งค่าเริ่มต้นดูเหมือนจะไม่ตรวจจับข้อมูลของคุณอย่างถูกต้อง" -#: frappe/model/db_query.py:436 -msgid "Use of function {0} in field is restricted" -msgstr "การใช้ฟังก์ชัน {0} ในฟิลด์ถูกจำกัด" - -#: frappe/model/db_query.py:413 +#: frappe/model/db_query.py:411 msgid "Use of sub-query or function is restricted" msgstr "การใช้คำสั่งย่อยหรือฟังก์ชันถูกจำกัด" @@ -28027,12 +28141,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:1944 +#: frappe/public/js/frappe/views/reports/query_report.js:1952 #: frappe/public/js/frappe/views/reports/report_view.js:1761 msgid "User Permissions" msgstr "สิทธิ์ของผู้ใช้" -#: frappe/public/js/frappe/list/list_view.js:1922 +#: frappe/public/js/frappe/list/list_view.js:1924 msgctxt "Button in list view menu" msgid "User Permissions" msgstr "สิทธิ์ของผู้ใช้" @@ -28176,7 +28290,7 @@ msgstr "ผู้ใช้ {0} ปลอมตัวเป็น {1}" msgid "User {0} is disabled" msgstr "ผู้ใช้ {0} ถูกปิดใช้งาน" -#: frappe/sessions.py:242 +#: frappe/sessions.py:243 msgid "User {0} is disabled. Please contact your System Manager." msgstr "ผู้ใช้ {0} ถูกปิดใช้งาน โปรดติดต่อผู้จัดการระบบของคุณ" @@ -28353,7 +28467,7 @@ msgstr "ค่าไม่สามารถเป็นค่าลบได้ msgid "Value for a check field can be either 0 or 1" msgstr "ค่าของฟิลด์ตรวจสอบสามารถเป็น 0 หรือ 1" -#: frappe/custom/doctype/customize_form/customize_form.py:612 +#: frappe/custom/doctype/customize_form/customize_form.py:616 msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters" msgstr "ค่าของฟิลด์ {0} ยาวเกินไปใน {1} ความยาวควรน้อยกว่า {2} ตัวอักษร" @@ -28474,7 +28588,7 @@ msgstr "ดูทั้งหมด" msgid "View Audit Trail" msgstr "ดูเส้นทางการตรวจสอบ" -#: frappe/core/doctype/user/user.js:156 +#: frappe/core/doctype/user/user.js:144 msgid "View Doctype Permissions" msgstr "ดูสิทธิ์ประเภทเอกสาร" @@ -28486,7 +28600,7 @@ msgstr "ดูไฟล์" msgid "View Full Log" msgstr "ดูบันทึกทั้งหมด" -#: frappe/public/js/frappe/views/treeview.js:484 +#: frappe/public/js/frappe/views/treeview.js:486 #: frappe/public/js/frappe/widgets/quick_list_widget.js:258 msgid "View List" msgstr "ดูรายการ" @@ -28496,7 +28610,7 @@ msgstr "ดูรายการ" msgid "View Log" msgstr "ดูบันทึก" -#: frappe/core/doctype/user/user.js:147 +#: frappe/core/doctype/user/user.js:135 #: frappe/core/doctype/user_permission/user_permission.js:24 msgid "View Permitted Documents" msgstr "ดูเอกสารที่อนุญาต" @@ -28612,6 +28726,7 @@ msgid "Warehouse" msgstr "คลังสินค้า" #. Option for the 'Style' (Select) field in DocType 'Workflow State' +#: frappe/public/js/frappe/router.js:613 #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Warning" msgstr "คำเตือน" @@ -29257,7 +29372,7 @@ msgstr "อัปเดตเวิร์กโฟลว์สำเร็จ" msgid "Workspace" msgstr "พื้นที่ทำงาน" -#: frappe/public/js/frappe/router.js:175 +#: frappe/public/js/frappe/router.js:180 msgid "Workspace {0} does not exist" msgstr "พื้นที่ทำงาน {0} ไม่มีอยู่" @@ -29379,7 +29494,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:1225 +#: frappe/public/js/frappe/views/reports/query_report.js:1233 msgid "Y Field" msgstr "ฟิลด์ Y" @@ -29441,7 +29556,7 @@ msgstr "สีเหลือง" #: frappe/public/js/form_builder/utils.js:336 #: frappe/public/js/frappe/form/controls/link.js:498 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1665 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 #: frappe/website/doctype/help_article/templates/help_article.html:25 msgid "Yes" msgstr "ใช่" @@ -29477,6 +29592,10 @@ msgstr "" msgid "You added {0} rows to {1}" msgstr "" +#: frappe/public/js/frappe/router.js:642 +msgid "You are about to open an external link. To confirm, click the link again." +msgstr "" + #: frappe/public/js/frappe/dom.js:438 msgid "You are connected to internet." msgstr "คุณเชื่อมต่อกับอินเทอร์เน็ตแล้ว" @@ -29520,7 +29639,7 @@ msgstr "คุณไม่ได้รับอนุญาตให้แก้ msgid "You are not allowed to export {} doctype" msgstr "คุณไม่ได้รับอนุญาตให้นำออกประเภทเอกสาร {}" -#: frappe/public/js/frappe/views/treeview.js:448 +#: frappe/public/js/frappe/views/treeview.js:450 msgid "You are not allowed to print this report" msgstr "คุณไม่ได้รับอนุญาตให้พิมพ์รายงานนี้" @@ -29528,7 +29647,7 @@ msgstr "คุณไม่ได้รับอนุญาตให้พิม msgid "You are not allowed to send emails related to this document" msgstr "คุณไม่ได้รับอนุญาตให้ส่งอีเมลที่เกี่ยวข้องกับเอกสารนี้" -#: frappe/website/doctype/web_form/web_form.py:605 +#: frappe/website/doctype/web_form/web_form.py:632 msgid "You are not allowed to update this Web Form Document" msgstr "คุณไม่ได้รับอนุญาตให้อัปเดตเอกสารฟอร์มเว็บนี้" @@ -29601,11 +29720,11 @@ msgstr "คุณสามารถเปลี่ยนนโยบายกา msgid "You can continue with the onboarding after exploring this page" msgstr "คุณสามารถดำเนินการต่อกับการเริ่มต้นใช้งานหลังจากสำรวจหน้านี้" -#: frappe/model/delete_doc.py:137 +#: frappe/model/delete_doc.py:177 msgid "You can disable this {0} instead of deleting it." msgstr "คุณสามารถปิดใช้งาน {0} นี้แทนการลบได้" -#: frappe/core/doctype/file/file.py:758 +#: frappe/core/doctype/file/file.py:761 msgid "You can increase the limit from System Settings." msgstr "คุณสามารถเพิ่มขีดจำกัดจากการตั้งค่าระบบ" @@ -29655,11 +29774,11 @@ msgstr "คุณสามารถใช้ฟอร์มปรับแต่ msgid "You can use wildcard %" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:390 +#: frappe/custom/doctype/customize_form/customize_form.py:394 msgid "You can't set 'Options' for field {0}" msgstr "คุณไม่สามารถตั้งค่า 'ตัวเลือก' สำหรับฟิลด์ {0} ได้" -#: frappe/custom/doctype/customize_form/customize_form.py:394 +#: frappe/custom/doctype/customize_form/customize_form.py:398 msgid "You can't set 'Translatable' for field {0}" msgstr "คุณไม่สามารถตั้งค่า 'แปลได้' สำหรับฟิลด์ {0} ได้" @@ -29677,7 +29796,7 @@ msgstr "คุณยกเลิกเอกสารนี้ {1}" msgid "You cannot create a dashboard chart from single DocTypes" msgstr "คุณไม่สามารถสร้างแผนภูมิแดชบอร์ดจากประเภทเอกสารเดียวได้" -#: frappe/custom/doctype/customize_form/customize_form.py:386 +#: frappe/custom/doctype/customize_form/customize_form.py:390 msgid "You cannot unset 'Read Only' for field {0}" msgstr "คุณไม่สามารถยกเลิกการตั้งค่า 'อ่านอย่างเดียว' สำหรับฟิลด์ {0} ได้" @@ -29720,11 +29839,11 @@ msgstr "คุณไม่มีสิทธิ์อ่านหรือเล msgid "You do not have enough permissions to access this resource. Please contact your manager to get access." msgstr "คุณไม่มีสิทธิ์เพียงพอที่จะเข้าถึงทรัพยากรนี้ โปรดติดต่อผู้จัดการของคุณเพื่อขอสิทธิ์เข้าถึง" -#: frappe/app.py:381 +#: frappe/app.py:384 msgid "You do not have enough permissions to complete the action" msgstr "คุณไม่มีสิทธิ์เพียงพอที่จะดำเนินการให้เสร็จสิ้น" -#: frappe/database/query.py:529 +#: frappe/database/query.py:531 msgid "You do not have permission to access field: {0}" msgstr "" @@ -29740,7 +29859,7 @@ msgstr "คุณไม่มีสิทธิ์ยกเลิกเอกส msgid "You don't have access to Report: {0}" msgstr "คุณไม่มีสิทธิ์เข้าถึงรายงาน: {0}" -#: frappe/website/doctype/web_form/web_form.py:808 +#: frappe/website/doctype/web_form/web_form.py:835 msgid "You don't have permission to access the {0} DocType." msgstr "คุณไม่มีสิทธิ์เข้าถึงประเภทเอกสาร {0}" @@ -29764,7 +29883,7 @@ msgstr "" msgid "You have been successfully logged out" msgstr "คุณออกจากระบบสำเร็จแล้ว" -#: frappe/custom/doctype/customize_form/customize_form.py:245 +#: frappe/custom/doctype/customize_form/customize_form.py:247 msgid "You have hit the row size limit on database table: {0}" msgstr "คุณถึงขีดจำกัดขนาดแถวในตารางฐานข้อมูล: {0}" @@ -29792,7 +29911,7 @@ msgstr "คุณมี {0} ที่ยังไม่ได้ดู" msgid "You haven't added any Dashboard Charts or Number Cards yet." msgstr "คุณยังไม่ได้เพิ่มแผนภูมิแดชบอร์ดหรือการ์ดตัวเลขใด ๆ" -#: frappe/public/js/frappe/list/list_view.js:501 +#: frappe/public/js/frappe/list/list_view.js:503 msgid "You haven't created a {0} yet" msgstr "คุณยังไม่ได้สร้าง {0}" @@ -29809,11 +29928,11 @@ msgstr "คุณแก้ไขสิ่งนี้ล่าสุด" msgid "You must add atleast one link." msgstr "คุณต้องเพิ่มลิงก์อย่างน้อยหนึ่งลิงก์" -#: frappe/website/doctype/web_form/web_form.py:804 +#: frappe/website/doctype/web_form/web_form.py:831 msgid "You must be logged in to use this form." msgstr "คุณต้องเข้าสู่ระบบเพื่อใช้ฟอร์มนี้" -#: frappe/website/doctype/web_form/web_form.py:645 +#: frappe/website/doctype/web_form/web_form.py:672 msgid "You must login to submit this form" msgstr "คุณต้องเข้าสู่ระบบเพื่อส่งฟอร์มนี้" @@ -29928,6 +30047,10 @@ msgstr "คุณเลิกติดตามเอกสารนี้" msgid "You viewed this" msgstr "คุณดูสิ่งนี้" +#: frappe/public/js/frappe/router.js:653 +msgid "You will be redirected to:" +msgstr "" + #: frappe/core/doctype/user_invitation/user_invitation.py:113 msgid "You've been invited to join {0}" msgstr "" @@ -29973,7 +30096,7 @@ msgstr "ทางลัดของคุณ" msgid "Your account has been deleted" msgstr "บัญชีของคุณถูกลบแล้ว" -#: frappe/auth.py:514 +#: frappe/auth.py:517 msgid "Your account has been locked and will resume after {0} seconds" msgstr "บัญชีของคุณถูกล็อกและจะกลับมาใช้งานได้หลังจาก {0} วินาที" @@ -30039,7 +30162,7 @@ msgstr "คำถามของคุณได้รับแล้ว เร msgid "Your report is being generated in the background. You will receive an email on {0} with a download link once it is ready." msgstr "" -#: frappe/app.py:374 +#: frappe/app.py:377 msgid "Your session has expired, please login again to continue." msgstr "เซสชันของคุณหมดอายุแล้ว โปรดเข้าสู่ระบบอีกครั้งเพื่อดำเนินการต่อ" @@ -30376,7 +30499,7 @@ msgstr "รายการ" msgid "logged in" msgstr "เข้าสู่ระบบแล้ว" -#: frappe/website/doctype/web_form/web_form.js:362 +#: frappe/website/doctype/web_form/web_form.js:363 msgid "login_required" msgstr "ต้องเข้าสู่ระบบ" @@ -30714,7 +30837,7 @@ msgstr "ผ่านการนำเข้าข้อมูล" msgid "via Google Meet" msgstr "ผ่าน Google Meet" -#: frappe/email/doctype/notification/notification.py:403 +#: frappe/email/doctype/notification/notification.py:405 msgid "via Notification" msgstr "ผ่านการแจ้งเตือน" @@ -30824,7 +30947,7 @@ msgstr "แผนภูมิ {0}" msgid "{0} Dashboard" msgstr "แดชบอร์ด {0}" -#: frappe/public/js/frappe/form/grid_row.js:486 +#: frappe/public/js/frappe/form/grid_row.js:487 #: frappe/public/js/frappe/list/list_settings.js:225 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:178 msgid "{0} Fields" @@ -30875,7 +30998,7 @@ msgstr "{0} ไม่อนุญาตให้เปลี่ยน {1} หล msgid "{0} Report" msgstr "รายงาน {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:956 +#: frappe/public/js/frappe/views/reports/query_report.js:964 msgid "{0} Reports" msgstr "รายงาน {0}" @@ -30948,7 +31071,7 @@ msgctxt "Form timeline" msgid "{0} attached {1}" msgstr "{0} แนบ {1}" -#: frappe/core/doctype/system_settings/system_settings.py:152 +#: frappe/core/doctype/system_settings/system_settings.py:153 msgid "{0} can not be more than {1}" msgstr "{0} ต้องไม่เกิน {1}" @@ -31025,7 +31148,7 @@ 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 +#: frappe/database/query.py:710 msgid "{0} fields cannot contain backticks (`): {1}" msgstr "" @@ -31070,7 +31193,7 @@ msgstr "{0} ในแถว {1} ไม่สามารถมีทั้ง UR msgid "{0} is a mandatory field" msgstr "{0} เป็นฟิลด์ที่จำเป็น" -#: frappe/core/doctype/file/file.py:566 +#: frappe/core/doctype/file/file.py:569 msgid "{0} is a not a valid zip file" msgstr "{0} ไม่ใช่ไฟล์ zip ที่ถูกต้อง" @@ -31119,7 +31242,7 @@ msgstr "{0} คล้ายกับ {1}" msgid "{0} is mandatory" msgstr "{0} เป็นสิ่งจำเป็น" -#: frappe/database/query.py:485 +#: frappe/database/query.py:487 msgid "{0} is not a child table of {1}" msgstr "" @@ -31139,7 +31262,7 @@ msgstr "{0} ไม่ใช่ปฏิทินที่ถูกต้อง msgid "{0} is not a valid Cron expression." msgstr "{0} ไม่ใช่นิพจน์ Cron ที่ถูกต้อง" -#: frappe/public/js/frappe/form/controls/dynamic_link.js:27 +#: frappe/public/js/frappe/form/controls/dynamic_link.js:23 msgid "{0} is not a valid DocType for Dynamic Link" msgstr "{0} ไม่ใช่ประเภทเอกสารที่ถูกต้องสำหรับลิงก์แบบไดนามิก" @@ -31176,7 +31299,7 @@ msgstr "{0} ไม่ใช่ฟิลด์หลักที่ถูกต msgid "{0} is not a valid report format. Report format should one of the following {1}" msgstr "{0} ไม่ใช่รูปแบบรายงานที่ถูกต้อง รูปแบบรายงานควรเป็นหนึ่งในสิ่งต่อไปนี้ {1}" -#: frappe/core/doctype/file/file.py:546 +#: frappe/core/doctype/file/file.py:549 msgid "{0} is not a zip file" msgstr "{0} ไม่ใช่ไฟล์ zip" @@ -31224,7 +31347,7 @@ msgstr "{0} ถูกตั้งค่า" msgid "{0} is within {1}" msgstr "{0} อยู่ภายใน {1}" -#: frappe/public/js/frappe/list/list_view.js:1839 +#: frappe/public/js/frappe/list/list_view.js:1841 msgid "{0} items selected" msgstr "{0} รายการที่เลือก" @@ -31310,11 +31433,11 @@ msgid "{0} not found" msgstr "ไม่พบ {0}" #: frappe/core/doctype/report/report.py:427 -#: frappe/public/js/frappe/list/list_view.js:1211 +#: frappe/public/js/frappe/list/list_view.js:1213 msgid "{0} of {1}" msgstr "{0} ของ {1}" -#: frappe/public/js/frappe/list/list_view.js:1213 +#: frappe/public/js/frappe/list/list_view.js:1215 msgid "{0} of {1} ({2} rows with children)" msgstr "{0} ของ {1} ({2} แถวที่มีลูก)" @@ -31364,7 +31487,7 @@ msgstr "{0} ลบการมอบหมายของพวกเขา" msgid "{0} removed {1} rows from {2}" msgstr "" -#: frappe/public/js/frappe/roles_editor.js:62 +#: frappe/public/js/frappe/roles_editor.js:64 msgid "{0} role does not have permission on any doctype" msgstr "บทบาท {0} ไม่มีสิทธิ์ในประเภทเอกสารใด ๆ" @@ -31438,7 +31561,7 @@ msgstr "{0} ถึง {1}" msgid "{0} un-shared this document with {1}" msgstr "{0} ยกเลิกการแชร์เอกสารนี้กับ {1}" -#: frappe/custom/doctype/customize_form/customize_form.py:254 +#: frappe/custom/doctype/customize_form/customize_form.py:256 msgid "{0} updated" msgstr "{0} อัปเดตแล้ว" @@ -31498,7 +31621,7 @@ msgstr "{0} {1} เชื่อมโยงกับเอกสารที่ msgid "{0} {1} not found" msgstr "ไม่พบ {0} {1}" -#: frappe/model/delete_doc.py:248 +#: frappe/model/delete_doc.py:288 msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first." msgstr "{0} {1}: ไม่สามารถลบระเบียนที่ส่งได้ คุณต้อง {2} ยกเลิก {3} ก่อน" @@ -31611,7 +31734,7 @@ msgstr "" msgid "{0}: {1} is set to state {2}" msgstr "{0}: {1} ถูกตั้งค่าเป็นสถานะ {2}" -#: frappe/public/js/frappe/views/reports/query_report.js:1283 +#: frappe/public/js/frappe/views/reports/query_report.js:1291 msgid "{0}: {1} vs {2}" msgstr "{0}: {1} เทียบกับ {2}" @@ -31647,11 +31770,11 @@ msgstr "{{{0}}} ไม่ใช่รูปแบบชื่อฟิลด์ msgid "{} Complete" msgstr "{} เสร็จสมบูรณ์" -#: frappe/utils/data.py:2541 +#: frappe/utils/data.py:2567 msgid "{} Invalid python code on line {}" msgstr "{} โค้ด Python ไม่ถูกต้องในบรรทัด {}" -#: frappe/utils/data.py:2550 +#: frappe/utils/data.py:2576 msgid "{} Possibly invalid python code.
{}" msgstr "{} โค้ด Python อาจไม่ถูกต้อง
{}" @@ -31677,7 +31800,7 @@ msgstr "{} ถูกปิดใช้งาน สามารถเปิด msgid "{} is not a valid date string." msgstr "{} ไม่ใช่สตริงวันที่ที่ถูกต้อง" -#: frappe/commands/utils.py:562 +#: frappe/commands/utils.py:561 msgid "{} not found in PATH! This is required to access the console." msgstr "ไม่พบ {} ใน PATH! จำเป็นต้องใช้เพื่อเข้าถึงคอนโซล" diff --git a/frappe/locale/tr.po b/frappe/locale/tr.po index 5038aa90f7..db547a7990 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-09-21 09:33+0000\n" -"PO-Revision-Date: 2025-09-21 19:57\n" +"POT-Creation-Date: 2025-10-05 09:33+0000\n" +"PO-Revision-Date: 2025-10-06 22:59\n" "Last-Translator: developers@frappe.io\n" "Language-Team: Turkish\n" "MIME-Version: 1.0\n" @@ -78,7 +78,7 @@ msgstr "{1} satırındaki {0} türü için 'Genel Arama' seçeneğine izin veril msgid "'In List View' is not allowed for field {0} of type {1}" msgstr "{1} türündeki {0} alanı için 'Liste Görünümü' seçeneğine izin verilmiyor" -#: frappe/custom/doctype/customize_form/customize_form.py:363 +#: frappe/custom/doctype/customize_form/customize_form.py:367 msgid "'In List View' not allowed for type {0} in row {1}" msgstr "{1} satırındaki {0} türü için 'Liste Görünümü' seçeneğine izin verilmiyor" @@ -122,7 +122,7 @@ msgstr "0 - Taslak; 1 - Gönderildi; 2 -İptal Edildi" msgid "0 is highest" msgstr "0 en yüksek seviyedir" -#: frappe/public/js/frappe/form/grid_row.js:892 +#: frappe/public/js/frappe/form/grid_row.js:893 msgid "1 = True & 0 = False" msgstr "1 = Doğru & 0 = Yanlış" @@ -141,11 +141,11 @@ 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:955 +#: frappe/public/js/frappe/views/reports/query_report.js:963 msgid "1 Report" msgstr "1 Rapor" -#: frappe/tests/test_utils.py:739 +#: frappe/tests/test_utils.py:845 msgid "1 day ago" msgstr "1 gün önce" @@ -154,17 +154,17 @@ msgid "1 hour" msgstr "1 saat" #: frappe/public/js/frappe/utils/pretty_date.js:52 -#: frappe/tests/test_utils.py:737 +#: frappe/tests/test_utils.py:843 msgid "1 hour ago" msgstr "1 Saat Önce" #: frappe/public/js/frappe/utils/pretty_date.js:48 -#: frappe/tests/test_utils.py:735 +#: frappe/tests/test_utils.py:841 msgid "1 minute ago" msgstr "1 Dakika Önce" #: frappe/public/js/frappe/utils/pretty_date.js:66 -#: frappe/tests/test_utils.py:743 +#: frappe/tests/test_utils.py:849 msgid "1 month ago" msgstr "1 Ay Önce" @@ -186,37 +186,37 @@ msgctxt "User added row to child table" msgid "1 row to {0}" msgstr "" -#: frappe/tests/test_utils.py:734 +#: frappe/tests/test_utils.py:840 msgid "1 second ago" msgstr "1 saniye önce" #: frappe/public/js/frappe/utils/pretty_date.js:62 -#: frappe/tests/test_utils.py:741 +#: frappe/tests/test_utils.py:847 msgid "1 week ago" msgstr "1 Hafta Önce" #: frappe/public/js/frappe/utils/pretty_date.js:70 -#: frappe/tests/test_utils.py:745 +#: frappe/tests/test_utils.py:851 msgid "1 year ago" msgstr "1 Yıl Önce" -#: frappe/tests/test_utils.py:738 +#: frappe/tests/test_utils.py:844 msgid "2 hours ago" msgstr "2 saat önce" -#: frappe/tests/test_utils.py:744 +#: frappe/tests/test_utils.py:850 msgid "2 months ago" msgstr "2 ay önce" -#: frappe/tests/test_utils.py:742 +#: frappe/tests/test_utils.py:848 msgid "2 weeks ago" msgstr "2 hafta önce" -#: frappe/tests/test_utils.py:746 +#: frappe/tests/test_utils.py:852 msgid "2 years ago" msgstr "2 yıl önce" -#: frappe/tests/test_utils.py:736 +#: frappe/tests/test_utils.py:842 msgid "3 minutes ago" msgstr "3 dakika önce" @@ -232,7 +232,7 @@ msgstr "4 Saat" msgid "5 Records" msgstr "5 Kayıt" -#: frappe/tests/test_utils.py:740 +#: frappe/tests/test_utils.py:846 msgid "5 days ago" msgstr "5 Gün Önce" @@ -268,6 +268,16 @@ msgstr "{0} geçerli bir URL değil" 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 "
Formunuzu bozabileceği için lütfen güncellemeyin. Özellikleri ayarlamak için Form Görünümünü Özelleştir ve Özel Alanları kullanın!
" +#. Introduction text of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "

Request a file containing your personally identifiable information (PII) that is saved on our system. The file will be in JSON format and is sent to you by email. If you would like to have your PII deleted from our system, please make a request to delete data.

" +msgstr "" + +#. Introduction text of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "

Send a request to delete your account and personally identifiable information (PII) that is stored on our system. You will receive an email to verify your request. Once the request is verified we will take care of deleting your PII. If you just want to check what PII we have stored, you can request your data.

" +msgstr "" + #. Content of the 'Help HTML' (HTML) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -753,6 +763,11 @@ msgstr "Bir DocType'ın adı bir harfle başlamalıdır ve yalnızca harfler, sa msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three." msgstr "" +#. Success message of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "A download link with your data will be sent to the email address associated with your account." +msgstr "" + #: frappe/custom/doctype/custom_field/custom_field.py:175 msgid "A field with the name {0} already exists in {1}" msgstr "{0} adlı bir alan {1} içinde zaten mevcut" @@ -879,7 +894,7 @@ msgstr "" #. 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.js:452 frappe/core/doctype/user/user.json +#: frappe/core/doctype/user/user.js:459 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 @@ -898,7 +913,7 @@ msgstr "Relay Sunucusuyla etkileşim kurmak için API Anahtarı ve Gizli Anahtar msgid "API Key cannot be regenerated" msgstr "API Anahtarı yeniden oluşturulamaz." -#: frappe/core/doctype/user/user.js:449 +#: frappe/core/doctype/user/user.js:456 msgid "API Keys" msgstr "" @@ -922,7 +937,7 @@ msgstr "API İstek Günlüğü" #. 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.js:459 frappe/core/doctype/user/user.json +#: frappe/core/doctype/user/user.js:466 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" @@ -1008,7 +1023,7 @@ msgstr "Erişim Anahtarı" msgid "Access Token URL" msgstr "Erişim Token URL'si" -#: frappe/auth.py:491 +#: frappe/auth.py:494 msgid "Access not allowed from this IP Address" msgstr "Bu IP Adresinden erişime izin verilmiyor" @@ -1124,7 +1139,7 @@ msgstr "Eylem {0} {1} {2} tarihinde başarısız oldu. Görüntüle {3}" #: 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:842 +#: frappe/public/js/frappe/views/reports/query_report.js:850 msgid "Actions" msgstr "İşlemler" @@ -1181,7 +1196,7 @@ msgstr "Aktivite Günlüğü" #: 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:501 +#: frappe/public/js/frappe/form/grid_row.js:502 #: 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 @@ -1192,7 +1207,7 @@ msgstr "Aktivite Günlüğü" msgid "Add" msgstr "Yeni" -#: frappe/public/js/frappe/form/grid_row.js:454 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Add / Remove Columns" msgstr "Sütun Ekle / Kaldır" @@ -1237,8 +1252,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:1832 -#: frappe/public/js/frappe/views/reports/query_report.js:1835 +#: frappe/public/js/frappe/views/reports/query_report.js:1840 +#: frappe/public/js/frappe/views/reports/query_report.js:1843 #: frappe/public/js/frappe/views/reports/report_view.js:360 #: frappe/public/js/frappe/views/reports/report_view.js:385 #: frappe/public/js/print_format_builder/Field.vue:112 @@ -1332,7 +1347,7 @@ msgstr "Abonelere Ekle " msgid "Add Tags" msgstr "Etiket Ekle" -#: frappe/public/js/frappe/list/list_view.js:2149 +#: frappe/public/js/frappe/list/list_view.js:2151 msgctxt "Button in list view actions menu" msgid "Add Tags" msgstr "Etiket Ekle" @@ -1713,11 +1728,11 @@ msgstr "Uyarı" msgid "Alerts and Notifications" msgstr "Uyarılar ve Bildirimler" -#: frappe/database/query.py:1608 +#: frappe/database/query.py:1610 msgid "Alias cannot be a SQL keyword: {0}" msgstr "" -#: frappe/database/query.py:1533 +#: frappe/database/query.py:1535 msgid "Alias must be a string" msgstr "" @@ -2165,6 +2180,12 @@ msgstr "Durum bağımlılığı alanı da ekleniyor {0}" msgid "Alternative Email ID" msgstr "Alternatif E-posta Kimliği" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Always" +msgstr "" + #. Label of the always_bcc (Data) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Always BCC Address" @@ -2241,6 +2262,11 @@ msgstr "Değişikliğe İzin Verilmiyor" msgid "Amendment naming rules updated." msgstr "Değişiklik adlandırma kuralları güncellendi." +#. Success message of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "An email to verify your request has been sent to your email address. Please verify your request to complete the process." +msgstr "" + #: 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" @@ -2423,7 +2449,7 @@ msgstr "Uygulandı" msgid "Apply" msgstr "Uygula" -#: frappe/public/js/frappe/list/list_view.js:2134 +#: frappe/public/js/frappe/list/list_view.js:2136 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" msgstr "Arama Kuralı Uygula" @@ -2508,7 +2534,7 @@ msgstr "Arşivlenmiş Sütunlar" msgid "Are you sure you want to cancel the invitation?" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2113 +#: frappe/public/js/frappe/list/list_view.js:2115 msgid "Are you sure you want to clear the assignments?" msgstr "Atamaları temizlemek istediğinizen emin misiniz?" @@ -2544,7 +2570,7 @@ msgstr "" 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:969 +#: frappe/public/js/frappe/views/reports/query_report.js:977 msgid "Are you sure you want to generate a new report?" msgstr "Yeni bir rapor oluşturmak istediğinizden emin misiniz?" @@ -2552,7 +2578,7 @@ msgstr "Yeni bir rapor oluşturmak istediğinizden emin misiniz?" msgid "Are you sure you want to merge {0} with {1}?" msgstr "{0} ile {1} öğesini birleştirmek istediğinizden emin misiniz?" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:108 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:118 msgid "Are you sure you want to proceed?" msgstr "Devam etmek istediğinizden emin misiniz?" @@ -2607,6 +2633,12 @@ msgstr "Doküman paylaşımı devre dışı olduğundan lütfen atamadan önce o msgid "As per your request, your account and data on {0} associated with email {1} has been permanently deleted" msgstr "Talebiniz doğrultusunda, hesabınız ve {1} e-postasıyla ilişkili {0} adresindeki verileriniz kalıcı olarak silinmiştir" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Ask" +msgstr "" + #. Label of the assign_condition (Code) field in DocType 'Assignment Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Assign Condition" @@ -2616,7 +2648,7 @@ msgstr "Koşulu Ata" msgid "Assign To" msgstr "Ata" -#: frappe/public/js/frappe/list/list_view.js:2095 +#: frappe/public/js/frappe/list/list_view.js:2097 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "Ata" @@ -2759,7 +2791,7 @@ msgstr "Atamalar" msgid "Asynchronous" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:696 +#: frappe/public/js/frappe/form/grid_row.js:697 msgid "At least one column is required to show in the grid." msgstr "Tabloda en az bir sütunun gösterilmesi zorunludur." @@ -3740,7 +3772,7 @@ msgstr "Toplu Silme" msgid "Bulk Edit" msgstr "Toplu Düzenleme" -#: frappe/public/js/frappe/form/grid.js:1189 +#: frappe/public/js/frappe/form/grid.js:1190 msgid "Bulk Edit {0}" msgstr "Toplu {0} Düzenleme" @@ -4032,7 +4064,7 @@ msgstr "{0} mevcut olmadığı için {0} adresini {1} olarak yeniden adlandıram #. 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/doctype/doctype_list.js:131 #: frappe/core/doctype/user_document_type/user_document_type.json #: frappe/core/doctype/user_invitation/user_invitation.js:17 #: frappe/email/doctype/notification/notification.json @@ -4040,7 +4072,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:2204 +#: frappe/public/js/frappe/list/list_view.js:2206 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "İptal" @@ -4058,7 +4090,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:2209 +#: frappe/public/js/frappe/list/list_view.js:2211 msgctxt "Title of confirmation dialog" msgid "Cancel {0} documents?" msgstr "{0} belge iptal edilsin mi?" @@ -4111,7 +4143,7 @@ msgstr "Kaldırılamıyor" msgid "Cannot Update After Submit" msgstr "Belge Gönderildikten Sonra Güncelleme Yapılamaz" -#: frappe/core/doctype/file/file.py:643 +#: frappe/core/doctype/file/file.py:646 msgid "Cannot access file path {0}" msgstr "Dosya yoluna erişilemiyor {0}" @@ -4159,7 +4191,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:379 +#: frappe/model/delete_doc.py:419 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ş." @@ -4239,7 +4271,7 @@ msgstr "Gönderilebilir olmayan bir doküman türü için {0} etkinleştirilemez msgid "Cannot find file {} on disk" msgstr "{} dosyası diskte bulunamadı" -#: frappe/core/doctype/file/file.py:583 +#: frappe/core/doctype/file/file.py:586 msgid "Cannot get file contents of a Folder" msgstr "Bir Klasörün dosya içerikleri alınamıyor" @@ -4247,7 +4279,7 @@ msgstr "Bir Klasörün dosya içerikleri alınamıyor" msgid "Cannot have multiple printers mapped to a single print format." msgstr "Tek bir yazdırma biçimine birden fazla yazıcı ile eşleşme yapılamaz." -#: frappe/public/js/frappe/form/grid.js:1133 +#: frappe/public/js/frappe/form/grid.js:1134 msgid "Cannot import table with more than 5000 rows." msgstr "" @@ -4263,7 +4295,7 @@ msgstr "Aşağıdaki koşul başarısız olduğundan eşleme yapılamıyor:" msgid "Cannot match column {0} with any field" msgstr "{0} sütunu herhangi bir alanla eşleştirilemiyor" -#: frappe/public/js/frappe/form/grid_row.js:175 +#: frappe/public/js/frappe/form/grid_row.js:176 msgid "Cannot move row" msgstr "Satır taşınamıyor" @@ -4292,11 +4324,11 @@ msgstr "{0} gönderilemiyor." msgid "Cannot update {0}" msgstr "{0} güncellenemiyor" -#: frappe/model/db_query.py:1130 +#: frappe/model/db_query.py:1136 msgid "Cannot use sub-query here." msgstr "" -#: frappe/model/db_query.py:1162 +#: frappe/model/db_query.py:1168 msgid "Cannot use {0} in order/group by" msgstr "{0} sıraya/gruplamaya göre kullanılamaz" @@ -4568,11 +4600,11 @@ msgstr "" #. Description of the 'Is Child Table' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:52 +#: frappe/core/doctype/doctype/doctype_list.js:53 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 +#: frappe/database/query.py:662 msgid "Child query fields for '{0}' must be a list or tuple." msgstr "" @@ -4628,7 +4660,7 @@ msgstr "Temizle ve Şablon Ekle" msgid "Clear All" msgstr "Temizle" -#: frappe/public/js/frappe/list/list_view.js:2110 +#: frappe/public/js/frappe/list/list_view.js:2112 msgctxt "Button in list view actions menu" msgid "Clear Assignment" msgstr "Atamayı Temizle" @@ -4722,7 +4754,7 @@ msgstr "Dinamik Filtreleri Ayarlamak için Tıklayın" msgid "Click to Set Filters" msgstr "Filtreleri Ayarlamak İçin Tıklayın" -#: frappe/public/js/frappe/list/list_view.js:739 +#: frappe/public/js/frappe/list/list_view.js:741 msgid "Click to sort by {0}" msgstr "Sıralama Yapmak İçin Tıklayın" @@ -4900,7 +4932,7 @@ msgctxt "Shrink code field." msgid "Collapse" msgstr "Daralt" -#: frappe/public/js/frappe/views/reports/query_report.js:2113 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 #: frappe/public/js/frappe/views/treeview.js:123 msgid "Collapse All" msgstr "Tümünü Daralt" @@ -4955,7 +4987,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:1233 +#: frappe/public/js/frappe/views/reports/query_report.js:1241 #: frappe/public/js/frappe/widgets/widget_dialog.js:546 #: frappe/public/js/frappe/widgets/widget_dialog.js:694 #: frappe/website/doctype/color/color.json @@ -5011,11 +5043,11 @@ msgstr "Sütun Adı" msgid "Column Name cannot be empty" msgstr "Sütun Adı boş olamaz" -#: frappe/public/js/frappe/form/grid_row.js:454 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Column Width" msgstr "Sütun Genişliği" -#: frappe/public/js/frappe/form/grid_row.js:661 +#: frappe/public/js/frappe/form/grid_row.js:662 msgid "Column width cannot be zero." msgstr "Sütun genişliği sıfır olamaz." @@ -5042,7 +5074,7 @@ msgstr "Sütunlar" msgid "Columns / Fields" msgstr "Sütunlar / Alanlar" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:397 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:411 msgid "Columns based on" msgstr "Sütun Ayarlaması" @@ -5306,7 +5338,7 @@ msgstr "Yapılandırma" msgid "Configure Chart" msgstr "Grafiği Yapılandır" -#: frappe/public/js/frappe/form/grid_row.js:406 +#: frappe/public/js/frappe/form/grid_row.js:407 msgid "Configure Columns" msgstr "Sütunları Yapılandır" @@ -5333,7 +5365,7 @@ msgstr "Değiştirilen belgelerin nasıl isimlendirileceğini yapılandırın.{0} için özelleştirmeler şuraya aktarıldı:
{1}" msgid "Customize" msgstr "Özelleştir" -#: frappe/public/js/frappe/list/list_view.js:1947 +#: frappe/public/js/frappe/list/list_view.js:1949 msgctxt "Button in list view menu" msgid "Customize" msgstr "Özelleştir" @@ -6238,7 +6270,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:343 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 msgid "Customize Form" msgstr "Form Özelleştir" @@ -6469,7 +6501,7 @@ msgstr "Veri İçe Aktarma Günlüğü" msgid "Data Import Template" msgstr "Veri İçe Aktarma Şablonu" -#: frappe/custom/doctype/customize_form/customize_form.py:615 +#: frappe/custom/doctype/customize_form/customize_form.py:619 msgid "Data Too Long" msgstr "Veri Çok Uzun" @@ -6500,7 +6532,7 @@ msgstr "Veritabanı Satır Boyutu Kullanımı" msgid "Database Storage Usage By Tables" msgstr "Tablolara Göre Veritabanı Depolama Kullanımı" -#: frappe/custom/doctype/customize_form/customize_form.py:249 +#: frappe/custom/doctype/customize_form/customize_form.py:251 msgid "Database Table Row Size Limit" msgstr "Veritabanı Tablo Satır Boyutu Sınırı" @@ -6870,13 +6902,13 @@ msgstr "Gecikti" #: frappe/public/js/frappe/form/toolbar.js:464 #: frappe/public/js/frappe/views/reports/report_view.js:1749 #: frappe/public/js/frappe/views/treeview.js:329 -#: frappe/public/js/frappe/web_form/web_form_list.js:282 +#: frappe/public/js/frappe/web_form/web_form_list.js:283 #: frappe/templates/discussions/reply_card.html:35 #: frappe/templates/discussions/reply_section.html:29 msgid "Delete" msgstr "Sil" -#: frappe/public/js/frappe/list/list_view.js:2172 +#: frappe/public/js/frappe/list/list_view.js:2174 msgctxt "Button in list view actions menu" msgid "Delete" msgstr "Sil" @@ -6909,7 +6941,7 @@ msgstr "Sütun Sil" msgid "Delete Data" msgstr "Verileri Sil" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:106 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:116 msgid "Delete Kanban Board" msgstr "Kanban Panosunu Sil" @@ -6923,7 +6955,7 @@ msgctxt "Title of confirmation dialog" msgid "Delete Tab" msgstr "Sekmeyi Sil" -#: frappe/public/js/frappe/views/reports/query_report.js:936 +#: frappe/public/js/frappe/views/reports/query_report.js:944 msgid "Delete and Generate New" msgstr "Sil ve Yeni Oluştur" @@ -6965,12 +6997,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:2177 +#: frappe/public/js/frappe/list/list_view.js:2179 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:2183 +#: frappe/public/js/frappe/list/list_view.js:2185 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "{0} öğesini kalıcı olarak sil?" @@ -7467,10 +7499,14 @@ msgstr "Yeni Kullanıcı Oluşturmayın" msgid "Do not create new user if user with email does not exist in the system" msgstr "E-postası olan kullanıcı sistemde mevcut değilse yeni kullanıcı oluşturmayın" -#: frappe/public/js/frappe/form/grid.js:1194 +#: frappe/public/js/frappe/form/grid.js:1195 msgid "Do not edit headers which are preset in the template" msgstr "Şablonda önceden ayarlanmış başlıkları düzenlemeyin" +#: frappe/public/js/frappe/router.js:624 +msgid "Do not warn me again about {0}" +msgstr "" + #: frappe/core/doctype/system_settings/system_settings.js:71 msgid "Do you still want to proceed?" msgstr "Hala devam etmek istiyor musunuz?" @@ -7894,7 +7930,7 @@ msgstr "Belge Başlığı" #: 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/public/js/frappe/roles_editor.js:68 #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json #: frappe/workflow/doctype/workflow/workflow.json msgid "Document Type" @@ -7945,15 +7981,15 @@ msgstr "Belge Kilidi Açıldı" msgid "Document follow is not enabled for this user." msgstr "Bu kullanıcı için belge takibi etkinleştirilmedi." -#: frappe/public/js/frappe/list/list_view.js:1300 +#: frappe/public/js/frappe/list/list_view.js:1302 msgid "Document has been cancelled" msgstr "Belge iptal edildi" -#: frappe/public/js/frappe/list/list_view.js:1299 +#: frappe/public/js/frappe/list/list_view.js:1301 msgid "Document has been submitted" msgstr "Belge Gönderildi" -#: frappe/public/js/frappe/list/list_view.js:1298 +#: frappe/public/js/frappe/list/list_view.js:1300 msgid "Document is in draft state" msgstr "Belge taslak durumundadır" @@ -8095,7 +8131,7 @@ msgstr "Donut" msgid "Double click to edit label" msgstr "Etiketi düzenlemek için çift tıklayın" -#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:467 +#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:474 #: frappe/email/doctype/auto_email_report/auto_email_report.js:8 #: frappe/public/js/frappe/form/grid.js:66 msgid "Download" @@ -8128,7 +8164,7 @@ msgstr "İndirme linki" msgid "Download PDF" msgstr "PDF İndir" -#: frappe/public/js/frappe/views/reports/query_report.js:832 +#: frappe/public/js/frappe/views/reports/query_report.js:840 msgid "Download Report" msgstr "Raporu İndir" @@ -8328,8 +8364,8 @@ msgstr "ESC" #: 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:880 -#: frappe/public/js/frappe/views/reports/query_report.js:1783 +#: frappe/public/js/frappe/views/reports/query_report.js:888 +#: frappe/public/js/frappe/views/reports/query_report.js:1791 #: 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 @@ -8341,7 +8377,7 @@ msgstr "ESC" msgid "Edit" msgstr "Düzenle" -#: frappe/public/js/frappe/list/list_view.js:2258 +#: frappe/public/js/frappe/list/list_view.js:2260 msgctxt "Button in list view actions menu" msgid "Edit" msgstr "Düzenle" @@ -8351,7 +8387,7 @@ msgctxt "Button in web form" msgid "Edit" msgstr "Düzenle" -#: frappe/public/js/frappe/form/grid_row.js:349 +#: frappe/public/js/frappe/form/grid_row.js:350 msgctxt "Edit grid row" msgid "Edit" msgstr "Düzenle" @@ -8380,7 +8416,7 @@ msgstr "HTML Kodunu Düzenle" msgid "Edit DocType" msgstr "DocType Düzenle" -#: frappe/public/js/frappe/list/list_view.js:1974 +#: frappe/public/js/frappe/list/list_view.js:1976 msgctxt "Button in list view menu" msgid "Edit DocType" msgstr "DocType Düzenle" @@ -8500,7 +8536,7 @@ msgstr "{0} Düzenle" #. 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/core/doctype/doctype/doctype_list.js:58 #: frappe/custom/doctype/customize_form/customize_form.json msgid "Editable Grid" msgstr "Düzenlenebilir Tablo" @@ -8545,6 +8581,8 @@ msgstr "Element Seçici" #. 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' +#. Label of a field in the request-data Web Form +#. Label of a field in the request-to-delete-data Web Form #: frappe/automation/workspace/tools/tools.json #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/custom_docperm/custom_docperm.json @@ -8563,6 +8601,8 @@ msgstr "Element Seçici" #: 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/website/web_form/request_data/request_data.json +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json #: frappe/www/login.html:8 frappe/www/login.py:104 msgid "Email" msgstr "E-posta" @@ -8794,7 +8834,7 @@ msgstr "E-posta spam olarak işaretlendi" msgid "Email has been moved to trash" msgstr "E-posta çöp kutusuna taşındı" -#: frappe/core/doctype/user/user.js:278 +#: frappe/core/doctype/user/user.js:266 msgid "Email is mandatory to create User Email" msgstr "" @@ -8837,7 +8877,7 @@ 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 +#: frappe/database/query.py:1539 msgid "Empty alias is not allowed" msgstr "" @@ -8845,7 +8885,7 @@ msgstr "" msgid "Empty column" msgstr "Boş sütun" -#: frappe/database/query.py:1455 +#: frappe/database/query.py:1457 msgid "Empty string arguments are not allowed" msgstr "" @@ -9301,9 +9341,9 @@ msgstr "İstemci Komut Dosyasında Hata." msgid "Error in Header/Footer Script" msgstr "Üstbilgi/Altbilgi Kodunda Hata" -#: frappe/email/doctype/notification/notification.py:640 -#: frappe/email/doctype/notification/notification.py:780 -#: frappe/email/doctype/notification/notification.py:786 +#: frappe/email/doctype/notification/notification.py:642 +#: frappe/email/doctype/notification/notification.py:782 +#: frappe/email/doctype/notification/notification.py:788 msgid "Error in Notification" msgstr "Hata Bildirimi" @@ -9323,7 +9363,7 @@ msgstr "" msgid "Error while connecting to email account {0}" msgstr "E-posta hesabına bağlanırken hata oluştu {0}" -#: frappe/email/doctype/notification/notification.py:777 +#: frappe/email/doctype/notification/notification.py:779 msgid "Error while evaluating Notification {0}. Please fix your template." msgstr "{0} Bildirim değerlendirilirken hata oluştu. Lütfen şablonunuzu düzeltin." @@ -9484,7 +9524,7 @@ msgstr "" msgid "Executing..." msgstr "Çalıştırılıyor..." -#: frappe/public/js/frappe/views/reports/query_report.js:2132 +#: frappe/public/js/frappe/views/reports/query_report.js:2140 msgid "Execution Time: {0} sec" msgstr "Oluşturma Süresi: {0} sn" @@ -9510,12 +9550,12 @@ msgctxt "Enlarge code field." msgid "Expand" msgstr "Genişlet" -#: frappe/public/js/frappe/views/reports/query_report.js:2113 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 #: frappe/public/js/frappe/views/treeview.js:133 msgid "Expand All" msgstr "Tümünü Genişlet" -#: frappe/database/query.py:352 +#: frappe/database/query.py:354 msgid "Expected 'and' or 'or' operator, found: {0}" msgstr "" @@ -9573,13 +9613,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:1820 +#: frappe/public/js/frappe/views/reports/query_report.js:1828 #: frappe/public/js/frappe/views/reports/report_view.js:1629 #: frappe/public/js/frappe/widgets/chart_widget.js:315 msgid "Export" msgstr "Dışarı Aktar" -#: frappe/public/js/frappe/list/list_view.js:2280 +#: frappe/public/js/frappe/list/list_view.js:2282 msgctxt "Button in list view actions menu" msgid "Export" msgstr "Dışarı Aktar" @@ -9772,7 +9812,7 @@ msgstr "" msgid "Failed to connect to server" msgstr "Sunucuya bağlanılamadı" -#: frappe/auth.py:698 +#: frappe/auth.py:701 msgid "Failed to decode token, please provide a valid base64-encoded token." msgstr "" @@ -9936,7 +9976,7 @@ msgstr "Varsayılan Global Arama belgeleri getiriliyor." #: 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:1879 +#: frappe/public/js/frappe/views/reports/query_report.js:1887 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_form_list_column/web_form_list_column.json msgid "Field" @@ -10019,7 +10059,7 @@ msgstr "{0} alanı varolmayan {1} doctype ile referansa sahip." msgid "Field {0} not found." msgstr "{0} alanı bulunamadı." -#: frappe/email/doctype/notification/notification.py:545 +#: frappe/email/doctype/notification/notification.py:547 msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link" msgstr "{1} belgesindeki {0} alanı ne bir Cep telefonu numarası alanı ne de bir Müşteri veya Kullanıcı bağlantısıdır" @@ -10037,7 +10077,7 @@ msgstr "{1} belgesindeki {0} alanı ne bir Cep telefonu numarası alanı ne de b #: 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:454 +#: frappe/public/js/frappe/form/grid_row.js:455 #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Fieldname" msgstr "Alan" @@ -10118,7 +10158,7 @@ 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 +#: frappe/database/query.py:613 msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function" msgstr "" @@ -10146,7 +10186,7 @@ msgstr "AlanTipi" msgid "Fieldtype cannot be changed from {0} to {1}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:589 +#: frappe/custom/doctype/customize_form/customize_form.py:593 msgid "Fieldtype cannot be changed from {0} to {1} in row {2}" msgstr "" @@ -10212,7 +10252,7 @@ msgstr "Dosya Adresi" msgid "File backup is ready" msgstr "Dosya yedeklemesi hazır" -#: frappe/core/doctype/file/file.py:646 +#: frappe/core/doctype/file/file.py:649 msgid "File name cannot have {0}" msgstr "Dosya adı {0} olamaz" @@ -10220,7 +10260,7 @@ msgstr "Dosya adı {0} olamaz" msgid "File not attached" msgstr "Dosya eklenmedi" -#: frappe/core/doctype/file/file.py:756 frappe/public/js/frappe/request.js:200 +#: frappe/core/doctype/file/file.py:759 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 "Dosya boyutu izin verilen maksimum boyutu aştı {0} MB" @@ -10233,7 +10273,7 @@ msgstr "Dosya boyutu çok büyük" msgid "File type of {0} is not allowed" msgstr "{0} dosya türüne izin verilmiyor" -#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:448 +#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:451 msgid "File {0} does not exist" msgstr "{0} dosyası mevcut değil" @@ -10287,11 +10327,11 @@ msgstr "Filtre Adı" msgid "Filter Values" msgstr "Filtre Değerleri" -#: frappe/database/query.py:358 +#: frappe/database/query.py:360 msgid "Filter condition missing after operator: {0}" msgstr "" -#: frappe/database/query.py:425 +#: frappe/database/query.py:427 msgid "Filter fields cannot contain backticks (`)." msgstr "" @@ -10368,7 +10408,7 @@ msgstr "Filtre Seçimi" msgid "Filters applied for {0}" msgstr "Filtreler {0} için Uygulandı" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:188 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:202 msgid "Filters saved" msgstr "Filtreler kaydedildi" @@ -10416,9 +10456,12 @@ msgstr "Hafta Başlangıcı" #. Label of the first_name (Data) field in DocType 'Contact' #. Label of the first_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json #: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:44 -#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:15 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:15 msgid "First Name" msgstr "Adı" @@ -10499,7 +10542,7 @@ msgstr "Klasör Adı" msgid "Folder name should not include '/' (slash)" msgstr "Klasör adı '/' (eğik çizgi) içermemelidir" -#: frappe/core/doctype/file/file.py:494 +#: frappe/core/doctype/file/file.py:497 msgid "Folder {0} is not empty" msgstr "{0} klasörü boş değil" @@ -10702,7 +10745,7 @@ msgstr "Kullanıcı" msgid "For Value" msgstr "Değer İçin" -#: frappe/public/js/frappe/views/reports/query_report.js:2129 +#: frappe/public/js/frappe/views/reports/query_report.js:2137 #: frappe/public/js/frappe/views/reports/report_view.js:108 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." @@ -10987,7 +11030,7 @@ msgstr "Başlama Tarihi" msgid "From Date Field" msgstr "Başlangıç Tarihi Alanı" -#: frappe/public/js/frappe/views/reports/query_report.js:1840 +#: frappe/public/js/frappe/views/reports/query_report.js:1848 msgid "From Document Type" msgstr "Belge Türü" @@ -11049,13 +11092,13 @@ msgstr "" msgid "Function {0} is not whitelisted." msgstr "{0} fonksiyonu beyaz listeye eklenmemiş." -#: frappe/database/query.py:1417 +#: frappe/database/query.py:1419 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" +msgid "Further sub-groups can only be created under records marked as 'Group'" +msgstr "" #: frappe/core/doctype/communication/communication.js:291 msgid "Fw: {0}" @@ -11114,7 +11157,7 @@ msgstr "Genel" msgid "Generate Keys" msgstr "Anahtar Oluştur" -#: frappe/public/js/frappe/views/reports/query_report.js:874 +#: frappe/public/js/frappe/views/reports/query_report.js:882 msgid "Generate New Report" msgstr "Yeni Rapor Oluştur" @@ -11530,14 +11573,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 +#: frappe/database/query.py:752 msgid "Group By must be a string" msgstr "" -#: frappe/public/js/frappe/views/treeview.js:418 -msgid "Group Node" -msgstr "Grup Düğümü" - #. Label of the ldap_group_objectclass (Data) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Group Object Class" @@ -11867,7 +11906,7 @@ msgstr "Gizli" msgid "Hidden Fields" msgstr "Gizli Alanlar" -#: frappe/public/js/frappe/views/reports/query_report.js:1642 +#: frappe/public/js/frappe/views/reports/query_report.js:1650 msgid "Hidden columns include: {0}" msgstr "" @@ -11979,7 +12018,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:1849 +#: frappe/public/js/frappe/list/list_view.js:1851 msgid "Hide Tags" msgstr "Etiketleri Gizle" @@ -12238,7 +12277,7 @@ msgstr "İşaretliyse iş akışı durumu liste görünümündeki durumu geçers #: frappe/core/doctype/doctype/doctype.py:1777 #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45 -#: frappe/public/js/frappe/roles_editor.js:66 +#: frappe/public/js/frappe/roles_editor.js:68 msgid "If Owner" msgstr "Sahibiyle" @@ -12466,8 +12505,8 @@ msgstr "Yoksayılan Uygulamalar" msgid "Illegal Document Status for {0}" msgstr "{0} için Uygun Olmayan Belge Durumu" -#: frappe/model/db_query.py:453 frappe/model/db_query.py:456 -#: frappe/model/db_query.py:1121 +#: frappe/model/db_query.py:454 frappe/model/db_query.py:457 +#: frappe/model/db_query.py:1122 msgid "Illegal SQL Query" msgstr "Geçersiz SQL Sorgusu" @@ -12554,11 +12593,11 @@ msgstr "Resimler" #. Option for the 'Operation' (Select) field in DocType 'Activity Log' #: frappe/core/doctype/activity_log/activity_log.json -#: frappe/core/doctype/user/user.js:384 +#: frappe/core/doctype/user/user.js:372 msgid "Impersonate" msgstr "Yerine Geçir" -#: frappe/core/doctype/user/user.js:411 +#: frappe/core/doctype/user/user.js:399 msgid "Impersonate as {0}" msgstr "{0} Gibi Kullan" @@ -12588,7 +12627,7 @@ msgstr "" msgid "Import" msgstr "İçe Aktar" -#: frappe/public/js/frappe/list/list_view.js:1911 +#: frappe/public/js/frappe/list/list_view.js:1913 msgctxt "Button in list view menu" msgid "Import" msgstr "İçe Aktar" @@ -12817,15 +12856,15 @@ msgid "Include Web View Link in Email" msgstr "Web Görünümü Bağlantısını E-postaya Ekle" #: frappe/public/js/frappe/form/print_utils.js:59 -#: frappe/public/js/frappe/views/reports/query_report.js:1620 +#: frappe/public/js/frappe/views/reports/query_report.js:1628 msgid "Include filters" msgstr "Filtreleri dahil et" -#: frappe/public/js/frappe/views/reports/query_report.js:1640 +#: frappe/public/js/frappe/views/reports/query_report.js:1648 msgid "Include hidden columns" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1612 +#: frappe/public/js/frappe/views/reports/query_report.js:1620 msgid "Include indentation" msgstr "Girintiyi dahil et" @@ -12872,7 +12911,7 @@ msgstr "Gelen e-posta hesabı doğru değil" msgid "Incomplete Virtual Doctype Implementation" msgstr "Tamamlanmamış Sanal Doküman Tipi Uygulaması" -#: frappe/auth.py:255 +#: frappe/auth.py:258 msgid "Incomplete login details" msgstr "Hatalı giriş bilgileri" @@ -12983,7 +13022,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:1885 +#: frappe/public/js/frappe/views/reports/query_report.js:1893 msgid "Insert After" msgstr "Sonrasına Ekle" @@ -13056,7 +13095,7 @@ msgstr "Talimatlar E-postayla Gönderildi" msgid "Insufficient Permission Level for {0}" msgstr "{0} için Yetersiz İzin Seviyesi" -#: frappe/database/query.py:806 frappe/database/query.py:1052 +#: frappe/database/query.py:808 frappe/database/query.py:1054 msgid "Insufficient Permission for {0}" msgstr "{0} için Yetki Verilmemiş" @@ -13172,7 +13211,7 @@ msgid "Invalid" msgstr "Geçersiz" #: frappe/public/js/form_builder/utils.js:221 -#: frappe/public/js/frappe/form/grid_row.js:849 +#: frappe/public/js/frappe/form/grid_row.js:850 #: frappe/public/js/frappe/form/layout.js:810 #: frappe/public/js/frappe/views/reports/report_view.js:721 msgid "Invalid \"depends_on\" expression" @@ -13230,8 +13269,8 @@ 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 +#: frappe/database/query.py:429 frappe/database/query.py:456 +#: frappe/database/query.py:466 frappe/database/query.py:489 msgid "Invalid Filter" msgstr "" @@ -13303,7 +13342,7 @@ msgstr "Geçersiz Şifre" msgid "Invalid Phone Number" msgstr "Geçersiz Telefon Numarası" -#: frappe/auth.py:94 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 +#: frappe/auth.py:97 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 #: frappe/www/login.py:128 msgid "Invalid Request" msgstr "Geçersiz İşlem. Lütfen Sayfayı Yenileyin." @@ -13343,7 +13382,7 @@ msgstr "" msgid "Invalid aggregate function" msgstr "" -#: frappe/database/query.py:1542 +#: frappe/database/query.py:1544 msgid "Invalid alias format: {0}. Alias must be a simple identifier." msgstr "" @@ -13351,19 +13390,19 @@ msgstr "" msgid "Invalid app" msgstr "" -#: frappe/database/query.py:1468 +#: frappe/database/query.py:1470 msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed." msgstr "" -#: frappe/database/query.py:1444 +#: frappe/database/query.py:1446 msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed." msgstr "" -#: frappe/database/query.py:460 +#: frappe/database/query.py:462 msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed." msgstr "" -#: frappe/database/query.py:575 +#: frappe/database/query.py:577 msgid "Invalid characters in table name: {0}" msgstr "" @@ -13371,11 +13410,11 @@ msgstr "" msgid "Invalid column" msgstr "Geçersiz Sütun" -#: frappe/database/query.py:381 +#: frappe/database/query.py:383 msgid "Invalid condition type in nested filters: {0}" msgstr "" -#: frappe/database/query.py:787 +#: frappe/database/query.py:789 msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'." msgstr "" @@ -13391,23 +13430,23 @@ 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/database/query.py:1301 +#: frappe/database/query.py:1303 msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'." msgstr "" -#: frappe/database/query.py:734 +#: frappe/database/query.py:736 msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'." msgstr "" -#: frappe/database/query.py:1620 +#: frappe/database/query.py:1622 msgid "Invalid field name in function: {0}. Only simple field names are allowed." msgstr "" -#: frappe/utils/data.py:2215 +#: frappe/utils/data.py:2241 msgid "Invalid field name {0}" msgstr "Geçersiz alan adı {0}" -#: frappe/database/query.py:668 +#: frappe/database/query.py:670 msgid "Invalid field type: {0}" msgstr "" @@ -13419,11 +13458,11 @@ msgstr "Otomatik adlandırmada geçersiz alan adı '{0}'" msgid "Invalid file path: {0}" msgstr "Geçersiz dosya yolu: {0}" -#: frappe/database/query.py:364 +#: frappe/database/query.py:366 msgid "Invalid filter condition: {0}. Expected a list or tuple." msgstr "" -#: frappe/database/query.py:450 +#: frappe/database/query.py:452 msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'." msgstr "" @@ -13431,11 +13470,11 @@ msgstr "" msgid "Invalid filter: {0}" msgstr "Geçersiz filtre: {0}" -#: frappe/database/query.py:1422 +#: frappe/database/query.py:1424 msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed." msgstr "" -#: frappe/database/query.py:1383 +#: frappe/database/query.py:1385 msgid "Invalid function dictionary format" msgstr "" @@ -13472,23 +13511,27 @@ msgstr "İçe aktarma için geçersiz veya bozuk içerik" msgid "Invalid redirect regex in row #{}: {}" msgstr "" -#: frappe/app.py:337 +#: frappe/app.py:340 msgid "Invalid request arguments" msgstr "Geçersiz istek değişkenleri" +#: frappe/app.py:327 +msgid "Invalid request body" +msgstr "" + #: frappe/core/doctype/user_invitation/user_invitation.py:181 msgid "Invalid role" msgstr "" -#: frappe/database/query.py:410 +#: frappe/database/query.py:412 msgid "Invalid simple filter format: {0}" msgstr "" -#: frappe/database/query.py:341 +#: frappe/database/query.py:343 msgid "Invalid start for filter condition: {0}. Expected a list or tuple." msgstr "" -#: frappe/database/query.py:1489 +#: frappe/database/query.py:1491 msgid "Invalid string literal format: {0}" msgstr "" @@ -13592,7 +13635,7 @@ msgstr "Takvim & 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/doctype_list.js:50 #: frappe/core/doctype/doctype_link/doctype_link.json msgid "Is Child Table" msgstr "Alt Tablo" @@ -13645,6 +13688,10 @@ msgstr "Klasör" msgid "Is Global" msgstr "Herkese Açık" +#: frappe/public/js/frappe/views/treeview.js:418 +msgid "Is Group" +msgstr "Grup" + #. Label of the is_hidden (Check) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "Is Hidden" @@ -13733,7 +13780,7 @@ 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/core/doctype/doctype/doctype_list.js:65 #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Is Single" msgstr "Tek" @@ -13769,7 +13816,7 @@ msgstr "Standart" #. Label of the is_submittable (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:39 +#: frappe/core/doctype/doctype/doctype_list.js:40 msgid "Is Submittable" msgstr "Gönderilebilir" @@ -13975,11 +14022,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:388 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:402 msgid "Kanban Board Name" msgstr "Kanban Panosu Adı" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:265 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:279 msgctxt "Button in kanban view menu" msgid "Kanban Settings" msgstr "Kanban Ayarları" @@ -14277,10 +14324,13 @@ msgstr "Landscape" #. 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' +#. Label of a field in the edit-profile Web Form #: 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:117 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/printing/page/print/print.js:117 #: frappe/public/js/frappe/form/templates/print_layout.html:11 msgid "Language" msgstr "Dil" @@ -14368,9 +14418,12 @@ msgstr "Geçen Ay" #. Label of the last_name (Data) field in DocType 'Contact' #. Label of the last_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json #: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:45 -#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:19 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:19 msgid "Last Name" msgstr "Soyadı" @@ -14611,7 +14664,7 @@ msgstr "Antetli Kağıt HTML" #: 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/public/js/frappe/roles_editor.js:68 #: frappe/website/doctype/help_article/help_article.json msgid "Level" msgstr "Seviye" @@ -14904,7 +14957,7 @@ msgstr "Filtreyi Listele" msgid "List Settings" msgstr "Liste Ayarları" -#: frappe/public/js/frappe/list/list_view.js:1991 +#: frappe/public/js/frappe/list/list_view.js:1993 msgctxt "Button in list view menu" msgid "List Settings" msgstr "Liste Ayarları" @@ -14955,7 +15008,7 @@ msgid "Load Balancing" msgstr "Yük Dengeleme" #: frappe/public/js/frappe/list/base_list.js:399 -#: frappe/public/js/frappe/web_form/web_form_list.js:305 +#: frappe/public/js/frappe/web_form/web_form_list.js:306 #: frappe/website/doctype/help_article/templates/help_article_list.html:30 msgid "Load More" msgstr "Daha Fazla Yükle" @@ -14975,7 +15028,7 @@ msgstr "Daha fazla yükle" #: frappe/public/js/frappe/list/base_list.js:526 #: frappe/public/js/frappe/list/list_view.js:363 #: frappe/public/js/frappe/ui/listing.html:16 -#: frappe/public/js/frappe/views/reports/query_report.js:1089 +#: frappe/public/js/frappe/views/reports/query_report.js:1097 msgid "Loading" msgstr "Yükleniyor" @@ -15118,7 +15171,7 @@ msgstr "{} adresinden Giriş Doğrulama Kodu" msgid "Login and view in Browser" msgstr "Tarayıcıda oturum açın ve görüntüleyin" -#: frappe/website/doctype/web_form/web_form.js:367 +#: frappe/website/doctype/web_form/web_form.js:368 msgid "Login is required to see web form list view. Enable {0} to see list settings" msgstr "Web formu liste görünümünü görmek için giriş yapılması gerekir. Liste ayarlarını görmek için {0} ayarını etkinleştirin" @@ -15126,7 +15179,7 @@ msgstr "Web formu liste görünümünü görmek için giriş yapılması gerekir msgid "Login link sent to your email" msgstr "Giriş bağlantısı e-postanıza gönderildi" -#: frappe/auth.py:339 frappe/auth.py:342 +#: frappe/auth.py:342 frappe/auth.py:345 msgid "Login not allowed at this time" msgstr "Şu anda oturum açmaya izin verilmiyor" @@ -15161,7 +15214,7 @@ msgstr "E-posta ile Giriş" #: frappe/www/login.html:116 msgid "Login with Frappe Cloud" -msgstr "" +msgstr "Frappe Cloud ile Giriş Yap" #: frappe/www/login.html:49 msgid "Login with LDAP" @@ -15179,7 +15232,7 @@ msgstr "E-posta ile Giriş" msgid "Login with email link expiry (in minutes)" msgstr "E-posta bağlantısı sona erme süresi (Dakika)" -#: frappe/auth.py:144 +#: frappe/auth.py:147 msgid "Login with username and password is not allowed." msgstr "Kullanıcı adı ve şifre ile giriş yapılmasına izin verilmiyor." @@ -15198,7 +15251,7 @@ msgstr "" msgid "Logout" msgstr "Çıkış" -#: frappe/core/doctype/user/user.js:202 +#: frappe/core/doctype/user/user.js:190 msgid "Logout All Sessions" msgstr "Tüm Oturumlardan Çıkış Yap" @@ -15302,7 +15355,10 @@ msgid "Major" msgstr "Ana Sürüm" #. Label of the show_name_in_global_search (Check) field in DocType 'DocType' +#. Label of the show_name_in_global_search (Check) field in DocType 'Customize +#. Form' #: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Make \"name\" searchable in Global Search" msgstr "Genel Aramada \"İsim\" Alanı Aranabilir" @@ -15378,7 +15434,7 @@ msgstr "Zorunluluk Bağlılığı" msgid "Mandatory Depends On (JS)" msgstr "Zorunluluk Bağlılığı (JS)" -#: frappe/website/doctype/web_form/web_form.py:509 +#: frappe/website/doctype/web_form/web_form.py:536 msgid "Mandatory Information missing:" msgstr "Zorunlu bilgi eksik:" @@ -15631,7 +15687,7 @@ msgstr "Bellek Kullanımı" #: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:63 msgid "Memory Usage in MB" -msgstr "" +msgstr "Bellek Kullanımı (MB)" #. Option for the 'Type' (Select) field in DocType 'Notification Log' #: frappe/desk/doctype/notification_log/notification_log.json @@ -15835,6 +15891,11 @@ msgstr "Orta Merkez" msgid "Middle Name" msgstr "İkinci Adı" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Middle Name (Optional)" +msgstr "" + #. Name of a DocType #. Label of a Link in the Tools Workspace #: frappe/automation/doctype/milestone/milestone.json @@ -15941,6 +16002,11 @@ msgstr "Cep Telefonu" msgid "Mobile No" msgstr "Cep No" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Mobile Number" +msgstr "Cep Telefonu" + #. 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" @@ -15966,7 +16032,7 @@ msgstr "Modal Tetikleyici" #. 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/doctype/doctype_list.js:31 #: 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 @@ -16142,10 +16208,12 @@ msgstr "Daha Fazla Bilgi" #. Label of the additional_info (Section Break) field in DocType #. 'Communication' #. Label of the short_bio (Tab Break) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: 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 +#: frappe/core/web_form/edit_profile/edit_profile.json msgid "More Information" msgstr "Daha Fazla Bilgi" @@ -16175,7 +16243,7 @@ msgstr "Büyük ihtimalle şifreniz çok uzun." msgid "Move" msgstr "Taşı" -#: frappe/public/js/frappe/form/grid_row.js:193 +#: frappe/public/js/frappe/form/grid_row.js:194 msgid "Move To" msgstr "Taşı" @@ -16211,7 +16279,7 @@ msgstr "Bölümleri yeni sekmeye taşı" msgid "Move the current field and the following fields to a new column" msgstr "Mevcut alanı ve sonraki alanları yeni bir sütuna taşı" -#: frappe/public/js/frappe/form/grid_row.js:168 +#: frappe/public/js/frappe/form/grid_row.js:169 msgid "Move to Row Number" msgstr "Taşınacak Satır Numarası" @@ -16279,7 +16347,7 @@ msgid "Mx" msgstr "Bayan" #: frappe/templates/includes/web_sidebar.html:41 -#: frappe/website/doctype/web_form/web_form.py:498 +#: frappe/website/doctype/web_form/web_form.py:525 #: 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" @@ -16423,12 +16491,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:1378 +#: frappe/public/js/frappe/list/list_view.js:1380 msgctxt "Description of a list view shortcut" msgid "Navigate list down" msgstr "Listede Aşağı Git" -#: frappe/public/js/frappe/list/list_view.js:1385 +#: frappe/public/js/frappe/list/list_view.js:1387 msgctxt "Description of a list view shortcut" msgid "Navigate list up" msgstr "Listede Yukarı git" @@ -16443,6 +16511,10 @@ msgstr "Ana içeriğe git" msgid "Navigation Settings" msgstr "Gezinme Ayarları" +#: frappe/public/js/frappe/list/list_view.js:485 +msgid "Need Help?" +msgstr "" + #: frappe/desk/doctype/workspace/workspace.py:322 msgid "Need Workspace Manager role to edit private workspace of other users" msgstr "Diğer kullanıcıların özel çalışma alanlarını düzenlemek için Çalışma Alanı Yöneticisi rolü gerekli." @@ -16451,7 +16523,7 @@ 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 +#: frappe/database/query.py:335 msgid "Nested filters must be provided as a list or tuple." msgstr "" @@ -16464,6 +16536,12 @@ msgstr "İç içe küme hatası. Lütfen Yönetici ile iletişime geçin." msgid "Network Printer Settings" msgstr "Ağ Yazıcısı Ayarları" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Never" +msgstr "" + #. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/core/doctype/success_action/success_action.js:57 @@ -16472,7 +16550,7 @@ msgstr "Ağ Yazıcısı Ayarları" #: 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/treeview.js:473 #: frappe/public/js/frappe/views/workspace/workspace.js:64 #: frappe/website/doctype/web_form/templates/web_list.html:15 #: frappe/www/list.html:19 @@ -16533,7 +16611,7 @@ msgstr "Yeni Etkinlik" msgid "New Folder" msgstr "Yeni Klasör" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 msgid "New Kanban Board" msgstr "Yeni Kanban Panosu" @@ -16568,7 +16646,7 @@ msgstr "Yeni Veri Kartı" msgid "New Onboarding" msgstr "Yeni Modül Tanıtımı" -#: frappe/core/doctype/user/user.js:190 frappe/www/update-password.html:43 +#: frappe/core/doctype/user/user.js:178 frappe/www/update-password.html:43 msgid "New Password" msgstr "Yeni Şifre" @@ -16664,7 +16742,7 @@ msgstr "Ayarlanacak yeni değer" #: frappe/public/js/frappe/ui/toolbar/search_utils.js:227 #: 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:411 +#: frappe/website/doctype/web_form/web_form.py:438 msgid "New {0}" msgstr "Yeni {0}" @@ -16816,7 +16894,7 @@ msgstr "Sonraki Tıklamada" #: frappe/public/js/form_builder/utils.js:341 #: frappe/public/js/frappe/form/controls/link.js:498 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1665 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 #: frappe/website/doctype/help_article/templates/help_article.html:26 msgid "No" msgstr "Hayır" @@ -16965,7 +17043,7 @@ msgstr "Uygun Sonuç Bulunamadı" msgid "No Roles Specified" msgstr "Rol Belirlenmedi" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 msgid "No Select Field Found" msgstr "Seçim Alanı Bulunamadı" @@ -17049,7 +17127,7 @@ msgstr "" msgid "No failed logs" msgstr "Başarısız kayıt yok" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:371 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:385 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." @@ -17073,7 +17151,7 @@ msgstr "Daha fazla kayıt yok" msgid "No matching records. Search something new" msgstr "Eşleşen kayıt yok. Yeni bir kelime ile aramayı deneyin" -#: frappe/public/js/frappe/web_form/web_form_list.js:161 +#: frappe/public/js/frappe/web_form/web_form_list.js:162 msgid "No more items to display" msgstr "Görüntülenecek başka bir öğe yok" @@ -17117,7 +17195,7 @@ msgctxt "{0} = verb, {1} = object" msgid "No permission to '{0}' {1}" msgstr "" -#: frappe/model/db_query.py:948 +#: frappe/model/db_query.py:949 msgid "No permission to read {0}" msgstr "Okuma {0} izni yok" @@ -17165,11 +17243,11 @@ msgstr "{0} Yok" msgid "No {0} Found" msgstr "{0} Bulunamadı" -#: frappe/public/js/frappe/web_form/web_form_list.js:233 +#: frappe/public/js/frappe/web_form/web_form_list.js:234 msgid "No {0} found" msgstr "{0} bulunamadı." -#: frappe/public/js/frappe/list/list_view.js:497 +#: frappe/public/js/frappe/list/list_view.js:499 msgid "No {0} found with matching filters. Clear filters to see all {0}." msgstr "Filtrelere uygun {0} bulunamadı. Tüm filtreleri temizleyip tekrar deneyebilirsiniz." @@ -17178,7 +17256,7 @@ msgid "No {0} mail" msgstr "{0} e-posta yok" #: frappe/public/js/form_builder/utils.js:117 -#: frappe/public/js/frappe/form/grid_row.js:256 +#: frappe/public/js/frappe/form/grid_row.js:257 msgctxt "Title of the 'row number' column" msgid "No." msgstr "Sıra" @@ -17242,7 +17320,7 @@ msgstr "Aynı Kategoride Değil" msgid "Not Equals" msgstr "Eşit Değil" -#: frappe/app.py:387 frappe/www/404.html:3 +#: frappe/app.py:390 frappe/www/404.html:3 msgid "Not Found" msgstr "Bulunamadı" @@ -17268,9 +17346,9 @@ msgstr "Herhangi bir kayıtla bağlantılı değil" msgid "Not Nullable" msgstr "Boş Bırakılamaz" -#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26 +#: frappe/__init__.py:550 frappe/app.py:383 frappe/desk/calendar.py:26 #: frappe/public/js/frappe/web_form/webform_script.js:15 -#: frappe/website/doctype/web_form/web_form.py:747 +#: frappe/website/doctype/web_form/web_form.py:774 #: 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 @@ -17289,7 +17367,7 @@ msgstr "Yayınlanmadı" #: 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/kanban/kanban_view.js:183 #: frappe/public/js/frappe/views/reports/report_view.js:209 #: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39 #: frappe/website/doctype/web_form/templates/web_form.html:85 @@ -17340,7 +17418,7 @@ msgstr "Aktif değil" msgid "Not allowed for {0}: {1}" msgstr "{0} için izin verilmiyor: {1}" -#: frappe/email/doctype/notification/notification.py:637 +#: frappe/email/doctype/notification/notification.py:639 msgid "Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings" msgstr "{0} belgesinin eklenmesine izin verilmiyor, lütfen Yazdırma Ayarları'nda {0} için Yazdırmaya İzin Ver ayarını etkinleştirin" @@ -17372,12 +17450,12 @@ msgstr "Geliştirici modunda değil" msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType." msgstr "Geliştirici Modunda değil! site_config.json dosyasına ayarlayın veya 'Özel' DocType yapın." -#: frappe/core/doctype/system_settings/system_settings.py:216 +#: frappe/core/doctype/system_settings/system_settings.py:217 #: 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:760 +#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:787 #: frappe/website/js/website.js:97 msgid "Not permitted" msgstr "İzin verilmedi" @@ -17423,7 +17501,7 @@ msgstr "Not: En iyi sonuçlar için görsellerin aynı boyutta olması ve geniş msgid "Note: Multiple sessions will be allowed in case of mobile device" msgstr "Not: Mobil cihaz olması durumunda birden fazla oturuma izin verilecektir." -#: frappe/core/doctype/user/user.js:399 +#: frappe/core/doctype/user/user.js:387 msgid "Note: This will be shared with user." msgstr "Not: Bu kullanıcı ile paylaşılacaktır." @@ -17495,15 +17573,15 @@ msgstr "Bildirim İçin Abone Olunan Belge" msgid "Notification sent to" msgstr "" -#: frappe/email/doctype/notification/notification.py:542 +#: frappe/email/doctype/notification/notification.py:544 msgid "Notification: customer {0} has no Mobile number set" msgstr "Bildirim: {0} isimli Müşterinin belirlenmiş bir cep telefonu numarası yok" -#: frappe/email/doctype/notification/notification.py:528 +#: frappe/email/doctype/notification/notification.py:530 msgid "Notification: document {0} has no {1} number set (field: {2})" msgstr "Bildirim: {0} belgesinin {1} sayı kümesi yok (alan: {2})" -#: frappe/email/doctype/notification/notification.py:537 +#: frappe/email/doctype/notification/notification.py:539 msgid "Notification: user {0} has no Mobile number set" msgstr "Bildirim: {0} kullanıcısının ayarlanmış bir Cep telefonu numarası yok" @@ -17617,7 +17695,7 @@ msgstr "Sorgu Sayısı" msgid "Number of attachment fields are more than {}, limit updated to {}." msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:171 +#: frappe/core/doctype/system_settings/system_settings.py:172 msgid "Number of backups must be greater than zero." msgstr "Yedekleme sayısı sıfırdan büyük olmalıdır." @@ -17889,7 +17967,7 @@ msgstr "Tanıtım Tamamlandı" #. Description of the 'Is Submittable' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:42 +#: frappe/core/doctype/doctype/doctype_list.js:43 msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended." msgstr "Gönderildikten sonra, gönderilebilir belgeler değiştirilemez. Sadece İptal Edilebilir veya Değiştirilebilirler." @@ -17978,11 +18056,11 @@ msgstr "Yalnızca Rapor Oluşturucu türündeki raporlar silinebilir" msgid "Only reports of type Report Builder can be edited" msgstr "Yalnızca Rapor Oluşturucu türündeki raporlar düzenlenebilir" -#: frappe/custom/doctype/customize_form/customize_form.py:129 +#: frappe/custom/doctype/customize_form/customize_form.py:131 msgid "Only standard DocTypes are allowed to be customized from Customize Form." msgstr "Formu Özelleştir'den yalnızca standart DocType'ların özelleştirilmesine izin verilir." -#: frappe/model/delete_doc.py:241 +#: frappe/model/delete_doc.py:281 msgid "Only the Administrator can delete a standard DocType." msgstr "Yalnızca Administrator rolü standart bir DocType'ı silebilir." @@ -18078,7 +18156,7 @@ msgstr "" msgid "Open in a new tab" msgstr "Yeni sekmede aç" -#: frappe/public/js/frappe/list/list_view.js:1431 +#: frappe/public/js/frappe/list/list_view.js:1433 msgctxt "Description of a list view shortcut" msgid "Open list item" msgstr "Liste Öğesini Aç" @@ -18127,7 +18205,7 @@ msgstr "Açıldı" msgid "Operation" msgstr "Operasyon" -#: frappe/utils/data.py:2146 +#: frappe/utils/data.py:2172 msgid "Operator must be one of {0}" msgstr "" @@ -18173,6 +18251,7 @@ msgstr "İsteğe bağlı: Bu ifade doğruysa uyarı gönderilecektir" #. 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 (Text) field in DocType 'Web Form List Column' #. 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 @@ -18181,6 +18260,7 @@ msgstr "İsteğe bağlı: Bu ifade doğruysa uyarı gönderilecektir" #: 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_form_list_column/web_form_list_column.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Options" msgstr "Şeçenekler" @@ -18226,7 +18306,7 @@ msgstr "Turuncu" msgid "Order" msgstr "" -#: frappe/database/query.py:767 +#: frappe/database/query.py:769 msgid "Order By must be a string" msgstr "" @@ -18324,7 +18404,7 @@ msgstr "" #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/printing/page/print/print.js:84 #: frappe/public/js/frappe/form/templates/print_layout.html:44 -#: frappe/public/js/frappe/views/reports/query_report.js:1804 +#: frappe/public/js/frappe/views/reports/query_report.js:1812 msgid "PDF" msgstr "PDF" @@ -18672,8 +18752,8 @@ msgstr "Pasif" #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/system_settings/system_settings.json -#: frappe/core/doctype/user/user.js:177 frappe/core/doctype/user/user.js:224 -#: frappe/core/doctype/user/user.js:244 +#: frappe/core/doctype/user/user.js:165 frappe/core/doctype/user/user.js:212 +#: frappe/core/doctype/user/user.js:232 #: 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 @@ -18696,7 +18776,7 @@ msgstr "Şifre Sıfırlama" msgid "Password Reset Link Generation Limit" msgstr "Şifre Resetleme için Bağlantı Oluşturma Limiti" -#: frappe/public/js/frappe/form/grid_row.js:896 +#: frappe/public/js/frappe/form/grid_row.js:897 msgid "Password cannot be filtered" msgstr "Şifre filtrelenemiyor" @@ -18733,7 +18813,7 @@ msgstr "Şifre sıfırlama talimatları {}'in e-postasına gönderildi" msgid "Password set" msgstr "Şifre ayarlandı" -#: frappe/auth.py:258 +#: frappe/auth.py:261 msgid "Password size exceeded the maximum allowed size" msgstr "Şifre boyutu izin verilen maksimum boyutu aştı" @@ -18745,7 +18825,7 @@ msgstr "Şifre boyutu izin verilen maksimum boyutu aştı." msgid "Passwords do not match" msgstr "Parolalar uyuşmuyor" -#: frappe/core/doctype/user/user.js:210 +#: frappe/core/doctype/user/user.js:198 msgid "Passwords do not match!" msgstr "Şifreler uyuşmuyor!" @@ -18896,7 +18976,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/database/query.py:533 +#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:535 msgid "Permission Error" msgstr "İzin Hatası" @@ -18956,8 +19036,8 @@ msgstr "İzin Türü" #: 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:143 frappe/core/doctype/user/user.js:152 -#: frappe/core/doctype/user/user.js:161 +#: frappe/core/doctype/user/user.js:131 frappe/core/doctype/user/user.js:140 +#: frappe/core/doctype/user/user.js:149 #: 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 @@ -19027,6 +19107,7 @@ msgstr "Kişisel Veri İndirme Talebi" #. Option for the 'Type' (Select) field in DocType 'Communication' #. Option for the 'Type' (Select) field in DocType 'DocField' #. Label of the phone (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #. 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' @@ -19037,6 +19118,7 @@ msgstr "Kişisel Veri İndirme Talebi" #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.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 @@ -19211,7 +19293,7 @@ msgstr "Lütfen şablon başlıklarını değiştirmeyin." msgid "Please duplicate this to make changes" msgstr "Lütfen değişiklik yapmak için bunu çoğaltın" -#: frappe/core/doctype/system_settings/system_settings.py:164 +#: frappe/core/doctype/system_settings/system_settings.py:165 msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login." msgstr "Kullanıcı adı/şifre tabanlı girişi devre dışı bırakmadan önce lütfen en az bir Sosyal Giriş Anahtarını veya LDAP'yi veya E-posta Bağlantısıyla Giriş Yapın'ı etkinleştirin." @@ -19343,11 +19425,11 @@ msgstr "Lütfen önce DocType'ı seçin" msgid "Please select Entity Type first" msgstr "Lütfen önce Varlık Türünü seçin" -#: frappe/core/doctype/system_settings/system_settings.py:115 +#: frappe/core/doctype/system_settings/system_settings.py:116 msgid "Please select Minimum Password Score" msgstr "Lütfen Minimum Şifre Puanını seçin" -#: frappe/public/js/frappe/views/reports/query_report.js:1185 +#: frappe/public/js/frappe/views/reports/query_report.js:1193 msgid "Please select X and Y fields" msgstr "Lütfen X ve Y alanlarını seçin" @@ -19375,7 +19457,7 @@ msgstr "Lütfen geçerli bir tarih filtresi seçin" msgid "Please select applicable Doctypes" msgstr "Lütfen geçerli DocType'ları seçin" -#: frappe/model/db_query.py:1157 +#: frappe/model/db_query.py:1163 msgid "Please select atleast 1 column from {0} to sort/group" msgstr "Lütfen sıralamak/gruplamak için {0} en az 1 sütun seçin" @@ -19405,7 +19487,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:1408 +#: frappe/public/js/frappe/views/reports/query_report.js:1416 msgid "Please set filters" msgstr "Lütfen filtreleri ayarlayın" @@ -19425,7 +19507,7 @@ msgstr "Lütfen öncelikle bu Gösterge Tablosundaki aşağıdaki belgeleri stan msgid "Please set the series to be used." msgstr "Lütfen kullanılacak seriyi ayarlayın." -#: frappe/core/doctype/system_settings/system_settings.py:128 +#: frappe/core/doctype/system_settings/system_settings.py:129 msgid "Please setup SMS before setting it as an authentication method, via SMS Settings" msgstr "" @@ -19577,7 +19659,7 @@ msgstr "Posta Kodu" msgid "Posting Timestamp" msgstr "Gönderim Saati" -#: frappe/database/query.py:1518 +#: frappe/database/query.py:1520 msgid "Potentially dangerous content in string literal: {0}" msgstr "" @@ -19779,13 +19861,13 @@ msgstr "{0} belge türünün birincil anahtarı mevcut değerler olduğundan de #: 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:1789 +#: frappe/public/js/frappe/views/reports/query_report.js:1797 #: frappe/public/js/frappe/views/reports/report_view.js:1539 -#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18 +#: frappe/public/js/frappe/views/treeview.js:492 frappe/www/printview.html:18 msgid "Print" msgstr "Yazdır" -#: frappe/public/js/frappe/list/list_view.js:2164 +#: frappe/public/js/frappe/list/list_view.js:2166 msgctxt "Button in list view actions menu" msgid "Print" msgstr "Yazdır" @@ -19855,7 +19937,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:1578 +#: frappe/public/js/frappe/views/reports/query_report.js:1586 msgid "Print Format not found" msgstr "" @@ -20036,11 +20118,11 @@ 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:932 +#: frappe/public/js/frappe/views/reports/query_report.js:940 msgid "Proceed Anyway" msgstr "Yine de Devam Et" -#: frappe/public/js/frappe/form/controls/table.js:123 +#: frappe/public/js/frappe/form/controls/table.js:104 msgid "Processing" msgstr "İşleme" @@ -20057,11 +20139,21 @@ msgstr "Prof" msgid "Profile" msgstr "Profil" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile Picture" +msgstr "" + +#. Success message of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile updated successfully." +msgstr "Profil başarıyla güncellendi." + #: frappe/public/js/frappe/socketio_client.js:82 msgid "Progress" msgstr "İlerleme" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:408 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:422 msgid "Project" msgstr "Proje" @@ -20105,7 +20197,7 @@ msgstr "" msgid "Protect Attached Files" msgstr "" -#: frappe/core/doctype/file/file.py:523 +#: frappe/core/doctype/file/file.py:526 msgid "Protected File" msgstr "" @@ -20611,11 +20703,11 @@ msgstr "Gerçek Zamanlı (Socket.IO)" msgid "Reason" msgstr "Nedeni" -#: frappe/public/js/frappe/views/reports/query_report.js:886 +#: frappe/public/js/frappe/views/reports/query_report.js:894 msgid "Rebuild" msgstr "Yeniden Oluştur" -#: frappe/public/js/frappe/views/treeview.js:509 +#: frappe/public/js/frappe/views/treeview.js:511 msgid "Rebuild Tree" msgstr "Ağaç Yapısını Tekrar Oluştur" @@ -20996,8 +21088,8 @@ msgstr "Referans Olan" #: 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:1778 -#: frappe/public/js/frappe/views/treeview.js:496 +#: frappe/public/js/frappe/views/reports/query_report.js:1786 +#: frappe/public/js/frappe/views/treeview.js:498 #: frappe/public/js/frappe/widgets/chart_widget.js:291 #: frappe/public/js/frappe/widgets/number_card_widget.js:352 #: frappe/public/js/print_format_builder/Preview.vue:24 @@ -21028,13 +21120,13 @@ msgstr "" msgid "Refresh Token" msgstr "Token Yenile" -#: frappe/public/js/frappe/list/list_view.js:534 +#: frappe/public/js/frappe/list/list_view.js:536 msgctxt "Document count in list view" msgid "Refreshing" msgstr "Yenileniyor" #: frappe/core/doctype/system_settings/system_settings.js:57 -#: frappe/core/doctype/user/user.js:374 +#: frappe/core/doctype/user/user.js:362 #: frappe/desk/page/setup_wizard/setup_wizard.js:211 msgid "Refreshing..." msgstr "Yenileniyor..." @@ -21419,7 +21511,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:1965 +#: frappe/public/js/frappe/views/reports/query_report.js:1973 msgid "Report Name" msgstr "Rapor İsmi" @@ -21471,7 +21563,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:1013 +#: frappe/public/js/frappe/views/reports/query_report.js:1021 msgid "Report initiated, click to view status" msgstr "Rapor başlatıldı, durumu görüntülemek için tıklayın" @@ -21491,7 +21583,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:2003 +#: frappe/public/js/frappe/views/reports/query_report.js:2011 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." @@ -21527,7 +21619,7 @@ msgstr "Raporlar" msgid "Reports & Masters" msgstr "Raporlar & Kayıtlar" -#: frappe/public/js/frappe/views/reports/query_report.js:929 +#: frappe/public/js/frappe/views/reports/query_report.js:937 msgid "Reports already in Queue" msgstr "Raporlar zaten Kuyrukta" @@ -21546,7 +21638,10 @@ msgid "Request Body" msgstr "" #. Label of the data (Code) field in DocType 'Integration Request' +#. Title of the request-data Web Form +#. Button label of the request-data Web Form #: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/website/web_form/request_data/request_data.json msgid "Request Data" msgstr "" @@ -21598,6 +21693,11 @@ msgstr "İstek Zaman Aşımı" msgid "Request URL" msgstr "" +#. Title of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "Request for Account Deletion" +msgstr "" + #. Label of the requested_numbers (Code) field in DocType 'SMS Log' #: frappe/core/doctype/sms_log/sms_log.json msgid "Requested Numbers" @@ -21653,7 +21753,7 @@ msgstr "Panoları Sıfırla" msgid "Reset Fields" msgstr "Alanları Sıfırla" -#: frappe/core/doctype/user/user.js:184 frappe/core/doctype/user/user.js:187 +#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:175 msgid "Reset LDAP Password" msgstr "LDAP Parolasını Sıfırla" @@ -21661,11 +21761,11 @@ msgstr "LDAP Parolasını Sıfırla" msgid "Reset Layout" msgstr "Yerleşimi Sıfırla" -#: frappe/core/doctype/user/user.js:235 +#: frappe/core/doctype/user/user.js:223 msgid "Reset OTP Secret" msgstr "Tek Kullanımlık Şifreyi Sıfırla" -#: frappe/core/doctype/user/user.js:168 frappe/www/login.html:199 +#: frappe/core/doctype/user/user.js:156 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" @@ -21700,7 +21800,7 @@ msgstr "Varsayılanlara Sıfırla" msgid "Reset sorting" msgstr "Sıralamayı Sıfırla" -#: frappe/public/js/frappe/form/grid_row.js:433 +#: frappe/public/js/frappe/form/grid_row.js:434 msgid "Reset to default" msgstr "Varsayılana Dön" @@ -21952,7 +22052,7 @@ msgstr "Sayfa ve Raporlar için İzinler" #. 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 +#: frappe/public/js/frappe/roles_editor.js:114 msgid "Role Permissions" msgstr "Rol İzinleri" @@ -21962,7 +22062,7 @@ msgstr "Rol İzinleri" msgid "Role Permissions Manager" msgstr "Rol İzinlerini Yönet" -#: frappe/public/js/frappe/list/list_view.js:1933 +#: frappe/public/js/frappe/list/list_view.js:1935 msgctxt "Button in list view menu" msgid "Role Permissions Manager" msgstr "Rol İzinlerini Yönet" @@ -22155,11 +22255,11 @@ msgstr "Satır Değerleri Değişti" msgid "Row {0}" msgstr "Satır {0}" -#: frappe/custom/doctype/customize_form/customize_form.py:353 +#: frappe/custom/doctype/customize_form/customize_form.py:357 msgid "Row {0}: Not allowed to disable Mandatory for standard fields" msgstr "Satır {0}: Standart alanlar devre dışı bırakılamaz." -#: frappe/custom/doctype/customize_form/customize_form.py:342 +#: frappe/custom/doctype/customize_form/customize_form.py:346 msgid "Row {0}: Not allowed to enable Allow on Submit for standard fields" msgstr "Satır {0}: Standart alanlar için Gönder'de İzin Ver'i etkinleştirmeye izin verilmiyor" @@ -22178,7 +22278,10 @@ msgid "Rows Removed" msgstr "Silinen Satırlar" #. Label of the rows_threshold_for_grid_search (Int) field in DocType 'DocType' +#. Label of the rows_threshold_for_grid_search (Int) field in DocType +#. 'Customize Form' #: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Rows Threshold for Grid Search" msgstr "" @@ -22386,8 +22489,8 @@ msgstr "Cumartesi" #: 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:1957 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 +#: frappe/public/js/frappe/views/reports/query_report.js:1965 #: frappe/public/js/frappe/views/reports/report_view.js:1735 #: frappe/public/js/frappe/views/workspace/workspace.js:335 #: frappe/public/js/frappe/widgets/base_widget.js:142 @@ -22410,11 +22513,11 @@ msgstr "Farklı Kaydet" msgid "Save Customizations" msgstr "Özelleştirmeleri Kaydet" -#: frappe/public/js/frappe/views/reports/query_report.js:1960 +#: frappe/public/js/frappe/views/reports/query_report.js:1968 msgid "Save Report" msgstr "Raporu Kaydet" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:97 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:107 msgid "Save filters" msgstr "Filtreleri Kaydet" @@ -22786,7 +22889,7 @@ msgstr "Güvenlik Ayarları" msgid "See all Activity" msgstr "Tüm Aktiviteleri Göster" -#: frappe/public/js/frappe/views/reports/query_report.js:855 +#: frappe/public/js/frappe/views/reports/query_report.js:863 msgid "See all past reports." msgstr "Tüm geçmiş raporları görün." @@ -22850,7 +22953,7 @@ msgstr "Seçim" #: 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:497 +#: frappe/public/js/frappe/form/grid_row.js:498 msgid "Select All" msgstr "Tümünü Seç" @@ -22930,7 +23033,7 @@ msgstr "Alan Seçin" msgid "Select Field..." msgstr "Alan Seçin..." -#: frappe/public/js/frappe/form/grid_row.js:489 +#: frappe/public/js/frappe/form/grid_row.js:490 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:181 msgid "Select Fields" msgstr "Alanları Seçin" @@ -23050,8 +23153,8 @@ msgid "Select a field to edit its properties." msgstr "Düzenlemek için bir alan seçin." #: frappe/public/js/frappe/views/treeview.js:358 -msgid "Select a group node first." -msgstr "Önce bir grup seçin." +msgid "Select a group {0} first." +msgstr "" #: frappe/core/doctype/doctype/doctype.py:1956 msgid "Select a valid Sender Field for creating documents from Email" @@ -23087,13 +23190,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:1445 +#: frappe/public/js/frappe/list/list_view.js:1447 msgctxt "Description of a list view shortcut" msgid "Select list item" msgstr "Liste Öğesini Seç" -#: frappe/public/js/frappe/list/list_view.js:1397 -#: frappe/public/js/frappe/list/list_view.js:1413 +#: frappe/public/js/frappe/list/list_view.js:1399 +#: frappe/public/js/frappe/list/list_view.js:1415 msgctxt "Description of a list view shortcut" msgid "Select multiple list items" msgstr "Birden Fazla Öğe Seçin" @@ -23415,7 +23518,7 @@ msgstr "Seri {0} zaten {1} adresinde kullanılıyor" msgid "Server Action" msgstr "Sunucu Aksiyonu" -#: frappe/app.py:396 frappe/public/js/frappe/request.js:611 +#: frappe/app.py:399 frappe/public/js/frappe/request.js:611 #: frappe/www/error.html:36 frappe/www/error.py:15 msgid "Server Error" msgstr "Sunucu Hatası" @@ -23481,7 +23584,7 @@ msgstr "Oturum Varsayılanları" msgid "Session Defaults Saved" msgstr "Oturum Varsayılanları Kaydedildi" -#: frappe/app.py:373 +#: frappe/app.py:376 msgid "Session Expired" msgstr "Oturum Sonlandırıldı" @@ -23490,7 +23593,7 @@ msgstr "Oturum Sonlandırıldı" msgid "Session Expiry (idle timeout)" msgstr "Oturum Sonlanma Süresi" -#: frappe/core/doctype/system_settings/system_settings.py:122 +#: frappe/core/doctype/system_settings/system_settings.py:123 msgid "Session Expiry must be in format {0}" msgstr "Oturum Süresi {0} formatında olmalıdır" @@ -23539,7 +23642,7 @@ msgstr "Filtreleri Ayarlayın" msgid "Set Filters for {0}" msgstr "{0} İçin Filtreleri Ayarla" -#: frappe/public/js/frappe/views/reports/query_report.js:2113 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 msgid "Set Level" msgstr "Seviye Ayarla" @@ -23593,7 +23696,7 @@ msgstr "Miktarı Ayarla" msgid "Set Role For" msgstr "Rol Belirle" -#: frappe/core/doctype/user/user.js:136 +#: frappe/core/doctype/user/user.js:124 #: frappe/core/page/permission_manager/permission_manager.js:72 msgid "Set User Permissions" msgstr "Kullanıcı İzinlerini Ayarla" @@ -23779,7 +23882,7 @@ msgstr "Kurulum > Kullanıcı" msgid "Setup > User Permissions" msgstr "Kurulum > Kullanıcı İzinleri" -#: frappe/public/js/frappe/views/reports/query_report.js:1826 +#: frappe/public/js/frappe/views/reports/query_report.js:1834 #: frappe/public/js/frappe/views/reports/report_view.js:1713 msgid "Setup Auto Email" msgstr "Otomatik E-Postayı Ayarla" @@ -23920,6 +24023,12 @@ msgstr "Belgeyi Göster" msgid "Show Error" msgstr "Hatayı Göster" +#. Label of the show_external_link_warning (Select) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Show External Link Warning" +msgstr "" + #: frappe/public/js/frappe/form/layout.js:578 msgid "Show Fieldname (click to copy on clipboard)" msgstr "" @@ -24048,7 +24157,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:1849 +#: frappe/public/js/frappe/list/list_view.js:1851 msgid "Show Tags" msgstr "Etiketleri Göster" @@ -24255,36 +24364,36 @@ msgstr "Kayıt devre dışı bırakıldı" msgid "Signups have been disabled for this website." msgstr "Bu web sitesi için kayıtlar devre dışı bırakıldı." -#. 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 "Basit Python İfadesi, Örnek: Status in (\"Closed\", \"Cancelled\")" - #. 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 "Basit Python İfadesi, Örnek: Status in (\"Closed\", \"Cancelled\")" +msgid "Simple Python Expression, Example: status == \"Invalid\"" +msgstr "" #. 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 "Basit Python İfadesi, Örnek: status == 'Open' ve type == 'Bug'" +msgid "Simple Python Expression, Example: status == 'Open' and issue_type == 'Bug'" +msgstr "" + +#. 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 "" #. Label of the simultaneous_sessions (Int) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Simultaneous Sessions" msgstr "Eşzamanlı Oturumlar" -#: frappe/custom/doctype/customize_form/customize_form.py:126 +#: frappe/custom/doctype/customize_form/customize_form.py:128 msgid "Single DocTypes cannot be customized." msgstr "Tek Sayfa DocType'lar özelleştirilemez." #. Description of the 'Is Single' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:67 +#: frappe/core/doctype/doctype/doctype_list.js:68 msgid "Single Types have only one record no tables associated. Values are stored in tabSingles" msgstr "Tek DocType Sayfaları ilişkili tabloları olmayan yalnızca tek kayıt alanı olan belgelerdir. Değerler tabSingles içinde saklanır." @@ -24620,7 +24729,7 @@ msgid "Splash Image" msgstr "Açılış Görüntüsü" #: frappe/desk/reportview.py:455 -#: frappe/public/js/frappe/web_form/web_form_list.js:175 +#: frappe/public/js/frappe/web_form/web_form_list.js:176 #: frappe/templates/print_formats/standard_macros.html:44 msgid "Sr" msgstr "Sr" @@ -24652,7 +24761,7 @@ msgstr "" msgid "Standard" msgstr "Standart" -#: frappe/model/delete_doc.py:79 +#: frappe/model/delete_doc.py:119 msgid "Standard DocType can not be deleted." msgstr "Standart DocType silinemez." @@ -24922,7 +25031,7 @@ msgstr "Giriş bilgilerinizi doğrulama adımları" #. Label of the sticky (Check) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json -#: frappe/public/js/frappe/form/grid_row.js:454 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Sticky" msgstr "" @@ -24952,7 +25061,7 @@ msgstr "Tabloya Göre Depolama Kullanımı" msgid "Store Attached PDF Document" msgstr "Eklenen PDF Belgesini Sakla" -#: frappe/core/doctype/user/user.js:490 +#: frappe/core/doctype/user/user.js:497 msgid "Store the API secret securely. It won't be displayed again." msgstr "" @@ -25064,6 +25173,7 @@ msgstr "Gönderim Kuyruğu" #. 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' +#. Button label of the request-to-delete-data Web Form #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/docshare/docshare.json @@ -25072,10 +25182,11 @@ msgstr "Gönderim Kuyruğu" #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/quick_entry.js:225 #: frappe/public/js/frappe/ui/capture.js:307 +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json msgid "Submit" msgstr "Gönder" -#: frappe/public/js/frappe/list/list_view.js:2231 +#: frappe/public/js/frappe/list/list_view.js:2233 msgctxt "Button in list view actions menu" msgid "Submit" msgstr "Gönder/İşle" @@ -25085,7 +25196,7 @@ msgctxt "Button in web form" msgid "Submit" msgstr "Gönder/İşle" -#: frappe/public/js/frappe/ui/dialog.js:63 +#: frappe/public/js/frappe/ui/dialog.js:64 msgctxt "Primary action in dialog" msgid "Submit" msgstr "Gönder/İşle" @@ -25133,7 +25244,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:2236 +#: frappe/public/js/frappe/list/list_view.js:2238 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "{0} belge gönderilsin mi?" @@ -25183,7 +25294,7 @@ msgstr "Alt Başlık" #: 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:1171 +#: frappe/public/js/frappe/form/grid.js:1172 #: frappe/public/js/frappe/views/translation_manager.js:21 #: frappe/templates/includes/login/login.js:230 #: frappe/templates/includes/login/login.js:236 @@ -25398,7 +25509,7 @@ msgstr "Senkronize Ediliyor" msgid "Syncing {0} of {1}" msgstr "Senkronize Ediliyor {0}/{1}" -#: frappe/utils/data.py:2547 +#: frappe/utils/data.py:2573 msgid "Syntax Error" msgstr "Sözdizimi Hatası" @@ -25709,7 +25820,7 @@ msgstr "Tablo Çoklu Seçim" msgid "Table Trimmed" msgstr "Tablo Temizlendi" -#: frappe/public/js/frappe/form/grid.js:1170 +#: frappe/public/js/frappe/form/grid.js:1171 msgid "Table updated" msgstr "Tablo güncellendi" @@ -25926,7 +26037,7 @@ msgstr "Teşekkürler" msgid "The Auto Repeat for this document has been disabled." msgstr "Bu belge için Otomatik Tekrarlama devre dışı bırakıldı." -#: frappe/public/js/frappe/form/grid.js:1193 +#: frappe/public/js/frappe/form/grid.js:1194 msgid "The CSV format is case sensitive" msgstr "CSV formatı büyük/küçük harfe duyarlıdır" @@ -25998,7 +26109,7 @@ msgstr "Yorum alanı boş olamaz" msgid "The contents of this email are strictly confidential. Please do not forward this email to anyone." msgstr "Bu e-postanın içeriği kesinlikle gizlidir. Lütfen bu e-postayı kimseye iletmeyin." -#: frappe/public/js/frappe/list/list_view.js:685 +#: frappe/public/js/frappe/list/list_view.js:687 msgid "The count shown is an estimated count. Click here to see the accurate count." msgstr "Gösterilen sayı tahmini bir sayıdır. Kesin sayıyı görmek için buraya tıklayın." @@ -26112,7 +26223,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:388 frappe/public/js/frappe/request.js:149 +#: frappe/app.py:391 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" @@ -26185,12 +26296,12 @@ 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:965 +#: frappe/public/js/frappe/views/reports/query_report.js:973 msgid "There are {0} with the same filters already in the queue:" msgstr "Aynı filtrelere sahip {0} zaten kuyrukta mevcut:" #: frappe/website/doctype/web_form/web_form.js:81 -#: frappe/website/doctype/web_form/web_form.js:317 +#: frappe/website/doctype/web_form/web_form.js:318 msgid "There can be only 9 Page Break fields in a Web Form" msgstr "" @@ -26214,11 +26325,11 @@ msgstr "" msgid "There is nothing new to show you right now." msgstr "Şu anda size gösterecek yeni bir şey yok." -#: frappe/core/doctype/file/file.py:640 frappe/utils/file_manager.py:372 +#: frappe/core/doctype/file/file.py:643 frappe/utils/file_manager.py:372 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:962 +#: frappe/public/js/frappe/views/reports/query_report.js:970 msgid "There is {0} with the same filters already in the queue:" msgstr "Aynı filtrelere sahip {0} kuyrukta zaten mevcut:" @@ -26230,7 +26341,7 @@ msgstr "" msgid "There was an error building this page" msgstr "Bu sayfayı oluştururken bir hata oluştu." -#: frappe/public/js/frappe/views/kanban/kanban_view.js:182 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:196 msgid "There was an error saving filters" msgstr "Filtreleri kaydederken bir hata oluştu" @@ -26287,7 +26398,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:391 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:405 msgid "This Kanban Board will be private" msgstr "Bu Kanban Panosu özel olacak" @@ -26324,7 +26435,7 @@ msgstr "Bu eylem yalnızca {} için izin verilir" msgid "This cannot be undone" msgstr "Bu işlem geri alınamaz" -#: frappe/desk/doctype/number_card/number_card.js:480 +#: frappe/desk/doctype/number_card/number_card.js:484 msgctxt "Number Card" msgid "This card is visible only to Administrator and System Managers by default. Set a DocType to share with users who have read access." msgstr "" @@ -26347,7 +26458,7 @@ msgstr "Bu dcotype için temizlenecek artık alan yok" msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes." msgstr "" -#: frappe/model/delete_doc.py:113 +#: frappe/model/delete_doc.py:153 msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time." msgstr "Bu belge başka bir kullanıcı tarafından değiştirildiği için şu anda silinemiyor. Lütfen bir süre sonra tekrar deneyin." @@ -26389,7 +26500,7 @@ msgid "This field will appear only if the fieldname defined here has value OR th "eval:doc.age>18" msgstr "" -#: frappe/core/doctype/file/file.py:522 +#: frappe/core/doctype/file/file.py:525 msgid "This file is attached to a protected document and cannot be deleted." msgstr "" @@ -26424,7 +26535,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:2189 +#: frappe/public/js/frappe/views/reports/query_report.js:2197 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." @@ -26474,7 +26585,7 @@ msgstr "" msgid "This month" msgstr "Bu Ay" -#: frappe/public/js/frappe/views/reports/query_report.js:1037 +#: frappe/public/js/frappe/views/reports/query_report.js:1045 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." @@ -26482,7 +26593,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:853 +#: frappe/public/js/frappe/views/reports/query_report.js:861 msgid "This report was generated {0}." msgstr "Bu rapor {0} oluşturuldu." @@ -26624,9 +26735,11 @@ msgstr "" #. Label of the time_zone (Select) field in DocType 'System Settings' #. Label of the time_zone (Autocomplete) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #. 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/core/web_form/edit_profile/edit_profile.json #: frappe/desk/page/setup_wizard/setup_wizard.js:407 #: frappe/website/doctype/web_page_view/web_page_view.json msgid "Time Zone" @@ -26894,7 +27007,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:854 +#: frappe/public/js/frappe/views/reports/query_report.js:862 msgid "To get the updated report, click on {0}." msgstr "Güncellenmiş raporu almak için {0} adresine tıklayın." @@ -26969,7 +27082,7 @@ msgstr "Izgara Görünümü" msgid "Toggle Sidebar" msgstr "Kenar Çubuğunu Aç/Kapat" -#: frappe/public/js/frappe/list/list_view.js:1964 +#: frappe/public/js/frappe/list/list_view.js:1966 msgctxt "Button in list view menu" msgid "Toggle Sidebar" msgstr "Kenar Çubuğunu Aç/Kapat" @@ -27095,7 +27208,7 @@ msgstr "Konu" #: frappe/desk/query_report.py:587 #: frappe/public/js/frappe/views/reports/print_grid.html:45 -#: frappe/public/js/frappe/views/reports/query_report.js:1324 +#: frappe/public/js/frappe/views/reports/query_report.js:1332 #: frappe/public/js/frappe/views/reports/report_view.js:1553 msgid "Total" msgstr "Toplam" @@ -27254,7 +27367,7 @@ msgstr "Geçişler" msgid "Translatable" msgstr "Çevirilebilir" -#: frappe/public/js/frappe/views/reports/query_report.js:2244 +#: frappe/public/js/frappe/views/reports/query_report.js:2252 msgid "Translate Data" msgstr "" @@ -27613,7 +27726,7 @@ msgstr "Eksik bir e-posta hesabı nedeniyle e-posta gönderilemiyor. Lütfen Aya msgid "Unable to update event" msgstr "Etkinlik güncellenemiyor" -#: frappe/core/doctype/file/file.py:486 +#: frappe/core/doctype/file/file.py:489 msgid "Unable to write file format for {0}" msgstr "{0} için dosya biçimi yazılamıyor" @@ -27622,7 +27735,7 @@ msgstr "{0} için dosya biçimi yazılamıyor" msgid "Unassign Condition" msgstr "Koşulu Kaldır" -#: frappe/app.py:396 +#: frappe/app.py:399 msgid "Uncaught Exception" msgstr "" @@ -27638,7 +27751,7 @@ msgstr "Geri Al" msgid "Undo last action" msgstr "Son işlemi geri al" -#: frappe/database/query.py:1495 +#: frappe/database/query.py:1497 msgid "Unescaped quotes in string literal: {0}" msgstr "" @@ -27685,7 +27798,7 @@ msgstr "Bilinmeyen Sütun: {0}" msgid "Unknown Rounding Method: {}" msgstr "Bilinmeyen Yuvarlama Yöntemi: {}" -#: frappe/auth.py:316 +#: frappe/auth.py:319 msgid "Unknown User" msgstr "Bilinmeyen Kullanıcı" @@ -27751,8 +27864,8 @@ msgstr "" msgid "Unsubscribed" msgstr "Kaydolmamış" -#: frappe/database/query.py:653 frappe/database/query.py:1387 -#: frappe/database/query.py:1397 +#: frappe/database/query.py:655 frappe/database/query.py:1389 +#: frappe/database/query.py:1399 msgid "Unsupported function or invalid field name: {0}" msgstr "" @@ -27786,7 +27899,7 @@ msgstr "Bugünün Yaklaşan Etkinlikleri" #: 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:427 +#: frappe/public/js/frappe/form/grid_row.js:428 msgid "Update" msgstr "Güncelle" @@ -27820,6 +27933,11 @@ msgstr "Siparişi Güncelle" msgid "Update Password" msgstr "Şifreyi Güncelle" +#. Title of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Update Profile" +msgstr "" + #. Label of the update_series (Section Break) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -28035,11 +28153,7 @@ msgstr "Farklı E-posta Kimliği kullan" msgid "Use if the default settings don't seem to detect your data correctly" msgstr "Varsayılan ayarların verilerinizi doğru şekilde algılamadığını düşünüyorsanız kullanın" -#: frappe/model/db_query.py:436 -msgid "Use of function {0} in field is restricted" -msgstr "" - -#: frappe/model/db_query.py:413 +#: frappe/model/db_query.py:411 msgid "Use of sub-query or function is restricted" msgstr "" @@ -28261,12 +28375,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:1944 +#: frappe/public/js/frappe/views/reports/query_report.js:1952 #: frappe/public/js/frappe/views/reports/report_view.js:1761 msgid "User Permissions" msgstr "Kullanıcı İzinleri" -#: frappe/public/js/frappe/list/list_view.js:1922 +#: frappe/public/js/frappe/list/list_view.js:1924 msgctxt "Button in list view menu" msgid "User Permissions" msgstr "Kullanıcı İzinleri" @@ -28410,7 +28524,7 @@ msgstr "{0}, {1} olarak kullanıyor" msgid "User {0} is disabled" msgstr "Kullanıcı {0} devre dışı" -#: frappe/sessions.py:242 +#: frappe/sessions.py:243 msgid "User {0} is disabled. Please contact your System Manager." msgstr "{0} isimli Kullanıcı devre dışı. Lütfen Sistem Yöneticinizle iletişime geçin." @@ -28587,7 +28701,7 @@ msgstr "{0} için değer negatif olamaz : {1}" msgid "Value for a check field can be either 0 or 1" msgstr "Bir kontrol alanı için değer 0 veya 1 olabilir" -#: frappe/custom/doctype/customize_form/customize_form.py:612 +#: frappe/custom/doctype/customize_form/customize_form.py:616 msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters" msgstr "{0} alanı için değer {1} için çok uzun. Uzunluk {2} karakterden daha az olmalıdır" @@ -28708,7 +28822,7 @@ msgstr "Tümünü Göster" msgid "View Audit Trail" msgstr "Denetim İzini Görüntüle" -#: frappe/core/doctype/user/user.js:156 +#: frappe/core/doctype/user/user.js:144 msgid "View Doctype Permissions" msgstr "Doctype İzinlerini Görüntüle" @@ -28720,7 +28834,7 @@ msgstr "Dosyayı Göster" msgid "View Full Log" msgstr "Tam Günlüğü Görüntüle" -#: frappe/public/js/frappe/views/treeview.js:484 +#: frappe/public/js/frappe/views/treeview.js:486 #: frappe/public/js/frappe/widgets/quick_list_widget.js:258 msgid "View List" msgstr "Liste Görünümü" @@ -28730,7 +28844,7 @@ msgstr "Liste Görünümü" msgid "View Log" msgstr "Günlüğü Görüntüle" -#: frappe/core/doctype/user/user.js:147 +#: frappe/core/doctype/user/user.js:135 #: frappe/core/doctype/user_permission/user_permission.js:24 msgid "View Permitted Documents" msgstr "İzin Verilen Belgeleri Görüntüle" @@ -28846,6 +28960,7 @@ msgid "Warehouse" msgstr "Depo" #. Option for the 'Style' (Select) field in DocType 'Workflow State' +#: frappe/public/js/frappe/router.js:613 #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Warning" msgstr "Uyarı" @@ -29491,7 +29606,7 @@ msgstr "İş akışı başarıyla güncellendi" msgid "Workspace" msgstr "Çalışma Alanı" -#: frappe/public/js/frappe/router.js:175 +#: frappe/public/js/frappe/router.js:180 msgid "Workspace {0} does not exist" msgstr "Çalışma Alanı {0} mevcut değil" @@ -29613,7 +29728,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:1225 +#: frappe/public/js/frappe/views/reports/query_report.js:1233 msgid "Y Field" msgstr "Y Alanı" @@ -29675,7 +29790,7 @@ msgstr "Sarı" #: frappe/public/js/form_builder/utils.js:336 #: frappe/public/js/frappe/form/controls/link.js:498 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1665 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 #: frappe/website/doctype/help_article/templates/help_article.html:25 msgid "Yes" msgstr "Evet" @@ -29711,6 +29826,10 @@ msgstr "" msgid "You added {0} rows to {1}" msgstr "" +#: frappe/public/js/frappe/router.js:642 +msgid "You are about to open an external link. To confirm, click the link again." +msgstr "" + #: frappe/public/js/frappe/dom.js:438 msgid "You are connected to internet." msgstr "İnternete bağlısınız." @@ -29754,7 +29873,7 @@ msgstr "Raporu düzenlemenize izin verilmiyor." msgid "You are not allowed to export {} doctype" msgstr "{} doctype'ı dışa aktarmanıza izin verilmiyor" -#: frappe/public/js/frappe/views/treeview.js:448 +#: frappe/public/js/frappe/views/treeview.js:450 msgid "You are not allowed to print this report" msgstr "Bu raporu yazdırmanıza izin verilmiyor" @@ -29762,7 +29881,7 @@ msgstr "Bu raporu yazdırmanıza izin verilmiyor" msgid "You are not allowed to send emails related to this document" msgstr "Bu belge ile ilişkili e-posta göndermenize izin verilmiyor" -#: frappe/website/doctype/web_form/web_form.py:605 +#: frappe/website/doctype/web_form/web_form.py:632 msgid "You are not allowed to update this Web Form Document" msgstr "Bu Web Form Belgesini güncelleme izniniz yok" @@ -29835,11 +29954,11 @@ msgstr "Saklama ayalarlarını {0} konumundan değiştirebilirsiniz." msgid "You can continue with the onboarding after exploring this page" msgstr "Bu sayfayı inceledikten sonra tanıtıma devam edebilirsiniz" -#: frappe/model/delete_doc.py:137 +#: frappe/model/delete_doc.py:177 msgid "You can disable this {0} instead of deleting it." msgstr "Bu {0} öğesini silmek yerine devre dışı bırakabilirsiniz." -#: frappe/core/doctype/file/file.py:758 +#: frappe/core/doctype/file/file.py:761 msgid "You can increase the limit from System Settings." msgstr "Sistem Ayarlarından limiti artırabilirsiniz." @@ -29889,11 +30008,11 @@ msgstr "Alanların yetki seviyelerini ayarlamak için Formu Özelleştir'i kulla msgid "You can use wildcard %" msgstr "Filtrede % karakteriyle arama yapabilirsiniz" -#: frappe/custom/doctype/customize_form/customize_form.py:390 +#: frappe/custom/doctype/customize_form/customize_form.py:394 msgid "You can't set 'Options' for field {0}" msgstr "{0} alanı için 'Seçenekler'i ayarlayamazsınız" -#: frappe/custom/doctype/customize_form/customize_form.py:394 +#: frappe/custom/doctype/customize_form/customize_form.py:398 msgid "You can't set 'Translatable' for field {0}" msgstr "{0} alanı için 'Çevrilebilir' ayarlayamazsınız" @@ -29911,7 +30030,7 @@ msgstr "Bu belgeyi iptal ettiniz {1}" msgid "You cannot create a dashboard chart from single DocTypes" msgstr "Tek DocType'lardan bir gösterge tablosu grafiği oluşturamazsınız" -#: frappe/custom/doctype/customize_form/customize_form.py:386 +#: frappe/custom/doctype/customize_form/customize_form.py:390 msgid "You cannot unset 'Read Only' for field {0}" msgstr "{0} alanı için 'Salt Okunur' ayarını değiştiremezsiniz" @@ -29954,11 +30073,11 @@ 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:381 +#: frappe/app.py:384 msgid "You do not have enough permissions to complete the action" msgstr "İşlemi tamamlamak için yeterli izniniz yok" -#: frappe/database/query.py:529 +#: frappe/database/query.py:531 msgid "You do not have permission to access field: {0}" msgstr "" @@ -29974,7 +30093,7 @@ msgstr "Bağlantılı tüm belgeleri iptal etme yetkiniz yok." msgid "You don't have access to Report: {0}" msgstr "Rapora erişiminiz yok: {0}" -#: frappe/website/doctype/web_form/web_form.py:808 +#: frappe/website/doctype/web_form/web_form.py:835 msgid "You don't have permission to access the {0} DocType." msgstr "{0} isimli DocType erişimi için izniniz yok." @@ -29998,7 +30117,7 @@ msgstr "Şu kişiden yeni bir mesajınız var:" msgid "You have been successfully logged out" msgstr "Başarıyla çıkış yaptınız" -#: frappe/custom/doctype/customize_form/customize_form.py:245 +#: frappe/custom/doctype/customize_form/customize_form.py:247 msgid "You have hit the row size limit on database table: {0}" msgstr "Veritabanı tablosunda satır boyutu sınırına ulaştınız: {0}" @@ -30026,7 +30145,7 @@ msgstr "Görüntülenmeyen {0} Var" msgid "You haven't added any Dashboard Charts or Number Cards yet." msgstr "Henüz herhangi bir Gösterge Tablosu ve Sayı Kartı eklemediniz." -#: frappe/public/js/frappe/list/list_view.js:501 +#: frappe/public/js/frappe/list/list_view.js:503 msgid "You haven't created a {0} yet" msgstr "Henüz bir {0} oluşturmadınız." @@ -30043,11 +30162,11 @@ msgstr "Düzenlediniz" msgid "You must add atleast one link." msgstr "En az bir bağlantı eklemelisiniz." -#: frappe/website/doctype/web_form/web_form.py:804 +#: frappe/website/doctype/web_form/web_form.py:831 msgid "You must be logged in to use this form." msgstr "Bu formu kullanabilmek için giriş yapmalısınız." -#: frappe/website/doctype/web_form/web_form.py:645 +#: frappe/website/doctype/web_form/web_form.py:672 msgid "You must login to submit this form" msgstr "Bu formu göndermek için giriş yapmalısınız" @@ -30162,6 +30281,10 @@ msgstr "Bu belgeyi takip etmeyi bıraktınız" msgid "You viewed this" msgstr "Bunu görüntülediniz" +#: frappe/public/js/frappe/router.js:653 +msgid "You will be redirected to:" +msgstr "" + #: frappe/core/doctype/user_invitation/user_invitation.py:113 msgid "You've been invited to join {0}" msgstr "" @@ -30207,7 +30330,7 @@ msgstr "Kısayollar" msgid "Your account has been deleted" msgstr "Hesabınız silindi" -#: frappe/auth.py:514 +#: frappe/auth.py:517 msgid "Your account has been locked and will resume after {0} seconds" msgstr "Hesabınız kilitlendi ve {0} saniye sonra yeniden erişilebilir olacak" @@ -30273,7 +30396,7 @@ msgstr "Sorgunuz alındı. Kısa süre içinde geri dönüş yapacağız. Ek bil msgid "Your report is being generated in the background. You will receive an email on {0} with a download link once it is ready." msgstr "" -#: frappe/app.py:374 +#: frappe/app.py:377 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." @@ -30610,7 +30733,7 @@ msgstr "liste" msgid "logged in" msgstr "giriş yaptı" -#: frappe/website/doctype/web_form/web_form.js:362 +#: frappe/website/doctype/web_form/web_form.js:363 msgid "login_required" msgstr "" @@ -30948,7 +31071,7 @@ msgstr "Veri İçe Aktarma ile" msgid "via Google Meet" msgstr "Google Meet ile" -#: frappe/email/doctype/notification/notification.py:403 +#: frappe/email/doctype/notification/notification.py:405 msgid "via Notification" msgstr "Bildirim aracılığıyla" @@ -31058,7 +31181,7 @@ msgstr "{0} Grafiği" msgid "{0} Dashboard" msgstr "{0} Gösterge Paneli" -#: frappe/public/js/frappe/form/grid_row.js:486 +#: frappe/public/js/frappe/form/grid_row.js:487 #: frappe/public/js/frappe/list/list_settings.js:225 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:178 msgid "{0} Fields" @@ -31109,7 +31232,7 @@ msgstr "" msgid "{0} Report" msgstr "{0} Raporu" -#: frappe/public/js/frappe/views/reports/query_report.js:956 +#: frappe/public/js/frappe/views/reports/query_report.js:964 msgid "{0} Reports" msgstr "{0} Raporları" @@ -31182,7 +31305,7 @@ msgctxt "Form timeline" msgid "{0} attached {1}" msgstr "{0} {1} dosyasını ekledi." -#: frappe/core/doctype/system_settings/system_settings.py:152 +#: frappe/core/doctype/system_settings/system_settings.py:153 msgid "{0} can not be more than {1}" msgstr "{0} {1} değerinden fazla olamaz" @@ -31259,7 +31382,7 @@ 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 +#: frappe/database/query.py:710 msgid "{0} fields cannot contain backticks (`): {1}" msgstr "" @@ -31304,7 +31427,7 @@ msgstr "" msgid "{0} is a mandatory field" msgstr "{0} zorunlu bir alandır" -#: frappe/core/doctype/file/file.py:566 +#: frappe/core/doctype/file/file.py:569 msgid "{0} is a not a valid zip file" msgstr "{0} geçerli bir zip dosyası değil" @@ -31353,7 +31476,7 @@ msgstr "{0} {1} gibi" msgid "{0} is mandatory" msgstr "{0} yaşam alanı" -#: frappe/database/query.py:485 +#: frappe/database/query.py:487 msgid "{0} is not a child table of {1}" msgstr "" @@ -31373,7 +31496,7 @@ msgstr "{0} geçerli bir Takvim değil. Varsayılan Takvime yönlendiriliyor." msgid "{0} is not a valid Cron expression." msgstr "" -#: frappe/public/js/frappe/form/controls/dynamic_link.js:27 +#: frappe/public/js/frappe/form/controls/dynamic_link.js:23 msgid "{0} is not a valid DocType for Dynamic Link" msgstr "{0} Dinamik Bağlantı için geçerli bir DocType değil" @@ -31410,7 +31533,7 @@ msgstr "{0}, {1} için geçerli bir üst alan değil" msgid "{0} is not a valid report format. Report format should one of the following {1}" msgstr "{0} geçerli bir rapor biçimi değil. Rapor biçimi aşağıdakilerden biri olmalıdır {1}" -#: frappe/core/doctype/file/file.py:546 +#: frappe/core/doctype/file/file.py:549 msgid "{0} is not a zip file" msgstr "{0} bir zip dosyası değil" @@ -31458,7 +31581,7 @@ msgstr "{0} ayarlandı" msgid "{0} is within {1}" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1839 +#: frappe/public/js/frappe/list/list_view.js:1841 msgid "{0} items selected" msgstr "{0} Kayıt Seçildi" @@ -31544,11 +31667,11 @@ msgid "{0} not found" msgstr "{0} bulunamadı" #: frappe/core/doctype/report/report.py:427 -#: frappe/public/js/frappe/list/list_view.js:1211 +#: frappe/public/js/frappe/list/list_view.js:1213 msgid "{0} of {1}" msgstr "{0}/{1} Kayıt Listeleniyor" -#: frappe/public/js/frappe/list/list_view.js:1213 +#: frappe/public/js/frappe/list/list_view.js:1215 msgid "{0} of {1} ({2} rows with children)" msgstr "" @@ -31598,7 +31721,7 @@ msgstr "{0} atamalarını kaldırdı." msgid "{0} removed {1} rows from {2}" msgstr "" -#: frappe/public/js/frappe/roles_editor.js:62 +#: frappe/public/js/frappe/roles_editor.js:64 msgid "{0} role does not have permission on any doctype" msgstr "{0} rolünün herhangi bir DocType üzerinde izni yok." @@ -31672,7 +31795,7 @@ msgstr "" msgid "{0} un-shared this document with {1}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:254 +#: frappe/custom/doctype/customize_form/customize_form.py:256 msgid "{0} updated" msgstr "{0} Güncellendi" @@ -31732,7 +31855,7 @@ msgstr "{0} {1} önceden kaydedilmiş dökümanlarla bağlantılı: {2}" msgid "{0} {1} not found" msgstr "{0} {1} bulunamadı." -#: frappe/model/delete_doc.py:248 +#: frappe/model/delete_doc.py:288 msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first." msgstr "{0} {1}: Gönderilen kayıt silinemez. Önce {2} İptal {3} işlemini gerçekleştirin." @@ -31845,7 +31968,7 @@ msgstr "{0}: {1}" msgid "{0}: {1} is set to state {2}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1283 +#: frappe/public/js/frappe/views/reports/query_report.js:1291 msgid "{0}: {1} vs {2}" msgstr "{0}: {1} ile {2}" @@ -31881,11 +32004,11 @@ msgstr "" msgid "{} Complete" msgstr "{} Tamamlandı" -#: frappe/utils/data.py:2541 +#: frappe/utils/data.py:2567 msgid "{} Invalid python code on line {}" msgstr "" -#: frappe/utils/data.py:2550 +#: frappe/utils/data.py:2576 msgid "{} Possibly invalid python code.
{}" msgstr "{} Muhtemelen geçersiz python kodu.
{}" @@ -31911,7 +32034,7 @@ msgstr "{} devre dışı bırakılmıştır. Yalnızca {} işaretliyse etkinleş msgid "{} is not a valid date string." msgstr "{} geçerli bir tarih dizesi değil." -#: frappe/commands/utils.py:562 +#: frappe/commands/utils.py:561 msgid "{} not found in PATH! This is required to access the console." msgstr "" diff --git a/frappe/locale/vi.po b/frappe/locale/vi.po index 7f41636263..448aa505f7 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-09-21 09:33+0000\n" -"PO-Revision-Date: 2025-09-21 19:57\n" +"POT-Creation-Date: 2025-10-05 09:33+0000\n" +"PO-Revision-Date: 2025-10-06 22:59\n" "Last-Translator: developers@frappe.io\n" "Language-Team: Vietnamese\n" "MIME-Version: 1.0\n" @@ -78,7 +78,7 @@ msgstr "" msgid "'In List View' is not allowed for field {0} of type {1}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:363 +#: frappe/custom/doctype/customize_form/customize_form.py:367 msgid "'In List View' not allowed for type {0} in row {1}" msgstr "" @@ -122,7 +122,7 @@ msgstr "" msgid "0 is highest" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:892 +#: frappe/public/js/frappe/form/grid_row.js:893 msgid "1 = True & 0 = False" msgstr "" @@ -140,11 +140,11 @@ msgstr "" msgid "1 Google Calendar Event synced." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:955 +#: frappe/public/js/frappe/views/reports/query_report.js:963 msgid "1 Report" msgstr "" -#: frappe/tests/test_utils.py:739 +#: frappe/tests/test_utils.py:845 msgid "1 day ago" msgstr "" @@ -153,17 +153,17 @@ msgid "1 hour" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:52 -#: frappe/tests/test_utils.py:737 +#: frappe/tests/test_utils.py:843 msgid "1 hour ago" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:48 -#: frappe/tests/test_utils.py:735 +#: frappe/tests/test_utils.py:841 msgid "1 minute ago" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:66 -#: frappe/tests/test_utils.py:743 +#: frappe/tests/test_utils.py:849 msgid "1 month ago" msgstr "" @@ -185,37 +185,37 @@ msgctxt "User added row to child table" msgid "1 row to {0}" msgstr "" -#: frappe/tests/test_utils.py:734 +#: frappe/tests/test_utils.py:840 msgid "1 second ago" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:62 -#: frappe/tests/test_utils.py:741 +#: frappe/tests/test_utils.py:847 msgid "1 week ago" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:70 -#: frappe/tests/test_utils.py:745 +#: frappe/tests/test_utils.py:851 msgid "1 year ago" msgstr "" -#: frappe/tests/test_utils.py:738 +#: frappe/tests/test_utils.py:844 msgid "2 hours ago" msgstr "" -#: frappe/tests/test_utils.py:744 +#: frappe/tests/test_utils.py:850 msgid "2 months ago" msgstr "" -#: frappe/tests/test_utils.py:742 +#: frappe/tests/test_utils.py:848 msgid "2 weeks ago" msgstr "" -#: frappe/tests/test_utils.py:746 +#: frappe/tests/test_utils.py:852 msgid "2 years ago" msgstr "" -#: frappe/tests/test_utils.py:736 +#: frappe/tests/test_utils.py:842 msgid "3 minutes ago" msgstr "" @@ -231,7 +231,7 @@ msgstr "" msgid "5 Records" msgstr "" -#: frappe/tests/test_utils.py:740 +#: frappe/tests/test_utils.py:846 msgid "5 days ago" msgstr "" @@ -267,6 +267,16 @@ msgstr "" 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 "" +#. Introduction text of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "

Request a file containing your personally identifiable information (PII) that is saved on our system. The file will be in JSON format and is sent to you by email. If you would like to have your PII deleted from our system, please make a request to delete data.

" +msgstr "" + +#. Introduction text of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "

Send a request to delete your account and personally identifiable information (PII) that is stored on our system. You will receive an email to verify your request. Once the request is verified we will take care of deleting your PII. If you just want to check what PII we have stored, you can request your data.

" +msgstr "" + #. Content of the 'Help HTML' (HTML) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -568,6 +578,11 @@ msgstr "" msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three." msgstr "" +#. Success message of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "A download link with your data will be sent to the email address associated with your account." +msgstr "" + #: frappe/custom/doctype/custom_field/custom_field.py:175 msgid "A field with the name {0} already exists in {1}" msgstr "" @@ -694,7 +709,7 @@ msgstr "" #. 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.js:452 frappe/core/doctype/user/user.json +#: frappe/core/doctype/user/user.js:459 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 @@ -713,7 +728,7 @@ msgstr "" msgid "API Key cannot be regenerated" msgstr "" -#: frappe/core/doctype/user/user.js:449 +#: frappe/core/doctype/user/user.js:456 msgid "API Keys" msgstr "" @@ -737,7 +752,7 @@ msgstr "" #. 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.js:459 frappe/core/doctype/user/user.json +#: frappe/core/doctype/user/user.js:466 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" @@ -823,7 +838,7 @@ msgstr "" msgid "Access Token URL" msgstr "" -#: frappe/auth.py:491 +#: frappe/auth.py:494 msgid "Access not allowed from this IP Address" msgstr "" @@ -939,7 +954,7 @@ msgstr "" #: 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:842 +#: frappe/public/js/frappe/views/reports/query_report.js:850 msgid "Actions" msgstr "" @@ -996,7 +1011,7 @@ msgstr "" #: 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:501 +#: frappe/public/js/frappe/form/grid_row.js:502 #: 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 @@ -1007,7 +1022,7 @@ msgstr "" msgid "Add" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:454 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Add / Remove Columns" msgstr "" @@ -1052,8 +1067,8 @@ msgid "Add Child" msgstr "" #: frappe/public/js/frappe/views/kanban/kanban_board.html:4 -#: frappe/public/js/frappe/views/reports/query_report.js:1832 -#: frappe/public/js/frappe/views/reports/query_report.js:1835 +#: frappe/public/js/frappe/views/reports/query_report.js:1840 +#: frappe/public/js/frappe/views/reports/query_report.js:1843 #: frappe/public/js/frappe/views/reports/report_view.js:360 #: frappe/public/js/frappe/views/reports/report_view.js:385 #: frappe/public/js/print_format_builder/Field.vue:112 @@ -1147,7 +1162,7 @@ msgstr "" msgid "Add Tags" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2149 +#: frappe/public/js/frappe/list/list_view.js:2151 msgctxt "Button in list view actions menu" msgid "Add Tags" msgstr "" @@ -1528,11 +1543,11 @@ msgstr "" msgid "Alerts and Notifications" msgstr "" -#: frappe/database/query.py:1608 +#: frappe/database/query.py:1610 msgid "Alias cannot be a SQL keyword: {0}" msgstr "" -#: frappe/database/query.py:1533 +#: frappe/database/query.py:1535 msgid "Alias must be a string" msgstr "" @@ -1979,6 +1994,12 @@ msgstr "" msgid "Alternative Email ID" msgstr "" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Always" +msgstr "" + #. Label of the always_bcc (Data) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Always BCC Address" @@ -2055,6 +2076,11 @@ msgstr "" msgid "Amendment naming rules updated." msgstr "" +#. Success message of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "An email to verify your request has been sent to your email address. Please verify your request to complete the process." +msgstr "" + #: frappe/public/js/frappe/ui/toolbar/toolbar.js:354 msgid "An error occurred while setting Session Defaults" msgstr "" @@ -2237,7 +2263,7 @@ msgstr "" msgid "Apply" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2134 +#: frappe/public/js/frappe/list/list_view.js:2136 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" msgstr "" @@ -2322,7 +2348,7 @@ msgstr "" msgid "Are you sure you want to cancel the invitation?" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2113 +#: frappe/public/js/frappe/list/list_view.js:2115 msgid "Are you sure you want to clear the assignments?" msgstr "" @@ -2358,7 +2384,7 @@ msgstr "" msgid "Are you sure you want to discard the changes?" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:969 +#: frappe/public/js/frappe/views/reports/query_report.js:977 msgid "Are you sure you want to generate a new report?" msgstr "" @@ -2366,7 +2392,7 @@ msgstr "" msgid "Are you sure you want to merge {0} with {1}?" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:108 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:118 msgid "Are you sure you want to proceed?" msgstr "" @@ -2421,6 +2447,12 @@ msgstr "" msgid "As per your request, your account and data on {0} associated with email {1} has been permanently deleted" msgstr "" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Ask" +msgstr "" + #. Label of the assign_condition (Code) field in DocType 'Assignment Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Assign Condition" @@ -2430,7 +2462,7 @@ msgstr "" msgid "Assign To" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2095 +#: frappe/public/js/frappe/list/list_view.js:2097 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "" @@ -2573,7 +2605,7 @@ msgstr "" msgid "Asynchronous" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:696 +#: frappe/public/js/frappe/form/grid_row.js:697 msgid "At least one column is required to show in the grid." msgstr "" @@ -3553,7 +3585,7 @@ msgstr "" msgid "Bulk Edit" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1189 +#: frappe/public/js/frappe/form/grid.js:1190 msgid "Bulk Edit {0}" msgstr "" @@ -3845,7 +3877,7 @@ msgstr "" #. 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/doctype/doctype_list.js:131 #: frappe/core/doctype/user_document_type/user_document_type.json #: frappe/core/doctype/user_invitation/user_invitation.js:17 #: frappe/email/doctype/notification/notification.json @@ -3853,7 +3885,7 @@ msgstr "" msgid "Cancel" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2204 +#: frappe/public/js/frappe/list/list_view.js:2206 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "" @@ -3871,7 +3903,7 @@ msgstr "" msgid "Cancel All Documents" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2209 +#: frappe/public/js/frappe/list/list_view.js:2211 msgctxt "Title of confirmation dialog" msgid "Cancel {0} documents?" msgstr "" @@ -3924,7 +3956,7 @@ msgstr "" msgid "Cannot Update After Submit" msgstr "" -#: frappe/core/doctype/file/file.py:643 +#: frappe/core/doctype/file/file.py:646 msgid "Cannot access file path {0}" msgstr "" @@ -3972,7 +4004,7 @@ msgstr "" msgid "Cannot delete Home and Attachments folders" msgstr "" -#: frappe/model/delete_doc.py:379 +#: frappe/model/delete_doc.py:419 msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}" msgstr "" @@ -4052,7 +4084,7 @@ msgstr "" msgid "Cannot find file {} on disk" msgstr "" -#: frappe/core/doctype/file/file.py:583 +#: frappe/core/doctype/file/file.py:586 msgid "Cannot get file contents of a Folder" msgstr "" @@ -4060,7 +4092,7 @@ msgstr "" msgid "Cannot have multiple printers mapped to a single print format." msgstr "" -#: frappe/public/js/frappe/form/grid.js:1133 +#: frappe/public/js/frappe/form/grid.js:1134 msgid "Cannot import table with more than 5000 rows." msgstr "" @@ -4076,7 +4108,7 @@ msgstr "" msgid "Cannot match column {0} with any field" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:175 +#: frappe/public/js/frappe/form/grid_row.js:176 msgid "Cannot move row" msgstr "" @@ -4105,11 +4137,11 @@ msgstr "" msgid "Cannot update {0}" msgstr "" -#: frappe/model/db_query.py:1130 +#: frappe/model/db_query.py:1136 msgid "Cannot use sub-query here." msgstr "" -#: frappe/model/db_query.py:1162 +#: frappe/model/db_query.py:1168 msgid "Cannot use {0} in order/group by" msgstr "" @@ -4381,11 +4413,11 @@ msgstr "" #. Description of the 'Is Child Table' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:52 +#: frappe/core/doctype/doctype/doctype_list.js:53 msgid "Child Tables are shown as a Grid in other DocTypes" msgstr "" -#: frappe/database/query.py:660 +#: frappe/database/query.py:662 msgid "Child query fields for '{0}' must be a list or tuple." msgstr "" @@ -4441,7 +4473,7 @@ msgstr "" msgid "Clear All" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2110 +#: frappe/public/js/frappe/list/list_view.js:2112 msgctxt "Button in list view actions menu" msgid "Clear Assignment" msgstr "" @@ -4535,7 +4567,7 @@ msgstr "" msgid "Click to Set Filters" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:739 +#: frappe/public/js/frappe/list/list_view.js:741 msgid "Click to sort by {0}" msgstr "" @@ -4713,7 +4745,7 @@ msgctxt "Shrink code field." msgid "Collapse" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2113 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 #: frappe/public/js/frappe/views/treeview.js:123 msgid "Collapse All" msgstr "" @@ -4768,7 +4800,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:1233 +#: frappe/public/js/frappe/views/reports/query_report.js:1241 #: frappe/public/js/frappe/widgets/widget_dialog.js:546 #: frappe/public/js/frappe/widgets/widget_dialog.js:694 #: frappe/website/doctype/color/color.json @@ -4824,11 +4856,11 @@ msgstr "" msgid "Column Name cannot be empty" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:454 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Column Width" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:661 +#: frappe/public/js/frappe/form/grid_row.js:662 msgid "Column width cannot be zero." msgstr "" @@ -4855,7 +4887,7 @@ msgstr "" msgid "Columns / Fields" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:397 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:411 msgid "Columns based on" msgstr "" @@ -5119,7 +5151,7 @@ msgstr "" msgid "Configure Chart" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:406 +#: frappe/public/js/frappe/form/grid_row.js:407 msgid "Configure Columns" msgstr "" @@ -5144,7 +5176,7 @@ msgstr "" msgid "Configure various aspects of how document naming works like naming series, current counter." msgstr "" -#: frappe/core/doctype/user/user.js:412 frappe/public/js/frappe/dom.js:345 +#: frappe/core/doctype/user/user.js:400 frappe/public/js/frappe/dom.js:345 #: frappe/www/update-password.html:66 msgid "Confirm" msgstr "" @@ -5163,7 +5195,7 @@ msgstr "" msgid "Confirm Deletion of Account" msgstr "" -#: frappe/core/doctype/user/user.js:196 +#: frappe/core/doctype/user/user.js:184 msgid "Confirm New Password" msgstr "" @@ -5416,7 +5448,7 @@ msgstr "" msgid "Copy to Clipboard" msgstr "" -#: frappe/core/doctype/user/user.js:480 +#: frappe/core/doctype/user/user.js:487 msgid "Copy token to clipboard" msgstr "" @@ -5425,7 +5457,7 @@ msgstr "" msgid "Copyright" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:123 +#: frappe/custom/doctype/customize_form/customize_form.py:125 msgid "Core DocTypes cannot be customized." msgstr "" @@ -5449,7 +5481,7 @@ msgstr "" msgid "Could not map column {0} to field {1}" msgstr "" -#: frappe/database/query.py:564 +#: frappe/database/query.py:566 msgid "Could not parse field: {0}" msgstr "" @@ -5541,13 +5573,13 @@ 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:1265 +#: frappe/public/js/frappe/views/reports/query_report.js:1273 #: frappe/public/js/frappe/views/workspace/workspace.js:469 #: frappe/workflow/page/workflow_builder/workflow_builder.js:46 msgid "Create" msgstr "" -#: frappe/core/doctype/doctype/doctype_list.js:102 +#: frappe/core/doctype/doctype/doctype_list.js:103 msgid "Create & Continue" msgstr "" @@ -5561,7 +5593,7 @@ msgid "Create Card" msgstr "" #: frappe/public/js/frappe/views/reports/query_report.js:285 -#: frappe/public/js/frappe/views/reports/query_report.js:1192 +#: frappe/public/js/frappe/views/reports/query_report.js:1200 msgid "Create Chart" msgstr "" @@ -5595,12 +5627,12 @@ msgstr "" msgid "Create New" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:512 +#: frappe/public/js/frappe/list/list_view.js:514 msgctxt "Create a new document from list view" msgid "Create New" msgstr "" -#: frappe/core/doctype/doctype/doctype_list.js:100 +#: frappe/core/doctype/doctype/doctype_list.js:101 msgid "Create New DocType" msgstr "" @@ -5608,7 +5640,7 @@ msgstr "" msgid "Create New Kanban Board" msgstr "" -#: frappe/core/doctype/user/user.js:276 +#: frappe/core/doctype/user/user.js:264 msgid "Create User Email" msgstr "" @@ -5631,8 +5663,8 @@ msgstr "" #: frappe/public/js/frappe/form/controls/link.js:315 #: frappe/public/js/frappe/form/controls/link.js:317 #: frappe/public/js/frappe/form/link_selector.js:139 -#: frappe/public/js/frappe/list/list_view.js:504 -#: frappe/public/js/frappe/web_form/web_form_list.js:225 +#: frappe/public/js/frappe/list/list_view.js:506 +#: frappe/public/js/frappe/web_form/web_form_list.js:226 msgid "Create a new {0}" msgstr "" @@ -5648,7 +5680,7 @@ msgstr "" msgid "Create or Edit Workflow" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:507 +#: frappe/public/js/frappe/list/list_view.js:509 msgid "Create your first {0}" msgstr "" @@ -5995,7 +6027,7 @@ 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/core/doctype/doctype/doctype_list.js:83 #: frappe/website/doctype/website_theme/website_theme.json msgid "Custom?" msgstr "" @@ -6030,7 +6062,7 @@ msgstr "" msgid "Customize" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1947 +#: frappe/public/js/frappe/list/list_view.js:1949 msgctxt "Button in list view menu" msgid "Customize" msgstr "" @@ -6049,7 +6081,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:343 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 msgid "Customize Form" msgstr "" @@ -6280,7 +6312,7 @@ msgstr "" msgid "Data Import Template" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:615 +#: frappe/custom/doctype/customize_form/customize_form.py:619 msgid "Data Too Long" msgstr "" @@ -6311,7 +6343,7 @@ msgstr "" msgid "Database Storage Usage By Tables" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:249 +#: frappe/custom/doctype/customize_form/customize_form.py:251 msgid "Database Table Row Size Limit" msgstr "" @@ -6681,13 +6713,13 @@ msgstr "" #: frappe/public/js/frappe/form/toolbar.js:464 #: frappe/public/js/frappe/views/reports/report_view.js:1749 #: frappe/public/js/frappe/views/treeview.js:329 -#: frappe/public/js/frappe/web_form/web_form_list.js:282 +#: frappe/public/js/frappe/web_form/web_form_list.js:283 #: frappe/templates/discussions/reply_card.html:35 #: frappe/templates/discussions/reply_section.html:29 msgid "Delete" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2172 +#: frappe/public/js/frappe/list/list_view.js:2174 msgctxt "Button in list view actions menu" msgid "Delete" msgstr "" @@ -6720,7 +6752,7 @@ msgstr "" msgid "Delete Data" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:106 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:116 msgid "Delete Kanban Board" msgstr "" @@ -6734,7 +6766,7 @@ msgctxt "Title of confirmation dialog" msgid "Delete Tab" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:936 +#: frappe/public/js/frappe/views/reports/query_report.js:944 msgid "Delete and Generate New" msgstr "" @@ -6776,12 +6808,12 @@ msgstr "" msgid "Delete this record to allow sending to this email address" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2177 +#: frappe/public/js/frappe/list/list_view.js:2179 msgctxt "Title of confirmation dialog" msgid "Delete {0} item permanently?" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2183 +#: frappe/public/js/frappe/list/list_view.js:2185 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "" @@ -7278,10 +7310,14 @@ msgstr "" msgid "Do not create new user if user with email does not exist in the system" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1194 +#: frappe/public/js/frappe/form/grid.js:1195 msgid "Do not edit headers which are preset in the template" msgstr "" +#: frappe/public/js/frappe/router.js:624 +msgid "Do not warn me again about {0}" +msgstr "" + #: frappe/core/doctype/system_settings/system_settings.js:71 msgid "Do you still want to proceed?" msgstr "" @@ -7705,7 +7741,7 @@ msgstr "" #: 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/public/js/frappe/roles_editor.js:68 #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json #: frappe/workflow/doctype/workflow/workflow.json msgid "Document Type" @@ -7756,15 +7792,15 @@ msgstr "" msgid "Document follow is not enabled for this user." msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1300 +#: frappe/public/js/frappe/list/list_view.js:1302 msgid "Document has been cancelled" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1299 +#: frappe/public/js/frappe/list/list_view.js:1301 msgid "Document has been submitted" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1298 +#: frappe/public/js/frappe/list/list_view.js:1300 msgid "Document is in draft state" msgstr "" @@ -7906,7 +7942,7 @@ msgstr "" msgid "Double click to edit label" msgstr "" -#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:467 +#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:474 #: frappe/email/doctype/auto_email_report/auto_email_report.js:8 #: frappe/public/js/frappe/form/grid.js:66 msgid "Download" @@ -7939,7 +7975,7 @@ msgstr "" msgid "Download PDF" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:832 +#: frappe/public/js/frappe/views/reports/query_report.js:840 msgid "Download Report" msgstr "" @@ -8139,8 +8175,8 @@ msgstr "" #: 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:880 -#: frappe/public/js/frappe/views/reports/query_report.js:1783 +#: frappe/public/js/frappe/views/reports/query_report.js:888 +#: frappe/public/js/frappe/views/reports/query_report.js:1791 #: 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 @@ -8152,7 +8188,7 @@ msgstr "" msgid "Edit" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2258 +#: frappe/public/js/frappe/list/list_view.js:2260 msgctxt "Button in list view actions menu" msgid "Edit" msgstr "" @@ -8162,7 +8198,7 @@ msgctxt "Button in web form" msgid "Edit" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:349 +#: frappe/public/js/frappe/form/grid_row.js:350 msgctxt "Edit grid row" msgid "Edit" msgstr "" @@ -8191,7 +8227,7 @@ msgstr "" msgid "Edit DocType" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1974 +#: frappe/public/js/frappe/list/list_view.js:1976 msgctxt "Button in list view menu" msgid "Edit DocType" msgstr "" @@ -8311,7 +8347,7 @@ msgstr "" #. 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/core/doctype/doctype/doctype_list.js:58 #: frappe/custom/doctype/customize_form/customize_form.json msgid "Editable Grid" msgstr "" @@ -8356,6 +8392,8 @@ msgstr "" #. 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' +#. Label of a field in the request-data Web Form +#. Label of a field in the request-to-delete-data Web Form #: frappe/automation/workspace/tools/tools.json #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/custom_docperm/custom_docperm.json @@ -8374,6 +8412,8 @@ msgstr "" #: 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/website/web_form/request_data/request_data.json +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json #: frappe/www/login.html:8 frappe/www/login.py:104 msgid "Email" msgstr "" @@ -8605,7 +8645,7 @@ msgstr "" msgid "Email has been moved to trash" msgstr "" -#: frappe/core/doctype/user/user.js:278 +#: frappe/core/doctype/user/user.js:266 msgid "Email is mandatory to create User Email" msgstr "" @@ -8648,7 +8688,7 @@ msgstr "" msgid "Embed code copied" msgstr "" -#: frappe/database/query.py:1537 +#: frappe/database/query.py:1539 msgid "Empty alias is not allowed" msgstr "" @@ -8656,7 +8696,7 @@ msgstr "" msgid "Empty column" msgstr "" -#: frappe/database/query.py:1455 +#: frappe/database/query.py:1457 msgid "Empty string arguments are not allowed" msgstr "" @@ -9112,9 +9152,9 @@ msgstr "" msgid "Error in Header/Footer Script" msgstr "" -#: frappe/email/doctype/notification/notification.py:640 -#: frappe/email/doctype/notification/notification.py:780 -#: frappe/email/doctype/notification/notification.py:786 +#: frappe/email/doctype/notification/notification.py:642 +#: frappe/email/doctype/notification/notification.py:782 +#: frappe/email/doctype/notification/notification.py:788 msgid "Error in Notification" msgstr "" @@ -9134,7 +9174,7 @@ msgstr "" msgid "Error while connecting to email account {0}" msgstr "" -#: frappe/email/doctype/notification/notification.py:777 +#: frappe/email/doctype/notification/notification.py:779 msgid "Error while evaluating Notification {0}. Please fix your template." msgstr "" @@ -9295,7 +9335,7 @@ msgstr "" msgid "Executing..." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2132 +#: frappe/public/js/frappe/views/reports/query_report.js:2140 msgid "Execution Time: {0} sec" msgstr "" @@ -9321,12 +9361,12 @@ msgctxt "Enlarge code field." msgid "Expand" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2113 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 #: frappe/public/js/frappe/views/treeview.js:133 msgid "Expand All" msgstr "" -#: frappe/database/query.py:352 +#: frappe/database/query.py:354 msgid "Expected 'and' or 'or' operator, found: {0}" msgstr "" @@ -9384,13 +9424,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:1820 +#: frappe/public/js/frappe/views/reports/query_report.js:1828 #: frappe/public/js/frappe/views/reports/report_view.js:1629 #: frappe/public/js/frappe/widgets/chart_widget.js:315 msgid "Export" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2280 +#: frappe/public/js/frappe/list/list_view.js:2282 msgctxt "Button in list view actions menu" msgid "Export" msgstr "" @@ -9583,7 +9623,7 @@ msgstr "" msgid "Failed to connect to server" msgstr "" -#: frappe/auth.py:698 +#: frappe/auth.py:701 msgid "Failed to decode token, please provide a valid base64-encoded token." msgstr "" @@ -9747,7 +9787,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:236 -#: frappe/public/js/frappe/views/reports/query_report.js:1879 +#: frappe/public/js/frappe/views/reports/query_report.js:1887 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_form_list_column/web_form_list_column.json msgid "Field" @@ -9830,7 +9870,7 @@ msgstr "" msgid "Field {0} not found." msgstr "" -#: frappe/email/doctype/notification/notification.py:545 +#: frappe/email/doctype/notification/notification.py:547 msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link" msgstr "" @@ -9848,7 +9888,7 @@ msgstr "" #: 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:454 +#: frappe/public/js/frappe/form/grid_row.js:455 #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Fieldname" msgstr "" @@ -9929,7 +9969,7 @@ msgstr "" msgid "Fields must be a list or tuple when as_list is enabled" msgstr "" -#: frappe/database/query.py:611 +#: frappe/database/query.py:613 msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function" msgstr "" @@ -9957,7 +9997,7 @@ msgstr "" msgid "Fieldtype cannot be changed from {0} to {1}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:589 +#: frappe/custom/doctype/customize_form/customize_form.py:593 msgid "Fieldtype cannot be changed from {0} to {1} in row {2}" msgstr "" @@ -10023,7 +10063,7 @@ msgstr "" msgid "File backup is ready" msgstr "" -#: frappe/core/doctype/file/file.py:646 +#: frappe/core/doctype/file/file.py:649 msgid "File name cannot have {0}" msgstr "" @@ -10031,7 +10071,7 @@ msgstr "" msgid "File not attached" msgstr "" -#: frappe/core/doctype/file/file.py:756 frappe/public/js/frappe/request.js:200 +#: frappe/core/doctype/file/file.py:759 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 "" @@ -10044,7 +10084,7 @@ msgstr "" msgid "File type of {0} is not allowed" msgstr "" -#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:448 +#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:451 msgid "File {0} does not exist" msgstr "" @@ -10098,11 +10138,11 @@ msgstr "" msgid "Filter Values" msgstr "" -#: frappe/database/query.py:358 +#: frappe/database/query.py:360 msgid "Filter condition missing after operator: {0}" msgstr "" -#: frappe/database/query.py:425 +#: frappe/database/query.py:427 msgid "Filter fields cannot contain backticks (`)." msgstr "" @@ -10179,7 +10219,7 @@ msgstr "" msgid "Filters applied for {0}" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:188 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:202 msgid "Filters saved" msgstr "" @@ -10227,9 +10267,12 @@ msgstr "" #. Label of the first_name (Data) field in DocType 'Contact' #. Label of the first_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json #: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:44 -#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:15 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:15 msgid "First Name" msgstr "" @@ -10310,7 +10353,7 @@ msgstr "" msgid "Folder name should not include '/' (slash)" msgstr "" -#: frappe/core/doctype/file/file.py:494 +#: frappe/core/doctype/file/file.py:497 msgid "Folder {0} is not empty" msgstr "" @@ -10512,7 +10555,7 @@ msgstr "" msgid "For Value" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2129 +#: frappe/public/js/frappe/views/reports/query_report.js:2137 #: frappe/public/js/frappe/views/reports/report_view.js:108 msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)." msgstr "" @@ -10797,7 +10840,7 @@ msgstr "" msgid "From Date Field" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1840 +#: frappe/public/js/frappe/views/reports/query_report.js:1848 msgid "From Document Type" msgstr "" @@ -10859,12 +10902,12 @@ msgstr "" msgid "Function {0} is not whitelisted." msgstr "" -#: frappe/database/query.py:1417 +#: frappe/database/query.py:1419 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" +msgid "Further sub-groups can only be created under records marked as 'Group'" msgstr "" #: frappe/core/doctype/communication/communication.js:291 @@ -10924,7 +10967,7 @@ msgstr "" msgid "Generate Keys" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:874 +#: frappe/public/js/frappe/views/reports/query_report.js:882 msgid "Generate New Report" msgstr "" @@ -11340,14 +11383,10 @@ msgstr "" msgid "Group By field is required to create a dashboard chart" msgstr "" -#: frappe/database/query.py:750 +#: frappe/database/query.py:752 msgid "Group By must be a string" msgstr "" -#: frappe/public/js/frappe/views/treeview.js:418 -msgid "Group Node" -msgstr "" - #. Label of the ldap_group_objectclass (Data) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Group Object Class" @@ -11677,7 +11716,7 @@ msgstr "" msgid "Hidden Fields" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1642 +#: frappe/public/js/frappe/views/reports/query_report.js:1650 msgid "Hidden columns include: {0}" msgstr "" @@ -11789,7 +11828,7 @@ msgstr "" msgid "Hide Standard Menu" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1849 +#: frappe/public/js/frappe/list/list_view.js:1851 msgid "Hide Tags" msgstr "" @@ -12048,7 +12087,7 @@ msgstr "" #: frappe/core/doctype/doctype/doctype.py:1777 #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45 -#: frappe/public/js/frappe/roles_editor.js:66 +#: frappe/public/js/frappe/roles_editor.js:68 msgid "If Owner" msgstr "" @@ -12276,8 +12315,8 @@ msgstr "" msgid "Illegal Document Status for {0}" msgstr "" -#: frappe/model/db_query.py:453 frappe/model/db_query.py:456 -#: frappe/model/db_query.py:1121 +#: frappe/model/db_query.py:454 frappe/model/db_query.py:457 +#: frappe/model/db_query.py:1122 msgid "Illegal SQL Query" msgstr "" @@ -12364,11 +12403,11 @@ msgstr "" #. Option for the 'Operation' (Select) field in DocType 'Activity Log' #: frappe/core/doctype/activity_log/activity_log.json -#: frappe/core/doctype/user/user.js:384 +#: frappe/core/doctype/user/user.js:372 msgid "Impersonate" msgstr "" -#: frappe/core/doctype/user/user.js:411 +#: frappe/core/doctype/user/user.js:399 msgid "Impersonate as {0}" msgstr "" @@ -12398,7 +12437,7 @@ msgstr "" msgid "Import" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1911 +#: frappe/public/js/frappe/list/list_view.js:1913 msgctxt "Button in list view menu" msgid "Import" msgstr "" @@ -12627,15 +12666,15 @@ msgid "Include Web View Link in Email" msgstr "" #: frappe/public/js/frappe/form/print_utils.js:59 -#: frappe/public/js/frappe/views/reports/query_report.js:1620 +#: frappe/public/js/frappe/views/reports/query_report.js:1628 msgid "Include filters" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1640 +#: frappe/public/js/frappe/views/reports/query_report.js:1648 msgid "Include hidden columns" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1612 +#: frappe/public/js/frappe/views/reports/query_report.js:1620 msgid "Include indentation" msgstr "" @@ -12682,7 +12721,7 @@ msgstr "" msgid "Incomplete Virtual Doctype Implementation" msgstr "" -#: frappe/auth.py:255 +#: frappe/auth.py:258 msgid "Incomplete login details" msgstr "" @@ -12793,7 +12832,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:1885 +#: frappe/public/js/frappe/views/reports/query_report.js:1893 msgid "Insert After" msgstr "" @@ -12866,7 +12905,7 @@ msgstr "" msgid "Insufficient Permission Level for {0}" msgstr "" -#: frappe/database/query.py:806 frappe/database/query.py:1052 +#: frappe/database/query.py:808 frappe/database/query.py:1054 msgid "Insufficient Permission for {0}" msgstr "" @@ -12982,7 +13021,7 @@ msgid "Invalid" msgstr "" #: frappe/public/js/form_builder/utils.js:221 -#: frappe/public/js/frappe/form/grid_row.js:849 +#: frappe/public/js/frappe/form/grid_row.js:850 #: frappe/public/js/frappe/form/layout.js:810 #: frappe/public/js/frappe/views/reports/report_view.js:721 msgid "Invalid \"depends_on\" expression" @@ -13040,8 +13079,8 @@ 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 +#: frappe/database/query.py:429 frappe/database/query.py:456 +#: frappe/database/query.py:466 frappe/database/query.py:489 msgid "Invalid Filter" msgstr "" @@ -13113,7 +13152,7 @@ msgstr "" msgid "Invalid Phone Number" msgstr "" -#: frappe/auth.py:94 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 +#: frappe/auth.py:97 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 #: frappe/www/login.py:128 msgid "Invalid Request" msgstr "" @@ -13153,7 +13192,7 @@ msgstr "" msgid "Invalid aggregate function" msgstr "" -#: frappe/database/query.py:1542 +#: frappe/database/query.py:1544 msgid "Invalid alias format: {0}. Alias must be a simple identifier." msgstr "" @@ -13161,19 +13200,19 @@ msgstr "" msgid "Invalid app" msgstr "" -#: frappe/database/query.py:1468 +#: frappe/database/query.py:1470 msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed." msgstr "" -#: frappe/database/query.py:1444 +#: frappe/database/query.py:1446 msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed." msgstr "" -#: frappe/database/query.py:460 +#: frappe/database/query.py:462 msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed." msgstr "" -#: frappe/database/query.py:575 +#: frappe/database/query.py:577 msgid "Invalid characters in table name: {0}" msgstr "" @@ -13181,11 +13220,11 @@ msgstr "" msgid "Invalid column" msgstr "" -#: frappe/database/query.py:381 +#: frappe/database/query.py:383 msgid "Invalid condition type in nested filters: {0}" msgstr "" -#: frappe/database/query.py:787 +#: frappe/database/query.py:789 msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'." msgstr "" @@ -13201,23 +13240,23 @@ msgstr "" msgid "Invalid expression set in filter {0} ({1})" msgstr "" -#: frappe/database/query.py:1301 +#: frappe/database/query.py:1303 msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'." msgstr "" -#: frappe/database/query.py:734 +#: frappe/database/query.py:736 msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'." msgstr "" -#: frappe/database/query.py:1620 +#: frappe/database/query.py:1622 msgid "Invalid field name in function: {0}. Only simple field names are allowed." msgstr "" -#: frappe/utils/data.py:2215 +#: frappe/utils/data.py:2241 msgid "Invalid field name {0}" msgstr "" -#: frappe/database/query.py:668 +#: frappe/database/query.py:670 msgid "Invalid field type: {0}" msgstr "" @@ -13229,11 +13268,11 @@ msgstr "" msgid "Invalid file path: {0}" msgstr "" -#: frappe/database/query.py:364 +#: frappe/database/query.py:366 msgid "Invalid filter condition: {0}. Expected a list or tuple." msgstr "" -#: frappe/database/query.py:450 +#: frappe/database/query.py:452 msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'." msgstr "" @@ -13241,11 +13280,11 @@ msgstr "" msgid "Invalid filter: {0}" msgstr "" -#: frappe/database/query.py:1422 +#: frappe/database/query.py:1424 msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed." msgstr "" -#: frappe/database/query.py:1383 +#: frappe/database/query.py:1385 msgid "Invalid function dictionary format" msgstr "" @@ -13282,23 +13321,27 @@ msgstr "" msgid "Invalid redirect regex in row #{}: {}" msgstr "" -#: frappe/app.py:337 +#: frappe/app.py:340 msgid "Invalid request arguments" msgstr "" +#: frappe/app.py:327 +msgid "Invalid request body" +msgstr "" + #: frappe/core/doctype/user_invitation/user_invitation.py:181 msgid "Invalid role" msgstr "" -#: frappe/database/query.py:410 +#: frappe/database/query.py:412 msgid "Invalid simple filter format: {0}" msgstr "" -#: frappe/database/query.py:341 +#: frappe/database/query.py:343 msgid "Invalid start for filter condition: {0}. Expected a list or tuple." msgstr "" -#: frappe/database/query.py:1489 +#: frappe/database/query.py:1491 msgid "Invalid string literal format: {0}" msgstr "" @@ -13402,7 +13445,7 @@ msgstr "" #. 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/doctype_list.js:50 #: frappe/core/doctype/doctype_link/doctype_link.json msgid "Is Child Table" msgstr "" @@ -13455,6 +13498,10 @@ msgstr "" msgid "Is Global" msgstr "" +#: frappe/public/js/frappe/views/treeview.js:418 +msgid "Is Group" +msgstr "" + #. Label of the is_hidden (Check) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "Is Hidden" @@ -13543,7 +13590,7 @@ 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/core/doctype/doctype/doctype_list.js:65 #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Is Single" msgstr "" @@ -13579,7 +13626,7 @@ msgstr "" #. Label of the is_submittable (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:39 +#: frappe/core/doctype/doctype/doctype_list.js:40 msgid "Is Submittable" msgstr "" @@ -13785,11 +13832,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:388 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:402 msgid "Kanban Board Name" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:265 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:279 msgctxt "Button in kanban view menu" msgid "Kanban Settings" msgstr "" @@ -14087,10 +14134,13 @@ msgstr "" #. 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' +#. Label of a field in the edit-profile Web Form #: 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:117 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/printing/page/print/print.js:117 #: frappe/public/js/frappe/form/templates/print_layout.html:11 msgid "Language" msgstr "" @@ -14178,9 +14228,12 @@ msgstr "" #. Label of the last_name (Data) field in DocType 'Contact' #. Label of the last_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json #: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:45 -#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:19 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:19 msgid "Last Name" msgstr "" @@ -14421,7 +14474,7 @@ msgstr "" #: 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/public/js/frappe/roles_editor.js:68 #: frappe/website/doctype/help_article/help_article.json msgid "Level" msgstr "" @@ -14714,7 +14767,7 @@ msgstr "" msgid "List Settings" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1991 +#: frappe/public/js/frappe/list/list_view.js:1993 msgctxt "Button in list view menu" msgid "List Settings" msgstr "" @@ -14765,7 +14818,7 @@ msgid "Load Balancing" msgstr "" #: frappe/public/js/frappe/list/base_list.js:399 -#: frappe/public/js/frappe/web_form/web_form_list.js:305 +#: frappe/public/js/frappe/web_form/web_form_list.js:306 #: frappe/website/doctype/help_article/templates/help_article_list.html:30 msgid "Load More" msgstr "" @@ -14785,7 +14838,7 @@ msgstr "" #: frappe/public/js/frappe/list/base_list.js:526 #: frappe/public/js/frappe/list/list_view.js:363 #: frappe/public/js/frappe/ui/listing.html:16 -#: frappe/public/js/frappe/views/reports/query_report.js:1089 +#: frappe/public/js/frappe/views/reports/query_report.js:1097 msgid "Loading" msgstr "" @@ -14928,7 +14981,7 @@ msgstr "" msgid "Login and view in Browser" msgstr "" -#: frappe/website/doctype/web_form/web_form.js:367 +#: frappe/website/doctype/web_form/web_form.js:368 msgid "Login is required to see web form list view. Enable {0} to see list settings" msgstr "" @@ -14936,7 +14989,7 @@ msgstr "" msgid "Login link sent to your email" msgstr "" -#: frappe/auth.py:339 frappe/auth.py:342 +#: frappe/auth.py:342 frappe/auth.py:345 msgid "Login not allowed at this time" msgstr "" @@ -14989,7 +15042,7 @@ msgstr "" msgid "Login with email link expiry (in minutes)" msgstr "" -#: frappe/auth.py:144 +#: frappe/auth.py:147 msgid "Login with username and password is not allowed." msgstr "" @@ -15008,7 +15061,7 @@ msgstr "" msgid "Logout" msgstr "" -#: frappe/core/doctype/user/user.js:202 +#: frappe/core/doctype/user/user.js:190 msgid "Logout All Sessions" msgstr "" @@ -15112,7 +15165,10 @@ msgid "Major" msgstr "" #. Label of the show_name_in_global_search (Check) field in DocType 'DocType' +#. Label of the show_name_in_global_search (Check) field in DocType 'Customize +#. Form' #: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Make \"name\" searchable in Global Search" msgstr "" @@ -15188,7 +15244,7 @@ msgstr "" msgid "Mandatory Depends On (JS)" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:509 +#: frappe/website/doctype/web_form/web_form.py:536 msgid "Mandatory Information missing:" msgstr "" @@ -15645,6 +15701,11 @@ msgstr "" msgid "Middle Name" msgstr "" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Middle Name (Optional)" +msgstr "" + #. Name of a DocType #. Label of a Link in the Tools Workspace #: frappe/automation/doctype/milestone/milestone.json @@ -15751,6 +15812,11 @@ msgstr "" msgid "Mobile No" msgstr "" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Mobile Number" +msgstr "" + #. 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" @@ -15776,7 +15842,7 @@ msgstr "" #. 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/doctype/doctype_list.js:31 #: 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 @@ -15952,10 +16018,12 @@ msgstr "" #. Label of the additional_info (Section Break) field in DocType #. 'Communication' #. Label of the short_bio (Tab Break) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: 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 +#: frappe/core/web_form/edit_profile/edit_profile.json msgid "More Information" msgstr "" @@ -15985,7 +16053,7 @@ msgstr "" msgid "Move" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:193 +#: frappe/public/js/frappe/form/grid_row.js:194 msgid "Move To" msgstr "" @@ -16021,7 +16089,7 @@ msgstr "" msgid "Move the current field and the following fields to a new column" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:168 +#: frappe/public/js/frappe/form/grid_row.js:169 msgid "Move to Row Number" msgstr "" @@ -16089,7 +16157,7 @@ msgid "Mx" msgstr "" #: frappe/templates/includes/web_sidebar.html:41 -#: frappe/website/doctype/web_form/web_form.py:498 +#: frappe/website/doctype/web_form/web_form.py:525 #: 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" @@ -16231,12 +16299,12 @@ msgstr "" msgid "Navbar Template Values" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1378 +#: frappe/public/js/frappe/list/list_view.js:1380 msgctxt "Description of a list view shortcut" msgid "Navigate list down" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1385 +#: frappe/public/js/frappe/list/list_view.js:1387 msgctxt "Description of a list view shortcut" msgid "Navigate list up" msgstr "" @@ -16251,6 +16319,10 @@ msgstr "" msgid "Navigation Settings" msgstr "" +#: frappe/public/js/frappe/list/list_view.js:485 +msgid "Need Help?" +msgstr "" + #: frappe/desk/doctype/workspace/workspace.py:322 msgid "Need Workspace Manager role to edit private workspace of other users" msgstr "" @@ -16259,7 +16331,7 @@ msgstr "" msgid "Negative Value" msgstr "" -#: frappe/database/query.py:333 +#: frappe/database/query.py:335 msgid "Nested filters must be provided as a list or tuple." msgstr "" @@ -16272,6 +16344,12 @@ msgstr "" msgid "Network Printer Settings" msgstr "" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Never" +msgstr "" + #. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/core/doctype/success_action/success_action.js:57 @@ -16280,7 +16358,7 @@ msgstr "" #: 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/treeview.js:473 #: frappe/public/js/frappe/views/workspace/workspace.js:64 #: frappe/website/doctype/web_form/templates/web_list.html:15 #: frappe/www/list.html:19 @@ -16341,7 +16419,7 @@ msgstr "" msgid "New Folder" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 msgid "New Kanban Board" msgstr "" @@ -16376,7 +16454,7 @@ msgstr "" msgid "New Onboarding" msgstr "" -#: frappe/core/doctype/user/user.js:190 frappe/www/update-password.html:43 +#: frappe/core/doctype/user/user.js:178 frappe/www/update-password.html:43 msgid "New Password" msgstr "" @@ -16472,7 +16550,7 @@ msgstr "" #: frappe/public/js/frappe/ui/toolbar/search_utils.js:227 #: 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:411 +#: frappe/website/doctype/web_form/web_form.py:438 msgid "New {0}" msgstr "" @@ -16624,7 +16702,7 @@ msgstr "" #: frappe/public/js/form_builder/utils.js:341 #: frappe/public/js/frappe/form/controls/link.js:498 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1665 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 #: frappe/website/doctype/help_article/templates/help_article.html:26 msgid "No" msgstr "" @@ -16773,7 +16851,7 @@ msgstr "" msgid "No Roles Specified" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 msgid "No Select Field Found" msgstr "" @@ -16857,7 +16935,7 @@ msgstr "" msgid "No failed logs" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:371 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:385 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 "" @@ -16881,7 +16959,7 @@ msgstr "" msgid "No matching records. Search something new" msgstr "" -#: frappe/public/js/frappe/web_form/web_form_list.js:161 +#: frappe/public/js/frappe/web_form/web_form_list.js:162 msgid "No more items to display" msgstr "" @@ -16925,7 +17003,7 @@ msgctxt "{0} = verb, {1} = object" msgid "No permission to '{0}' {1}" msgstr "" -#: frappe/model/db_query.py:948 +#: frappe/model/db_query.py:949 msgid "No permission to read {0}" msgstr "" @@ -16973,11 +17051,11 @@ msgstr "" msgid "No {0} Found" msgstr "" -#: frappe/public/js/frappe/web_form/web_form_list.js:233 +#: frappe/public/js/frappe/web_form/web_form_list.js:234 msgid "No {0} found" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:497 +#: frappe/public/js/frappe/list/list_view.js:499 msgid "No {0} found with matching filters. Clear filters to see all {0}." msgstr "" @@ -16986,7 +17064,7 @@ msgid "No {0} mail" msgstr "" #: frappe/public/js/form_builder/utils.js:117 -#: frappe/public/js/frappe/form/grid_row.js:256 +#: frappe/public/js/frappe/form/grid_row.js:257 msgctxt "Title of the 'row number' column" msgid "No." msgstr "" @@ -17013,7 +17091,7 @@ msgstr "" #. Client' #: frappe/integrations/doctype/oauth_client/oauth_client.json msgid "None" -msgstr "" +msgstr "Không" #: frappe/public/js/frappe/form/workflow.js:36 msgid "None: End of Workflow" @@ -17050,7 +17128,7 @@ msgstr "" msgid "Not Equals" msgstr "" -#: frappe/app.py:387 frappe/www/404.html:3 +#: frappe/app.py:390 frappe/www/404.html:3 msgid "Not Found" msgstr "" @@ -17076,9 +17154,9 @@ msgstr "" msgid "Not Nullable" msgstr "" -#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26 +#: frappe/__init__.py:550 frappe/app.py:383 frappe/desk/calendar.py:26 #: frappe/public/js/frappe/web_form/webform_script.js:15 -#: frappe/website/doctype/web_form/web_form.py:747 +#: frappe/website/doctype/web_form/web_form.py:774 #: 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 @@ -17097,7 +17175,7 @@ msgstr "" #: 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/kanban/kanban_view.js:183 #: frappe/public/js/frappe/views/reports/report_view.js:209 #: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39 #: frappe/website/doctype/web_form/templates/web_form.html:85 @@ -17148,7 +17226,7 @@ msgstr "" msgid "Not allowed for {0}: {1}" msgstr "" -#: frappe/email/doctype/notification/notification.py:637 +#: frappe/email/doctype/notification/notification.py:639 msgid "Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings" msgstr "" @@ -17180,12 +17258,12 @@ msgstr "" msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType." msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:216 +#: frappe/core/doctype/system_settings/system_settings.py:217 #: 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:760 +#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:787 #: frappe/website/js/website.js:97 msgid "Not permitted" msgstr "" @@ -17231,7 +17309,7 @@ msgstr "" msgid "Note: Multiple sessions will be allowed in case of mobile device" msgstr "" -#: frappe/core/doctype/user/user.js:399 +#: frappe/core/doctype/user/user.js:387 msgid "Note: This will be shared with user." msgstr "" @@ -17303,15 +17381,15 @@ msgstr "" msgid "Notification sent to" msgstr "" -#: frappe/email/doctype/notification/notification.py:542 +#: frappe/email/doctype/notification/notification.py:544 msgid "Notification: customer {0} has no Mobile number set" msgstr "" -#: frappe/email/doctype/notification/notification.py:528 +#: frappe/email/doctype/notification/notification.py:530 msgid "Notification: document {0} has no {1} number set (field: {2})" msgstr "" -#: frappe/email/doctype/notification/notification.py:537 +#: frappe/email/doctype/notification/notification.py:539 msgid "Notification: user {0} has no Mobile number set" msgstr "" @@ -17425,7 +17503,7 @@ msgstr "" msgid "Number of attachment fields are more than {}, limit updated to {}." msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:171 +#: frappe/core/doctype/system_settings/system_settings.py:172 msgid "Number of backups must be greater than zero." msgstr "" @@ -17697,7 +17775,7 @@ msgstr "" #. Description of the 'Is Submittable' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:42 +#: frappe/core/doctype/doctype/doctype_list.js:43 msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended." msgstr "" @@ -17786,11 +17864,11 @@ msgstr "" msgid "Only reports of type Report Builder can be edited" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:129 +#: frappe/custom/doctype/customize_form/customize_form.py:131 msgid "Only standard DocTypes are allowed to be customized from Customize Form." msgstr "" -#: frappe/model/delete_doc.py:241 +#: frappe/model/delete_doc.py:281 msgid "Only the Administrator can delete a standard DocType." msgstr "" @@ -17886,7 +17964,7 @@ msgstr "" msgid "Open in a new tab" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1431 +#: frappe/public/js/frappe/list/list_view.js:1433 msgctxt "Description of a list view shortcut" msgid "Open list item" msgstr "" @@ -17935,7 +18013,7 @@ msgstr "" msgid "Operation" msgstr "" -#: frappe/utils/data.py:2146 +#: frappe/utils/data.py:2172 msgid "Operator must be one of {0}" msgstr "" @@ -17981,6 +18059,7 @@ msgstr "" #. 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 (Text) field in DocType 'Web Form List Column' #. 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 @@ -17989,6 +18068,7 @@ msgstr "" #: 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_form_list_column/web_form_list_column.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Options" msgstr "" @@ -18034,7 +18114,7 @@ msgstr "" msgid "Order" msgstr "" -#: frappe/database/query.py:767 +#: frappe/database/query.py:769 msgid "Order By must be a string" msgstr "" @@ -18132,7 +18212,7 @@ msgstr "" #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/printing/page/print/print.js:84 #: frappe/public/js/frappe/form/templates/print_layout.html:44 -#: frappe/public/js/frappe/views/reports/query_report.js:1804 +#: frappe/public/js/frappe/views/reports/query_report.js:1812 msgid "PDF" msgstr "" @@ -18480,8 +18560,8 @@ msgstr "" #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/system_settings/system_settings.json -#: frappe/core/doctype/user/user.js:177 frappe/core/doctype/user/user.js:224 -#: frappe/core/doctype/user/user.js:244 +#: frappe/core/doctype/user/user.js:165 frappe/core/doctype/user/user.js:212 +#: frappe/core/doctype/user/user.js:232 #: 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 @@ -18504,7 +18584,7 @@ msgstr "" msgid "Password Reset Link Generation Limit" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:896 +#: frappe/public/js/frappe/form/grid_row.js:897 msgid "Password cannot be filtered" msgstr "" @@ -18541,7 +18621,7 @@ msgstr "" msgid "Password set" msgstr "" -#: frappe/auth.py:258 +#: frappe/auth.py:261 msgid "Password size exceeded the maximum allowed size" msgstr "" @@ -18553,7 +18633,7 @@ msgstr "" msgid "Passwords do not match" msgstr "" -#: frappe/core/doctype/user/user.js:210 +#: frappe/core/doctype/user/user.js:198 msgid "Passwords do not match!" msgstr "" @@ -18704,7 +18784,7 @@ msgstr "" msgid "Permanently delete {0}?" msgstr "" -#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533 +#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:535 msgid "Permission Error" msgstr "" @@ -18764,8 +18844,8 @@ msgstr "" #: 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:143 frappe/core/doctype/user/user.js:152 -#: frappe/core/doctype/user/user.js:161 +#: frappe/core/doctype/user/user.js:131 frappe/core/doctype/user/user.js:140 +#: frappe/core/doctype/user/user.js:149 #: 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 @@ -18835,6 +18915,7 @@ msgstr "" #. Option for the 'Type' (Select) field in DocType 'Communication' #. Option for the 'Type' (Select) field in DocType 'DocField' #. Label of the phone (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #. 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' @@ -18845,6 +18926,7 @@ msgstr "" #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.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 @@ -19019,7 +19101,7 @@ msgstr "" msgid "Please duplicate this to make changes" msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:164 +#: frappe/core/doctype/system_settings/system_settings.py:165 msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login." msgstr "" @@ -19151,11 +19233,11 @@ msgstr "" msgid "Please select Entity Type first" msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:115 +#: frappe/core/doctype/system_settings/system_settings.py:116 msgid "Please select Minimum Password Score" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1185 +#: frappe/public/js/frappe/views/reports/query_report.js:1193 msgid "Please select X and Y fields" msgstr "" @@ -19183,7 +19265,7 @@ msgstr "" msgid "Please select applicable Doctypes" msgstr "" -#: frappe/model/db_query.py:1157 +#: frappe/model/db_query.py:1163 msgid "Please select atleast 1 column from {0} to sort/group" msgstr "" @@ -19213,7 +19295,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:1408 +#: frappe/public/js/frappe/views/reports/query_report.js:1416 msgid "Please set filters" msgstr "" @@ -19233,7 +19315,7 @@ msgstr "" msgid "Please set the series to be used." msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:128 +#: frappe/core/doctype/system_settings/system_settings.py:129 msgid "Please setup SMS before setting it as an authentication method, via SMS Settings" msgstr "" @@ -19385,7 +19467,7 @@ msgstr "" msgid "Posting Timestamp" msgstr "" -#: frappe/database/query.py:1518 +#: frappe/database/query.py:1520 msgid "Potentially dangerous content in string literal: {0}" msgstr "" @@ -19587,13 +19669,13 @@ msgstr "" #: 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:1789 +#: frappe/public/js/frappe/views/reports/query_report.js:1797 #: frappe/public/js/frappe/views/reports/report_view.js:1539 -#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18 +#: frappe/public/js/frappe/views/treeview.js:492 frappe/www/printview.html:18 msgid "Print" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2164 +#: frappe/public/js/frappe/list/list_view.js:2166 msgctxt "Button in list view actions menu" msgid "Print" msgstr "" @@ -19663,7 +19745,7 @@ msgstr "" msgid "Print Format Type" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1578 +#: frappe/public/js/frappe/views/reports/query_report.js:1586 msgid "Print Format not found" msgstr "" @@ -19844,11 +19926,11 @@ msgstr "" msgid "Proceed" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:932 +#: frappe/public/js/frappe/views/reports/query_report.js:940 msgid "Proceed Anyway" msgstr "" -#: frappe/public/js/frappe/form/controls/table.js:123 +#: frappe/public/js/frappe/form/controls/table.js:104 msgid "Processing" msgstr "" @@ -19865,11 +19947,21 @@ msgstr "" msgid "Profile" msgstr "" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile Picture" +msgstr "" + +#. Success message of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile updated successfully." +msgstr "" + #: frappe/public/js/frappe/socketio_client.js:82 msgid "Progress" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:408 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:422 msgid "Project" msgstr "" @@ -19913,7 +20005,7 @@ msgstr "" msgid "Protect Attached Files" msgstr "" -#: frappe/core/doctype/file/file.py:523 +#: frappe/core/doctype/file/file.py:526 msgid "Protected File" msgstr "" @@ -20419,11 +20511,11 @@ msgstr "" msgid "Reason" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:886 +#: frappe/public/js/frappe/views/reports/query_report.js:894 msgid "Rebuild" msgstr "" -#: frappe/public/js/frappe/views/treeview.js:509 +#: frappe/public/js/frappe/views/treeview.js:511 msgid "Rebuild Tree" msgstr "" @@ -20804,8 +20896,8 @@ 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:1778 -#: frappe/public/js/frappe/views/treeview.js:496 +#: frappe/public/js/frappe/views/reports/query_report.js:1786 +#: frappe/public/js/frappe/views/treeview.js:498 #: frappe/public/js/frappe/widgets/chart_widget.js:291 #: frappe/public/js/frappe/widgets/number_card_widget.js:352 #: frappe/public/js/print_format_builder/Preview.vue:24 @@ -20836,13 +20928,13 @@ msgstr "" msgid "Refresh Token" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:534 +#: frappe/public/js/frappe/list/list_view.js:536 msgctxt "Document count in list view" msgid "Refreshing" msgstr "" #: frappe/core/doctype/system_settings/system_settings.js:57 -#: frappe/core/doctype/user/user.js:374 +#: frappe/core/doctype/user/user.js:362 #: frappe/desk/page/setup_wizard/setup_wizard.js:211 msgid "Refreshing..." msgstr "" @@ -21227,7 +21319,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:1965 +#: frappe/public/js/frappe/views/reports/query_report.js:1973 msgid "Report Name" msgstr "" @@ -21279,7 +21371,7 @@ msgstr "" msgid "Report has no numeric fields, please change the Report Name" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1013 +#: frappe/public/js/frappe/views/reports/query_report.js:1021 msgid "Report initiated, click to view status" msgstr "" @@ -21299,7 +21391,7 @@ msgstr "" msgid "Report was not saved (there were errors)" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2003 +#: frappe/public/js/frappe/views/reports/query_report.js:2011 msgid "Report with more than 10 columns looks better in Landscape mode." msgstr "" @@ -21335,7 +21427,7 @@ msgstr "" msgid "Reports & Masters" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:929 +#: frappe/public/js/frappe/views/reports/query_report.js:937 msgid "Reports already in Queue" msgstr "" @@ -21354,7 +21446,10 @@ msgid "Request Body" msgstr "" #. Label of the data (Code) field in DocType 'Integration Request' +#. Title of the request-data Web Form +#. Button label of the request-data Web Form #: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/website/web_form/request_data/request_data.json msgid "Request Data" msgstr "" @@ -21406,6 +21501,11 @@ msgstr "" msgid "Request URL" msgstr "" +#. Title of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "Request for Account Deletion" +msgstr "" + #. Label of the requested_numbers (Code) field in DocType 'SMS Log' #: frappe/core/doctype/sms_log/sms_log.json msgid "Requested Numbers" @@ -21461,7 +21561,7 @@ msgstr "" msgid "Reset Fields" msgstr "" -#: frappe/core/doctype/user/user.js:184 frappe/core/doctype/user/user.js:187 +#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:175 msgid "Reset LDAP Password" msgstr "" @@ -21469,11 +21569,11 @@ msgstr "" msgid "Reset Layout" msgstr "" -#: frappe/core/doctype/user/user.js:235 +#: frappe/core/doctype/user/user.js:223 msgid "Reset OTP Secret" msgstr "" -#: frappe/core/doctype/user/user.js:168 frappe/www/login.html:199 +#: frappe/core/doctype/user/user.js:156 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" @@ -21508,7 +21608,7 @@ msgstr "" msgid "Reset sorting" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:433 +#: frappe/public/js/frappe/form/grid_row.js:434 msgid "Reset to default" msgstr "" @@ -21760,7 +21860,7 @@ 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 +#: frappe/public/js/frappe/roles_editor.js:114 msgid "Role Permissions" msgstr "" @@ -21770,7 +21870,7 @@ msgstr "" msgid "Role Permissions Manager" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1933 +#: frappe/public/js/frappe/list/list_view.js:1935 msgctxt "Button in list view menu" msgid "Role Permissions Manager" msgstr "" @@ -21963,11 +22063,11 @@ msgstr "" msgid "Row {0}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:353 +#: frappe/custom/doctype/customize_form/customize_form.py:357 msgid "Row {0}: Not allowed to disable Mandatory for standard fields" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:342 +#: frappe/custom/doctype/customize_form/customize_form.py:346 msgid "Row {0}: Not allowed to enable Allow on Submit for standard fields" msgstr "" @@ -21986,7 +22086,10 @@ msgid "Rows Removed" msgstr "" #. Label of the rows_threshold_for_grid_search (Int) field in DocType 'DocType' +#. Label of the rows_threshold_for_grid_search (Int) field in DocType +#. 'Customize Form' #: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Rows Threshold for Grid Search" msgstr "" @@ -22194,8 +22297,8 @@ msgstr "" #: 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:1957 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 +#: frappe/public/js/frappe/views/reports/query_report.js:1965 #: frappe/public/js/frappe/views/reports/report_view.js:1735 #: frappe/public/js/frappe/views/workspace/workspace.js:335 #: frappe/public/js/frappe/widgets/base_widget.js:142 @@ -22218,11 +22321,11 @@ msgstr "" msgid "Save Customizations" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1960 +#: frappe/public/js/frappe/views/reports/query_report.js:1968 msgid "Save Report" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:97 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:107 msgid "Save filters" msgstr "" @@ -22594,7 +22697,7 @@ msgstr "" msgid "See all Activity" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:855 +#: frappe/public/js/frappe/views/reports/query_report.js:863 msgid "See all past reports." msgstr "" @@ -22658,7 +22761,7 @@ msgstr "" #: 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:497 +#: frappe/public/js/frappe/form/grid_row.js:498 msgid "Select All" msgstr "" @@ -22738,7 +22841,7 @@ msgstr "" msgid "Select Field..." msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:489 +#: frappe/public/js/frappe/form/grid_row.js:490 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:181 msgid "Select Fields" msgstr "" @@ -22858,7 +22961,7 @@ msgid "Select a field to edit its properties." msgstr "" #: frappe/public/js/frappe/views/treeview.js:358 -msgid "Select a group node first." +msgid "Select a group {0} first." msgstr "" #: frappe/core/doctype/doctype/doctype.py:1956 @@ -22895,13 +22998,13 @@ msgstr "" msgid "Select atleast 2 actions" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1445 +#: frappe/public/js/frappe/list/list_view.js:1447 msgctxt "Description of a list view shortcut" msgid "Select list item" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1397 -#: frappe/public/js/frappe/list/list_view.js:1413 +#: frappe/public/js/frappe/list/list_view.js:1399 +#: frappe/public/js/frappe/list/list_view.js:1415 msgctxt "Description of a list view shortcut" msgid "Select multiple list items" msgstr "" @@ -23223,7 +23326,7 @@ msgstr "" msgid "Server Action" msgstr "" -#: frappe/app.py:396 frappe/public/js/frappe/request.js:611 +#: frappe/app.py:399 frappe/public/js/frappe/request.js:611 #: frappe/www/error.html:36 frappe/www/error.py:15 msgid "Server Error" msgstr "" @@ -23289,7 +23392,7 @@ msgstr "" msgid "Session Defaults Saved" msgstr "" -#: frappe/app.py:373 +#: frappe/app.py:376 msgid "Session Expired" msgstr "" @@ -23298,7 +23401,7 @@ msgstr "" msgid "Session Expiry (idle timeout)" msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:122 +#: frappe/core/doctype/system_settings/system_settings.py:123 msgid "Session Expiry must be in format {0}" msgstr "" @@ -23347,7 +23450,7 @@ msgstr "" msgid "Set Filters for {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2113 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 msgid "Set Level" msgstr "" @@ -23401,7 +23504,7 @@ msgstr "" msgid "Set Role For" msgstr "" -#: frappe/core/doctype/user/user.js:136 +#: frappe/core/doctype/user/user.js:124 #: frappe/core/page/permission_manager/permission_manager.js:72 msgid "Set User Permissions" msgstr "" @@ -23563,7 +23666,7 @@ msgstr "" msgid "Setup > User Permissions" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1826 +#: frappe/public/js/frappe/views/reports/query_report.js:1834 #: frappe/public/js/frappe/views/reports/report_view.js:1713 msgid "Setup Auto Email" msgstr "" @@ -23704,6 +23807,12 @@ msgstr "" msgid "Show Error" msgstr "" +#. Label of the show_external_link_warning (Select) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Show External Link Warning" +msgstr "" + #: frappe/public/js/frappe/form/layout.js:578 msgid "Show Fieldname (click to copy on clipboard)" msgstr "" @@ -23832,7 +23941,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:1849 +#: frappe/public/js/frappe/list/list_view.js:1851 msgid "Show Tags" msgstr "" @@ -24039,22 +24148,22 @@ msgstr "" msgid "Signups have been disabled for this website." msgstr "" -#. 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 "" - #. 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\")" +msgid "Simple Python Expression, Example: status == \"Invalid\"" msgstr "" #. 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'" +msgid "Simple Python Expression, Example: status == 'Open' and issue_type == 'Bug'" +msgstr "" + +#. 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 "" #. Label of the simultaneous_sessions (Int) field in DocType 'User' @@ -24062,13 +24171,13 @@ msgstr "" msgid "Simultaneous Sessions" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:126 +#: frappe/custom/doctype/customize_form/customize_form.py:128 msgid "Single DocTypes cannot be customized." 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 +#: frappe/core/doctype/doctype/doctype_list.js:68 msgid "Single Types have only one record no tables associated. Values are stored in tabSingles" msgstr "" @@ -24404,7 +24513,7 @@ msgid "Splash Image" msgstr "" #: frappe/desk/reportview.py:455 -#: frappe/public/js/frappe/web_form/web_form_list.js:175 +#: frappe/public/js/frappe/web_form/web_form_list.js:176 #: frappe/templates/print_formats/standard_macros.html:44 msgid "Sr" msgstr "" @@ -24436,7 +24545,7 @@ msgstr "" msgid "Standard" msgstr "" -#: frappe/model/delete_doc.py:79 +#: frappe/model/delete_doc.py:119 msgid "Standard DocType can not be deleted." msgstr "" @@ -24706,7 +24815,7 @@ msgstr "" #. Label of the sticky (Check) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json -#: frappe/public/js/frappe/form/grid_row.js:454 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Sticky" msgstr "" @@ -24736,7 +24845,7 @@ msgstr "" msgid "Store Attached PDF Document" msgstr "" -#: frappe/core/doctype/user/user.js:490 +#: frappe/core/doctype/user/user.js:497 msgid "Store the API secret securely. It won't be displayed again." msgstr "" @@ -24848,6 +24957,7 @@ msgstr "" #. 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' +#. Button label of the request-to-delete-data Web Form #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/docshare/docshare.json @@ -24856,10 +24966,11 @@ msgstr "" #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/quick_entry.js:225 #: frappe/public/js/frappe/ui/capture.js:307 +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json msgid "Submit" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2231 +#: frappe/public/js/frappe/list/list_view.js:2233 msgctxt "Button in list view actions menu" msgid "Submit" msgstr "" @@ -24869,7 +24980,7 @@ msgctxt "Button in web form" msgid "Submit" msgstr "" -#: frappe/public/js/frappe/ui/dialog.js:63 +#: frappe/public/js/frappe/ui/dialog.js:64 msgctxt "Primary action in dialog" msgid "Submit" msgstr "" @@ -24917,7 +25028,7 @@ msgstr "" msgid "Submit this document to confirm" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2236 +#: frappe/public/js/frappe/list/list_view.js:2238 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "" @@ -24967,7 +25078,7 @@ msgstr "" #: 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:1171 +#: frappe/public/js/frappe/form/grid.js:1172 #: frappe/public/js/frappe/views/translation_manager.js:21 #: frappe/templates/includes/login/login.js:230 #: frappe/templates/includes/login/login.js:236 @@ -25182,7 +25293,7 @@ msgstr "" msgid "Syncing {0} of {1}" msgstr "" -#: frappe/utils/data.py:2547 +#: frappe/utils/data.py:2573 msgid "Syntax Error" msgstr "" @@ -25493,7 +25604,7 @@ msgstr "" msgid "Table Trimmed" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1170 +#: frappe/public/js/frappe/form/grid.js:1171 msgid "Table updated" msgstr "" @@ -25708,7 +25819,7 @@ msgstr "" msgid "The Auto Repeat for this document has been disabled." msgstr "" -#: frappe/public/js/frappe/form/grid.js:1193 +#: frappe/public/js/frappe/form/grid.js:1194 msgid "The CSV format is case sensitive" msgstr "" @@ -25776,7 +25887,7 @@ msgstr "" 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:685 +#: frappe/public/js/frappe/list/list_view.js:687 msgid "The count shown is an estimated count. Click here to see the accurate count." msgstr "" @@ -25888,7 +25999,7 @@ msgstr "" msgid "The reset password link has either been used before or is invalid" msgstr "" -#: frappe/app.py:388 frappe/public/js/frappe/request.js:149 +#: frappe/app.py:391 frappe/public/js/frappe/request.js:149 msgid "The resource you are looking for is not available" msgstr "" @@ -25961,12 +26072,12 @@ 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:965 +#: frappe/public/js/frappe/views/reports/query_report.js:973 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 +#: frappe/website/doctype/web_form/web_form.js:318 msgid "There can be only 9 Page Break fields in a Web Form" msgstr "" @@ -25990,11 +26101,11 @@ msgstr "" msgid "There is nothing new to show you right now." msgstr "" -#: frappe/core/doctype/file/file.py:640 frappe/utils/file_manager.py:372 +#: frappe/core/doctype/file/file.py:643 frappe/utils/file_manager.py:372 msgid "There is some problem with the file url: {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:962 +#: frappe/public/js/frappe/views/reports/query_report.js:970 msgid "There is {0} with the same filters already in the queue:" msgstr "" @@ -26006,7 +26117,7 @@ msgstr "" msgid "There was an error building this page" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:182 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:196 msgid "There was an error saving filters" msgstr "" @@ -26063,7 +26174,7 @@ msgstr "" msgid "This Currency is disabled. Enable to use in transactions" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:391 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:405 msgid "This Kanban Board will be private" msgstr "" @@ -26100,7 +26211,7 @@ msgstr "" msgid "This cannot be undone" msgstr "" -#: frappe/desk/doctype/number_card/number_card.js:480 +#: frappe/desk/doctype/number_card/number_card.js:484 msgctxt "Number Card" msgid "This card is visible only to Administrator and System Managers by default. Set a DocType to share with users who have read access." msgstr "" @@ -26123,7 +26234,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:113 +#: frappe/model/delete_doc.py:153 msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time." msgstr "" @@ -26165,7 +26276,7 @@ msgid "This field will appear only if the fieldname defined here has value OR th "eval:doc.age>18" msgstr "" -#: frappe/core/doctype/file/file.py:522 +#: frappe/core/doctype/file/file.py:525 msgid "This file is attached to a protected document and cannot be deleted." msgstr "" @@ -26200,7 +26311,7 @@ msgstr "" msgid "This goes above the slideshow." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2189 +#: frappe/public/js/frappe/views/reports/query_report.js:2197 msgid "This is a background report. Please set the appropriate filters and then generate a new one." msgstr "" @@ -26250,7 +26361,7 @@ msgstr "" msgid "This month" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1037 +#: frappe/public/js/frappe/views/reports/query_report.js:1045 msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead." msgstr "" @@ -26258,7 +26369,7 @@ msgstr "" msgid "This report was generated on {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:853 +#: frappe/public/js/frappe/views/reports/query_report.js:861 msgid "This report was generated {0}." msgstr "" @@ -26400,9 +26511,11 @@ msgstr "" #. Label of the time_zone (Select) field in DocType 'System Settings' #. Label of the time_zone (Autocomplete) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #. 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/core/web_form/edit_profile/edit_profile.json #: frappe/desk/page/setup_wizard/setup_wizard.js:407 #: frappe/website/doctype/web_page_view/web_page_view.json msgid "Time Zone" @@ -26663,7 +26776,7 @@ msgstr "" msgid "To generate password click {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:854 +#: frappe/public/js/frappe/views/reports/query_report.js:862 msgid "To get the updated report, click on {0}." msgstr "" @@ -26738,7 +26851,7 @@ msgstr "" msgid "Toggle Sidebar" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1964 +#: frappe/public/js/frappe/list/list_view.js:1966 msgctxt "Button in list view menu" msgid "Toggle Sidebar" msgstr "" @@ -26864,7 +26977,7 @@ msgstr "" #: frappe/desk/query_report.py:587 #: frappe/public/js/frappe/views/reports/print_grid.html:45 -#: frappe/public/js/frappe/views/reports/query_report.js:1324 +#: frappe/public/js/frappe/views/reports/query_report.js:1332 #: frappe/public/js/frappe/views/reports/report_view.js:1553 msgid "Total" msgstr "" @@ -27021,7 +27134,7 @@ msgstr "" msgid "Translatable" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2244 +#: frappe/public/js/frappe/views/reports/query_report.js:2252 msgid "Translate Data" msgstr "" @@ -27379,7 +27492,7 @@ msgstr "" msgid "Unable to update event" msgstr "" -#: frappe/core/doctype/file/file.py:486 +#: frappe/core/doctype/file/file.py:489 msgid "Unable to write file format for {0}" msgstr "" @@ -27388,7 +27501,7 @@ msgstr "" msgid "Unassign Condition" msgstr "" -#: frappe/app.py:396 +#: frappe/app.py:399 msgid "Uncaught Exception" msgstr "" @@ -27404,7 +27517,7 @@ msgstr "" msgid "Undo last action" msgstr "" -#: frappe/database/query.py:1495 +#: frappe/database/query.py:1497 msgid "Unescaped quotes in string literal: {0}" msgstr "" @@ -27451,7 +27564,7 @@ msgstr "" msgid "Unknown Rounding Method: {}" msgstr "" -#: frappe/auth.py:316 +#: frappe/auth.py:319 msgid "Unknown User" msgstr "" @@ -27517,8 +27630,8 @@ msgstr "" msgid "Unsubscribed" msgstr "" -#: frappe/database/query.py:653 frappe/database/query.py:1387 -#: frappe/database/query.py:1397 +#: frappe/database/query.py:655 frappe/database/query.py:1389 +#: frappe/database/query.py:1399 msgid "Unsupported function or invalid field name: {0}" msgstr "" @@ -27552,7 +27665,7 @@ msgstr "" #: 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:427 +#: frappe/public/js/frappe/form/grid_row.js:428 msgid "Update" msgstr "" @@ -27586,6 +27699,11 @@ msgstr "" msgid "Update Password" msgstr "" +#. Title of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Update Profile" +msgstr "" + #. Label of the update_series (Section Break) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -27801,11 +27919,7 @@ msgstr "" msgid "Use if the default settings don't seem to detect your data correctly" msgstr "" -#: frappe/model/db_query.py:436 -msgid "Use of function {0} in field is restricted" -msgstr "" - -#: frappe/model/db_query.py:413 +#: frappe/model/db_query.py:411 msgid "Use of sub-query or function is restricted" msgstr "" @@ -28027,12 +28141,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:1944 +#: frappe/public/js/frappe/views/reports/query_report.js:1952 #: frappe/public/js/frappe/views/reports/report_view.js:1761 msgid "User Permissions" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1922 +#: frappe/public/js/frappe/list/list_view.js:1924 msgctxt "Button in list view menu" msgid "User Permissions" msgstr "" @@ -28176,7 +28290,7 @@ msgstr "" msgid "User {0} is disabled" msgstr "" -#: frappe/sessions.py:242 +#: frappe/sessions.py:243 msgid "User {0} is disabled. Please contact your System Manager." msgstr "" @@ -28353,7 +28467,7 @@ msgstr "" msgid "Value for a check field can be either 0 or 1" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:612 +#: frappe/custom/doctype/customize_form/customize_form.py:616 msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters" msgstr "" @@ -28474,7 +28588,7 @@ msgstr "" msgid "View Audit Trail" msgstr "" -#: frappe/core/doctype/user/user.js:156 +#: frappe/core/doctype/user/user.js:144 msgid "View Doctype Permissions" msgstr "" @@ -28486,7 +28600,7 @@ msgstr "" msgid "View Full Log" msgstr "" -#: frappe/public/js/frappe/views/treeview.js:484 +#: frappe/public/js/frappe/views/treeview.js:486 #: frappe/public/js/frappe/widgets/quick_list_widget.js:258 msgid "View List" msgstr "" @@ -28496,7 +28610,7 @@ msgstr "" msgid "View Log" msgstr "" -#: frappe/core/doctype/user/user.js:147 +#: frappe/core/doctype/user/user.js:135 #: frappe/core/doctype/user_permission/user_permission.js:24 msgid "View Permitted Documents" msgstr "" @@ -28612,6 +28726,7 @@ msgid "Warehouse" msgstr "" #. Option for the 'Style' (Select) field in DocType 'Workflow State' +#: frappe/public/js/frappe/router.js:613 #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Warning" msgstr "" @@ -29257,7 +29372,7 @@ msgstr "" msgid "Workspace" msgstr "" -#: frappe/public/js/frappe/router.js:175 +#: frappe/public/js/frappe/router.js:180 msgid "Workspace {0} does not exist" msgstr "" @@ -29379,7 +29494,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:1225 +#: frappe/public/js/frappe/views/reports/query_report.js:1233 msgid "Y Field" msgstr "" @@ -29441,7 +29556,7 @@ msgstr "" #: frappe/public/js/form_builder/utils.js:336 #: frappe/public/js/frappe/form/controls/link.js:498 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1665 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 #: frappe/website/doctype/help_article/templates/help_article.html:25 msgid "Yes" msgstr "" @@ -29477,6 +29592,10 @@ msgstr "" msgid "You added {0} rows to {1}" msgstr "" +#: frappe/public/js/frappe/router.js:642 +msgid "You are about to open an external link. To confirm, click the link again." +msgstr "" + #: frappe/public/js/frappe/dom.js:438 msgid "You are connected to internet." msgstr "" @@ -29520,7 +29639,7 @@ msgstr "" msgid "You are not allowed to export {} doctype" msgstr "" -#: frappe/public/js/frappe/views/treeview.js:448 +#: frappe/public/js/frappe/views/treeview.js:450 msgid "You are not allowed to print this report" msgstr "" @@ -29528,7 +29647,7 @@ msgstr "" msgid "You are not allowed to send emails related to this document" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:605 +#: frappe/website/doctype/web_form/web_form.py:632 msgid "You are not allowed to update this Web Form Document" msgstr "" @@ -29601,11 +29720,11 @@ msgstr "" msgid "You can continue with the onboarding after exploring this page" msgstr "" -#: frappe/model/delete_doc.py:137 +#: frappe/model/delete_doc.py:177 msgid "You can disable this {0} instead of deleting it." msgstr "" -#: frappe/core/doctype/file/file.py:758 +#: frappe/core/doctype/file/file.py:761 msgid "You can increase the limit from System Settings." msgstr "" @@ -29655,11 +29774,11 @@ msgstr "" msgid "You can use wildcard %" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:390 +#: frappe/custom/doctype/customize_form/customize_form.py:394 msgid "You can't set 'Options' for field {0}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:394 +#: frappe/custom/doctype/customize_form/customize_form.py:398 msgid "You can't set 'Translatable' for field {0}" msgstr "" @@ -29677,7 +29796,7 @@ msgstr "" msgid "You cannot create a dashboard chart from single DocTypes" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:386 +#: frappe/custom/doctype/customize_form/customize_form.py:390 msgid "You cannot unset 'Read Only' for field {0}" msgstr "" @@ -29720,11 +29839,11 @@ msgstr "" msgid "You do not have enough permissions to access this resource. Please contact your manager to get access." msgstr "" -#: frappe/app.py:381 +#: frappe/app.py:384 msgid "You do not have enough permissions to complete the action" msgstr "" -#: frappe/database/query.py:529 +#: frappe/database/query.py:531 msgid "You do not have permission to access field: {0}" msgstr "" @@ -29740,7 +29859,7 @@ msgstr "" msgid "You don't have access to Report: {0}" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:808 +#: frappe/website/doctype/web_form/web_form.py:835 msgid "You don't have permission to access the {0} DocType." msgstr "" @@ -29764,7 +29883,7 @@ msgstr "" msgid "You have been successfully logged out" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:245 +#: frappe/custom/doctype/customize_form/customize_form.py:247 msgid "You have hit the row size limit on database table: {0}" msgstr "" @@ -29792,7 +29911,7 @@ msgstr "" msgid "You haven't added any Dashboard Charts or Number Cards yet." msgstr "" -#: frappe/public/js/frappe/list/list_view.js:501 +#: frappe/public/js/frappe/list/list_view.js:503 msgid "You haven't created a {0} yet" msgstr "" @@ -29809,11 +29928,11 @@ msgstr "" msgid "You must add atleast one link." msgstr "" -#: frappe/website/doctype/web_form/web_form.py:804 +#: frappe/website/doctype/web_form/web_form.py:831 msgid "You must be logged in to use this form." msgstr "" -#: frappe/website/doctype/web_form/web_form.py:645 +#: frappe/website/doctype/web_form/web_form.py:672 msgid "You must login to submit this form" msgstr "" @@ -29928,6 +30047,10 @@ msgstr "" msgid "You viewed this" msgstr "" +#: frappe/public/js/frappe/router.js:653 +msgid "You will be redirected to:" +msgstr "" + #: frappe/core/doctype/user_invitation/user_invitation.py:113 msgid "You've been invited to join {0}" msgstr "" @@ -29973,7 +30096,7 @@ msgstr "" msgid "Your account has been deleted" msgstr "" -#: frappe/auth.py:514 +#: frappe/auth.py:517 msgid "Your account has been locked and will resume after {0} seconds" msgstr "" @@ -30039,7 +30162,7 @@ msgstr "" msgid "Your report is being generated in the background. You will receive an email on {0} with a download link once it is ready." msgstr "" -#: frappe/app.py:374 +#: frappe/app.py:377 msgid "Your session has expired, please login again to continue." msgstr "" @@ -30376,7 +30499,7 @@ msgstr "" msgid "logged in" msgstr "" -#: frappe/website/doctype/web_form/web_form.js:362 +#: frappe/website/doctype/web_form/web_form.js:363 msgid "login_required" msgstr "" @@ -30714,7 +30837,7 @@ msgstr "" msgid "via Google Meet" msgstr "" -#: frappe/email/doctype/notification/notification.py:403 +#: frappe/email/doctype/notification/notification.py:405 msgid "via Notification" msgstr "" @@ -30824,7 +30947,7 @@ msgstr "" msgid "{0} Dashboard" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:486 +#: frappe/public/js/frappe/form/grid_row.js:487 #: frappe/public/js/frappe/list/list_settings.js:225 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:178 msgid "{0} Fields" @@ -30875,7 +30998,7 @@ msgstr "" msgid "{0} Report" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:956 +#: frappe/public/js/frappe/views/reports/query_report.js:964 msgid "{0} Reports" msgstr "" @@ -30948,7 +31071,7 @@ msgctxt "Form timeline" msgid "{0} attached {1}" msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:152 +#: frappe/core/doctype/system_settings/system_settings.py:153 msgid "{0} can not be more than {1}" msgstr "" @@ -31025,7 +31148,7 @@ msgstr "" msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values" msgstr "" -#: frappe/database/query.py:708 +#: frappe/database/query.py:710 msgid "{0} fields cannot contain backticks (`): {1}" msgstr "" @@ -31070,7 +31193,7 @@ msgstr "" msgid "{0} is a mandatory field" msgstr "" -#: frappe/core/doctype/file/file.py:566 +#: frappe/core/doctype/file/file.py:569 msgid "{0} is a not a valid zip file" msgstr "" @@ -31119,7 +31242,7 @@ msgstr "" msgid "{0} is mandatory" msgstr "" -#: frappe/database/query.py:485 +#: frappe/database/query.py:487 msgid "{0} is not a child table of {1}" msgstr "" @@ -31139,7 +31262,7 @@ msgstr "" msgid "{0} is not a valid Cron expression." msgstr "" -#: frappe/public/js/frappe/form/controls/dynamic_link.js:27 +#: frappe/public/js/frappe/form/controls/dynamic_link.js:23 msgid "{0} is not a valid DocType for Dynamic Link" msgstr "" @@ -31176,7 +31299,7 @@ msgstr "" msgid "{0} is not a valid report format. Report format should one of the following {1}" msgstr "" -#: frappe/core/doctype/file/file.py:546 +#: frappe/core/doctype/file/file.py:549 msgid "{0} is not a zip file" msgstr "" @@ -31224,7 +31347,7 @@ msgstr "" msgid "{0} is within {1}" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1839 +#: frappe/public/js/frappe/list/list_view.js:1841 msgid "{0} items selected" msgstr "" @@ -31310,11 +31433,11 @@ msgid "{0} not found" msgstr "" #: frappe/core/doctype/report/report.py:427 -#: frappe/public/js/frappe/list/list_view.js:1211 +#: frappe/public/js/frappe/list/list_view.js:1213 msgid "{0} of {1}" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1213 +#: frappe/public/js/frappe/list/list_view.js:1215 msgid "{0} of {1} ({2} rows with children)" msgstr "" @@ -31364,7 +31487,7 @@ msgstr "" msgid "{0} removed {1} rows from {2}" msgstr "" -#: frappe/public/js/frappe/roles_editor.js:62 +#: frappe/public/js/frappe/roles_editor.js:64 msgid "{0} role does not have permission on any doctype" msgstr "" @@ -31438,7 +31561,7 @@ msgstr "" msgid "{0} un-shared this document with {1}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:254 +#: frappe/custom/doctype/customize_form/customize_form.py:256 msgid "{0} updated" msgstr "" @@ -31498,7 +31621,7 @@ msgstr "" msgid "{0} {1} not found" msgstr "" -#: frappe/model/delete_doc.py:248 +#: frappe/model/delete_doc.py:288 msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first." msgstr "" @@ -31611,7 +31734,7 @@ msgstr "" msgid "{0}: {1} is set to state {2}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1283 +#: frappe/public/js/frappe/views/reports/query_report.js:1291 msgid "{0}: {1} vs {2}" msgstr "" @@ -31647,11 +31770,11 @@ msgstr "" msgid "{} Complete" msgstr "" -#: frappe/utils/data.py:2541 +#: frappe/utils/data.py:2567 msgid "{} Invalid python code on line {}" msgstr "" -#: frappe/utils/data.py:2550 +#: frappe/utils/data.py:2576 msgid "{} Possibly invalid python code.
{}" msgstr "" @@ -31677,7 +31800,7 @@ msgstr "" msgid "{} is not a valid date string." msgstr "" -#: frappe/commands/utils.py:562 +#: frappe/commands/utils.py:561 msgid "{} not found in PATH! This is required to access the console." msgstr "" diff --git a/frappe/locale/zh.po b/frappe/locale/zh.po index 27bf0aa597..f0a4532e31 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-09-21 09:33+0000\n" -"PO-Revision-Date: 2025-09-21 19:57\n" +"POT-Creation-Date: 2025-10-05 09:33+0000\n" +"PO-Revision-Date: 2025-10-06 22:59\n" "Last-Translator: developers@frappe.io\n" "Language-Team: Chinese Simplified\n" "MIME-Version: 1.0\n" @@ -78,7 +78,7 @@ msgstr "行{1}中的类型{0}不允许“全局搜索”" msgid "'In List View' is not allowed for field {0} of type {1}" msgstr "字段类型{1}的字段{0}不允许显示在'列表视图'" -#: frappe/custom/doctype/customize_form/customize_form.py:363 +#: frappe/custom/doctype/customize_form/customize_form.py:367 msgid "'In List View' not allowed for type {0} in row {1}" msgstr "行{1}中的类型{0}不允许选择“在列表视图中显示”" @@ -122,7 +122,7 @@ msgstr "0 - 草稿; 1 - 已提交; 2 - 已取消" msgid "0 is highest" msgstr "0是最高的" -#: frappe/public/js/frappe/form/grid_row.js:892 +#: frappe/public/js/frappe/form/grid_row.js:893 msgid "1 = True & 0 = False" msgstr "1=真 & 0=假" @@ -141,11 +141,11 @@ msgstr "1天" msgid "1 Google Calendar Event synced." msgstr "已同步1个Google日历事件" -#: frappe/public/js/frappe/views/reports/query_report.js:955 +#: frappe/public/js/frappe/views/reports/query_report.js:963 msgid "1 Report" msgstr "1个报表" -#: frappe/tests/test_utils.py:739 +#: frappe/tests/test_utils.py:845 msgid "1 day ago" msgstr "1天前" @@ -154,17 +154,17 @@ msgid "1 hour" msgstr "1小时" #: frappe/public/js/frappe/utils/pretty_date.js:52 -#: frappe/tests/test_utils.py:737 +#: frappe/tests/test_utils.py:843 msgid "1 hour ago" msgstr "1小时前" #: frappe/public/js/frappe/utils/pretty_date.js:48 -#: frappe/tests/test_utils.py:735 +#: frappe/tests/test_utils.py:841 msgid "1 minute ago" msgstr "1分钟前" #: frappe/public/js/frappe/utils/pretty_date.js:66 -#: frappe/tests/test_utils.py:743 +#: frappe/tests/test_utils.py:849 msgid "1 month ago" msgstr "一个月前" @@ -186,37 +186,37 @@ msgctxt "User added row to child table" msgid "1 row to {0}" msgstr "" -#: frappe/tests/test_utils.py:734 +#: frappe/tests/test_utils.py:840 msgid "1 second ago" msgstr "1秒前" #: frappe/public/js/frappe/utils/pretty_date.js:62 -#: frappe/tests/test_utils.py:741 +#: frappe/tests/test_utils.py:847 msgid "1 week ago" msgstr "一周前" #: frappe/public/js/frappe/utils/pretty_date.js:70 -#: frappe/tests/test_utils.py:745 +#: frappe/tests/test_utils.py:851 msgid "1 year ago" msgstr "一年前" -#: frappe/tests/test_utils.py:738 +#: frappe/tests/test_utils.py:844 msgid "2 hours ago" msgstr "2小时前" -#: frappe/tests/test_utils.py:744 +#: frappe/tests/test_utils.py:850 msgid "2 months ago" msgstr "2个月前" -#: frappe/tests/test_utils.py:742 +#: frappe/tests/test_utils.py:848 msgid "2 weeks ago" msgstr "2周前" -#: frappe/tests/test_utils.py:746 +#: frappe/tests/test_utils.py:852 msgid "2 years ago" msgstr "2年前" -#: frappe/tests/test_utils.py:736 +#: frappe/tests/test_utils.py:842 msgid "3 minutes ago" msgstr "3分钟前" @@ -232,7 +232,7 @@ msgstr "4小时" msgid "5 Records" msgstr "5笔记录" -#: frappe/tests/test_utils.py:740 +#: frappe/tests/test_utils.py:846 msgid "5 days ago" msgstr "5天前" @@ -268,6 +268,16 @@ msgstr "{0} 不是有效的URL" 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 "
请不要直接更新这个表单里的内容,可能会导致系统瘫痪!请使用定制表单和自定义字段功能让系统自动产生此表单的数据!
" +#. Introduction text of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "

Request a file containing your personally identifiable information (PII) that is saved on our system. The file will be in JSON format and is sent to you by email. If you would like to have your PII deleted from our system, please make a request to delete data.

" +msgstr "" + +#. Introduction text of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "

Send a request to delete your account and personally identifiable information (PII) that is stored on our system. You will receive an email to verify your request. Once the request is verified we will take care of deleting your PII. If you just want to check what PII we have stored, you can request your data.

" +msgstr "" + #. Content of the 'Help HTML' (HTML) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -753,6 +763,11 @@ msgstr "文档类型名称应以字母开头,只能包含字母、数字、空 msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three." msgstr "" +#. Success message of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "A download link with your data will be sent to the email address associated with your account." +msgstr "" + #: frappe/custom/doctype/custom_field/custom_field.py:175 msgid "A field with the name {0} already exists in {1}" msgstr "字段{0}已在{1}中存在" @@ -879,7 +894,7 @@ msgstr "" #. 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.js:452 frappe/core/doctype/user/user.json +#: frappe/core/doctype/user/user.js:459 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 @@ -898,7 +913,7 @@ msgstr "与中继服务器交互的API密钥和密钥。当从本站点安装的 msgid "API Key cannot be regenerated" msgstr "无法重新生成API密钥" -#: frappe/core/doctype/user/user.js:449 +#: frappe/core/doctype/user/user.js:456 msgid "API Keys" msgstr "" @@ -922,7 +937,7 @@ msgstr "" #. 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.js:459 frappe/core/doctype/user/user.json +#: frappe/core/doctype/user/user.js:466 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" @@ -1008,7 +1023,7 @@ msgstr "访问令牌" msgid "Access Token URL" msgstr "访问令牌URL" -#: frappe/auth.py:491 +#: frappe/auth.py:494 msgid "Access not allowed from this IP Address" msgstr "禁止从此IP地址访问" @@ -1124,7 +1139,7 @@ msgstr "操作{0}在{2} {1}上失败。查看{3}" #: 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:842 +#: frappe/public/js/frappe/views/reports/query_report.js:850 msgid "Actions" msgstr "操作" @@ -1181,7 +1196,7 @@ msgstr "用户操作日志" #: 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:501 +#: frappe/public/js/frappe/form/grid_row.js:502 #: 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 @@ -1192,7 +1207,7 @@ msgstr "用户操作日志" msgid "Add" msgstr "添加" -#: frappe/public/js/frappe/form/grid_row.js:454 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Add / Remove Columns" msgstr "添加/移除列" @@ -1237,8 +1252,8 @@ msgid "Add Child" msgstr "添加子项" #: frappe/public/js/frappe/views/kanban/kanban_board.html:4 -#: frappe/public/js/frappe/views/reports/query_report.js:1832 -#: frappe/public/js/frappe/views/reports/query_report.js:1835 +#: frappe/public/js/frappe/views/reports/query_report.js:1840 +#: frappe/public/js/frappe/views/reports/query_report.js:1843 #: frappe/public/js/frappe/views/reports/report_view.js:360 #: frappe/public/js/frappe/views/reports/report_view.js:385 #: frappe/public/js/print_format_builder/Field.vue:112 @@ -1332,7 +1347,7 @@ msgstr "添加订阅者" msgid "Add Tags" msgstr "添加标签" -#: frappe/public/js/frappe/list/list_view.js:2149 +#: frappe/public/js/frappe/list/list_view.js:2151 msgctxt "Button in list view actions menu" msgid "Add Tags" msgstr "添加标签" @@ -1713,11 +1728,11 @@ msgstr "警报" msgid "Alerts and Notifications" msgstr "预警与通知" -#: frappe/database/query.py:1608 +#: frappe/database/query.py:1610 msgid "Alias cannot be a SQL keyword: {0}" msgstr "" -#: frappe/database/query.py:1533 +#: frappe/database/query.py:1535 msgid "Alias must be a string" msgstr "" @@ -2165,6 +2180,12 @@ msgstr "同时添加状态依赖字段{0}" msgid "Alternative Email ID" msgstr "别的邮箱账号" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Always" +msgstr "" + #. Label of the always_bcc (Data) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Always BCC Address" @@ -2241,6 +2262,11 @@ msgstr "不允许修订" msgid "Amendment naming rules updated." msgstr "修订命名规则已更新。" +#. Success message of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "An email to verify your request has been sent to your email address. Please verify your request to complete the process." +msgstr "" + #: frappe/public/js/frappe/ui/toolbar/toolbar.js:354 msgid "An error occurred while setting Session Defaults" msgstr "设置会话默认值时发生错误" @@ -2423,7 +2449,7 @@ msgstr "应用于" msgid "Apply" msgstr "应用" -#: frappe/public/js/frappe/list/list_view.js:2134 +#: frappe/public/js/frappe/list/list_view.js:2136 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" msgstr "应用分配规则" @@ -2508,7 +2534,7 @@ msgstr "归档列" msgid "Are you sure you want to cancel the invitation?" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2113 +#: frappe/public/js/frappe/list/list_view.js:2115 msgid "Are you sure you want to clear the assignments?" msgstr "确定要清除分配吗?" @@ -2544,7 +2570,7 @@ msgstr "" msgid "Are you sure you want to discard the changes?" msgstr "确定要放弃更改吗?" -#: frappe/public/js/frappe/views/reports/query_report.js:969 +#: frappe/public/js/frappe/views/reports/query_report.js:977 msgid "Are you sure you want to generate a new report?" msgstr "确定要生成新报告吗?" @@ -2552,7 +2578,7 @@ msgstr "确定要生成新报告吗?" msgid "Are you sure you want to merge {0} with {1}?" msgstr "确定要将{0}与{1}合并吗?" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:108 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:118 msgid "Are you sure you want to proceed?" msgstr "确定要继续吗?" @@ -2607,6 +2633,12 @@ msgstr "由于文档共享已禁用,请在分配前授予必要权限。" msgid "As per your request, your account and data on {0} associated with email {1} has been permanently deleted" msgstr "根据您的要求,已永久删除您在{0}上与电子邮件{1}关联的账户和数据" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Ask" +msgstr "" + #. Label of the assign_condition (Code) field in DocType 'Assignment Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Assign Condition" @@ -2616,7 +2648,7 @@ msgstr "分派条件" msgid "Assign To" msgstr "执行人" -#: frappe/public/js/frappe/list/list_view.js:2095 +#: frappe/public/js/frappe/list/list_view.js:2097 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "分配给" @@ -2759,7 +2791,7 @@ msgstr "任务分派" msgid "Asynchronous" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:696 +#: frappe/public/js/frappe/form/grid_row.js:697 msgid "At least one column is required to show in the grid." msgstr "网格中需要至少显示一列。" @@ -3740,7 +3772,7 @@ msgstr "批量删除" msgid "Bulk Edit" msgstr "批量修改" -#: frappe/public/js/frappe/form/grid.js:1189 +#: frappe/public/js/frappe/form/grid.js:1190 msgid "Bulk Edit {0}" msgstr "批量编辑{0}" @@ -4032,7 +4064,7 @@ msgstr "无法将{0}重命名为{1},因为{0}不存在。" #. 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/doctype/doctype_list.js:131 #: frappe/core/doctype/user_document_type/user_document_type.json #: frappe/core/doctype/user_invitation/user_invitation.js:17 #: frappe/email/doctype/notification/notification.json @@ -4040,7 +4072,7 @@ msgstr "无法将{0}重命名为{1},因为{0}不存在。" msgid "Cancel" msgstr "取消" -#: frappe/public/js/frappe/list/list_view.js:2204 +#: frappe/public/js/frappe/list/list_view.js:2206 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "取消" @@ -4058,7 +4090,7 @@ msgstr "全部取消" msgid "Cancel All Documents" msgstr "取消所有单据" -#: frappe/public/js/frappe/list/list_view.js:2209 +#: frappe/public/js/frappe/list/list_view.js:2211 msgctxt "Title of confirmation dialog" msgid "Cancel {0} documents?" msgstr "确定要取消{0}个文档吗?" @@ -4111,7 +4143,7 @@ msgstr "无法删除" msgid "Cannot Update After Submit" msgstr "不允许提交后修改" -#: frappe/core/doctype/file/file.py:643 +#: frappe/core/doctype/file/file.py:646 msgid "Cannot access file path {0}" msgstr "无法访问文件路径{0}" @@ -4159,7 +4191,7 @@ msgstr "无法创建其他用户的私有工作空间" msgid "Cannot delete Home and Attachments folders" msgstr "无法删除主文件和附件文件夹" -#: frappe/model/delete_doc.py:379 +#: frappe/model/delete_doc.py:419 msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}" msgstr "由于{0} {1}与{2} {3} {4}关联,无法删除或取消" @@ -4239,7 +4271,7 @@ msgstr "无法为非可提交文档类型启用{0}" msgid "Cannot find file {} on disk" msgstr "无法在磁盘上找到文件{}" -#: frappe/core/doctype/file/file.py:583 +#: frappe/core/doctype/file/file.py:586 msgid "Cannot get file contents of a Folder" msgstr "无法获取文件夹内容" @@ -4247,7 +4279,7 @@ msgstr "无法获取文件夹内容" msgid "Cannot have multiple printers mapped to a single print format." msgstr "不能将多个打印机映射到单个打印格式。" -#: frappe/public/js/frappe/form/grid.js:1133 +#: frappe/public/js/frappe/form/grid.js:1134 msgid "Cannot import table with more than 5000 rows." msgstr "无法导入超过5000行的表格。" @@ -4263,7 +4295,7 @@ msgstr "无法对应,因为以下条件失败:" msgid "Cannot match column {0} with any field" msgstr "上传文件中的字段{0}无法匹配目标单据字段" -#: frappe/public/js/frappe/form/grid_row.js:175 +#: frappe/public/js/frappe/form/grid_row.js:176 msgid "Cannot move row" msgstr "不能移动行" @@ -4292,11 +4324,11 @@ msgstr "无法提交{0}。" msgid "Cannot update {0}" msgstr "无法更新{0}" -#: frappe/model/db_query.py:1130 +#: frappe/model/db_query.py:1136 msgid "Cannot use sub-query here." msgstr "" -#: frappe/model/db_query.py:1162 +#: frappe/model/db_query.py:1168 msgid "Cannot use {0} in order/group by" msgstr "不能在order/group by中使用{0}" @@ -4568,11 +4600,11 @@ msgstr "字段{1}的子表{0}" #. Description of the 'Is Child Table' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:52 +#: frappe/core/doctype/doctype/doctype_list.js:53 msgid "Child Tables are shown as a Grid in other DocTypes" msgstr "嵌入其它单据类型中作为表格,一对多关系中的多这一方" -#: frappe/database/query.py:660 +#: frappe/database/query.py:662 msgid "Child query fields for '{0}' must be a list or tuple." msgstr "" @@ -4628,7 +4660,7 @@ msgstr "清除并添加模板" msgid "Clear All" msgstr "清空全部" -#: frappe/public/js/frappe/list/list_view.js:2110 +#: frappe/public/js/frappe/list/list_view.js:2112 msgctxt "Button in list view actions menu" msgid "Clear Assignment" msgstr "清除分配" @@ -4722,7 +4754,7 @@ msgstr "点击设置动态筛选器" msgid "Click to Set Filters" msgstr "单击设置过滤条件" -#: frappe/public/js/frappe/list/list_view.js:739 +#: frappe/public/js/frappe/list/list_view.js:741 msgid "Click to sort by {0}" msgstr "点击按{0}排序" @@ -4900,7 +4932,7 @@ msgctxt "Shrink code field." msgid "Collapse" msgstr "折叠" -#: frappe/public/js/frappe/views/reports/query_report.js:2113 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 #: frappe/public/js/frappe/views/treeview.js:123 msgid "Collapse All" msgstr "全部折叠" @@ -4955,7 +4987,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:1233 +#: frappe/public/js/frappe/views/reports/query_report.js:1241 #: frappe/public/js/frappe/widgets/widget_dialog.js:546 #: frappe/public/js/frappe/widgets/widget_dialog.js:694 #: frappe/website/doctype/color/color.json @@ -5011,11 +5043,11 @@ msgstr "列名" msgid "Column Name cannot be empty" msgstr "列名不能为空" -#: frappe/public/js/frappe/form/grid_row.js:454 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Column Width" msgstr "列宽" -#: frappe/public/js/frappe/form/grid_row.js:661 +#: frappe/public/js/frappe/form/grid_row.js:662 msgid "Column width cannot be zero." msgstr "列宽不能为零。" @@ -5042,7 +5074,7 @@ msgstr "列" msgid "Columns / Fields" msgstr "列/字段" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:397 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:411 msgid "Columns based on" msgstr "基于列" @@ -5306,7 +5338,7 @@ msgstr "配置" msgid "Configure Chart" msgstr "配置图表" -#: frappe/public/js/frappe/form/grid_row.js:406 +#: frappe/public/js/frappe/form/grid_row.js:407 msgid "Configure Columns" msgstr "列设置" @@ -5333,7 +5365,7 @@ msgstr "设置修订后单据编号规则\n" msgid "Configure various aspects of how document naming works like naming series, current counter." msgstr "配置文档命名的各项参数,如命名序列、当前计数器。" -#: frappe/core/doctype/user/user.js:412 frappe/public/js/frappe/dom.js:345 +#: frappe/core/doctype/user/user.js:400 frappe/public/js/frappe/dom.js:345 #: frappe/www/update-password.html:66 msgid "Confirm" msgstr "确认" @@ -5352,7 +5384,7 @@ msgstr "确认访问" msgid "Confirm Deletion of Account" msgstr "确认删除账户" -#: frappe/core/doctype/user/user.js:196 +#: frappe/core/doctype/user/user.js:184 msgid "Confirm New Password" msgstr "确认新密码" @@ -5605,7 +5637,7 @@ msgstr "将出错日志复制到剪贴板" msgid "Copy to Clipboard" msgstr "复制到剪贴板" -#: frappe/core/doctype/user/user.js:480 +#: frappe/core/doctype/user/user.js:487 msgid "Copy token to clipboard" msgstr "" @@ -5614,7 +5646,7 @@ msgstr "" msgid "Copyright" msgstr "版权" -#: frappe/custom/doctype/customize_form/customize_form.py:123 +#: frappe/custom/doctype/customize_form/customize_form.py:125 msgid "Core DocTypes cannot be customized." msgstr "不能定制系统核心单据类型。" @@ -5638,7 +5670,7 @@ msgstr "找不到{0}" msgid "Could not map column {0} to field {1}" msgstr "无法映射列{0}到字段{1}" -#: frappe/database/query.py:564 +#: frappe/database/query.py:566 msgid "Could not parse field: {0}" msgstr "" @@ -5730,13 +5762,13 @@ 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:1265 +#: frappe/public/js/frappe/views/reports/query_report.js:1273 #: frappe/public/js/frappe/views/workspace/workspace.js:469 #: frappe/workflow/page/workflow_builder/workflow_builder.js:46 msgid "Create" msgstr "创建" -#: frappe/core/doctype/doctype/doctype_list.js:102 +#: frappe/core/doctype/doctype/doctype_list.js:103 msgid "Create & Continue" msgstr "创建并继续" @@ -5750,7 +5782,7 @@ msgid "Create Card" msgstr "创建数字卡" #: frappe/public/js/frappe/views/reports/query_report.js:285 -#: frappe/public/js/frappe/views/reports/query_report.js:1192 +#: frappe/public/js/frappe/views/reports/query_report.js:1200 msgid "Create Chart" msgstr "创建图表" @@ -5784,12 +5816,12 @@ msgstr "创建日志" msgid "Create New" msgstr "新建" -#: frappe/public/js/frappe/list/list_view.js:512 +#: frappe/public/js/frappe/list/list_view.js:514 msgctxt "Create a new document from list view" msgid "Create New" msgstr "新建" -#: frappe/core/doctype/doctype/doctype_list.js:100 +#: frappe/core/doctype/doctype/doctype_list.js:101 msgid "Create New DocType" msgstr "创建新单据类型" @@ -5797,7 +5829,7 @@ msgstr "创建新单据类型" msgid "Create New Kanban Board" msgstr "新建看板面板" -#: frappe/core/doctype/user/user.js:276 +#: frappe/core/doctype/user/user.js:264 msgid "Create User Email" msgstr "创建用户电子邮件" @@ -5820,8 +5852,8 @@ msgstr "新建一笔记录" #: frappe/public/js/frappe/form/controls/link.js:315 #: frappe/public/js/frappe/form/controls/link.js:317 #: frappe/public/js/frappe/form/link_selector.js:139 -#: frappe/public/js/frappe/list/list_view.js:504 -#: frappe/public/js/frappe/web_form/web_form_list.js:225 +#: frappe/public/js/frappe/list/list_view.js:506 +#: frappe/public/js/frappe/web_form/web_form_list.js:226 msgid "Create a new {0}" msgstr "新建{0}" @@ -5837,7 +5869,7 @@ msgstr "创建或修改打印格式" msgid "Create or Edit Workflow" msgstr "创建或修改工作流" -#: frappe/public/js/frappe/list/list_view.js:507 +#: frappe/public/js/frappe/list/list_view.js:509 msgid "Create your first {0}" msgstr "新建 {0}" @@ -6184,7 +6216,7 @@ 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/core/doctype/doctype/doctype_list.js:83 #: frappe/website/doctype/website_theme/website_theme.json msgid "Custom?" msgstr "自定义?" @@ -6219,7 +6251,7 @@ msgstr "{0}的自定义已导出到:
{1}" msgid "Customize" msgstr "定制" -#: frappe/public/js/frappe/list/list_view.js:1947 +#: frappe/public/js/frappe/list/list_view.js:1949 msgctxt "Button in list view menu" msgid "Customize" msgstr "自定义" @@ -6238,7 +6270,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:343 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 msgid "Customize Form" msgstr "定制表单" @@ -6469,7 +6501,7 @@ msgstr "数据导入日志" msgid "Data Import Template" msgstr "数据导入模板" -#: frappe/custom/doctype/customize_form/customize_form.py:615 +#: frappe/custom/doctype/customize_form/customize_form.py:619 msgid "Data Too Long" msgstr "数据过长" @@ -6500,7 +6532,7 @@ msgstr "数据库表行空间利用率" msgid "Database Storage Usage By Tables" msgstr "数据库表空间使用量报表" -#: frappe/custom/doctype/customize_form/customize_form.py:249 +#: frappe/custom/doctype/customize_form/customize_form.py:251 msgid "Database Table Row Size Limit" msgstr "数据库表行大小限制" @@ -6870,13 +6902,13 @@ msgstr "已逾期" #: frappe/public/js/frappe/form/toolbar.js:464 #: frappe/public/js/frappe/views/reports/report_view.js:1749 #: frappe/public/js/frappe/views/treeview.js:329 -#: frappe/public/js/frappe/web_form/web_form_list.js:282 +#: frappe/public/js/frappe/web_form/web_form_list.js:283 #: frappe/templates/discussions/reply_card.html:35 #: frappe/templates/discussions/reply_section.html:29 msgid "Delete" msgstr "删除" -#: frappe/public/js/frappe/list/list_view.js:2172 +#: frappe/public/js/frappe/list/list_view.js:2174 msgctxt "Button in list view actions menu" msgid "Delete" msgstr "删除" @@ -6909,7 +6941,7 @@ msgstr "删除列" msgid "Delete Data" msgstr "删除数据" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:106 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:116 msgid "Delete Kanban Board" msgstr "删除看板" @@ -6923,7 +6955,7 @@ msgctxt "Title of confirmation dialog" msgid "Delete Tab" msgstr "删除标签页" -#: frappe/public/js/frappe/views/reports/query_report.js:936 +#: frappe/public/js/frappe/views/reports/query_report.js:944 msgid "Delete and Generate New" msgstr "删除并生成新项" @@ -6965,12 +6997,12 @@ msgstr "删除标签页" msgid "Delete this record to allow sending to this email address" msgstr "删除此记录允许发送此邮件地址" -#: frappe/public/js/frappe/list/list_view.js:2177 +#: frappe/public/js/frappe/list/list_view.js:2179 msgctxt "Title of confirmation dialog" msgid "Delete {0} item permanently?" msgstr "永久删除 {0} 项?" -#: frappe/public/js/frappe/list/list_view.js:2183 +#: frappe/public/js/frappe/list/list_view.js:2185 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "永久删除 {0} 项?" @@ -7467,10 +7499,14 @@ msgstr "" msgid "Do not create new user if user with email does not exist in the system" msgstr "如果系统中不存在该邮箱用户,则不创建新用户" -#: frappe/public/js/frappe/form/grid.js:1194 +#: frappe/public/js/frappe/form/grid.js:1195 msgid "Do not edit headers which are preset in the template" msgstr "不要编辑模板中预设的标题" +#: frappe/public/js/frappe/router.js:624 +msgid "Do not warn me again about {0}" +msgstr "" + #: frappe/core/doctype/system_settings/system_settings.js:71 msgid "Do you still want to proceed?" msgstr "是否继续?" @@ -7897,7 +7933,7 @@ msgstr "文档标题" #: 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/public/js/frappe/roles_editor.js:68 #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json #: frappe/workflow/doctype/workflow/workflow.json msgid "Document Type" @@ -7948,15 +7984,15 @@ msgstr "文档已解锁" msgid "Document follow is not enabled for this user." msgstr "该用户未启用文档关注功能" -#: frappe/public/js/frappe/list/list_view.js:1300 +#: frappe/public/js/frappe/list/list_view.js:1302 msgid "Document has been cancelled" msgstr "文档已取消" -#: frappe/public/js/frappe/list/list_view.js:1299 +#: frappe/public/js/frappe/list/list_view.js:1301 msgid "Document has been submitted" msgstr "文档已提交" -#: frappe/public/js/frappe/list/list_view.js:1298 +#: frappe/public/js/frappe/list/list_view.js:1300 msgid "Document is in draft state" msgstr "文档处于草稿状态" @@ -8098,7 +8134,7 @@ msgstr "双层圆环图" msgid "Double click to edit label" msgstr "双击修改标签" -#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:467 +#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:474 #: frappe/email/doctype/auto_email_report/auto_email_report.js:8 #: frappe/public/js/frappe/form/grid.js:66 msgid "Download" @@ -8131,7 +8167,7 @@ msgstr "下载链接" msgid "Download PDF" msgstr "下载PDF" -#: frappe/public/js/frappe/views/reports/query_report.js:832 +#: frappe/public/js/frappe/views/reports/query_report.js:840 msgid "Download Report" msgstr "下载报表" @@ -8331,8 +8367,8 @@ msgstr "退出" #: 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:880 -#: frappe/public/js/frappe/views/reports/query_report.js:1783 +#: frappe/public/js/frappe/views/reports/query_report.js:888 +#: frappe/public/js/frappe/views/reports/query_report.js:1791 #: 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 @@ -8344,7 +8380,7 @@ msgstr "退出" msgid "Edit" msgstr "编辑" -#: frappe/public/js/frappe/list/list_view.js:2258 +#: frappe/public/js/frappe/list/list_view.js:2260 msgctxt "Button in list view actions menu" msgid "Edit" msgstr "编辑" @@ -8354,7 +8390,7 @@ msgctxt "Button in web form" msgid "Edit" msgstr "编辑" -#: frappe/public/js/frappe/form/grid_row.js:349 +#: frappe/public/js/frappe/form/grid_row.js:350 msgctxt "Edit grid row" msgid "Edit" msgstr "编辑" @@ -8383,7 +8419,7 @@ msgstr "编辑自定义HTML" msgid "Edit DocType" msgstr "修改单据类型" -#: frappe/public/js/frappe/list/list_view.js:1974 +#: frappe/public/js/frappe/list/list_view.js:1976 msgctxt "Button in list view menu" msgid "Edit DocType" msgstr "编辑文档类型" @@ -8503,7 +8539,7 @@ msgstr "编辑{0}" #. 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/core/doctype/doctype/doctype_list.js:58 #: frappe/custom/doctype/customize_form/customize_form.json msgid "Editable Grid" msgstr "可编辑表格" @@ -8548,6 +8584,8 @@ msgstr "元素选择器" #. 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' +#. Label of a field in the request-data Web Form +#. Label of a field in the request-to-delete-data Web Form #: frappe/automation/workspace/tools/tools.json #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/custom_docperm/custom_docperm.json @@ -8566,6 +8604,8 @@ msgstr "元素选择器" #: 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/website/web_form/request_data/request_data.json +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json #: frappe/www/login.html:8 frappe/www/login.py:104 msgid "Email" msgstr "邮件" @@ -8797,7 +8837,7 @@ msgstr "电子邮件已被标记为垃圾邮件" msgid "Email has been moved to trash" msgstr "电子邮件已被移至垃圾桶" -#: frappe/core/doctype/user/user.js:278 +#: frappe/core/doctype/user/user.js:266 msgid "Email is mandatory to create User Email" msgstr "创建用户电子邮件时必须填写邮箱地址" @@ -8840,7 +8880,7 @@ msgstr "系统自动发送带审批操作按钮及单据pdf附件的电子邮件 msgid "Embed code copied" msgstr "嵌入代码已复制" -#: frappe/database/query.py:1537 +#: frappe/database/query.py:1539 msgid "Empty alias is not allowed" msgstr "" @@ -8848,7 +8888,7 @@ msgstr "" msgid "Empty column" msgstr "空栏" -#: frappe/database/query.py:1455 +#: frappe/database/query.py:1457 msgid "Empty string arguments are not allowed" msgstr "" @@ -9305,9 +9345,9 @@ msgstr "客户端脚本错误。" msgid "Error in Header/Footer Script" msgstr "页眉/页脚脚本错误" -#: frappe/email/doctype/notification/notification.py:640 -#: frappe/email/doctype/notification/notification.py:780 -#: frappe/email/doctype/notification/notification.py:786 +#: frappe/email/doctype/notification/notification.py:642 +#: frappe/email/doctype/notification/notification.py:782 +#: frappe/email/doctype/notification/notification.py:788 msgid "Error in Notification" msgstr "通知错误" @@ -9327,7 +9367,7 @@ msgstr "" msgid "Error while connecting to email account {0}" msgstr "连接到电子邮箱帐号{0}时出错" -#: frappe/email/doctype/notification/notification.py:777 +#: frappe/email/doctype/notification/notification.py:779 msgid "Error while evaluating Notification {0}. Please fix your template." msgstr "评估通知{0}时出错。请修复您的模板。" @@ -9488,7 +9528,7 @@ msgstr "" msgid "Executing..." msgstr "正在执行..." -#: frappe/public/js/frappe/views/reports/query_report.js:2132 +#: frappe/public/js/frappe/views/reports/query_report.js:2140 msgid "Execution Time: {0} sec" msgstr "运行时间:{0}秒" @@ -9514,12 +9554,12 @@ msgctxt "Enlarge code field." msgid "Expand" msgstr "展开" -#: frappe/public/js/frappe/views/reports/query_report.js:2113 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 #: frappe/public/js/frappe/views/treeview.js:133 msgid "Expand All" msgstr "全部展开" -#: frappe/database/query.py:352 +#: frappe/database/query.py:354 msgid "Expected 'and' or 'or' operator, found: {0}" msgstr "" @@ -9577,13 +9617,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:1820 +#: frappe/public/js/frappe/views/reports/query_report.js:1828 #: frappe/public/js/frappe/views/reports/report_view.js:1629 #: frappe/public/js/frappe/widgets/chart_widget.js:315 msgid "Export" msgstr "导出" -#: frappe/public/js/frappe/list/list_view.js:2280 +#: frappe/public/js/frappe/list/list_view.js:2282 msgctxt "Button in list view actions menu" msgid "Export" msgstr "导出" @@ -9776,7 +9816,7 @@ msgstr "计算请求正文失败:{}" msgid "Failed to connect to server" msgstr "无法连接服务器" -#: frappe/auth.py:698 +#: frappe/auth.py:701 msgid "Failed to decode token, please provide a valid base64-encoded token." msgstr "解码令牌失败,请提供有效的Base64编码令牌。" @@ -9940,7 +9980,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:236 -#: frappe/public/js/frappe/views/reports/query_report.js:1879 +#: frappe/public/js/frappe/views/reports/query_report.js:1887 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_form_list_column/web_form_list_column.json msgid "Field" @@ -10023,7 +10063,7 @@ msgstr "字段{0}引用了不存在的文档类型{1}。" msgid "Field {0} not found." msgstr "找不到字段{0}。" -#: frappe/email/doctype/notification/notification.py:545 +#: frappe/email/doctype/notification/notification.py:547 msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link" msgstr "文档{1}的字段{0}既不是手机号码字段,也不是客户或用户链接字段" @@ -10041,7 +10081,7 @@ msgstr "文档{1}的字段{0}既不是手机号码字段,也不是客户或用 #: 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:454 +#: frappe/public/js/frappe/form/grid_row.js:455 #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Fieldname" msgstr "字段名" @@ -10122,7 +10162,7 @@ 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 +#: frappe/database/query.py:613 msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function" msgstr "" @@ -10150,7 +10190,7 @@ msgstr "字段类型" msgid "Fieldtype cannot be changed from {0} to {1}" msgstr "字段类型不能从{0}更改为{1}" -#: frappe/custom/doctype/customize_form/customize_form.py:589 +#: frappe/custom/doctype/customize_form/customize_form.py:593 msgid "Fieldtype cannot be changed from {0} to {1} in row {2}" msgstr "第{2}行中的字段类型不能从{0}更改为{1}" @@ -10216,7 +10256,7 @@ msgstr "文件的URL" msgid "File backup is ready" msgstr "文件备份就绪" -#: frappe/core/doctype/file/file.py:646 +#: frappe/core/doctype/file/file.py:649 msgid "File name cannot have {0}" msgstr "文件名不能包含{0}" @@ -10224,7 +10264,7 @@ msgstr "文件名不能包含{0}" msgid "File not attached" msgstr "文件未添加" -#: frappe/core/doctype/file/file.py:756 frappe/public/js/frappe/request.js:200 +#: frappe/core/doctype/file/file.py:759 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 "文件大小超过允许的{0} MB" @@ -10237,7 +10277,7 @@ msgstr "文件太大" msgid "File type of {0} is not allowed" msgstr "不允许{0}文件类型" -#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:448 +#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:451 msgid "File {0} does not exist" msgstr "文件{0}不存在" @@ -10291,11 +10331,11 @@ msgstr "过滤条件名称" msgid "Filter Values" msgstr "过滤值" -#: frappe/database/query.py:358 +#: frappe/database/query.py:360 msgid "Filter condition missing after operator: {0}" msgstr "" -#: frappe/database/query.py:425 +#: frappe/database/query.py:427 msgid "Filter fields cannot contain backticks (`)." msgstr "" @@ -10372,7 +10412,7 @@ msgstr "过滤条件" msgid "Filters applied for {0}" msgstr "过滤条件:{0}" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:188 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:202 msgid "Filters saved" msgstr "已保存过滤条件" @@ -10420,9 +10460,12 @@ msgstr "一周开始日" #. Label of the first_name (Data) field in DocType 'Contact' #. Label of the first_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json #: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:44 -#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:15 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:15 msgid "First Name" msgstr "姓名" @@ -10503,7 +10546,7 @@ msgstr "目录名" msgid "Folder name should not include '/' (slash)" msgstr "文件夹名称不应包含“/”(斜杠)" -#: frappe/core/doctype/file/file.py:494 +#: frappe/core/doctype/file/file.py:497 msgid "Folder {0} is not empty" msgstr "文件夹{0}非空" @@ -10705,7 +10748,7 @@ msgstr "用户" msgid "For Value" msgstr "允许值" -#: frappe/public/js/frappe/views/reports/query_report.js:2129 +#: frappe/public/js/frappe/views/reports/query_report.js:2137 #: frappe/public/js/frappe/views/reports/report_view.js:108 msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)." msgstr "过滤条件可以用>,<,= 比较符,两个值之间用:表示范围, 如>5, <10, =20, 5:10" @@ -10990,7 +11033,7 @@ msgstr "开始日期" msgid "From Date Field" msgstr "开始日期字段" -#: frappe/public/js/frappe/views/reports/query_report.js:1840 +#: frappe/public/js/frappe/views/reports/query_report.js:1848 msgid "From Document Type" msgstr "单据类型" @@ -11052,13 +11095,13 @@ msgstr "函数基准字段" msgid "Function {0} is not whitelisted." msgstr "方法 {0} 申明前未添加@frappe.whitelist()装饰器" -#: frappe/database/query.py:1417 +#: frappe/database/query.py:1419 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 "只能在“组”节点下新建节点" +msgid "Further sub-groups can only be created under records marked as 'Group'" +msgstr "" #: frappe/core/doctype/communication/communication.js:291 msgid "Fw: {0}" @@ -11117,7 +11160,7 @@ msgstr "正常" msgid "Generate Keys" msgstr "生成密钥" -#: frappe/public/js/frappe/views/reports/query_report.js:874 +#: frappe/public/js/frappe/views/reports/query_report.js:882 msgid "Generate New Report" msgstr "生成新报表" @@ -11533,14 +11576,10 @@ msgstr "分组统计类型" msgid "Group By field is required to create a dashboard chart" msgstr "创建仪表板图表需要分组依据字段" -#: frappe/database/query.py:750 +#: frappe/database/query.py:752 msgid "Group By must be a string" msgstr "" -#: frappe/public/js/frappe/views/treeview.js:418 -msgid "Group Node" -msgstr "组节点" - #. Label of the ldap_group_objectclass (Data) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Group Object Class" @@ -11870,7 +11909,7 @@ msgstr "隐藏" msgid "Hidden Fields" msgstr "隐藏字段" -#: frappe/public/js/frappe/views/reports/query_report.js:1642 +#: frappe/public/js/frappe/views/reports/query_report.js:1650 msgid "Hidden columns include: {0}" msgstr "" @@ -11982,7 +12021,7 @@ msgstr "隐藏左边栏,菜单及评论" msgid "Hide Standard Menu" msgstr "隐藏标准菜单" -#: frappe/public/js/frappe/list/list_view.js:1849 +#: frappe/public/js/frappe/list/list_view.js:1851 msgid "Hide Tags" msgstr "隐藏标签" @@ -12241,7 +12280,7 @@ msgstr "如勾选,工作流状态不会覆盖列表视图中的状态字段" #: frappe/core/doctype/doctype/doctype.py:1777 #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45 -#: frappe/public/js/frappe/roles_editor.js:66 +#: frappe/public/js/frappe/roles_editor.js:68 msgid "If Owner" msgstr "是制单人?" @@ -12469,8 +12508,8 @@ msgstr "忽略的应用" msgid "Illegal Document Status for {0}" msgstr "{0}非法单据状态" -#: frappe/model/db_query.py:453 frappe/model/db_query.py:456 -#: frappe/model/db_query.py:1121 +#: frappe/model/db_query.py:454 frappe/model/db_query.py:457 +#: frappe/model/db_query.py:1122 msgid "Illegal SQL Query" msgstr "非法SQL查询" @@ -12557,11 +12596,11 @@ msgstr "图片" #. Option for the 'Operation' (Select) field in DocType 'Activity Log' #: frappe/core/doctype/activity_log/activity_log.json -#: frappe/core/doctype/user/user.js:384 +#: frappe/core/doctype/user/user.js:372 msgid "Impersonate" msgstr "用其它用户身份登录" -#: frappe/core/doctype/user/user.js:411 +#: frappe/core/doctype/user/user.js:399 msgid "Impersonate as {0}" msgstr "被模拟的用户" @@ -12591,7 +12630,7 @@ msgstr "隐式" msgid "Import" msgstr "导入" -#: frappe/public/js/frappe/list/list_view.js:1911 +#: frappe/public/js/frappe/list/list_view.js:1913 msgctxt "Button in list view menu" msgid "Import" msgstr "导入" @@ -12820,15 +12859,15 @@ msgid "Include Web View Link in Email" msgstr "邮件包含网页视图链接" #: frappe/public/js/frappe/form/print_utils.js:59 -#: frappe/public/js/frappe/views/reports/query_report.js:1620 +#: frappe/public/js/frappe/views/reports/query_report.js:1628 msgid "Include filters" msgstr "包括过滤条件" -#: frappe/public/js/frappe/views/reports/query_report.js:1640 +#: frappe/public/js/frappe/views/reports/query_report.js:1648 msgid "Include hidden columns" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1612 +#: frappe/public/js/frappe/views/reports/query_report.js:1620 msgid "Include indentation" msgstr "包括缩进" @@ -12875,7 +12914,7 @@ msgstr "邮件收件箱帐号不正确" msgid "Incomplete Virtual Doctype Implementation" msgstr "虚拟文档类型实现不完整" -#: frappe/auth.py:255 +#: frappe/auth.py:258 msgid "Incomplete login details" msgstr "登录详细信息不完整" @@ -12986,7 +13025,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:1885 +#: frappe/public/js/frappe/views/reports/query_report.js:1893 msgid "Insert After" msgstr "在后边插入" @@ -13059,7 +13098,7 @@ msgstr "电子邮件说明" msgid "Insufficient Permission Level for {0}" msgstr "{0}权限级别不足" -#: frappe/database/query.py:806 frappe/database/query.py:1052 +#: frappe/database/query.py:808 frappe/database/query.py:1054 msgid "Insufficient Permission for {0}" msgstr "{0} 权限不足" @@ -13175,7 +13214,7 @@ msgid "Invalid" msgstr "无效" #: frappe/public/js/form_builder/utils.js:221 -#: frappe/public/js/frappe/form/grid_row.js:849 +#: frappe/public/js/frappe/form/grid_row.js:850 #: frappe/public/js/frappe/form/layout.js:810 #: frappe/public/js/frappe/views/reports/report_view.js:721 msgid "Invalid \"depends_on\" expression" @@ -13233,8 +13272,8 @@ 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 +#: frappe/database/query.py:429 frappe/database/query.py:456 +#: frappe/database/query.py:466 frappe/database/query.py:489 msgid "Invalid Filter" msgstr "" @@ -13306,7 +13345,7 @@ msgstr "无效的密码" msgid "Invalid Phone Number" msgstr "电话号码无效" -#: frappe/auth.py:94 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 +#: frappe/auth.py:97 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 #: frappe/www/login.py:128 msgid "Invalid Request" msgstr "无效请求" @@ -13346,7 +13385,7 @@ msgstr "Webhook密钥无效" msgid "Invalid aggregate function" msgstr "无效聚合函数" -#: frappe/database/query.py:1542 +#: frappe/database/query.py:1544 msgid "Invalid alias format: {0}. Alias must be a simple identifier." msgstr "" @@ -13354,19 +13393,19 @@ msgstr "" msgid "Invalid app" msgstr "" -#: frappe/database/query.py:1468 +#: frappe/database/query.py:1470 msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed." msgstr "" -#: frappe/database/query.py:1444 +#: frappe/database/query.py:1446 msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed." msgstr "" -#: frappe/database/query.py:460 +#: frappe/database/query.py:462 msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed." msgstr "" -#: frappe/database/query.py:575 +#: frappe/database/query.py:577 msgid "Invalid characters in table name: {0}" msgstr "" @@ -13374,11 +13413,11 @@ msgstr "" msgid "Invalid column" msgstr "无效列" -#: frappe/database/query.py:381 +#: frappe/database/query.py:383 msgid "Invalid condition type in nested filters: {0}" msgstr "" -#: frappe/database/query.py:787 +#: frappe/database/query.py:789 msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'." msgstr "" @@ -13394,23 +13433,23 @@ msgstr "过滤器{0}中的表达式无效" msgid "Invalid expression set in filter {0} ({1})" msgstr "过滤器{0}({1})中的表达式无效" -#: frappe/database/query.py:1301 +#: frappe/database/query.py:1303 msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'." msgstr "" -#: frappe/database/query.py:734 +#: frappe/database/query.py:736 msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'." msgstr "" -#: frappe/database/query.py:1620 +#: frappe/database/query.py:1622 msgid "Invalid field name in function: {0}. Only simple field names are allowed." msgstr "" -#: frappe/utils/data.py:2215 +#: frappe/utils/data.py:2241 msgid "Invalid field name {0}" msgstr "字段名称{0}无效" -#: frappe/database/query.py:668 +#: frappe/database/query.py:670 msgid "Invalid field type: {0}" msgstr "" @@ -13422,11 +13461,11 @@ msgstr "编号规则中字段名“{0}”无效" msgid "Invalid file path: {0}" msgstr "无效的文件路径:{0}" -#: frappe/database/query.py:364 +#: frappe/database/query.py:366 msgid "Invalid filter condition: {0}. Expected a list or tuple." msgstr "" -#: frappe/database/query.py:450 +#: frappe/database/query.py:452 msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'." msgstr "" @@ -13434,11 +13473,11 @@ msgstr "" msgid "Invalid filter: {0}" msgstr "无效过滤器:{0}" -#: frappe/database/query.py:1422 +#: frappe/database/query.py:1424 msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed." msgstr "" -#: frappe/database/query.py:1383 +#: frappe/database/query.py:1385 msgid "Invalid function dictionary format" msgstr "" @@ -13475,23 +13514,27 @@ msgstr "导入内容无效或损坏" msgid "Invalid redirect regex in row #{}: {}" msgstr "第{}行重定向正则表达式无效:{}" -#: frappe/app.py:337 +#: frappe/app.py:340 msgid "Invalid request arguments" msgstr "请求参数无效" +#: frappe/app.py:327 +msgid "Invalid request body" +msgstr "" + #: frappe/core/doctype/user_invitation/user_invitation.py:181 msgid "Invalid role" msgstr "" -#: frappe/database/query.py:410 +#: frappe/database/query.py:412 msgid "Invalid simple filter format: {0}" msgstr "" -#: frappe/database/query.py:341 +#: frappe/database/query.py:343 msgid "Invalid start for filter condition: {0}. Expected a list or tuple." msgstr "" -#: frappe/database/query.py:1489 +#: frappe/database/query.py:1491 msgid "Invalid string literal format: {0}" msgstr "" @@ -13595,7 +13638,7 @@ msgstr "有日历与甘特图视图" #. 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/doctype_list.js:50 #: frappe/core/doctype/doctype_link/doctype_link.json msgid "Is Child Table" msgstr "是子表" @@ -13648,6 +13691,10 @@ msgstr "是文件夹" msgid "Is Global" msgstr "全局有效?" +#: frappe/public/js/frappe/views/treeview.js:418 +msgid "Is Group" +msgstr "是组" + #. Label of the is_hidden (Check) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "Is Hidden" @@ -13736,7 +13783,7 @@ 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/core/doctype/doctype/doctype_list.js:65 #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Is Single" msgstr "是单笔记录?" @@ -13772,7 +13819,7 @@ msgstr "系统自带" #. Label of the is_submittable (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:39 +#: frappe/core/doctype/doctype/doctype_list.js:40 msgid "Is Submittable" msgstr "可提交(审批)" @@ -13978,11 +14025,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:388 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:402 msgid "Kanban Board Name" msgstr "看板名称" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:265 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:279 msgctxt "Button in kanban view menu" msgid "Kanban Settings" msgstr "看板设置" @@ -14280,10 +14327,13 @@ msgstr "横向打印" #. 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' +#. Label of a field in the edit-profile Web Form #: 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:117 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/printing/page/print/print.js:117 #: frappe/public/js/frappe/form/templates/print_layout.html:11 msgid "Language" msgstr "语言" @@ -14371,9 +14421,12 @@ msgstr "上个月" #. Label of the last_name (Data) field in DocType 'Contact' #. Label of the last_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json #: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:45 -#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:19 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:19 msgid "Last Name" msgstr "姓" @@ -14614,7 +14667,7 @@ msgstr "打印表头HTML" #: 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/public/js/frappe/roles_editor.js:68 #: frappe/website/doctype/help_article/help_article.json msgid "Level" msgstr "级别" @@ -14907,7 +14960,7 @@ msgstr "列表过滤条件" msgid "List Settings" msgstr "列表设置" -#: frappe/public/js/frappe/list/list_view.js:1991 +#: frappe/public/js/frappe/list/list_view.js:1993 msgctxt "Button in list view menu" msgid "List Settings" msgstr "列表设置" @@ -14958,7 +15011,7 @@ msgid "Load Balancing" msgstr "均衡分派" #: frappe/public/js/frappe/list/base_list.js:399 -#: frappe/public/js/frappe/web_form/web_form_list.js:305 +#: frappe/public/js/frappe/web_form/web_form_list.js:306 #: frappe/website/doctype/help_article/templates/help_article_list.html:30 msgid "Load More" msgstr "加载更多" @@ -14978,7 +15031,7 @@ msgstr "加载更多" #: frappe/public/js/frappe/list/base_list.js:526 #: frappe/public/js/frappe/list/list_view.js:363 #: frappe/public/js/frappe/ui/listing.html:16 -#: frappe/public/js/frappe/views/reports/query_report.js:1089 +#: frappe/public/js/frappe/views/reports/query_report.js:1097 msgid "Loading" msgstr "载入中" @@ -15121,7 +15174,7 @@ msgstr "登录验证码从{}" msgid "Login and view in Browser" msgstr "在浏览器中登录和查看" -#: frappe/website/doctype/web_form/web_form.js:367 +#: frappe/website/doctype/web_form/web_form.js:368 msgid "Login is required to see web form list view. Enable {0} to see list settings" msgstr "需要登录才能查看Web表单列表视图。启用{0}以查看列表设置" @@ -15129,7 +15182,7 @@ msgstr "需要登录才能查看Web表单列表视图。启用{0}以查看列表 msgid "Login link sent to your email" msgstr "登录链接已发送至您的邮箱" -#: frappe/auth.py:339 frappe/auth.py:342 +#: frappe/auth.py:342 frappe/auth.py:345 msgid "Login not allowed at this time" msgstr "不允许在这个时候登录" @@ -15182,7 +15235,7 @@ msgstr "启用邮件中链接登录" msgid "Login with email link expiry (in minutes)" msgstr "邮箱链接登录过期时间(分钟)" -#: frappe/auth.py:144 +#: frappe/auth.py:147 msgid "Login with username and password is not allowed." msgstr "不允许通过用户名密码登录。" @@ -15201,7 +15254,7 @@ msgstr "" msgid "Logout" msgstr "注销" -#: frappe/core/doctype/user/user.js:202 +#: frappe/core/doctype/user/user.js:190 msgid "Logout All Sessions" msgstr "退出所有会话" @@ -15305,7 +15358,10 @@ msgid "Major" msgstr "主要" #. Label of the show_name_in_global_search (Check) field in DocType 'DocType' +#. Label of the show_name_in_global_search (Check) field in DocType 'Customize +#. Form' #: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Make \"name\" searchable in Global Search" msgstr "让“名称”字段在全局搜索框中可搜索" @@ -15381,7 +15437,7 @@ msgstr "是否必填先决条件" msgid "Mandatory Depends On (JS)" msgstr "必填先决条件(JS)" -#: frappe/website/doctype/web_form/web_form.py:509 +#: frappe/website/doctype/web_form/web_form.py:536 msgid "Mandatory Information missing:" msgstr "必填字段信息缺失:" @@ -15838,6 +15894,11 @@ msgstr "正中" msgid "Middle Name" msgstr "中间名" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Middle Name (Optional)" +msgstr "" + #. Name of a DocType #. Label of a Link in the Tools Workspace #: frappe/automation/doctype/milestone/milestone.json @@ -15944,6 +16005,11 @@ msgstr "手机号" msgid "Mobile No" msgstr "手机号码" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Mobile Number" +msgstr "手机号" + #. 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" @@ -15969,7 +16035,7 @@ msgstr "模态框触发器" #. 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/doctype/doctype_list.js:31 #: 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 @@ -16145,10 +16211,12 @@ msgstr "更多信息" #. Label of the additional_info (Section Break) field in DocType #. 'Communication' #. Label of the short_bio (Tab Break) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: 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 +#: frappe/core/web_form/edit_profile/edit_profile.json msgid "More Information" msgstr "更多信息" @@ -16178,7 +16246,7 @@ msgstr "很可能是密码过长导致" msgid "Move" msgstr "移动" -#: frappe/public/js/frappe/form/grid_row.js:193 +#: frappe/public/js/frappe/form/grid_row.js:194 msgid "Move To" msgstr "移到" @@ -16214,7 +16282,7 @@ msgstr "移动段到新页签" msgid "Move the current field and the following fields to a new column" msgstr "移动当前及以下字段到新栏" -#: frappe/public/js/frappe/form/grid_row.js:168 +#: frappe/public/js/frappe/form/grid_row.js:169 msgid "Move to Row Number" msgstr "移至行号" @@ -16282,7 +16350,7 @@ msgid "Mx" msgstr "MX" #: frappe/templates/includes/web_sidebar.html:41 -#: frappe/website/doctype/web_form/web_form.py:498 +#: frappe/website/doctype/web_form/web_form.py:525 #: 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" @@ -16426,12 +16494,12 @@ msgstr "导航栏模板" msgid "Navbar Template Values" msgstr "导航栏模板值" -#: frappe/public/js/frappe/list/list_view.js:1378 +#: frappe/public/js/frappe/list/list_view.js:1380 msgctxt "Description of a list view shortcut" msgid "Navigate list down" msgstr "向下导航列表" -#: frappe/public/js/frappe/list/list_view.js:1385 +#: frappe/public/js/frappe/list/list_view.js:1387 msgctxt "Description of a list view shortcut" msgid "Navigate list up" msgstr "向上导航列表" @@ -16446,6 +16514,10 @@ msgstr "跳转到主要内容" msgid "Navigation Settings" msgstr "导航设置" +#: frappe/public/js/frappe/list/list_view.js:485 +msgid "Need Help?" +msgstr "" + #: frappe/desk/doctype/workspace/workspace.py:322 msgid "Need Workspace Manager role to edit private workspace of other users" msgstr "需具备工作区管理员角色才能编辑其他用户的私有工作区" @@ -16454,7 +16526,7 @@ msgstr "需具备工作区管理员角色才能编辑其他用户的私有工作 msgid "Negative Value" msgstr "负值" -#: frappe/database/query.py:333 +#: frappe/database/query.py:335 msgid "Nested filters must be provided as a list or tuple." msgstr "" @@ -16467,6 +16539,12 @@ msgstr "嵌套错误。请联系管理员。" msgid "Network Printer Settings" msgstr "网络打印机设置" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Never" +msgstr "" + #. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/core/doctype/success_action/success_action.js:57 @@ -16475,7 +16553,7 @@ msgstr "网络打印机设置" #: 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/treeview.js:473 #: frappe/public/js/frappe/views/workspace/workspace.js:64 #: frappe/website/doctype/web_form/templates/web_list.html:15 #: frappe/www/list.html:19 @@ -16536,7 +16614,7 @@ msgstr "新事件" msgid "New Folder" msgstr "新建文件夹" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 msgid "New Kanban Board" msgstr "新看板" @@ -16571,7 +16649,7 @@ msgstr "数字卡" msgid "New Onboarding" msgstr "新建入门指引" -#: frappe/core/doctype/user/user.js:190 frappe/www/update-password.html:43 +#: frappe/core/doctype/user/user.js:178 frappe/www/update-password.html:43 msgid "New Password" msgstr "新密码" @@ -16667,7 +16745,7 @@ msgstr "要设置的新值" #: frappe/public/js/frappe/ui/toolbar/search_utils.js:227 #: 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:411 +#: frappe/website/doctype/web_form/web_form.py:438 msgid "New {0}" msgstr "新建 {0}" @@ -16819,7 +16897,7 @@ msgstr "点击进入下一步" #: frappe/public/js/form_builder/utils.js:341 #: frappe/public/js/frappe/form/controls/link.js:498 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1665 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 #: frappe/website/doctype/help_article/templates/help_article.html:26 msgid "No" msgstr "否" @@ -16968,7 +17046,7 @@ msgstr "无数据" msgid "No Roles Specified" msgstr "未分派角色" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 msgid "No Select Field Found" msgstr "无生成看板列所需的单选字段" @@ -17052,7 +17130,7 @@ msgstr "" msgid "No failed logs" msgstr "无出错信息" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:371 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:385 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 "找不到可用作看板列的字段。使用“定制表单”添加“选择”类型的自定义字段。" @@ -17076,7 +17154,7 @@ msgstr "没有下一个记录了" msgid "No matching records. Search something new" msgstr "没有符合条件的记录。搜索新的东西" -#: frappe/public/js/frappe/web_form/web_form_list.js:161 +#: frappe/public/js/frappe/web_form/web_form_list.js:162 msgid "No more items to display" msgstr "没有更多要显示的条目" @@ -17120,7 +17198,7 @@ msgctxt "{0} = verb, {1} = object" msgid "No permission to '{0}' {1}" msgstr "无权限'{0}' {1}" -#: frappe/model/db_query.py:948 +#: frappe/model/db_query.py:949 msgid "No permission to read {0}" msgstr "没有读取{0}的权限" @@ -17168,11 +17246,11 @@ msgstr "无{0}" msgid "No {0} Found" msgstr "未找到{0}" -#: frappe/public/js/frappe/web_form/web_form_list.js:233 +#: frappe/public/js/frappe/web_form/web_form_list.js:234 msgid "No {0} found" msgstr "没有找到{0}" -#: frappe/public/js/frappe/list/list_view.js:497 +#: frappe/public/js/frappe/list/list_view.js:499 msgid "No {0} found with matching filters. Clear filters to see all {0}." msgstr "未找到匹配当前筛选条件的{0},请清除筛选条件后查看全部{0}" @@ -17181,7 +17259,7 @@ msgid "No {0} mail" msgstr "没有{0}邮件" #: frappe/public/js/form_builder/utils.js:117 -#: frappe/public/js/frappe/form/grid_row.js:256 +#: frappe/public/js/frappe/form/grid_row.js:257 msgctxt "Title of the 'row number' column" msgid "No." msgstr "编号" @@ -17245,7 +17323,7 @@ msgstr "不是后代" msgid "Not Equals" msgstr "不等于" -#: frappe/app.py:387 frappe/www/404.html:3 +#: frappe/app.py:390 frappe/www/404.html:3 msgid "Not Found" msgstr "未找到" @@ -17271,9 +17349,9 @@ msgstr "未链接到任何记录" msgid "Not Nullable" msgstr "不可为空" -#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26 +#: frappe/__init__.py:550 frappe/app.py:383 frappe/desk/calendar.py:26 #: frappe/public/js/frappe/web_form/webform_script.js:15 -#: frappe/website/doctype/web_form/web_form.py:747 +#: frappe/website/doctype/web_form/web_form.py:774 #: 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 @@ -17292,7 +17370,7 @@ msgstr "未发布" #: 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/kanban/kanban_view.js:183 #: frappe/public/js/frappe/views/reports/report_view.js:209 #: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39 #: frappe/website/doctype/web_form/templates/web_form.html:85 @@ -17343,7 +17421,7 @@ msgstr "非活动" msgid "Not allowed for {0}: {1}" msgstr "不允许{0}:{1}" -#: frappe/email/doctype/notification/notification.py:637 +#: frappe/email/doctype/notification/notification.py:639 msgid "Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings" msgstr "不允许附加{0}文档,请在打印设置中启用“允许打印{0}”" @@ -17375,12 +17453,12 @@ msgstr "未在开发模式下" msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType." msgstr "未开启开发模式!请在site_config.json中设置或创建一个自定义单据类型" -#: frappe/core/doctype/system_settings/system_settings.py:216 +#: frappe/core/doctype/system_settings/system_settings.py:217 #: 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:760 +#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:787 #: frappe/website/js/website.js:97 msgid "Not permitted" msgstr "没有权限" @@ -17426,7 +17504,7 @@ msgstr "注意:为获得最佳效果,图像必须大小相同,宽度必须 msgid "Note: Multiple sessions will be allowed in case of mobile device" msgstr "注:在使用移动设备时允许多个会话" -#: frappe/core/doctype/user/user.js:399 +#: frappe/core/doctype/user/user.js:387 msgid "Note: This will be shared with user." msgstr "此登录行为将通知对应用户" @@ -17498,15 +17576,15 @@ msgstr "订阅通知的文档" msgid "Notification sent to" msgstr "通知已发送至" -#: frappe/email/doctype/notification/notification.py:542 +#: frappe/email/doctype/notification/notification.py:544 msgid "Notification: customer {0} has no Mobile number set" msgstr "通知:客户{0}未设置手机号码" -#: frappe/email/doctype/notification/notification.py:528 +#: frappe/email/doctype/notification/notification.py:530 msgid "Notification: document {0} has no {1} number set (field: {2})" msgstr "通知:文档{0}未设置{1}号码(字段:{2})" -#: frappe/email/doctype/notification/notification.py:537 +#: frappe/email/doctype/notification/notification.py:539 msgid "Notification: user {0} has no Mobile number set" msgstr "通知:用户{0}未设置手机号码" @@ -17620,7 +17698,7 @@ msgstr "查询次数" msgid "Number of attachment fields are more than {}, limit updated to {}." msgstr "附件字段数超过{},限制已更新为{}。" -#: frappe/core/doctype/system_settings/system_settings.py:171 +#: frappe/core/doctype/system_settings/system_settings.py:172 msgid "Number of backups must be greater than zero." msgstr "备份数量必须大于零。" @@ -17892,7 +17970,7 @@ msgstr "入职完成" #. Description of the 'Is Submittable' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:42 +#: frappe/core/doctype/doctype/doctype_list.js:43 msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended." msgstr "一旦提交后无法再修改。只能先取消再点修订按钮,生成新版本后修改。" @@ -17981,11 +18059,11 @@ msgstr "仅报表生成器类型的报告可删除" msgid "Only reports of type Report Builder can be edited" msgstr "仅报表生成器类型的报告可编辑" -#: frappe/custom/doctype/customize_form/customize_form.py:129 +#: frappe/custom/doctype/customize_form/customize_form.py:131 msgid "Only standard DocTypes are allowed to be customized from Customize Form." msgstr "只允许从“定制表单”定制标准DocType。" -#: frappe/model/delete_doc.py:241 +#: frappe/model/delete_doc.py:281 msgid "Only the Administrator can delete a standard DocType." msgstr "仅管理员可删除标准文档类型。" @@ -18081,7 +18159,7 @@ msgstr "" msgid "Open in a new tab" msgstr "在新标签页打开" -#: frappe/public/js/frappe/list/list_view.js:1431 +#: frappe/public/js/frappe/list/list_view.js:1433 msgctxt "Description of a list view shortcut" msgid "Open list item" msgstr "打开列表项" @@ -18130,7 +18208,7 @@ msgstr "开业" msgid "Operation" msgstr "工序" -#: frappe/utils/data.py:2146 +#: frappe/utils/data.py:2172 msgid "Operator must be one of {0}" msgstr "运算符必须是{0}" @@ -18176,6 +18254,7 @@ msgstr "可选:在这个表达式为真时发送通知" #. 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 (Text) field in DocType 'Web Form List Column' #. 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 @@ -18184,6 +18263,7 @@ msgstr "可选:在这个表达式为真时发送通知" #: 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_form_list_column/web_form_list_column.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Options" msgstr "选项" @@ -18229,7 +18309,7 @@ msgstr "橙色" msgid "Order" msgstr "订购" -#: frappe/database/query.py:767 +#: frappe/database/query.py:769 msgid "Order By must be a string" msgstr "" @@ -18327,7 +18407,7 @@ msgstr "PATCH方法" #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/printing/page/print/print.js:84 #: frappe/public/js/frappe/form/templates/print_layout.html:44 -#: frappe/public/js/frappe/views/reports/query_report.js:1804 +#: frappe/public/js/frappe/views/reports/query_report.js:1812 msgid "PDF" msgstr "PDF" @@ -18675,8 +18755,8 @@ msgstr "已创建" #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/system_settings/system_settings.json -#: frappe/core/doctype/user/user.js:177 frappe/core/doctype/user/user.js:224 -#: frappe/core/doctype/user/user.js:244 +#: frappe/core/doctype/user/user.js:165 frappe/core/doctype/user/user.js:212 +#: frappe/core/doctype/user/user.js:232 #: 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 @@ -18699,7 +18779,7 @@ msgstr "密码重置" msgid "Password Reset Link Generation Limit" msgstr "密码重置链接生成限制" -#: frappe/public/js/frappe/form/grid_row.js:896 +#: frappe/public/js/frappe/form/grid_row.js:897 msgid "Password cannot be filtered" msgstr "密码不可被过滤" @@ -18736,7 +18816,7 @@ msgstr "密码重置说明已发送至{}的邮箱" msgid "Password set" msgstr "密码已设置" -#: frappe/auth.py:258 +#: frappe/auth.py:261 msgid "Password size exceeded the maximum allowed size" msgstr "密码长度超过允许最大值" @@ -18748,7 +18828,7 @@ msgstr "密码长度超过允许最大值" msgid "Passwords do not match" msgstr "密码不匹配" -#: frappe/core/doctype/user/user.js:210 +#: frappe/core/doctype/user/user.js:198 msgid "Passwords do not match!" msgstr "密码不匹配!" @@ -18899,7 +18979,7 @@ msgstr "正式提交{0}?" msgid "Permanently delete {0}?" msgstr "永久删除{0} ?" -#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533 +#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:535 msgid "Permission Error" msgstr "权限错误" @@ -18959,8 +19039,8 @@ msgstr "权限类型" #: 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:143 frappe/core/doctype/user/user.js:152 -#: frappe/core/doctype/user/user.js:161 +#: frappe/core/doctype/user/user.js:131 frappe/core/doctype/user/user.js:140 +#: frappe/core/doctype/user/user.js:149 #: 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 @@ -19030,6 +19110,7 @@ msgstr "个人资料下载请求" #. Option for the 'Type' (Select) field in DocType 'Communication' #. Option for the 'Type' (Select) field in DocType 'DocField' #. Label of the phone (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #. 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' @@ -19040,6 +19121,7 @@ msgstr "个人资料下载请求" #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.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 @@ -19214,7 +19296,7 @@ msgstr "请不要更改模板标题。" msgid "Please duplicate this to make changes" msgstr "请复制后修改" -#: frappe/core/doctype/system_settings/system_settings.py:164 +#: frappe/core/doctype/system_settings/system_settings.py:165 msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login." msgstr "禁用用户名/密码登录前,请至少启用一个社交登录密钥/LDAP/邮件链接登录" @@ -19346,11 +19428,11 @@ msgstr "请首先选择单据类型" msgid "Please select Entity Type first" msgstr "请先选择实体类型" -#: frappe/core/doctype/system_settings/system_settings.py:115 +#: frappe/core/doctype/system_settings/system_settings.py:116 msgid "Please select Minimum Password Score" msgstr "请选择最低密码分数" -#: frappe/public/js/frappe/views/reports/query_report.js:1185 +#: frappe/public/js/frappe/views/reports/query_report.js:1193 msgid "Please select X and Y fields" msgstr "请选择X和Y轴字段" @@ -19378,7 +19460,7 @@ msgstr "请选择有效日期过滤器" msgid "Please select applicable Doctypes" msgstr "请选择单据类型" -#: frappe/model/db_query.py:1157 +#: frappe/model/db_query.py:1163 msgid "Please select atleast 1 column from {0} to sort/group" msgstr "请选择从{0}进行排序/组ATLEAST 1柱" @@ -19408,7 +19490,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:1408 +#: frappe/public/js/frappe/views/reports/query_report.js:1416 msgid "Please set filters" msgstr "请设置过滤条件" @@ -19428,7 +19510,7 @@ msgstr "请先将仪表板中的以下文档设为标准文档" msgid "Please set the series to be used." msgstr "请设置要使用的单据编号模板。" -#: frappe/core/doctype/system_settings/system_settings.py:128 +#: frappe/core/doctype/system_settings/system_settings.py:129 msgid "Please setup SMS before setting it as an authentication method, via SMS Settings" msgstr "请通过SMS设置将其设置为身份验证方式之前设置短信" @@ -19580,7 +19662,7 @@ msgstr "邮政编码" msgid "Posting Timestamp" msgstr "过账时间戳" -#: frappe/database/query.py:1518 +#: frappe/database/query.py:1520 msgid "Potentially dangerous content in string literal: {0}" msgstr "" @@ -19782,13 +19864,13 @@ msgstr "文档类型{0}的主键存在值,不可修改" #: 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:1789 +#: frappe/public/js/frappe/views/reports/query_report.js:1797 #: frappe/public/js/frappe/views/reports/report_view.js:1539 -#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18 +#: frappe/public/js/frappe/views/treeview.js:492 frappe/www/printview.html:18 msgid "Print" msgstr "打印" -#: frappe/public/js/frappe/list/list_view.js:2164 +#: frappe/public/js/frappe/list/list_view.js:2166 msgctxt "Button in list view actions menu" msgid "Print" msgstr "打印" @@ -19858,7 +19940,7 @@ msgstr "打印格式帮助" msgid "Print Format Type" msgstr "打印格式类型" -#: frappe/public/js/frappe/views/reports/query_report.js:1578 +#: frappe/public/js/frappe/views/reports/query_report.js:1586 msgid "Print Format not found" msgstr "" @@ -20039,11 +20121,11 @@ msgstr "ProTip:添加Reference: {{ reference_doctype }} {{ reference_nam msgid "Proceed" msgstr "继续" -#: frappe/public/js/frappe/views/reports/query_report.js:932 +#: frappe/public/js/frappe/views/reports/query_report.js:940 msgid "Proceed Anyway" msgstr "仍然继续" -#: frappe/public/js/frappe/form/controls/table.js:123 +#: frappe/public/js/frappe/form/controls/table.js:104 msgid "Processing" msgstr "处理" @@ -20060,11 +20142,21 @@ msgstr "教授" msgid "Profile" msgstr "个人信息" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile Picture" +msgstr "" + +#. Success message of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile updated successfully." +msgstr "个人资料更新成功." + #: frappe/public/js/frappe/socketio_client.js:82 msgid "Progress" msgstr "进展" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:408 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:422 msgid "Project" msgstr "项目" @@ -20108,7 +20200,7 @@ msgstr "属性类型" msgid "Protect Attached Files" msgstr "保护上传的附件(文件)" -#: frappe/core/doctype/file/file.py:523 +#: frappe/core/doctype/file/file.py:526 msgid "Protected File" msgstr "受保护文件" @@ -20614,11 +20706,11 @@ msgstr "实时通信(SocketIO)" msgid "Reason" msgstr "原因" -#: frappe/public/js/frappe/views/reports/query_report.js:886 +#: frappe/public/js/frappe/views/reports/query_report.js:894 msgid "Rebuild" msgstr "重新生成" -#: frappe/public/js/frappe/views/treeview.js:509 +#: frappe/public/js/frappe/views/treeview.js:511 msgid "Rebuild Tree" msgstr "重新生成树形结构" @@ -20999,8 +21091,8 @@ 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:1778 -#: frappe/public/js/frappe/views/treeview.js:496 +#: frappe/public/js/frappe/views/reports/query_report.js:1786 +#: frappe/public/js/frappe/views/treeview.js:498 #: frappe/public/js/frappe/widgets/chart_widget.js:291 #: frappe/public/js/frappe/widgets/number_card_widget.js:352 #: frappe/public/js/print_format_builder/Preview.vue:24 @@ -21031,13 +21123,13 @@ msgstr "" msgid "Refresh Token" msgstr "刷新令牌" -#: frappe/public/js/frappe/list/list_view.js:534 +#: frappe/public/js/frappe/list/list_view.js:536 msgctxt "Document count in list view" msgid "Refreshing" msgstr "正在刷新" #: frappe/core/doctype/system_settings/system_settings.js:57 -#: frappe/core/doctype/user/user.js:374 +#: frappe/core/doctype/user/user.js:362 #: frappe/desk/page/setup_wizard/setup_wizard.js:211 msgid "Refreshing..." msgstr "正在刷新..." @@ -21422,7 +21514,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:1965 +#: frappe/public/js/frappe/views/reports/query_report.js:1973 msgid "Report Name" msgstr "报表名称" @@ -21474,7 +21566,7 @@ msgstr "报表无数据,请调整过滤器或更换报表名称" msgid "Report has no numeric fields, please change the Report Name" msgstr "报表无数字字段,请更换报表名称" -#: frappe/public/js/frappe/views/reports/query_report.js:1013 +#: frappe/public/js/frappe/views/reports/query_report.js:1021 msgid "Report initiated, click to view status" msgstr "生成报表结果的后台任务已启动,点击查看任务状态" @@ -21494,7 +21586,7 @@ msgstr "报表已成功更新" msgid "Report was not saved (there were errors)" msgstr "报表尚未保存(有错误)" -#: frappe/public/js/frappe/views/reports/query_report.js:2003 +#: frappe/public/js/frappe/views/reports/query_report.js:2011 msgid "Report with more than 10 columns looks better in Landscape mode." msgstr "超过10列的报表更适合横向模式" @@ -21530,7 +21622,7 @@ msgstr "报表" msgid "Reports & Masters" msgstr "报表与主数据" -#: frappe/public/js/frappe/views/reports/query_report.js:929 +#: frappe/public/js/frappe/views/reports/query_report.js:937 msgid "Reports already in Queue" msgstr "报表已加入队列" @@ -21549,7 +21641,10 @@ msgid "Request Body" msgstr "请求内容" #. Label of the data (Code) field in DocType 'Integration Request' +#. Title of the request-data Web Form +#. Button label of the request-data Web Form #: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/website/web_form/request_data/request_data.json msgid "Request Data" msgstr "请求数据" @@ -21601,6 +21696,11 @@ msgstr "请求超时" msgid "Request URL" msgstr "请求URL" +#. Title of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "Request for Account Deletion" +msgstr "" + #. Label of the requested_numbers (Code) field in DocType 'SMS Log' #: frappe/core/doctype/sms_log/sms_log.json msgid "Requested Numbers" @@ -21656,7 +21756,7 @@ msgstr "重置仪表板自定义" msgid "Reset Fields" msgstr "重置字段" -#: frappe/core/doctype/user/user.js:184 frappe/core/doctype/user/user.js:187 +#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:175 msgid "Reset LDAP Password" msgstr "重置LDAP密码" @@ -21664,11 +21764,11 @@ msgstr "重置LDAP密码" msgid "Reset Layout" msgstr "重置" -#: frappe/core/doctype/user/user.js:235 +#: frappe/core/doctype/user/user.js:223 msgid "Reset OTP Secret" msgstr "重置一次性密码" -#: frappe/core/doctype/user/user.js:168 frappe/www/login.html:199 +#: frappe/core/doctype/user/user.js:156 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" @@ -21703,7 +21803,7 @@ msgstr "重置为默认" msgid "Reset sorting" msgstr "重置排序" -#: frappe/public/js/frappe/form/grid_row.js:433 +#: frappe/public/js/frappe/form/grid_row.js:434 msgid "Reset to default" msgstr "恢复默认设置" @@ -21955,7 +22055,7 @@ 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 +#: frappe/public/js/frappe/roles_editor.js:114 msgid "Role Permissions" msgstr "角色权限" @@ -21965,7 +22065,7 @@ msgstr "角色权限" msgid "Role Permissions Manager" msgstr "角色权限管理" -#: frappe/public/js/frappe/list/list_view.js:1933 +#: frappe/public/js/frappe/list/list_view.js:1935 msgctxt "Button in list view menu" msgid "Role Permissions Manager" msgstr "角色权限管理器" @@ -22158,11 +22258,11 @@ msgstr "明细表变更" msgid "Row {0}" msgstr "第{0}行" -#: frappe/custom/doctype/customize_form/customize_form.py:353 +#: frappe/custom/doctype/customize_form/customize_form.py:357 msgid "Row {0}: Not allowed to disable Mandatory for standard fields" msgstr "第{0}行:不允许更改系统标准字段的必填属性" -#: frappe/custom/doctype/customize_form/customize_form.py:342 +#: frappe/custom/doctype/customize_form/customize_form.py:346 msgid "Row {0}: Not allowed to enable Allow on Submit for standard fields" msgstr "行{0}:不允许启用允许对提交的标准字段" @@ -22181,7 +22281,10 @@ msgid "Rows Removed" msgstr "已删除行" #. Label of the rows_threshold_for_grid_search (Int) field in DocType 'DocType' +#. Label of the rows_threshold_for_grid_search (Int) field in DocType +#. 'Customize Form' #: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Rows Threshold for Grid Search" msgstr "" @@ -22389,8 +22492,8 @@ msgstr "星期六" #: 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:1957 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 +#: frappe/public/js/frappe/views/reports/query_report.js:1965 #: frappe/public/js/frappe/views/reports/report_view.js:1735 #: frappe/public/js/frappe/views/workspace/workspace.js:335 #: frappe/public/js/frappe/widgets/base_widget.js:142 @@ -22413,11 +22516,11 @@ msgstr "另存为" msgid "Save Customizations" msgstr "保存自定义" -#: frappe/public/js/frappe/views/reports/query_report.js:1960 +#: frappe/public/js/frappe/views/reports/query_report.js:1968 msgid "Save Report" msgstr "保存报表" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:97 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:107 msgid "Save filters" msgstr "保存过滤条件" @@ -22789,7 +22892,7 @@ msgstr "安全设置" msgid "See all Activity" msgstr "查看所有活动" -#: frappe/public/js/frappe/views/reports/query_report.js:855 +#: frappe/public/js/frappe/views/reports/query_report.js:863 msgid "See all past reports." msgstr "点这儿可以查看之前的历史报表。" @@ -22853,7 +22956,7 @@ msgstr "单选" #: 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:497 +#: frappe/public/js/frappe/form/grid_row.js:498 msgid "Select All" msgstr "全选" @@ -22933,7 +23036,7 @@ msgstr "选择字段" msgid "Select Field..." msgstr "选择字段" -#: frappe/public/js/frappe/form/grid_row.js:489 +#: frappe/public/js/frappe/form/grid_row.js:490 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:181 msgid "Select Fields" msgstr "选择字段" @@ -23053,8 +23156,8 @@ msgid "Select a field to edit its properties." msgstr "选择字段在此编辑属性" #: frappe/public/js/frappe/views/treeview.js:358 -msgid "Select a group node first." -msgstr "请先选择一个组节点。" +msgid "Select a group {0} first." +msgstr "" #: frappe/core/doctype/doctype/doctype.py:1956 msgid "Select a valid Sender Field for creating documents from Email" @@ -23090,13 +23193,13 @@ msgstr "选择打印ATLEAST 1项纪录" msgid "Select atleast 2 actions" msgstr "选择至少2个操作" -#: frappe/public/js/frappe/list/list_view.js:1445 +#: frappe/public/js/frappe/list/list_view.js:1447 msgctxt "Description of a list view shortcut" msgid "Select list item" msgstr "选择列表项" -#: frappe/public/js/frappe/list/list_view.js:1397 -#: frappe/public/js/frappe/list/list_view.js:1413 +#: frappe/public/js/frappe/list/list_view.js:1399 +#: frappe/public/js/frappe/list/list_view.js:1415 msgctxt "Description of a list view shortcut" msgid "Select multiple list items" msgstr "选择多个列表项" @@ -23418,7 +23521,7 @@ msgstr "单据编号模板{0}已经被{1}使用" msgid "Server Action" msgstr "服务器操作" -#: frappe/app.py:396 frappe/public/js/frappe/request.js:611 +#: frappe/app.py:399 frappe/public/js/frappe/request.js:611 #: frappe/www/error.html:36 frappe/www/error.py:15 msgid "Server Error" msgstr "服务器错误" @@ -23484,7 +23587,7 @@ msgstr "会话默认值" msgid "Session Defaults Saved" msgstr "会话默认值已保存" -#: frappe/app.py:373 +#: frappe/app.py:376 msgid "Session Expired" msgstr "会话已过期" @@ -23493,7 +23596,7 @@ msgstr "会话已过期" msgid "Session Expiry (idle timeout)" msgstr "会话超时(无操作超时)" -#: frappe/core/doctype/system_settings/system_settings.py:122 +#: frappe/core/doctype/system_settings/system_settings.py:123 msgid "Session Expiry must be in format {0}" msgstr "会话到期格式必须是{0}" @@ -23542,7 +23645,7 @@ msgstr "设置过滤条件" msgid "Set Filters for {0}" msgstr "为{0}设置过滤器" -#: frappe/public/js/frappe/views/reports/query_report.js:2113 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 msgid "Set Level" msgstr "设置层级" @@ -23596,7 +23699,7 @@ msgstr "设置数量" msgid "Set Role For" msgstr "权限对象" -#: frappe/core/doctype/user/user.js:136 +#: frappe/core/doctype/user/user.js:124 #: frappe/core/page/permission_manager/permission_manager.js:72 msgid "Set User Permissions" msgstr "设置用户权限限制" @@ -23782,7 +23885,7 @@ msgstr "设置 > 用户" msgid "Setup > User Permissions" msgstr "设置 > 用户权限" -#: frappe/public/js/frappe/views/reports/query_report.js:1826 +#: frappe/public/js/frappe/views/reports/query_report.js:1834 #: frappe/public/js/frappe/views/reports/report_view.js:1713 msgid "Setup Auto Email" msgstr "设置电子邮件自动发送" @@ -23923,6 +24026,12 @@ msgstr "显示文档" msgid "Show Error" msgstr "显示错误" +#. Label of the show_external_link_warning (Select) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Show External Link Warning" +msgstr "" + #: frappe/public/js/frappe/form/layout.js:578 msgid "Show Fieldname (click to copy on clipboard)" msgstr "显示字段名(点击复制到剪贴板)" @@ -24051,7 +24160,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:1849 +#: frappe/public/js/frappe/list/list_view.js:1851 msgid "Show Tags" msgstr "显示标签" @@ -24258,36 +24367,36 @@ msgstr "注册已禁用" msgid "Signups have been disabled for this website." msgstr "此网站已禁用注册功能" -#. 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 "简单的Python表达式,示例:状态(“已关闭”,“已取消”)" - #. 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 "简单python表达式,如表示在无效状态下 Status in (\"\"Invalid\"\")" +msgid "Simple Python Expression, Example: status == \"Invalid\"" +msgstr "" #. 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 "简单的Python表达式,例如:status =='Open'并输入=='Bug'" +msgid "Simple Python Expression, Example: status == 'Open' and issue_type == 'Bug'" +msgstr "" + +#. 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 "" #. Label of the simultaneous_sessions (Int) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Simultaneous Sessions" msgstr "并发会话" -#: frappe/custom/doctype/customize_form/customize_form.py:126 +#: frappe/custom/doctype/customize_form/customize_form.py:128 msgid "Single DocTypes cannot be customized." 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 +#: frappe/core/doctype/doctype/doctype_list.js:68 msgid "Single Types have only one record no tables associated. Values are stored in tabSingles" msgstr "单笔记录单据类型只有一条记录,适用于存储系统或模块配置信息,没有独立的后台数据库表。所有单笔记录类型的数据被统一保存在名为tabSingles后台数据库表内。" @@ -24623,7 +24732,7 @@ msgid "Splash Image" msgstr "启动图像" #: frappe/desk/reportview.py:455 -#: frappe/public/js/frappe/web_form/web_form_list.js:175 +#: frappe/public/js/frappe/web_form/web_form_list.js:176 #: frappe/templates/print_formats/standard_macros.html:44 msgid "Sr" msgstr "序号" @@ -24655,7 +24764,7 @@ msgstr "调用栈" msgid "Standard" msgstr "标准" -#: frappe/model/delete_doc.py:79 +#: frappe/model/delete_doc.py:119 msgid "Standard DocType can not be deleted." msgstr "标准文档类型不可删除" @@ -24925,7 +25034,7 @@ msgstr "验证您的登录的步骤" #. Label of the sticky (Check) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json -#: frappe/public/js/frappe/form/grid_row.js:454 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Sticky" msgstr "置顶" @@ -24955,7 +25064,7 @@ msgstr "按表的存储使用量" msgid "Store Attached PDF Document" msgstr "存储PDF附件" -#: frappe/core/doctype/user/user.js:490 +#: frappe/core/doctype/user/user.js:497 msgid "Store the API secret securely. It won't be displayed again." msgstr "" @@ -25067,6 +25176,7 @@ msgstr "提交队列" #. 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' +#. Button label of the request-to-delete-data Web Form #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/docshare/docshare.json @@ -25075,10 +25185,11 @@ msgstr "提交队列" #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/quick_entry.js:225 #: frappe/public/js/frappe/ui/capture.js:307 +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json msgid "Submit" msgstr "提交" -#: frappe/public/js/frappe/list/list_view.js:2231 +#: frappe/public/js/frappe/list/list_view.js:2233 msgctxt "Button in list view actions menu" msgid "Submit" msgstr "提交" @@ -25088,7 +25199,7 @@ msgctxt "Button in web form" msgid "Submit" msgstr "提交" -#: frappe/public/js/frappe/ui/dialog.js:63 +#: frappe/public/js/frappe/ui/dialog.js:64 msgctxt "Primary action in dialog" msgid "Submit" msgstr "提交" @@ -25136,7 +25247,7 @@ msgstr "提交此文档以完成此步骤" msgid "Submit this document to confirm" msgstr "点提交按钮进行确认" -#: frappe/public/js/frappe/list/list_view.js:2236 +#: frappe/public/js/frappe/list/list_view.js:2238 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "是否提交{0}个文档?" @@ -25186,7 +25297,7 @@ msgstr "子标题" #: 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:1171 +#: frappe/public/js/frappe/form/grid.js:1172 #: frappe/public/js/frappe/views/translation_manager.js:21 #: frappe/templates/includes/login/login.js:230 #: frappe/templates/includes/login/login.js:236 @@ -25401,7 +25512,7 @@ msgstr "同步" msgid "Syncing {0} of {1}" msgstr "正在同步{1}中的{0}" -#: frappe/utils/data.py:2547 +#: frappe/utils/data.py:2573 msgid "Syntax Error" msgstr "语法错误" @@ -25712,7 +25823,7 @@ msgstr "表-多选" msgid "Table Trimmed" msgstr "表格已截断" -#: frappe/public/js/frappe/form/grid.js:1170 +#: frappe/public/js/frappe/form/grid.js:1171 msgid "Table updated" msgstr "表更新" @@ -25929,7 +26040,7 @@ msgstr "谢谢" msgid "The Auto Repeat for this document has been disabled." msgstr "此文档的自动重复功能已禁用。" -#: frappe/public/js/frappe/form/grid.js:1193 +#: frappe/public/js/frappe/form/grid.js:1194 msgid "The CSV format is case sensitive" msgstr "CSV格式区分大小写" @@ -26001,7 +26112,7 @@ msgstr "评论内容不能为空" 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:685 +#: frappe/public/js/frappe/list/list_view.js:687 msgid "The count shown is an estimated count. Click here to see the accurate count." msgstr "显示数量为估算值。点击此处查看精确数量。" @@ -26115,7 +26226,7 @@ msgstr "重置密码链接已过期" msgid "The reset password link has either been used before or is invalid" msgstr "重置密码链接已被使用或无效" -#: frappe/app.py:388 frappe/public/js/frappe/request.js:149 +#: frappe/app.py:391 frappe/public/js/frappe/request.js:149 msgid "The resource you are looking for is not available" msgstr "您正在查找的资源不可用" @@ -26188,12 +26299,12 @@ 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:965 +#: frappe/public/js/frappe/views/reports/query_report.js:973 msgid "There are {0} with the same filters already in the queue:" msgstr "队列中已有{0}条相同筛选条件的记录:" #: frappe/website/doctype/web_form/web_form.js:81 -#: frappe/website/doctype/web_form/web_form.js:317 +#: frappe/website/doctype/web_form/web_form.js:318 msgid "There can be only 9 Page Break fields in a Web Form" msgstr "网页表单最多允许9个分页符字段" @@ -26217,11 +26328,11 @@ msgstr "" msgid "There is nothing new to show you right now." msgstr "暂无可显示新消息" -#: frappe/core/doctype/file/file.py:640 frappe/utils/file_manager.py:372 +#: frappe/core/doctype/file/file.py:643 frappe/utils/file_manager.py:372 msgid "There is some problem with the file url: {0}" msgstr "有一些问题与文件的URL:{0}" -#: frappe/public/js/frappe/views/reports/query_report.js:962 +#: frappe/public/js/frappe/views/reports/query_report.js:970 msgid "There is {0} with the same filters already in the queue:" msgstr "队列中已有{0}条相同筛选条件的记录:" @@ -26233,7 +26344,7 @@ msgstr "至少要一个权限规则。" msgid "There was an error building this page" msgstr "构建此页面时出错" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:182 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:196 msgid "There was an error saving filters" msgstr "保存过滤条件时出错" @@ -26290,7 +26401,7 @@ msgstr "第三方认证" msgid "This Currency is disabled. Enable to use in transactions" msgstr "该货币已被禁用,请启用以便能在业务交易中使用" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:391 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:405 msgid "This Kanban Board will be private" msgstr "此看板只适用于本帐号" @@ -26327,7 +26438,7 @@ msgstr "此操作仅允许{}执行" msgid "This cannot be undone" msgstr "不可撤销" -#: frappe/desk/doctype/number_card/number_card.js:480 +#: frappe/desk/doctype/number_card/number_card.js:484 msgctxt "Number Card" msgid "This card is visible only to Administrator and System Managers by default. Set a DocType to share with users who have read access." msgstr "" @@ -26350,7 +26461,7 @@ msgstr "此文档类型无孤立字段需清理" msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes." msgstr "此文档类型有待执行迁移,修改前请运行'bench migrate'以避免丢失更改。" -#: frappe/model/delete_doc.py:113 +#: frappe/model/delete_doc.py:153 msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time." msgstr "此文档正被其他用户修改,暂时无法删除。请稍后重试。" @@ -26396,7 +26507,7 @@ msgstr "本字段仅在以上代码框中定义的字段有值或表达式(js代 "案例2:年龄大于18
\n" "eval:doc.age>18" -#: frappe/core/doctype/file/file.py:522 +#: frappe/core/doctype/file/file.py:525 msgid "This file is attached to a protected document and cannot be deleted." msgstr "该文件已关联至受保护文档,不可删除。" @@ -26431,7 +26542,7 @@ msgstr "暂不支持此地理位置服务提供商。" msgid "This goes above the slideshow." msgstr "在幻灯片上面。" -#: frappe/public/js/frappe/views/reports/query_report.js:2189 +#: frappe/public/js/frappe/views/reports/query_report.js:2197 msgid "This is a background report. Please set the appropriate filters and then generate a new one." msgstr "此报表是后台运行报表,请设置恰当的过滤条件并点击右上角生成新报表按钮获取报表结果" @@ -26481,7 +26592,7 @@ msgstr "可能会打印多页" msgid "This month" msgstr "这个月" -#: frappe/public/js/frappe/views/reports/query_report.js:1037 +#: frappe/public/js/frappe/views/reports/query_report.js:1045 msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead." msgstr "此报告包含{0}行数据,浏览器显示过大,建议{1}此报告。" @@ -26489,7 +26600,7 @@ msgstr "此报告包含{0}行数据,浏览器显示过大,建议{1}此报告 msgid "This report was generated on {0}" msgstr "此报表是在{0}上生成的" -#: frappe/public/js/frappe/views/reports/query_report.js:853 +#: frappe/public/js/frappe/views/reports/query_report.js:861 msgid "This report was generated {0}." msgstr "报表{0}已生成。" @@ -26631,9 +26742,11 @@ msgstr "时间(秒)" #. Label of the time_zone (Select) field in DocType 'System Settings' #. Label of the time_zone (Autocomplete) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #. 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/core/web_form/edit_profile/edit_profile.json #: frappe/desk/page/setup_wizard/setup_wizard.js:407 #: frappe/website/doctype/web_page_view/web_page_view.json msgid "Time Zone" @@ -26900,7 +27013,7 @@ msgstr "导出此步骤为JSON需关联到入职文档并保存" msgid "To generate password click {0}" msgstr "生成密码请点击{0}" -#: frappe/public/js/frappe/views/reports/query_report.js:854 +#: frappe/public/js/frappe/views/reports/query_report.js:862 msgid "To get the updated report, click on {0}." msgstr "要获取已更新报表,请单击{0}。" @@ -26975,7 +27088,7 @@ msgstr "切换到图标视图" msgid "Toggle Sidebar" msgstr "切换边栏" -#: frappe/public/js/frappe/list/list_view.js:1964 +#: frappe/public/js/frappe/list/list_view.js:1966 msgctxt "Button in list view menu" msgid "Toggle Sidebar" msgstr "切换侧边栏" @@ -27101,7 +27214,7 @@ msgstr "主题" #: frappe/desk/query_report.py:587 #: frappe/public/js/frappe/views/reports/print_grid.html:45 -#: frappe/public/js/frappe/views/reports/query_report.js:1324 +#: frappe/public/js/frappe/views/reports/query_report.js:1332 #: frappe/public/js/frappe/views/reports/report_view.js:1553 msgid "Total" msgstr "总计" @@ -27260,7 +27373,7 @@ msgstr "状态转换" msgid "Translatable" msgstr "可翻译" -#: frappe/public/js/frappe/views/reports/query_report.js:2244 +#: frappe/public/js/frappe/views/reports/query_report.js:2252 msgid "Translate Data" msgstr "翻译数据" @@ -27619,7 +27732,7 @@ msgstr "缺少邮箱账户无法发送邮件,请通过设置>邮箱账户配 msgid "Unable to update event" msgstr "无法更新事件" -#: frappe/core/doctype/file/file.py:486 +#: frappe/core/doctype/file/file.py:489 msgid "Unable to write file format for {0}" msgstr "无法写入{0}的文件格式" @@ -27628,7 +27741,7 @@ msgstr "无法写入{0}的文件格式" msgid "Unassign Condition" msgstr "取消分派条件" -#: frappe/app.py:396 +#: frappe/app.py:399 msgid "Uncaught Exception" msgstr "未捕获异常" @@ -27644,7 +27757,7 @@ msgstr "撤销" msgid "Undo last action" msgstr "撤销上一步操作" -#: frappe/database/query.py:1495 +#: frappe/database/query.py:1497 msgid "Unescaped quotes in string literal: {0}" msgstr "" @@ -27691,7 +27804,7 @@ msgstr "未知列: {0}" msgid "Unknown Rounding Method: {}" msgstr "未知舍入方法:{}" -#: frappe/auth.py:316 +#: frappe/auth.py:319 msgid "Unknown User" msgstr "未知用户" @@ -27757,8 +27870,8 @@ msgstr "退订参数" msgid "Unsubscribed" msgstr "已退订" -#: frappe/database/query.py:653 frappe/database/query.py:1387 -#: frappe/database/query.py:1397 +#: frappe/database/query.py:655 frappe/database/query.py:1389 +#: frappe/database/query.py:1399 msgid "Unsupported function or invalid field name: {0}" msgstr "" @@ -27792,7 +27905,7 @@ msgstr "今日活动" #: 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:427 +#: frappe/public/js/frappe/form/grid_row.js:428 msgid "Update" msgstr "更新" @@ -27826,6 +27939,11 @@ msgstr "更新顺序" msgid "Update Password" msgstr "更新密码" +#. Title of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Update Profile" +msgstr "" + #. Label of the update_series (Section Break) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -28041,11 +28159,7 @@ msgstr "使用别的邮箱账号" msgid "Use if the default settings don't seem to detect your data correctly" msgstr "当默认设置无法正确识别数据时使用" -#: frappe/model/db_query.py:436 -msgid "Use of function {0} in field is restricted" -msgstr "字段中函数{0}的使用受限" - -#: frappe/model/db_query.py:413 +#: frappe/model/db_query.py:411 msgid "Use of sub-query or function is restricted" msgstr "子查询或函数的使用受到限制" @@ -28267,12 +28381,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:1944 +#: frappe/public/js/frappe/views/reports/query_report.js:1952 #: frappe/public/js/frappe/views/reports/report_view.js:1761 msgid "User Permissions" msgstr "用户权限限制" -#: frappe/public/js/frappe/list/list_view.js:1922 +#: frappe/public/js/frappe/list/list_view.js:1924 msgctxt "Button in list view menu" msgid "User Permissions" msgstr "用户权限" @@ -28416,7 +28530,7 @@ msgstr "用户 {0} 以 {1} 身份登录" msgid "User {0} is disabled" msgstr "用户{0}已禁用" -#: frappe/sessions.py:242 +#: frappe/sessions.py:243 msgid "User {0} is disabled. Please contact your System Manager." msgstr "用户{0}已禁用,请联系系统管理员" @@ -28593,7 +28707,7 @@ msgstr "{0}的值不能为负数:{1}" msgid "Value for a check field can be either 0 or 1" msgstr "勾选字段值可以为0或1" -#: frappe/custom/doctype/customize_form/customize_form.py:612 +#: frappe/custom/doctype/customize_form/customize_form.py:616 msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters" msgstr "{1} 中的字段 {0} 值太长,长度应该小于 {2}" @@ -28714,7 +28828,7 @@ msgstr "查看全部" msgid "View Audit Trail" msgstr "查看审计跟踪" -#: frappe/core/doctype/user/user.js:156 +#: frappe/core/doctype/user/user.js:144 msgid "View Doctype Permissions" msgstr "查看文档类型权限" @@ -28726,7 +28840,7 @@ msgstr "查看文件" msgid "View Full Log" msgstr "查看全部日志" -#: frappe/public/js/frappe/views/treeview.js:484 +#: frappe/public/js/frappe/views/treeview.js:486 #: frappe/public/js/frappe/widgets/quick_list_widget.js:258 msgid "View List" msgstr "查看列表" @@ -28736,7 +28850,7 @@ msgstr "查看列表" msgid "View Log" msgstr "查看日志" -#: frappe/core/doctype/user/user.js:147 +#: frappe/core/doctype/user/user.js:135 #: frappe/core/doctype/user_permission/user_permission.js:24 msgid "View Permitted Documents" msgstr "查看被授权单据" @@ -28852,6 +28966,7 @@ msgid "Warehouse" msgstr "仓库" #. Option for the 'Style' (Select) field in DocType 'Workflow State' +#: frappe/public/js/frappe/router.js:613 #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Warning" msgstr "警告" @@ -29497,7 +29612,7 @@ msgstr "工作流更新成功" msgid "Workspace" msgstr "工作区" -#: frappe/public/js/frappe/router.js:175 +#: frappe/public/js/frappe/router.js:180 msgid "Workspace {0} does not exist" msgstr "工作区{0}不存在" @@ -29619,7 +29734,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:1225 +#: frappe/public/js/frappe/views/reports/query_report.js:1233 msgid "Y Field" msgstr "Y轴字段" @@ -29681,7 +29796,7 @@ msgstr "黄色" #: frappe/public/js/form_builder/utils.js:336 #: frappe/public/js/frappe/form/controls/link.js:498 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1665 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 #: frappe/website/doctype/help_article/templates/help_article.html:25 msgid "Yes" msgstr "是" @@ -29717,6 +29832,10 @@ msgstr "" msgid "You added {0} rows to {1}" msgstr "" +#: frappe/public/js/frappe/router.js:642 +msgid "You are about to open an external link. To confirm, click the link again." +msgstr "" + #: frappe/public/js/frappe/dom.js:438 msgid "You are connected to internet." msgstr "已联网。" @@ -29760,7 +29879,7 @@ msgstr "您无权编辑此报表" msgid "You are not allowed to export {} doctype" msgstr "未被授权导出单据类型{}" -#: frappe/public/js/frappe/views/treeview.js:448 +#: frappe/public/js/frappe/views/treeview.js:450 msgid "You are not allowed to print this report" msgstr "您未被授权打印此报表" @@ -29768,7 +29887,7 @@ msgstr "您未被授权打印此报表" msgid "You are not allowed to send emails related to this document" msgstr "你不允许发送与此单据相关的电子邮件" -#: frappe/website/doctype/web_form/web_form.py:605 +#: frappe/website/doctype/web_form/web_form.py:632 msgid "You are not allowed to update this Web Form Document" msgstr "你不允许更新此Web表单" @@ -29841,11 +29960,11 @@ msgstr "可在 {0} 中设置日志保留天数让系统自动删除过期数据" msgid "You can continue with the onboarding after exploring this page" msgstr "浏览本页后可继续完成新手引导" -#: frappe/model/delete_doc.py:137 +#: frappe/model/delete_doc.py:177 msgid "You can disable this {0} instead of deleting it." msgstr "你可以禁用而不是删除物料 {0}" -#: frappe/core/doctype/file/file.py:758 +#: frappe/core/doctype/file/file.py:761 msgid "You can increase the limit from System Settings." msgstr "可从系统设置中提高限制" @@ -29895,11 +30014,11 @@ msgstr "可以使用定制表单设置字段的权限级别。" msgid "You can use wildcard %" msgstr "可以使用通配符%" -#: frappe/custom/doctype/customize_form/customize_form.py:390 +#: frappe/custom/doctype/customize_form/customize_form.py:394 msgid "You can't set 'Options' for field {0}" msgstr "您不能为字段{0}设置“选项”" -#: frappe/custom/doctype/customize_form/customize_form.py:394 +#: frappe/custom/doctype/customize_form/customize_form.py:398 msgid "You can't set 'Translatable' for field {0}" msgstr "您无法为字段{0}设置“可翻译”" @@ -29917,7 +30036,7 @@ msgstr "您已取消此文档{1}" msgid "You cannot create a dashboard chart from single DocTypes" msgstr "不能为单记录单据类型创建统计图表" -#: frappe/custom/doctype/customize_form/customize_form.py:386 +#: frappe/custom/doctype/customize_form/customize_form.py:390 msgid "You cannot unset 'Read Only' for field {0}" msgstr "你不能为字段{0}取消“只读”设置" @@ -29960,11 +30079,11 @@ msgstr "您对{}无读取或选择权限" msgid "You do not have enough permissions to access this resource. Please contact your manager to get access." msgstr "您没有足够的权限来访问该资源。请联系您的经理,以获得访问权。" -#: frappe/app.py:381 +#: frappe/app.py:384 msgid "You do not have enough permissions to complete the action" msgstr "您未被授权完成此操作" -#: frappe/database/query.py:529 +#: frappe/database/query.py:531 msgid "You do not have permission to access field: {0}" msgstr "" @@ -29980,7 +30099,7 @@ msgstr "没有权限取消所有关联的单据" msgid "You don't have access to Report: {0}" msgstr "您没有权限访问报表:{0}" -#: frappe/website/doctype/web_form/web_form.py:808 +#: frappe/website/doctype/web_form/web_form.py:835 msgid "You don't have permission to access the {0} DocType." msgstr "您无权访问{0}文档类型" @@ -30004,7 +30123,7 @@ msgstr "" msgid "You have been successfully logged out" msgstr "您已成功注销" -#: frappe/custom/doctype/customize_form/customize_form.py:245 +#: frappe/custom/doctype/customize_form/customize_form.py:247 msgid "You have hit the row size limit on database table: {0}" msgstr "已达到数据库表{0}的行大小限制" @@ -30032,7 +30151,7 @@ msgstr "待查看{0}" msgid "You haven't added any Dashboard Charts or Number Cards yet." msgstr "尚未创建统计图表或数字卡" -#: frappe/public/js/frappe/list/list_view.js:501 +#: frappe/public/js/frappe/list/list_view.js:503 msgid "You haven't created a {0} yet" msgstr "暂无数据 {0}" @@ -30049,11 +30168,11 @@ msgstr "你最新修订了本单据" msgid "You must add atleast one link." msgstr "必须至少添加一个链接" -#: frappe/website/doctype/web_form/web_form.py:804 +#: frappe/website/doctype/web_form/web_form.py:831 msgid "You must be logged in to use this form." msgstr "必须登录才能使用此表单" -#: frappe/website/doctype/web_form/web_form.py:645 +#: frappe/website/doctype/web_form/web_form.py:672 msgid "You must login to submit this form" msgstr "您必须登录才能提交此表单" @@ -30168,6 +30287,10 @@ msgstr "您取消了对该单据的关注" msgid "You viewed this" msgstr "您查看了此内容" +#: frappe/public/js/frappe/router.js:653 +msgid "You will be redirected to:" +msgstr "" + #: frappe/core/doctype/user_invitation/user_invitation.py:113 msgid "You've been invited to join {0}" msgstr "" @@ -30213,7 +30336,7 @@ msgstr "快速访问" msgid "Your account has been deleted" msgstr "您的账户已被删除" -#: frappe/auth.py:514 +#: frappe/auth.py:517 msgid "Your account has been locked and will resume after {0} seconds" msgstr "您的账户已被锁定,并将在{0}秒后恢复" @@ -30279,7 +30402,7 @@ msgstr "您的问题已收到。我们将尽快回复邮件。如果您还有任 msgid "Your report is being generated in the background. You will receive an email on {0} with a download link once it is ready." msgstr "" -#: frappe/app.py:374 +#: frappe/app.py:377 msgid "Your session has expired, please login again to continue." msgstr "您的会话已过期,请再次登录以继续。" @@ -30616,7 +30739,7 @@ msgstr "列表" msgid "logged in" msgstr "已登录" -#: frappe/website/doctype/web_form/web_form.js:362 +#: frappe/website/doctype/web_form/web_form.js:363 msgid "login_required" msgstr "需要登录" @@ -30954,7 +31077,7 @@ msgstr "通过数据导入" msgid "via Google Meet" msgstr "通过Google Meet" -#: frappe/email/doctype/notification/notification.py:403 +#: frappe/email/doctype/notification/notification.py:405 msgid "via Notification" msgstr "通过通知" @@ -31064,7 +31187,7 @@ msgstr "{0}图表" msgid "{0} Dashboard" msgstr "{0}数据面板" -#: frappe/public/js/frappe/form/grid_row.js:486 +#: frappe/public/js/frappe/form/grid_row.js:487 #: frappe/public/js/frappe/list/list_settings.js:225 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:178 msgid "{0} Fields" @@ -31115,7 +31238,7 @@ msgstr "{0} 提交后不允许将 {1} 从 {2} 修改为 {3}" msgid "{0} Report" msgstr "{0}报表" -#: frappe/public/js/frappe/views/reports/query_report.js:956 +#: frappe/public/js/frappe/views/reports/query_report.js:964 msgid "{0} Reports" msgstr "{0}报告" @@ -31188,7 +31311,7 @@ msgctxt "Form timeline" msgid "{0} attached {1}" msgstr "{0}附加了{1}" -#: frappe/core/doctype/system_settings/system_settings.py:152 +#: frappe/core/doctype/system_settings/system_settings.py:153 msgid "{0} can not be more than {1}" msgstr "{0}不能超过{1}" @@ -31265,7 +31388,7 @@ 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 +#: frappe/database/query.py:710 msgid "{0} fields cannot contain backticks (`): {1}" msgstr "" @@ -31310,7 +31433,7 @@ msgstr "行{1}中的{0}不能同时有URL和子项" msgid "{0} is a mandatory field" msgstr "{0}是必填字段" -#: frappe/core/doctype/file/file.py:566 +#: frappe/core/doctype/file/file.py:569 msgid "{0} is a not a valid zip file" msgstr "{0}不是有效的zip文件" @@ -31359,7 +31482,7 @@ msgstr "{0}类似于{1}" msgid "{0} is mandatory" msgstr "{0}是必填项" -#: frappe/database/query.py:485 +#: frappe/database/query.py:487 msgid "{0} is not a child table of {1}" msgstr "" @@ -31379,7 +31502,7 @@ msgstr "{0}不是有效的日历,正在重定向到默认日历" msgid "{0} is not a valid Cron expression." msgstr "{0}不是有效的Cron表达式" -#: frappe/public/js/frappe/form/controls/dynamic_link.js:27 +#: frappe/public/js/frappe/form/controls/dynamic_link.js:23 msgid "{0} is not a valid DocType for Dynamic Link" msgstr "{0}不是有效的动态链接文档类型" @@ -31416,7 +31539,7 @@ msgstr "{0}不是{1}的有效父字段" msgid "{0} is not a valid report format. Report format should one of the following {1}" msgstr "{0}不是有效的报告格式。报告格式应为以下之一:{1}" -#: frappe/core/doctype/file/file.py:546 +#: frappe/core/doctype/file/file.py:549 msgid "{0} is not a zip file" msgstr "{0}不是zip文件" @@ -31464,7 +31587,7 @@ msgstr "{0}已设置" msgid "{0} is within {1}" msgstr "{0}在{1}范围内" -#: frappe/public/js/frappe/list/list_view.js:1839 +#: frappe/public/js/frappe/list/list_view.js:1841 msgid "{0} items selected" msgstr "已选{0}条记录" @@ -31550,11 +31673,11 @@ msgid "{0} not found" msgstr "{0}未找到" #: frappe/core/doctype/report/report.py:427 -#: frappe/public/js/frappe/list/list_view.js:1211 +#: frappe/public/js/frappe/list/list_view.js:1213 msgid "{0} of {1}" msgstr "第{0}项 / 共{1}项" -#: frappe/public/js/frappe/list/list_view.js:1213 +#: frappe/public/js/frappe/list/list_view.js:1215 msgid "{0} of {1} ({2} rows with children)" msgstr "{0} / {1} ({2} 行有子记录)" @@ -31604,7 +31727,7 @@ msgstr "{0}移除了其分配" msgid "{0} removed {1} rows from {2}" msgstr "" -#: frappe/public/js/frappe/roles_editor.js:62 +#: frappe/public/js/frappe/roles_editor.js:64 msgid "{0} role does not have permission on any doctype" msgstr "角色 {0} 无单据类型权限" @@ -31678,7 +31801,7 @@ msgstr "{0}到{1}" msgid "{0} un-shared this document with {1}" msgstr "{0}关闭了此单据对{1}的分享" -#: frappe/custom/doctype/customize_form/customize_form.py:254 +#: frappe/custom/doctype/customize_form/customize_form.py:256 msgid "{0} updated" msgstr "{0}已更新" @@ -31738,7 +31861,7 @@ msgstr "{0} {1} 关联了下列已提交单据: {2}" msgid "{0} {1} not found" msgstr "{0} {1}未找到" -#: frappe/model/delete_doc.py:248 +#: frappe/model/delete_doc.py:288 msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first." msgstr "{0} {1}: 已提交单据不可被删除. 应 {2} 先取消 {3}." @@ -31851,7 +31974,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:1283 +#: frappe/public/js/frappe/views/reports/query_report.js:1291 msgid "{0}: {1} vs {2}" msgstr "{0}:{1}与{2}" @@ -31887,11 +32010,11 @@ msgstr "{{{0}}}是不是一个有效的字段名模式。它应该是{{FIELD_NAM msgid "{} Complete" msgstr "已完成{}" -#: frappe/utils/data.py:2541 +#: frappe/utils/data.py:2567 msgid "{} Invalid python code on line {}" msgstr "第{}行存在无效Python代码" -#: frappe/utils/data.py:2550 +#: frappe/utils/data.py:2576 msgid "{} Possibly invalid python code.
{}" msgstr "可能存在无效Python代码:
{}" @@ -31917,7 +32040,7 @@ msgstr "{}已被禁用,需勾选{}方可启用" msgid "{} is not a valid date string." msgstr "{}不是有效日期字符串" -#: frappe/commands/utils.py:562 +#: frappe/commands/utils.py:561 msgid "{} not found in PATH! This is required to access the console." msgstr "PATH中未找到{}!访问控制台需要此组件" diff --git a/frappe/model/base_document.py b/frappe/model/base_document.py index 3a5057595e..ae33642aac 100644 --- a/frappe/model/base_document.py +++ b/frappe/model/base_document.py @@ -1399,7 +1399,7 @@ class BaseDocument: else: return True - def reset_values_if_no_permlevel_access(self, has_access_to, high_permlevel_fields): + def reset_values_if_no_permlevel_access(self, has_access_to, high_permlevel_fields, mask_fields=None): """If the user does not have permissions at permlevel > 0, then reset the values to original / default""" to_reset = [ df @@ -1411,22 +1411,38 @@ class BaseDocument: ) ] - if to_reset: - if self.is_new(): - # if new, set default value - ref_doc = frappe.new_doc(self.doctype) - else: - # get values from old doc - if self.parent_doc: - parent_doc = self.parent_doc.get_latest() - child_docs = [d for d in parent_doc.get(self.parentfield) if d.name == self.name] - if not child_docs: - return - ref_doc = child_docs[0] - else: - ref_doc = self.get_latest() + if not mask_fields: + mask_fields = [] - for df in to_reset: + to_reset = to_reset + mask_fields + + if not to_reset: + return + + if self.is_new(): + # if new, set default value + ref_doc = frappe.new_doc(self.doctype) + else: + # get values from old doc + if self.parent_doc: + parent_doc = self.parent_doc.get_latest() + child_docs = [d for d in parent_doc.get(self.parentfield) if d.name == self.name] + if not child_docs: + return + ref_doc = child_docs[0] + else: + ref_doc = self.get_latest() + + masked_fieldnames = [df.fieldname for df in to_reset if df.get("mask_readonly")] + ref_values = {} + if not self.is_new() and masked_fieldnames: + ref_values = frappe.db.get_value(self.doctype, self.name, masked_fieldnames, as_dict=True) or {} + + for df in to_reset: + if df.get("mask_readonly") and not self.is_new(): + if df.fieldname in ref_values: + self.set(df.fieldname, ref_values[df.fieldname]) + else: self.set(df.fieldname, ref_doc.get(df.fieldname)) def get_value(self, fieldname): diff --git a/frappe/model/db_query.py b/frappe/model/db_query.py index 41451035a6..e96e032784 100644 --- a/frappe/model/db_query.py +++ b/frappe/model/db_query.py @@ -219,8 +219,57 @@ class DatabaseQuery: if pluck: return [d[pluck] for d in result] + if self.doctype and result: + result = self.mask_fields(result) + return result + def mask_fields(self, result): + """Mask fields in the result based on the doctype's masked fields""" + masked_fields = self.get_masked_fields() + + if not masked_fields: + return result + + if self.as_list: + masked_result = [] + field_index_map = {} + for idx, field in enumerate(self.fields): + # handle aliases (e.g. `tabSI`.`posting_date` as posting_date) + if " as " in field.lower(): + alias = field.split(" as ")[1].strip(" '") + field_index_map[alias] = idx + else: + # extract last part after `.` + col = field.split(".")[-1].strip("`") + field_index_map[col] = idx + # if as_list then we don't have field names in the result so we need to mask by position + for row in result: + row = list(row) # convert tuple to list mutable + for field in masked_fields: + if field.fieldname in field_index_map: + idx = field_index_map[field.fieldname] + val = row[idx] + row[idx] = mask_field_value(field, val) + + masked_result.append(tuple(row)) # convert back to tuple + result = masked_result + else: + for row in result: + for field in masked_fields: + if field.fieldname in row: + val = row[field.fieldname] + row[field.fieldname] = mask_field_value(field, val) + + return result + + def get_masked_fields(self): + """Get masked fields for the doctype""" + + meta = self.get_meta(self.doctype) + + return meta.get_masked_fields() + def build_and_run(self): args = self.prepare_args() args.limit = self.add_limit() @@ -394,8 +443,6 @@ from {tables} "concat", "concat_ws", "if", - "ifnull", - "nullif", "coalesce", "connection_id", "current_user", @@ -425,16 +472,19 @@ from {tables} if SUB_QUERY_PATTERN.match(field): # Check for subquery anywhere in the field, not just at the beginning if "(" in lower_field: - location = lower_field.index("(") - subquery_token = lower_field[location + 1 :].lstrip().split(" ", 1)[0] - if any(keyword in subquery_token for keyword in blacklisted_keywords): - _raise_exception() - - function = lower_field.split("(", 1)[0].rstrip() - if function in blacklisted_functions: - frappe.throw( - _("Use of function {0} in field is restricted").format(function), exc=frappe.DataError - ) + # Check all parentheses pairs, not just the first one + paren_start = 0 + while True: + location = lower_field.find("(", paren_start) + if location == -1: + break + token = lower_field[location + 1 :].lstrip().split(" ", 1)[0] + if any( + re.search(r"\b" + re.escape(keyword) + r"\b", token) + for keyword in blacklisted_keywords + blacklisted_functions + ): + _raise_exception() + paren_start = location + 1 if "@" in lower_field: # prevent access to global variables @@ -622,6 +672,7 @@ from {tables} ignore_virtual=True, ) ) + permitted_child_table_fields = {} # Create a copy of the fields list and reverse it to avoid index issues when removing fields @@ -1126,7 +1177,12 @@ from {tables} r"select\b.*\bfrom", } - if any(re.search(r"\b" + pattern + r"\b", _lower) for pattern in subquery_indicators): + # Replace doctype names with a hardcoded string "doc" + # This is to avoid false positives based on doctype name + sanitized = re.sub(r"`tab[^`]*`", " doc ", _lower) + + # Run the subquery checks against the sanitized string + if any(re.search(r"\b" + pattern + r"\b", sanitized) for pattern in subquery_indicators): frappe.throw(_("Cannot use sub-query here.")) blacklisted_sql_functions = { @@ -1194,6 +1250,26 @@ from {tables} update_user_settings(self.doctype, user_settings) +def mask_field_value(field, val): + if not val: + return val + + if field.fieldtype == "Data" and field.options == "Phone": + if len(val) > 3: + return val[:3] + "XXXXXX" + else: + return "X" * len(val) + elif field.fieldtype == "Data" and field.options == "Email": + email = val.split("@") + return "XXXXXX@" + email[1] if len(email) > 1 else "XXXXXX" + elif field.fieldtype == "Date": + return "XX-XX-XXXX" + elif field.fieldtype == "Time": + return "XX:XX" + else: + return "XXXXXXXX" + + def cast_name(column: str) -> str: """Casts name field to varchar for postgres diff --git a/frappe/model/delete_doc.py b/frappe/model/delete_doc.py index 6b3914527d..5cf52724a4 100644 --- a/frappe/model/delete_doc.py +++ b/frappe/model/delete_doc.py @@ -3,6 +3,7 @@ import os import shutil +from typing import Any import frappe import frappe.defaults @@ -20,19 +21,58 @@ from frappe.utils.password import delete_all_passwords_for def delete_doc( - doctype=None, - name=None, - force=0, - ignore_doctypes=None, - for_reload=False, - ignore_permissions=False, - flags=None, - ignore_on_trash=False, - ignore_missing=True, - delete_permanently=False, -): + doctype: str | None = None, + name: str | int | list[str | int] | None = None, + force: int | bool = 0, + ignore_doctypes: list[str] | None = None, + for_reload: bool = False, + ignore_permissions: bool = False, + flags: dict[str, Any] | None = None, + ignore_on_trash: bool = False, + ignore_missing: bool = True, + delete_permanently: bool = False, +) -> bool | None: """ - Deletes a doc(dt, dn) and validates if it is not submitted and not linked in a live record + Deletes a document and validates if it is not submitted and not linked in a live record. + + Args: + doctype (str, optional): The document type to delete. If not provided, + retrieved from frappe.form_dict.get("dt"). Defaults to None. + name (str | int | list, optional): The name/ID of the document(s) to delete. + Can be a single name or a list of names. If not provided, + retrieved from frappe.form_dict.get("dn"). Defaults to None. + force (bool, optional): When True, bypasses link existence checks and allows + deletion of documents that are linked to other records. Also allows + deletion of standard DocTypes. Defaults to 0 (False). + ignore_doctypes (list, optional): A list of child doctypes to ignore when + deleting child table records associated with the document. Defaults to None. + for_reload (bool, optional): When True, indicates the deletion is for reloading + purposes (like during doctype updates). Skips certain validations like + permissions and on_trash methods, and automatically sets delete_permanently=True. + Defaults to False. + ignore_permissions (bool, optional): When True, bypasses permission checks + during deletion. Useful for system operations. Defaults to False. + flags (dict, optional): Additional flags to set on the document during the + deletion process. These flags affect document behavior during deletion. + Defaults to None. + ignore_on_trash (bool, optional): When True, skips calling the document's + on_trash method, which typically contains cleanup logic. Defaults to False. + ignore_missing (bool, optional): When True, doesn't raise an error if the + document doesn't exist and returns False. When False, raises + frappe.DoesNotExistError if document is missing. Defaults to True. + delete_permanently (bool, optional): When True, permanently deletes the document + without adding it to the "Deleted Document" table for recovery purposes. + When False, the document is soft-deleted and can be recovered. Defaults to False. + + Raises: + frappe.DoesNotExistError: When document doesn't exist and ignore_missing=False. + frappe.LinkExistsError: When document is linked to other records and force=False. + frappe.PermissionError: When user doesn't have delete permissions and ignore_permissions=False. + frappe.ValidationError: When trying to delete a submitted document. + frappe.QueryTimeoutError: When document is locked by another user. + + Returns: + bool: False if document doesn't exist and ignore_missing=True, otherwise None. """ if not ignore_doctypes: ignore_doctypes = [] @@ -104,6 +144,8 @@ def delete_doc( # in case a doctype doesnt have any controller code nor any app and module pass + frappe.clear_cache(doctype=name) + else: # Lock the doc without waiting try: diff --git a/frappe/model/document.py b/frappe/model/document.py index e888e76bee..06e28a447b 100644 --- a/frappe/model/document.py +++ b/frappe/model/document.py @@ -268,8 +268,20 @@ class Document(BaseDocument): if hasattr(self, "__setup__"): self.__setup__() + if not is_doctype: + self.mask_fields() + return self + def mask_fields(self): + from frappe.model.db_query import mask_field_value + + mask_fields = frappe.get_meta(self.doctype).get_masked_fields() + + for field in mask_fields: + val = self.get(field.fieldname) + self.set(field.fieldname, mask_field_value(field, val)) + def load_children_from_db(self): is_doctype = self.doctype == "DocType" @@ -909,8 +921,10 @@ class Document(BaseDocument): has_access_to = self.get_permlevel_access() high_permlevel_fields = self.meta.get_high_permlevel_fields() - if high_permlevel_fields: - self.reset_values_if_no_permlevel_access(has_access_to, high_permlevel_fields) + mask_fields = self.meta.get_masked_fields() + + if high_permlevel_fields or mask_fields: + self.reset_values_if_no_permlevel_access(has_access_to, high_permlevel_fields, mask_fields) # If new record then don't reset the values for child table if self.is_new(): diff --git a/frappe/model/dynamic_links.py b/frappe/model/dynamic_links.py index a054406c2d..de6b9b0f33 100644 --- a/frappe/model/dynamic_links.py +++ b/frappe/model/dynamic_links.py @@ -13,7 +13,7 @@ dynamic_link_queries = [ `tabDocField`.fieldname, `tabDocField`.options from `tabDocField`, `tabDocType` where `tabDocField`.fieldtype='Dynamic Link' and - `tabDocType`.`name`=`tabDocField`.parent and `tabDocType`.is_virtual = 0 + `tabDocType`.`name`=`tabDocField`.parent and `tabDocType`.is_virtual = 0 and `tabDocField`.is_virtual = 0 order by `tabDocType`.read_only, `tabDocType`.in_create""", """select `tabCustom Field`.dt as parent, `tabDocType`.read_only, `tabDocType`.in_create, diff --git a/frappe/model/meta.py b/frappe/model/meta.py index 5d45b1ef2e..b95ebfa5b9 100644 --- a/frappe/model/meta.py +++ b/frappe/model/meta.py @@ -87,6 +87,7 @@ def get_meta(doctype: "str | DocType", cached: bool = True) -> "_Meta": return meta meta = Meta(doctype) + key = f"doctype_meta::{meta.name}" frappe.client_cache.set_value(key, meta) return meta @@ -193,6 +194,28 @@ class Meta(Document): def get_dynamic_link_fields(self): return self._dynamic_link_fields + def get_masked_fields(self): + import copy + + if frappe.session.user == "Administrator": + return [] + cache_key = f"masked_fields::{self.name}::{frappe.session.user}" + masked_fields = frappe.cache.get_value(cache_key) + + if masked_fields is None: + masked_fields = [] + for df in self.fields: + if df.get("mask") and not self.has_permlevel_access_to( + fieldname=df.fieldname, df=df, permission_type="mask" + ): + # work on a copy instead of original df + df_copy = copy.deepcopy(df) + df_copy.mask_readonly = 1 + masked_fields.append(df_copy) + frappe.cache.set_value(cache_key, masked_fields) + + return masked_fields + @cached_property def _dynamic_link_fields(self): return self.get("fields", {"fieldtype": "Dynamic Link"}) diff --git a/frappe/model/rename_doc.py b/frappe/model/rename_doc.py index b9c0f8f10f..d80faa4216 100644 --- a/frappe/model/rename_doc.py +++ b/frappe/model/rename_doc.py @@ -217,7 +217,7 @@ def rename_doc( new_doc.add_comment("Edit", _("renamed from {0} to {1}").format(frappe.bold(old), frappe.bold(new))) if merge: - frappe.delete_doc(doctype, old) + frappe.delete_doc(doctype, old, ignore_permissions=ignore_permissions) new_doc.clear_cache() frappe.clear_cache() diff --git a/frappe/public/js/form_builder/FormBuilder.vue b/frappe/public/js/form_builder/FormBuilder.vue index 63ed4ba25d..c826f255ab 100644 --- a/frappe/public/js/form_builder/FormBuilder.vue +++ b/frappe/public/js/form_builder/FormBuilder.vue @@ -144,7 +144,7 @@ onMounted(() => store.fetch()); } .editable { - input, + input:not([type="checkbox"]), textarea, select, .ace_editor, @@ -258,7 +258,7 @@ onMounted(() => store.fetch()); border-color: transparent; } - input, + input:not([type="checkbox"]), textarea, select, .ace_editor, @@ -269,10 +269,6 @@ onMounted(() => store.fetch()); .ql-editor { background-color: var(--control-bg) !important; } - - input[type="checkbox"] { - background-color: var(--fg-bg) !important; - } } .form-main > :deep(div:first-child:not(.tab-header)) { diff --git a/frappe/public/js/form_builder/components/controls/CheckControl.vue b/frappe/public/js/form_builder/components/controls/CheckControl.vue index 0b35344805..38c49de355 100644 --- a/frappe/public/js/form_builder/components/controls/CheckControl.vue +++ b/frappe/public/js/form_builder/components/controls/CheckControl.vue @@ -1,8 +1,18 @@