diff --git a/.github/workflows/patch-mariadb-tests.yml b/.github/workflows/patch-mariadb-tests.yml index 0c077d72b4..b395431564 100644 --- a/.github/workflows/patch-mariadb-tests.yml +++ b/.github/workflows/patch-mariadb-tests.yml @@ -43,12 +43,12 @@ jobs: services: mariadb: - image: mariadb:10.6 + image: mariadb:11.3 env: MARIADB_ROOT_PASSWORD: travis ports: - 3306:3306 - options: --health-cmd="mysqladmin ping" --health-interval=5s --health-timeout=2s --health-retries=3 + options: --health-cmd="healthcheck.sh --connect --innodb_initialized" --health-interval=5s --health-timeout=2s --health-retries=3 steps: - name: Clone diff --git a/.github/workflows/server-tests.yml b/.github/workflows/server-tests.yml index 74ef74afa1..649ab2f90a 100644 --- a/.github/workflows/server-tests.yml +++ b/.github/workflows/server-tests.yml @@ -54,12 +54,12 @@ jobs: services: mariadb: - image: mariadb:10.6 + image: mariadb:11.3 env: MARIADB_ROOT_PASSWORD: travis ports: - 3306:3306 - options: --health-cmd="mysqladmin ping" --health-interval=5s --health-timeout=2s --health-retries=3 + options: --health-cmd="healthcheck.sh --connect --innodb_initialized" --health-interval=5s --health-timeout=2s --health-retries=3 postgres: image: postgres:12.4 diff --git a/.github/workflows/ui-tests.yml b/.github/workflows/ui-tests.yml index 629f47443a..4be0ebc5af 100644 --- a/.github/workflows/ui-tests.yml +++ b/.github/workflows/ui-tests.yml @@ -55,12 +55,12 @@ jobs: services: mariadb: - image: mariadb:10.6 + image: mariadb:11.3 env: MARIADB_ROOT_PASSWORD: travis ports: - 3306:3306 - options: --health-cmd="mysqladmin ping" --health-interval=5s --health-timeout=2s --health-retries=3 + options: --health-cmd="healthcheck.sh --connect --innodb_initialized" --health-interval=5s --health-timeout=2s --health-retries=3 steps: - name: Clone diff --git a/cypress/fixtures/child_table_doctype.js b/cypress/fixtures/child_table_doctype.js index 88a925aca3..001eb638a8 100644 --- a/cypress/fixtures/child_table_doctype.js +++ b/cypress/fixtures/child_table_doctype.js @@ -24,7 +24,7 @@ export default { naming_rule: "By fieldname", owner: "Administrator", permissions: [], - sort_field: "modified", + sort_field: "creation", sort_order: "ASC", track_changes: 1, }; diff --git a/cypress/fixtures/child_table_doctype_1.js b/cypress/fixtures/child_table_doctype_1.js index abf8873bff..a13983df3c 100644 --- a/cypress/fixtures/child_table_doctype_1.js +++ b/cypress/fixtures/child_table_doctype_1.js @@ -53,7 +53,7 @@ export default { naming_rule: "By fieldname", owner: "Administrator", permissions: [], - sort_field: "modified", + sort_field: "creation", sort_order: "ASC", track_changes: 1, }; diff --git a/cypress/fixtures/custom_submittable_doctype.js b/cypress/fixtures/custom_submittable_doctype.js index 30aa698db4..6b100cd796 100644 --- a/cypress/fixtures/custom_submittable_doctype.js +++ b/cypress/fixtures/custom_submittable_doctype.js @@ -47,7 +47,7 @@ export default { }, ], quick_entry: 1, - sort_field: "modified", + sort_field: "creation", sort_order: "ASC", track_changes: 1, }; diff --git a/cypress/fixtures/data_field_validation_doctype.js b/cypress/fixtures/data_field_validation_doctype.js index 2901630d3f..01d17a4383 100644 --- a/cypress/fixtures/data_field_validation_doctype.js +++ b/cypress/fixtures/data_field_validation_doctype.js @@ -59,7 +59,7 @@ export default { }, ], quick_entry: 1, - sort_field: "modified", + sort_field: "creation", sort_order: "ASC", track_changes: 1, }; diff --git a/cypress/fixtures/datetime_doctype.js b/cypress/fixtures/datetime_doctype.js index f1a77ba6bb..4ecfd0f5ba 100644 --- a/cypress/fixtures/datetime_doctype.js +++ b/cypress/fixtures/datetime_doctype.js @@ -42,7 +42,7 @@ export default { }, ], quick_entry: 1, - sort_field: "modified", + sort_field: "creation", sort_order: "ASC", track_changes: 1, }; diff --git a/cypress/fixtures/doctype_to_link.js b/cypress/fixtures/doctype_to_link.js index ff5d1b5c68..8a2c5bb1a8 100644 --- a/cypress/fixtures/doctype_to_link.js +++ b/cypress/fixtures/doctype_to_link.js @@ -39,7 +39,7 @@ export default { write: 1, }, ], - sort_field: "modified", + sort_field: "creation", sort_order: "ASC", track_changes: 1, }; diff --git a/cypress/fixtures/doctype_with_child_table.js b/cypress/fixtures/doctype_with_child_table.js index 7caba516cf..f3c9f13848 100644 --- a/cypress/fixtures/doctype_with_child_table.js +++ b/cypress/fixtures/doctype_with_child_table.js @@ -46,7 +46,7 @@ export default { write: 1, }, ], - sort_field: "modified", + sort_field: "creation", sort_order: "ASC", track_changes: 1, }; diff --git a/cypress/fixtures/doctype_with_phone.js b/cypress/fixtures/doctype_with_phone.js index 06a24a5be5..a7d4e6803a 100644 --- a/cypress/fixtures/doctype_with_phone.js +++ b/cypress/fixtures/doctype_with_phone.js @@ -40,7 +40,7 @@ export default { cancel: 1, }, ], - sort_field: "modified", + sort_field: "creation", sort_order: "ASC", track_changes: 1, }; diff --git a/cypress/fixtures/doctype_with_tab_break.js b/cypress/fixtures/doctype_with_tab_break.js index 44d6c16682..61142b911d 100644 --- a/cypress/fixtures/doctype_with_tab_break.js +++ b/cypress/fixtures/doctype_with_tab_break.js @@ -48,7 +48,7 @@ export default { ], quick_entry: 1, autoname: "format: Test-{####}", - sort_field: "modified", + sort_field: "creation", sort_order: "ASC", track_changes: 1, }; diff --git a/cypress/fixtures/form_builder_doctype.js b/cypress/fixtures/form_builder_doctype.js index 995971bed4..5b39970503 100644 --- a/cypress/fixtures/form_builder_doctype.js +++ b/cypress/fixtures/form_builder_doctype.js @@ -65,7 +65,7 @@ export default { write: 1, }, ], - sort_field: "modified", + sort_field: "creation", sort_order: "ASC", track_changes: 1, }; diff --git a/frappe/__init__.py b/frappe/__init__.py index 59d6e2fb72..77b840412e 100644 --- a/frappe/__init__.py +++ b/frappe/__init__.py @@ -343,6 +343,7 @@ def connect(site: str | None = None, db_name: str | None = None, set_admin_as_us assert local.conf.db_password, "site must be fully initialized, db_password missing" local.db = get_db( + socket=local.conf.db_socket, host=local.conf.db_host, port=local.conf.db_port, user=local.conf.db_user or db_name, @@ -368,6 +369,7 @@ def connect_replica() -> bool: password = local.conf.replica_db_password local.replica_db = get_db( + socket=None, host=local.conf.replica_host, port=port, user=user, @@ -430,6 +432,7 @@ def get_site_config(sites_path: str | None = None, site_path: str | None = None) os.environ.get("FRAPPE_REDIS_CACHE") or config.get("redis_cache") or "redis://127.0.0.1:13311" ) config["db_type"] = os.environ.get("FRAPPE_DB_TYPE") or config.get("db_type") or "mariadb" + config["db_socket"] = os.environ.get("FRAPPE_DB_SOCKET") or config.get("db_socket") config["db_host"] = os.environ.get("FRAPPE_DB_HOST") or config.get("db_host") or "127.0.0.1" config["db_port"] = ( os.environ.get("FRAPPE_DB_PORT") or config.get("db_port") or db_default_ports(config["db_type"]) @@ -1187,8 +1190,10 @@ def generate_hash(txt: str | None = None, length: int = 56) -> str: import math import secrets - if not length: - length = 56 + if txt: + from frappe.utils.deprecations import deprecation_warning + + deprecation_warning("The `txt` parameter is deprecated and will be removed in a future release.") return secrets.token_hex(math.ceil(length / 2))[:length] @@ -2045,7 +2050,7 @@ def get_list(doctype, *args, **kwargs): :param doctype: DocType on which query is to be made. :param fields: List of fields or `*`. :param filters: List of filters (see example). - :param order_by: Order By e.g. `modified desc`. + :param order_by: Order By e.g. `creation desc`. :param limit_start: Start results at record #. Default 0. :param limit_page_length: No of records in the page. Default 20. @@ -2069,7 +2074,7 @@ def get_all(doctype, *args, **kwargs): :param doctype: DocType on which query is to be made. :param fields: List of fields or `*`. Default is: `["name"]`. :param filters: List of filters (see example). - :param order_by: Order By e.g. `modified desc`. + :param order_by: Order By e.g. `creation desc`. :param limit_start: Start results at record #. Default 0. :param limit_page_length: No of records in the page. Default 20. diff --git a/frappe/automation/doctype/assignment_rule/assignment_rule.json b/frappe/automation/doctype/assignment_rule/assignment_rule.json index 541d176967..b370274cf6 100644 --- a/frappe/automation/doctype/assignment_rule/assignment_rule.json +++ b/frappe/automation/doctype/assignment_rule/assignment_rule.json @@ -154,10 +154,11 @@ ], "index_web_pages_for_search": 1, "links": [], - "modified": "2021-07-16 22:51:35.505575", + "modified": "2024-03-23 16:01:27.590910", "modified_by": "Administrator", "module": "Automation", "name": "Assignment Rule", + "naming_rule": "Set by user", "owner": "Administrator", "permissions": [ { @@ -173,7 +174,8 @@ "write": 1 } ], - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", + "states": [], "track_changes": 1 } \ No newline at end of file diff --git a/frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json b/frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json index 2a4187965c..00bf6a8345 100644 --- a/frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json +++ b/frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json @@ -1,4 +1,5 @@ { + "actions": [], "creation": "2019-09-21 16:52:01.705351", "doctype": "DocType", "editable_grid": 1, @@ -16,13 +17,15 @@ } ], "istable": 1, - "modified": "2019-09-21 16:55:09.376291", + "links": [], + "modified": "2024-03-23 16:01:27.759155", "modified_by": "Administrator", "module": "Automation", "name": "Assignment Rule Day", "owner": "Administrator", "permissions": [], - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", + "states": [], "track_changes": 1 } \ No newline at end of file diff --git a/frappe/automation/doctype/assignment_rule_user/assignment_rule_user.json b/frappe/automation/doctype/assignment_rule_user/assignment_rule_user.json index 5a159c8267..79ef550de8 100644 --- a/frappe/automation/doctype/assignment_rule_user/assignment_rule_user.json +++ b/frappe/automation/doctype/assignment_rule_user/assignment_rule_user.json @@ -1,6 +1,5 @@ { "actions": [], - "allow_read": 1, "creation": "2019-02-27 11:41:46.602400", "doctype": "DocType", "editable_grid": 1, @@ -21,14 +20,15 @@ "index_web_pages_for_search": 1, "istable": 1, "links": [], - "modified": "2020-09-29 20:12:14.456785", + "modified": "2024-03-23 16:01:27.847608", "modified_by": "Administrator", "module": "Automation", "name": "Assignment Rule User", "owner": "Administrator", "permissions": [], "quick_entry": 1, - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", + "states": [], "track_changes": 1 } \ No newline at end of file diff --git a/frappe/automation/doctype/auto_repeat/auto_repeat.json b/frappe/automation/doctype/auto_repeat/auto_repeat.json index 74965346fd..9f5f151f5c 100644 --- a/frappe/automation/doctype/auto_repeat/auto_repeat.json +++ b/frappe/automation/doctype/auto_repeat/auto_repeat.json @@ -211,7 +211,7 @@ } ], "links": [], - "modified": "2021-01-12 09:24:49.719611", + "modified": "2024-03-23 16:01:28.502039", "modified_by": "Administrator", "module": "Automation", "name": "Auto Repeat", @@ -255,8 +255,9 @@ } ], "search_fields": "reference_document", - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", + "states": [], "title_field": "reference_document", "track_changes": 1 } \ No newline at end of file diff --git a/frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json b/frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json index 6f5c3060cd..6fb47f86a7 100644 --- a/frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json +++ b/frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json @@ -20,14 +20,15 @@ "index_web_pages_for_search": 1, "istable": 1, "links": [], - "modified": "2020-11-10 22:30:53.690228", + "modified": "2024-03-23 16:01:28.738641", "modified_by": "Administrator", "module": "Automation", "name": "Auto Repeat Day", "owner": "Administrator", "permissions": [], "quick_entry": 1, - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", + "states": [], "track_changes": 1 } \ No newline at end of file diff --git a/frappe/automation/doctype/milestone/milestone.json b/frappe/automation/doctype/milestone/milestone.json index db3d61b2fd..5ed3502592 100644 --- a/frappe/automation/doctype/milestone/milestone.json +++ b/frappe/automation/doctype/milestone/milestone.json @@ -53,7 +53,7 @@ ], "in_create": 1, "links": [], - "modified": "2023-12-08 15:52:37.525003", + "modified": "2024-03-23 16:03:29.694506", "modified_by": "Administrator", "module": "Automation", "name": "Milestone", @@ -73,7 +73,7 @@ } ], "quick_entry": 1, - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [], "title_field": "reference_type", diff --git a/frappe/automation/doctype/milestone_tracker/milestone_tracker.json b/frappe/automation/doctype/milestone_tracker/milestone_tracker.json index f0dc452c8d..438f616a67 100644 --- a/frappe/automation/doctype/milestone_tracker/milestone_tracker.json +++ b/frappe/automation/doctype/milestone_tracker/milestone_tracker.json @@ -35,7 +35,7 @@ } ], "links": [], - "modified": "2023-12-08 15:52:37.525003", + "modified": "2024-03-23 16:03:29.801483", "modified_by": "Administrator", "module": "Automation", "name": "Milestone Tracker", @@ -54,7 +54,7 @@ "write": 1 } ], - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [], "track_changes": 1 diff --git a/frappe/automation/doctype/milestone_tracker/test_milestone_tracker.py b/frappe/automation/doctype/milestone_tracker/test_milestone_tracker.py index 2fba6bf4ad..aff6a4863a 100644 --- a/frappe/automation/doctype/milestone_tracker/test_milestone_tracker.py +++ b/frappe/automation/doctype/milestone_tracker/test_milestone_tracker.py @@ -34,7 +34,7 @@ class TestMilestoneTracker(FrappeTestCase): "Milestone", fields=["track_field", "value", "milestone_tracker"], filters=dict(reference_type=todo.doctype, reference_name=todo.name), - order_by="modified desc", + order_by="creation desc", ) self.assertEqual(len(milestones), 2) diff --git a/frappe/automation/doctype/reminder/reminder.json b/frappe/automation/doctype/reminder/reminder.json index 07dbe7725f..cf62e3fa5e 100644 --- a/frappe/automation/doctype/reminder/reminder.json +++ b/frappe/automation/doctype/reminder/reminder.json @@ -66,7 +66,7 @@ ], "index_web_pages_for_search": 1, "links": [], - "modified": "2023-08-28 22:17:18.351025", + "modified": "2024-03-23 16:03:36.224060", "modified_by": "Administrator", "module": "Automation", "name": "Reminder", @@ -83,7 +83,7 @@ } ], "quick_entry": 1, - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [], "title_field": "description" diff --git a/frappe/commands/site.py b/frappe/commands/site.py index 080ce9d048..e7165e3b30 100644 --- a/frappe/commands/site.py +++ b/frappe/commands/site.py @@ -2,6 +2,7 @@ import os import shutil import sys +import traceback # imports - third party imports import click @@ -10,6 +11,7 @@ import click import frappe from frappe.commands import get_site, pass_context from frappe.exceptions import SiteNotSpecifiedError +from frappe.utils import CallbackManager @click.command("new-site") @@ -30,11 +32,25 @@ from frappe.exceptions import SiteNotSpecifiedError help='Root username for MariaDB or PostgreSQL, Default is "root"', ) @click.option("--db-root-password", "--mariadb-root-password", help="Root password for MariaDB or PostgreSQL") +@click.option( + "--db-socket", + "--mariadb-db-socket", + envvar="MYSQL_UNIX_PORT", + help="Database socket for MariaDB or folder containing database socket for PostgreSQL", +) @click.option( "--no-mariadb-socket", is_flag=True, default=False, - help="Set MariaDB host to % and use TCP/IP Socket instead of using the UNIX Socket", + help="DEPRECATED: Set MariaDB host to % and use TCP/IP Socket instead of using the UNIX Socket", +) +@click.option( + "--mariadb-user-host-login-scope", + help=( + "Set the mariadb host for the user login scope if you don't want to use the current host as login " + "scope which typically is ''@'localhost' - may be used when initializing a user on a remote host. " + "See the mariadb docs on account names for more info." + ), ) @click.option("--admin-password", help="Administrator password for new site", default=None) @click.option("--verbose", is_flag=True, default=False, help="Verbose") @@ -57,10 +73,12 @@ def new_site( source_sql=None, force=None, no_mariadb_socket=False, + mariadb_user_host_login_scope=False, install_app=None, db_name=None, db_password=None, db_type=None, + db_socket=None, db_host=None, db_port=None, db_user=None, @@ -72,27 +90,53 @@ def new_site( frappe.init(site=site, new_site=True) - _new_site( - db_name, - site, - db_root_username=db_root_username, - db_root_password=db_root_password, - admin_password=admin_password, - verbose=verbose, - install_apps=install_app, - source_sql=source_sql, - force=force, - no_mariadb_socket=no_mariadb_socket, - db_password=db_password, - db_type=db_type, - db_host=db_host, - db_port=db_port, - db_user=db_user, - setup_db=setup_db, - ) + mariadb_user_host_login_scope = None - if set_default: - use(site) + if no_mariadb_socket: + click.secho( + "--no-mariadb-socket is DEPRECATED; " + "use --mariadb-user-host-login-scope='%' (wildcard) or --mariadb-user-host-login-scope=, instead. " + "The name of this option was misleading: it had nothing to do with sockets.", + fg="yellow", + ) + mariadb_user_host_login_scope = "%" + if mariadb_user_host_login_scope: + mariadb_user_host_login_scope = mariadb_user_host_login_scope + + rollback_callback = CallbackManager() + + try: + _new_site( + db_name, + site, + db_root_username=db_root_username, + db_root_password=db_root_password, + admin_password=admin_password, + verbose=verbose, + install_apps=install_app, + source_sql=source_sql, + force=force, + db_password=db_password, + db_type=db_type, + db_socket=db_socket, + db_host=db_host, + db_port=db_port, + db_user=db_user, + setup_db=setup_db, + rollback_callback=rollback_callback, + mariadb_user_host_login_scope=mariadb_user_host_login_scope, + ) + + if set_default: + use(site) + + except Exception: + traceback.print_exc() + if sys.__stdin__.isatty() and click.confirm( + "Site creation failed, do you want to rollback the site?", abort=True + ): + rollback_callback.run() + sys.exit(1) @click.command("restore") @@ -421,7 +465,6 @@ def _reinstall( site, verbose=verbose, force=True, - reinstall=True, install_apps=installed, db_root_username=db_root_username, db_root_password=db_root_password, diff --git a/frappe/commands/translate.py b/frappe/commands/translate.py index 361a19aee2..fde4a3939e 100644 --- a/frappe/commands/translate.py +++ b/frappe/commands/translate.py @@ -39,7 +39,7 @@ def new_language(context, lang_code, app): frappe.translate.write_translations_file(app, lang_code) print(f"File created at ./apps/{app}/{app}/translations/{lang_code}.csv") - print("You will need to add the language in frappe/geo/languages.json, if you haven't done it already.") + print("You will need to add the language in frappe/geo/languages.csv, if you haven't done it already.") @click.command("get-untranslated") diff --git a/frappe/commands/utils.py b/frappe/commands/utils.py index 5a61f00140..6f783bb7ef 100644 --- a/frappe/commands/utils.py +++ b/frappe/commands/utils.py @@ -526,6 +526,7 @@ def _enter_console(extra_args=None): os.environ["PSQL_HISTORY"] = os.path.abspath(get_site_path("logs", "postgresql_console.log")) bin, args, bin_name = get_command( + socket=frappe.conf.db_socket, host=frappe.conf.db_host, port=frappe.conf.db_port, user=frappe.conf.db_user, diff --git a/frappe/contacts/doctype/address/address.json b/frappe/contacts/doctype/address/address.json index 54d6b03739..842acb2c89 100644 --- a/frappe/contacts/doctype/address/address.json +++ b/frappe/contacts/doctype/address/address.json @@ -150,7 +150,7 @@ "icon": "fa fa-map-marker", "idx": 5, "links": [], - "modified": "2023-11-20 17:28:41.698356", + "modified": "2024-03-23 16:01:27.068028", "modified_by": "Administrator", "module": "Contacts", "name": "Address", @@ -220,7 +220,7 @@ } ], "search_fields": "country, state", - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [] } \ No newline at end of file diff --git a/frappe/contacts/doctype/address_template/address_template.json b/frappe/contacts/doctype/address_template/address_template.json index 58b8210a49..30f4818355 100644 --- a/frappe/contacts/doctype/address_template/address_template.json +++ b/frappe/contacts/doctype/address_template/address_template.json @@ -20,7 +20,6 @@ "label": "Country", "options": "Country", "reqd": 1, - "search_index": 1, "unique": 1 }, { @@ -40,7 +39,7 @@ ], "icon": "fa fa-map-marker", "links": [], - "modified": "2022-08-03 12:20:49.095228", + "modified": "2024-03-23 16:01:27.242795", "modified_by": "Administrator", "module": "Contacts", "name": "Address Template", @@ -58,7 +57,7 @@ } ], "quick_entry": 1, - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [] -} +} \ No newline at end of file diff --git a/frappe/contacts/doctype/contact/contact.json b/frappe/contacts/doctype/contact/contact.json index 83d1002acb..8011d5f4e8 100644 --- a/frappe/contacts/doctype/contact/contact.json +++ b/frappe/contacts/doctype/contact/contact.json @@ -257,7 +257,7 @@ "image_field": "image", "index_web_pages_for_search": 1, "links": [], - "modified": "2023-12-08 15:52:37.525003", + "modified": "2024-03-23 16:01:30.937045", "modified_by": "Administrator", "module": "Contacts", "name": "Contact", @@ -391,7 +391,7 @@ } ], "show_title_field_in_link": 1, - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [], "title_field": "full_name" diff --git a/frappe/contacts/doctype/contact_email/contact_email.json b/frappe/contacts/doctype/contact_email/contact_email.json index f36e155a75..f57149db1a 100644 --- a/frappe/contacts/doctype/contact_email/contact_email.json +++ b/frappe/contacts/doctype/contact_email/contact_email.json @@ -1,4 +1,5 @@ { + "actions": [], "creation": "2019-08-02 13:08:59.291097", "doctype": "DocType", "editable_grid": 1, @@ -26,14 +27,16 @@ } ], "istable": 1, - "modified": "2019-09-24 17:47:30.565805", + "links": [], + "modified": "2024-03-23 16:01:31.173691", "modified_by": "Administrator", "module": "Contacts", "name": "Contact Email", "owner": "Administrator", "permissions": [], "quick_entry": 1, - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", + "states": [], "track_changes": 1 } \ No newline at end of file diff --git a/frappe/contacts/doctype/contact_phone/contact_phone.json b/frappe/contacts/doctype/contact_phone/contact_phone.json index 5412e4a1b7..7d57135078 100644 --- a/frappe/contacts/doctype/contact_phone/contact_phone.json +++ b/frappe/contacts/doctype/contact_phone/contact_phone.json @@ -37,14 +37,15 @@ ], "istable": 1, "links": [], - "modified": "2020-04-06 18:28:10.486220", + "modified": "2024-03-23 16:01:31.293047", "modified_by": "Administrator", "module": "Contacts", "name": "Contact Phone", "owner": "Administrator", "permissions": [], "quick_entry": 1, - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", + "states": [], "track_changes": 1 } \ No newline at end of file diff --git a/frappe/contacts/doctype/gender/gender.json b/frappe/contacts/doctype/gender/gender.json index 34e1ddaee6..74c0646298 100644 --- a/frappe/contacts/doctype/gender/gender.json +++ b/frappe/contacts/doctype/gender/gender.json @@ -17,7 +17,7 @@ } ], "links": [], - "modified": "2022-08-05 18:33:28.043370", + "modified": "2024-03-23 16:03:26.299387", "modified_by": "Administrator", "module": "Contacts", "name": "Gender", @@ -40,7 +40,7 @@ "role": "All" } ], - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [], "track_changes": 1, diff --git a/frappe/contacts/doctype/salutation/salutation.json b/frappe/contacts/doctype/salutation/salutation.json index 98ed082e69..ba878d3096 100644 --- a/frappe/contacts/doctype/salutation/salutation.json +++ b/frappe/contacts/doctype/salutation/salutation.json @@ -18,7 +18,7 @@ } ], "links": [], - "modified": "2022-08-05 18:33:28.196387", + "modified": "2024-03-23 16:03:37.726490", "modified_by": "Administrator", "module": "Contacts", "name": "Salutation", @@ -53,7 +53,7 @@ "write": 1 } ], - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [], "track_changes": 1, diff --git a/frappe/core/api/file.py b/frappe/core/api/file.py index 7756fd274b..5e29ba9f99 100644 --- a/frappe/core/api/file.py +++ b/frappe/core/api/file.py @@ -76,7 +76,7 @@ def get_files_by_search_text(text: str) -> list[dict]: "file_url": text, "name": ("like", text), }, - order_by="modified desc", + order_by="creation desc", limit=20, ) diff --git a/frappe/core/doctype/access_log/access_log.json b/frappe/core/doctype/access_log/access_log.json index 69803ef05a..044ba9c90a 100644 --- a/frappe/core/doctype/access_log/access_log.json +++ b/frappe/core/doctype/access_log/access_log.json @@ -131,7 +131,7 @@ } ], "links": [], - "modified": "2022-06-13 05:59:26.866004", + "modified": "2024-03-23 16:01:26.702078", "modified_by": "Administrator", "module": "Core", "name": "Access Log", @@ -149,7 +149,7 @@ "share": 1 } ], - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [], "track_seen": 1 diff --git a/frappe/core/doctype/access_log/access_log.py b/frappe/core/doctype/access_log/access_log.py index 15723ac1a7..c9ae402839 100644 --- a/frappe/core/doctype/access_log/access_log.py +++ b/frappe/core/doctype/access_log/access_log.py @@ -34,7 +34,7 @@ class AccessLog(Document): from frappe.query_builder.functions import Now table = frappe.qb.DocType("Access Log") - frappe.db.delete(table, filters=(table.modified < (Now() - Interval(days=days)))) + frappe.db.delete(table, filters=(table.creation < (Now() - Interval(days=days)))) @frappe.whitelist() diff --git a/frappe/core/doctype/activity_log/activity_log.json b/frappe/core/doctype/activity_log/activity_log.json index 3943fc1196..ae6ebd1dc9 100644 --- a/frappe/core/doctype/activity_log/activity_log.json +++ b/frappe/core/doctype/activity_log/activity_log.json @@ -158,7 +158,7 @@ "icon": "fa fa-comment", "index_web_pages_for_search": 1, "links": [], - "modified": "2024-02-24 16:31:16.253153", + "modified": "2024-03-23 16:01:26.898094", "modified_by": "Administrator", "module": "Core", "name": "Activity Log", @@ -173,7 +173,7 @@ } ], "search_fields": "subject", - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [], "title_field": "subject", diff --git a/frappe/core/doctype/activity_log/activity_log.py b/frappe/core/doctype/activity_log/activity_log.py index 25605becfc..aa764ab002 100644 --- a/frappe/core/doctype/activity_log/activity_log.py +++ b/frappe/core/doctype/activity_log/activity_log.py @@ -60,7 +60,7 @@ class ActivityLog(Document): if not days: days = 90 doctype = DocType("Activity Log") - frappe.db.delete(doctype, filters=(doctype.modified < (Now() - Interval(days=days)))) + frappe.db.delete(doctype, filters=(doctype.creation < (Now() - Interval(days=days)))) def on_doctype_update(): diff --git a/frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json b/frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json index 2892cc6091..7dcc110673 100644 --- a/frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json +++ b/frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json @@ -32,13 +32,13 @@ "index_web_pages_for_search": 1, "istable": 1, "links": [], - "modified": "2023-06-16 18:26:16.247475", + "modified": "2024-03-23 16:01:27.410335", "modified_by": "Administrator", "module": "Core", "name": "Amended Document Naming Settings", "owner": "Administrator", "permissions": [], - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [] } \ No newline at end of file diff --git a/frappe/core/doctype/audit_trail/audit_trail.json b/frappe/core/doctype/audit_trail/audit_trail.json index 762861eedb..8a6f4af596 100644 --- a/frappe/core/doctype/audit_trail/audit_trail.json +++ b/frappe/core/doctype/audit_trail/audit_trail.json @@ -99,7 +99,7 @@ "index_web_pages_for_search": 1, "issingle": 1, "links": [], - "modified": "2023-10-31 13:12:41.749483", + "modified": "2024-03-23 16:01:28.029916", "modified_by": "Administrator", "module": "Core", "name": "Audit Trail", @@ -114,7 +114,7 @@ "write": 1 } ], - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [] } \ No newline at end of file diff --git a/frappe/core/doctype/block_module/block_module.json b/frappe/core/doctype/block_module/block_module.json index 9711aaa001..35db3080e5 100644 --- a/frappe/core/doctype/block_module/block_module.json +++ b/frappe/core/doctype/block_module/block_module.json @@ -19,13 +19,13 @@ ], "istable": 1, "links": [], - "modified": "2022-08-03 12:20:52.738977", + "modified": "2024-03-23 16:01:28.830117", "modified_by": "Administrator", "module": "Core", "name": "Block Module", "owner": "Administrator", "permissions": [], - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [] } \ No newline at end of file diff --git a/frappe/core/doctype/comment/comment.json b/frappe/core/doctype/comment/comment.json index 529c1d234c..50ab1252fe 100644 --- a/frappe/core/doctype/comment/comment.json +++ b/frappe/core/doctype/comment/comment.json @@ -99,7 +99,7 @@ } ], "links": [], - "modified": "2023-07-24 13:52:55.651462", + "modified": "2024-03-23 16:01:30.075730", "modified_by": "Administrator", "module": "Core", "name": "Comment", @@ -131,7 +131,7 @@ } ], "quick_entry": 1, - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [], "title_field": "comment_type", diff --git a/frappe/core/doctype/communication/communication.json b/frappe/core/doctype/communication/communication.json index 3299d7ef05..c8d58db89f 100644 --- a/frappe/core/doctype/communication/communication.json +++ b/frappe/core/doctype/communication/communication.json @@ -402,7 +402,7 @@ "idx": 1, "links": [], "make_attachments_public": 1, - "modified": "2024-02-09 12:10:01.200845", + "modified": "2024-03-23 16:01:30.219380", "modified_by": "Administrator", "module": "Core", "name": "Communication", @@ -459,7 +459,7 @@ ], "search_fields": "subject", "sender_field": "sender", - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [], "subject_field": "subject", diff --git a/frappe/core/doctype/communication/mixins.py b/frappe/core/doctype/communication/mixins.py index 655dbfe23f..833e4dcfac 100644 --- a/frappe/core/doctype/communication/mixins.py +++ b/frappe/core/doctype/communication/mixins.py @@ -278,13 +278,22 @@ class CommunicationEmailMixin: print_format=print_format, print_html=print_html, print_language=print_language ) incoming_email_account = self.get_incoming_email_account() + + reply_to = None + + # If this is a reply to an existing email, set reply_to as the sender of the reply + if self.in_reply_to: + reply_to = self.get_mail_sender_with_displayname() + elif incoming_email_account: + reply_to = incoming_email_account.email_id + return { "recipients": recipients, "cc": cc, "bcc": bcc, "expose_recipients": "header", "sender": self.get_mail_sender_with_displayname(), - "reply_to": incoming_email_account and incoming_email_account.email_id, + "reply_to": reply_to, "subject": self.subject, "content": self.get_content(print_format=print_format), "reference_doctype": self.reference_doctype, diff --git a/frappe/core/doctype/communication_link/communication_link.json b/frappe/core/doctype/communication_link/communication_link.json index 1dd051bed2..9a6b5dcff3 100644 --- a/frappe/core/doctype/communication_link/communication_link.json +++ b/frappe/core/doctype/communication_link/communication_link.json @@ -1,4 +1,5 @@ { + "actions": [], "creation": "2019-05-21 09:47:23.043960", "doctype": "DocType", "editable_grid": 1, @@ -34,14 +35,16 @@ } ], "istable": 1, - "modified": "2019-05-21 09:47:23.043960", + "links": [], + "modified": "2024-03-23 16:01:30.438791", "modified_by": "Administrator", "module": "Core", "name": "Communication Link", "owner": "Administrator", "permissions": [], "quick_entry": 1, - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", + "states": [], "track_changes": 1 } \ No newline at end of file diff --git a/frappe/core/doctype/custom_docperm/custom_docperm.json b/frappe/core/doctype/custom_docperm/custom_docperm.json index 208b0beef9..eb9dcdfe0a 100644 --- a/frappe/core/doctype/custom_docperm/custom_docperm.json +++ b/frappe/core/doctype/custom_docperm/custom_docperm.json @@ -215,7 +215,7 @@ } ], "links": [], - "modified": "2023-02-20 13:19:04.889081", + "modified": "2024-03-23 16:02:14.726078", "modified_by": "Administrator", "module": "Core", "name": "Custom DocPerm", @@ -235,7 +235,8 @@ } ], "read_only": 1, - "sort_field": "modified", + "sort_field": "creation", "sort_order": "ASC", + "states": [], "title_field": "parent" } \ No newline at end of file diff --git a/frappe/core/doctype/custom_role/custom_role.json b/frappe/core/doctype/custom_role/custom_role.json index 7504882caf..12f937eb25 100644 --- a/frappe/core/doctype/custom_role/custom_role.json +++ b/frappe/core/doctype/custom_role/custom_role.json @@ -50,7 +50,7 @@ } ], "links": [], - "modified": "2022-08-03 12:20:52.985554", + "modified": "2024-03-23 16:02:15.554679", "modified_by": "Administrator", "module": "Core", "name": "Custom Role", @@ -70,7 +70,7 @@ } ], "read_only": 1, - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [] } \ No newline at end of file diff --git a/frappe/core/doctype/data_export/data_export.json b/frappe/core/doctype/data_export/data_export.json index f63d939499..6b199b2041 100644 --- a/frappe/core/doctype/data_export/data_export.json +++ b/frappe/core/doctype/data_export/data_export.json @@ -60,7 +60,7 @@ "hide_toolbar": 1, "issingle": 1, "links": [], - "modified": "2022-09-28 03:51:02.404681", + "modified": "2024-03-23 16:02:16.856404", "modified_by": "Administrator", "module": "Core", "name": "Data Export", @@ -78,7 +78,7 @@ } ], "quick_entry": 1, - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [] } \ No newline at end of file diff --git a/frappe/core/doctype/data_import/data_import.json b/frappe/core/doctype/data_import/data_import.json index 02d65c8004..6325e139fd 100644 --- a/frappe/core/doctype/data_import/data_import.json +++ b/frappe/core/doctype/data_import/data_import.json @@ -171,7 +171,7 @@ ], "hide_toolbar": 1, "links": [], - "modified": "2024-01-30 17:08:05.566686", + "modified": "2024-03-23 16:02:16.953820", "modified_by": "Administrator", "module": "Core", "name": "Data Import", @@ -191,7 +191,7 @@ "write": 1 } ], - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [], "track_changes": 1 diff --git a/frappe/core/doctype/data_import/data_import_list.js b/frappe/core/doctype/data_import/data_import_list.js index a16478cdb1..5aa2ece6d5 100644 --- a/frappe/core/doctype/data_import/data_import_list.js +++ b/frappe/core/doctype/data_import/data_import_list.js @@ -27,10 +27,6 @@ frappe.listview_settings["Data Import"] = { if (imports_in_progress.includes(doc.name)) { status = "In Progress"; } - if (status === "Pending") { - status = "Not Started"; - } - return [__(status), colors[status], "status,=," + doc.status]; }, formatters: { diff --git a/frappe/core/doctype/data_import/importer.py b/frappe/core/doctype/data_import/importer.py index 4f8d42bd28..a177d85c66 100644 --- a/frappe/core/doctype/data_import/importer.py +++ b/frappe/core/doctype/data_import/importer.py @@ -102,9 +102,13 @@ class Importer: log_index = 0 # Do not remove rows in case of retry after an error or pending data import - if self.data_import.status == "Partial Success" and len(import_log) >= self.data_import.payload_count: + if ( + self.data_import.status in ("Partial Success", "Error") + and len(import_log) >= self.data_import.payload_count + ): # remove previous failures from import log only in case of retry after partial success import_log = [log for log in import_log if log.get("success")] + frappe.db.delete("Data Import Log", {"success": 0, "data_import": self.data_import.name}) # get successfully imported rows imported_rows = [] @@ -213,13 +217,21 @@ class Importer: ) # set status - failures = [log for log in import_log if not log.get("success")] - if len(failures) == total_payload_count: - status = "Pending" - elif len(failures) > 0: + successes = [] + failures = [] + for log in import_log: + if log.get("success"): + successes.append(log) + else: + failures.append(log) + if len(failures) >= total_payload_count and len(successes) == 0: + status = "Error" + elif len(failures) > 0 and len(successes) > 0: status = "Partial Success" - else: + elif len(successes) == total_payload_count: status = "Success" + else: + status = "Pending" if self.console: self.print_import_log(import_log) diff --git a/frappe/core/doctype/data_import_log/data_import_log.json b/frappe/core/doctype/data_import_log/data_import_log.json index b1d991f099..e76a1c1169 100644 --- a/frappe/core/doctype/data_import_log/data_import_log.json +++ b/frappe/core/doctype/data_import_log/data_import_log.json @@ -60,7 +60,7 @@ "in_create": 1, "index_web_pages_for_search": 1, "links": [], - "modified": "2021-12-29 11:19:19.646076", + "modified": "2024-03-23 16:02:17.334396", "modified_by": "Administrator", "module": "Core", "name": "Data Import Log", @@ -79,6 +79,7 @@ "write": 1 } ], - "sort_field": "modified", - "sort_order": "DESC" + "sort_field": "creation", + "sort_order": "DESC", + "states": [] } \ No newline at end of file diff --git a/frappe/core/doctype/defaultvalue/defaultvalue.json b/frappe/core/doctype/defaultvalue/defaultvalue.json index 22e2583774..79342770f6 100644 --- a/frappe/core/doctype/defaultvalue/defaultvalue.json +++ b/frappe/core/doctype/defaultvalue/defaultvalue.json @@ -35,13 +35,13 @@ "idx": 1, "istable": 1, "links": [], - "modified": "2022-08-03 12:20:54.832785", + "modified": "2024-03-23 16:02:17.533639", "modified_by": "Administrator", "module": "Core", "name": "DefaultValue", "owner": "Administrator", "permissions": [], - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [] } \ No newline at end of file diff --git a/frappe/core/doctype/deleted_document/deleted_document.json b/frappe/core/doctype/deleted_document/deleted_document.json index 6b95a523c1..1c8a2cf951 100644 --- a/frappe/core/doctype/deleted_document/deleted_document.json +++ b/frappe/core/doctype/deleted_document/deleted_document.json @@ -60,7 +60,7 @@ ], "in_create": 1, "links": [], - "modified": "2022-06-13 05:50:58.314908", + "modified": "2024-03-23 16:02:17.664513", "modified_by": "Administrator", "module": "Core", "name": "Deleted Document", @@ -73,7 +73,7 @@ "role": "System Manager" } ], - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [], "title_field": "deleted_name", diff --git a/frappe/core/doctype/deleted_document/deleted_document.py b/frappe/core/doctype/deleted_document/deleted_document.py index fb5fc6f5cb..be5fc1b0ff 100644 --- a/frappe/core/doctype/deleted_document/deleted_document.py +++ b/frappe/core/doctype/deleted_document/deleted_document.py @@ -34,7 +34,7 @@ class DeletedDocument(Document): from frappe.query_builder.functions import Now table = frappe.qb.DocType("Deleted Document") - frappe.db.delete(table, filters=(table.modified < (Now() - Interval(days=days)))) + frappe.db.delete(table, filters=(table.creation < (Now() - Interval(days=days)))) @frappe.whitelist() diff --git a/frappe/core/doctype/docfield/docfield.json b/frappe/core/doctype/docfield/docfield.json index 7b188569d7..08820719ca 100644 --- a/frappe/core/doctype/docfield/docfield.json +++ b/frappe/core/doctype/docfield/docfield.json @@ -186,6 +186,7 @@ }, { "default": "0", + "depends_on": "eval:!in_list(['Tab Break', 'Table'], doc.fieldtype)", "fieldname": "allow_in_quick_entry", "fieldtype": "Check", "label": "Allow in Quick Entry" @@ -581,14 +582,14 @@ "index_web_pages_for_search": 1, "istable": 1, "links": [], - "modified": "2024-02-01 15:55:44.007917", + "modified": "2024-03-23 16:02:18.210626", "modified_by": "Administrator", "module": "Core", "name": "DocField", "naming_rule": "Random", "owner": "Administrator", "permissions": [], - "sort_field": "modified", + "sort_field": "creation", "sort_order": "ASC", "states": [] } \ No newline at end of file diff --git a/frappe/core/doctype/docperm/docperm.json b/frappe/core/doctype/docperm/docperm.json index 3ce49c4d6b..1b6e7fffc7 100644 --- a/frappe/core/doctype/docperm/docperm.json +++ b/frappe/core/doctype/docperm/docperm.json @@ -210,12 +210,13 @@ "idx": 1, "istable": 1, "links": [], - "modified": "2023-02-20 13:21:45.071310", + "modified": "2024-03-23 16:02:18.443496", "modified_by": "Administrator", "module": "Core", "name": "DocPerm", "owner": "Administrator", "permissions": [], - "sort_field": "modified", - "sort_order": "ASC" + "sort_field": "creation", + "sort_order": "ASC", + "states": [] } \ No newline at end of file diff --git a/frappe/core/doctype/docshare/docshare.json b/frappe/core/doctype/docshare/docshare.json index e3581f516e..73ab33102a 100644 --- a/frappe/core/doctype/docshare/docshare.json +++ b/frappe/core/doctype/docshare/docshare.json @@ -86,7 +86,7 @@ ], "in_create": 1, "links": [], - "modified": "2023-06-15 18:02:51.877533", + "modified": "2024-03-23 16:03:21.134272", "modified_by": "Administrator", "module": "Core", "name": "DocShare", @@ -106,7 +106,7 @@ } ], "read_only": 1, - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [], "track_changes": 1 diff --git a/frappe/core/doctype/doctype/doctype.json b/frappe/core/doctype/doctype/doctype.json index 25d4bd78f2..c285c6ffec 100644 --- a/frappe/core/doctype/doctype/doctype.json +++ b/frappe/core/doctype/doctype/doctype.json @@ -333,7 +333,7 @@ "label": "Default Print Format" }, { - "default": "modified", + "default": "creation", "depends_on": "eval:!doc.istable", "fieldname": "sort_field", "fieldtype": "Data", @@ -570,7 +570,7 @@ "fieldtype": "Select", "label": "Naming Rule", "length": 40, - "options": "\nSet by user\nAutoincrement\nBy fieldname\nBy \"Naming Series\" field\nExpression\nExpression (old style)\nRandom\nBy script" + "options": "\nSet by user\nAutoincrement\nBy fieldname\nBy \"Naming Series\" field\nExpression\nExpression (old style)\nRandom\nUUID\nBy script" }, { "fieldname": "migration_hash", @@ -750,7 +750,7 @@ "link_fieldname": "reference_doctype" } ], - "modified": "2023-12-01 18:37:16.799471", + "modified": "2024-03-29 16:09:26.114720", "modified_by": "Administrator", "module": "Core", "name": "DocType", @@ -782,7 +782,7 @@ "route": "doctype", "search_fields": "module", "show_name_in_global_search": 1, - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [], "track_changes": 1, diff --git a/frappe/core/doctype/doctype/doctype.py b/frappe/core/doctype/doctype/doctype.py index e83f861457..7c29792778 100644 --- a/frappe/core/doctype/doctype/doctype.py +++ b/frappe/core/doctype/doctype/doctype.py @@ -147,6 +147,7 @@ class DocType(Document): "Expression", "Expression (old style)", "Random", + "UUID", "By script", ] nsm_parent_field: DF.Data | None @@ -868,9 +869,7 @@ class DocType(Document): def make_amendable(self): """If is_submittable is set, add amended_from docfields.""" if self.is_submittable: - docfield_exists = frappe.get_all( - "DocField", filters={"fieldname": "amended_from", "parent": self.name}, pluck="name", limit=1 - ) + docfield_exists = [f for f in self.fields if f.fieldname == "amended_from"] if not docfield_exists: self.append( "fields", diff --git a/frappe/core/doctype/doctype_action/doctype_action.json b/frappe/core/doctype/doctype_action/doctype_action.json index 080755c479..5e78a19228 100644 --- a/frappe/core/doctype/doctype_action/doctype_action.json +++ b/frappe/core/doctype/doctype_action/doctype_action.json @@ -61,14 +61,15 @@ "index_web_pages_for_search": 1, "istable": 1, "links": [], - "modified": "2020-09-24 14:19:05.549835", + "modified": "2024-03-23 16:03:21.873210", "modified_by": "Administrator", "module": "Core", "name": "DocType Action", "owner": "Administrator", "permissions": [], "quick_entry": 1, - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", + "states": [], "track_changes": 1 } \ No newline at end of file diff --git a/frappe/core/doctype/doctype_link/doctype_link.json b/frappe/core/doctype/doctype_link/doctype_link.json index 4baec6746d..b0577aa288 100644 --- a/frappe/core/doctype/doctype_link/doctype_link.json +++ b/frappe/core/doctype/doctype_link/doctype_link.json @@ -74,14 +74,14 @@ "index_web_pages_for_search": 1, "istable": 1, "links": [], - "modified": "2021-07-31 15:23:12.237491", + "modified": "2024-03-23 16:03:22.273487", "modified_by": "Administrator", "module": "Core", "name": "DocType Link", "owner": "Administrator", "permissions": [], - "quick_entry": 1, - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", + "states": [], "track_changes": 1 } \ No newline at end of file diff --git a/frappe/core/doctype/doctype_state/doctype_state.json b/frappe/core/doctype/doctype_state/doctype_state.json index 79797b41c5..f1b7f85b73 100644 --- a/frappe/core/doctype/doctype_state/doctype_state.json +++ b/frappe/core/doctype/doctype_state/doctype_state.json @@ -37,13 +37,13 @@ "index_web_pages_for_search": 1, "istable": 1, "links": [], - "modified": "2021-12-14 14:14:55.716378", + "modified": "2024-03-23 16:03:22.416470", "modified_by": "Administrator", "module": "Core", "name": "DocType State", "owner": "Administrator", "permissions": [], - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [], "track_changes": 1 diff --git a/frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json b/frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json index 781566b7d1..b2d37298ce 100644 --- a/frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json +++ b/frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json @@ -36,14 +36,15 @@ "index_web_pages_for_search": 1, "istable": 1, "links": [], - "modified": "2020-09-08 10:19:56.192949", + "modified": "2024-03-23 16:03:22.677527", "modified_by": "Administrator", "module": "Core", "name": "Document Naming Rule Condition", "owner": "Administrator", "permissions": [], "quick_entry": 1, - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", + "states": [], "track_changes": 1 } \ No newline at end of file diff --git a/frappe/core/doctype/document_naming_settings/document_naming_settings.json b/frappe/core/doctype/document_naming_settings/document_naming_settings.json index 5a1991c14b..b7c89fd6ca 100644 --- a/frappe/core/doctype/document_naming_settings/document_naming_settings.json +++ b/frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -143,7 +143,7 @@ "icon": "fa fa-sort-by-order", "issingle": 1, "links": [], - "modified": "2023-06-20 17:47:52.204139", + "modified": "2024-03-23 16:03:22.769200", "modified_by": "Administrator", "module": "Core", "name": "Document Naming Settings", @@ -159,7 +159,7 @@ "write": 1 } ], - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [] } \ No newline at end of file diff --git a/frappe/core/doctype/document_share_key/document_share_key.json b/frappe/core/doctype/document_share_key/document_share_key.json index b96fe09f0b..08b2595411 100644 --- a/frappe/core/doctype/document_share_key/document_share_key.json +++ b/frappe/core/doctype/document_share_key/document_share_key.json @@ -46,7 +46,7 @@ "in_create": 1, "index_web_pages_for_search": 1, "links": [], - "modified": "2022-01-14 13:57:28.050678", + "modified": "2024-03-23 16:03:22.892995", "modified_by": "Administrator", "module": "Core", "name": "Document Share Key", @@ -67,7 +67,7 @@ } ], "read_only": 1, - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [] } \ No newline at end of file diff --git a/frappe/core/doctype/domain/domain.json b/frappe/core/doctype/domain/domain.json index a6c7397e13..143c0f21de 100644 --- a/frappe/core/doctype/domain/domain.json +++ b/frappe/core/doctype/domain/domain.json @@ -1,4 +1,5 @@ { + "actions": [], "autoname": "field:domain", "creation": "2017-05-03 15:07:39.752820", "doctype": "DocType", @@ -17,7 +18,8 @@ "unique": 1 } ], - "modified": "2020-09-18 17:26:09.703215", + "links": [], + "modified": "2024-03-23 16:03:22.994251", "modified_by": "Administrator", "module": "Core", "name": "Domain", @@ -48,7 +50,8 @@ ], "quick_entry": 1, "search_fields": "domain", - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", + "states": [], "title_field": "domain" } \ No newline at end of file diff --git a/frappe/core/doctype/domain_settings/domain_settings.json b/frappe/core/doctype/domain_settings/domain_settings.json index c363529cbd..22cf20acfe 100644 --- a/frappe/core/doctype/domain_settings/domain_settings.json +++ b/frappe/core/doctype/domain_settings/domain_settings.json @@ -31,7 +31,7 @@ ], "issingle": 1, "links": [], - "modified": "2022-08-03 12:20:53.256607", + "modified": "2024-03-23 16:03:23.087355", "modified_by": "Administrator", "module": "Core", "name": "Domain Settings", @@ -49,7 +49,7 @@ } ], "quick_entry": 1, - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [], "track_changes": 1 diff --git a/frappe/core/doctype/dynamic_link/dynamic_link.json b/frappe/core/doctype/dynamic_link/dynamic_link.json index b99f77f139..5cbea626d1 100644 --- a/frappe/core/doctype/dynamic_link/dynamic_link.json +++ b/frappe/core/doctype/dynamic_link/dynamic_link.json @@ -1,4 +1,5 @@ { + "actions": [], "creation": "2017-01-13 04:55:18.835023", "doctype": "DocType", "editable_grid": 1, @@ -34,14 +35,16 @@ } ], "istable": 1, - "modified": "2019-10-10 22:05:54.736093", + "links": [], + "modified": "2024-03-23 16:03:23.469424", "modified_by": "Administrator", "module": "Core", "name": "Dynamic Link", "owner": "Administrator", "permissions": [], "quick_entry": 1, - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", + "states": [], "track_changes": 1 } \ No newline at end of file diff --git a/frappe/core/doctype/error_log/error_log.json b/frappe/core/doctype/error_log/error_log.json index 813fb5f3c2..a2d917ff43 100644 --- a/frappe/core/doctype/error_log/error_log.json +++ b/frappe/core/doctype/error_log/error_log.json @@ -70,7 +70,7 @@ "idx": 1, "in_create": 1, "links": [], - "modified": "2023-12-08 15:52:37.525003", + "modified": "2024-03-23 16:03:25.381120", "modified_by": "Administrator", "module": "Core", "name": "Error Log", @@ -88,7 +88,7 @@ "write": 1 } ], - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [], "title_field": "method" diff --git a/frappe/core/doctype/error_log/error_log.py b/frappe/core/doctype/error_log/error_log.py index e9d8b63495..a0ea96a10c 100644 --- a/frappe/core/doctype/error_log/error_log.py +++ b/frappe/core/doctype/error_log/error_log.py @@ -32,7 +32,7 @@ class ErrorLog(Document): @staticmethod def clear_old_logs(days=30): table = frappe.qb.DocType("Error Log") - frappe.db.delete(table, filters=(table.modified < (Now() - Interval(days=days)))) + frappe.db.delete(table, filters=(table.creation < (Now() - Interval(days=days)))) @frappe.whitelist() diff --git a/frappe/core/doctype/error_log/error_log_list.js b/frappe/core/doctype/error_log/error_log_list.js index dabe95d6d7..b48b2cd77f 100644 --- a/frappe/core/doctype/error_log/error_log_list.js +++ b/frappe/core/doctype/error_log/error_log_list.js @@ -7,7 +7,7 @@ frappe.listview_settings["Error Log"] = { return [__("Not Seen"), "red", "seen,=,0"]; } }, - order_by: "seen asc, modified desc", + order_by: "creation desc", onload: function (listview) { listview.page.add_menu_item(__("Clear Error Logs"), function () { frappe.call({ diff --git a/frappe/core/doctype/file/file.json b/frappe/core/doctype/file/file.json index 215178d8ec..5c762c0120 100644 --- a/frappe/core/doctype/file/file.json +++ b/frappe/core/doctype/file/file.json @@ -189,7 +189,7 @@ "icon": "fa fa-file", "idx": 1, "links": [], - "modified": "2023-12-08 15:52:37.525003", + "modified": "2024-03-23 16:03:25.814224", "modified_by": "Administrator", "module": "Core", "name": "File", @@ -216,7 +216,7 @@ "write": 1 } ], - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [], "title_field": "file_name", diff --git a/frappe/core/doctype/has_domain/has_domain.json b/frappe/core/doctype/has_domain/has_domain.json index c34626b269..59e30a9ef0 100644 --- a/frappe/core/doctype/has_domain/has_domain.json +++ b/frappe/core/doctype/has_domain/has_domain.json @@ -18,14 +18,14 @@ ], "istable": 1, "links": [], - "modified": "2022-08-03 12:20:53.381248", + "modified": "2024-03-23 16:03:27.198356", "modified_by": "Administrator", "module": "Core", "name": "Has Domain", "owner": "Administrator", "permissions": [], "quick_entry": 1, - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [], "track_changes": 1 diff --git a/frappe/core/doctype/has_role/has_role.json b/frappe/core/doctype/has_role/has_role.json index 689e80480e..3192159cbd 100644 --- a/frappe/core/doctype/has_role/has_role.json +++ b/frappe/core/doctype/has_role/has_role.json @@ -22,13 +22,13 @@ "idx": 1, "istable": 1, "links": [], - "modified": "2022-08-03 12:20:54.382064", + "modified": "2024-03-23 16:03:27.291168", "modified_by": "Administrator", "module": "Core", "name": "Has Role", "owner": "Administrator", "permissions": [], - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [] } \ No newline at end of file diff --git a/frappe/core/doctype/installed_application/installed_application.json b/frappe/core/doctype/installed_application/installed_application.json index 1f32c557ce..3b185e9576 100644 --- a/frappe/core/doctype/installed_application/installed_application.json +++ b/frappe/core/doctype/installed_application/installed_application.json @@ -36,14 +36,15 @@ ], "istable": 1, "links": [], - "modified": "2020-05-12 10:09:49.148087", + "modified": "2024-03-23 16:03:27.892752", "modified_by": "Administrator", "module": "Core", "name": "Installed Application", "owner": "Administrator", "permissions": [], "quick_entry": 1, - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", + "states": [], "track_changes": 1 } \ No newline at end of file diff --git a/frappe/core/doctype/installed_applications/installed_applications.json b/frappe/core/doctype/installed_applications/installed_applications.json index f2345e66b2..23eba1bf75 100644 --- a/frappe/core/doctype/installed_applications/installed_applications.json +++ b/frappe/core/doctype/installed_applications/installed_applications.json @@ -18,7 +18,7 @@ ], "issingle": 1, "links": [], - "modified": "2020-05-12 10:09:14.310622", + "modified": "2024-03-23 16:03:27.992755", "modified_by": "Administrator", "module": "Core", "name": "Installed Applications", @@ -36,7 +36,8 @@ } ], "quick_entry": 1, - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", + "states": [], "track_changes": 1 } \ No newline at end of file diff --git a/frappe/core/doctype/language/language.json b/frappe/core/doctype/language/language.json index c9110bb998..b3c080a65f 100644 --- a/frappe/core/doctype/language/language.json +++ b/frappe/core/doctype/language/language.json @@ -51,7 +51,7 @@ "icon": "fa fa-globe", "in_create": 1, "links": [], - "modified": "2023-04-13 13:48:38.127995", + "modified": "2024-03-23 16:03:28.477169", "modified_by": "Administrator", "module": "Core", "name": "Language", @@ -66,13 +66,13 @@ "write": 1 }, { - "role": "All", - "read": 1 + "read": 1, + "role": "All" } ], "search_fields": "language_name", "show_title_field_in_link": 1, - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [], "title_field": "language_name", diff --git a/frappe/core/doctype/language/language.py b/frappe/core/doctype/language/language.py index 9856573740..57a2ccf690 100644 --- a/frappe/core/doctype/language/language.py +++ b/frappe/core/doctype/language/language.py @@ -1,7 +1,6 @@ # Copyright (c) 2015, Frappe Technologies and contributors # License: MIT. See LICENSE -import json import re import frappe @@ -47,38 +46,14 @@ def validate_with_regex(name, label): ) -def export_languages_json(): - """Export list of all languages""" - languages = frappe.get_all("Language", fields=["name", "language_name"]) - languages = [{"name": d.language_name, "code": d.name} for d in languages] - - languages.sort(key=lambda a: a["code"]) - - with open(frappe.get_app_path("frappe", "geo", "languages.json"), "w") as f: - f.write(frappe.as_json(languages)) - - def sync_languages(): - """Sync frappe/geo/languages.json with Language""" - with open(frappe.get_app_path("frappe", "geo", "languages.json")) as f: - data = json.loads(f.read()) + """Create Language records from frappe/geo/languages.csv""" + from csv import DictReader - for l in data: - if not frappe.db.exists("Language", l["code"]): - frappe.get_doc( - { - "doctype": "Language", - "language_code": l["code"], - "language_name": l["name"], - "enabled": 1, - } - ).insert() - - -def update_language_names(): - """Update frappe/geo/languages.json names (for use via patch)""" - with open(frappe.get_app_path("frappe", "geo", "languages.json")) as f: - data = json.loads(f.read()) - - for l in data: - frappe.db.set_value("Language", l["code"], "language_name", l["name"]) + with open(frappe.get_app_path("frappe", "geo", "languages.csv")) as f: + reader = DictReader(f) + for row in reader: + if not frappe.db.exists("Language", row["language_code"]): + doc = frappe.new_doc("Language") + doc.update(row) + doc.insert() diff --git a/frappe/core/doctype/log_setting_user/log_setting_user.json b/frappe/core/doctype/log_setting_user/log_setting_user.json index 7f4b0ef874..5668315dfb 100644 --- a/frappe/core/doctype/log_setting_user/log_setting_user.json +++ b/frappe/core/doctype/log_setting_user/log_setting_user.json @@ -22,13 +22,14 @@ "index_web_pages_for_search": 1, "istable": 1, "links": [], - "modified": "2020-10-08 17:22:04.690348", + "modified": "2024-03-23 16:03:29.303855", "modified_by": "Administrator", "module": "Core", "name": "Log Setting User", "owner": "Administrator", "permissions": [], - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", + "states": [], "track_changes": 1 } \ No newline at end of file diff --git a/frappe/core/doctype/log_settings/log_settings.json b/frappe/core/doctype/log_settings/log_settings.json index 5a9dd159cc..b3816673a4 100644 --- a/frappe/core/doctype/log_settings/log_settings.json +++ b/frappe/core/doctype/log_settings/log_settings.json @@ -1,6 +1,6 @@ { "actions": [], - "creation": "2020-10-08 12:12:21.694424", + "creation": "2023-02-22 16:18:29.749940", "doctype": "DocType", "editable_grid": 1, "engine": "InnoDB", @@ -18,7 +18,7 @@ "index_web_pages_for_search": 1, "issingle": 1, "links": [], - "modified": "2022-06-11 02:17:30.803721", + "modified": "2024-03-23 16:03:29.392292", "modified_by": "Administrator", "module": "Core", "name": "Log Settings", @@ -36,7 +36,7 @@ } ], "quick_entry": 1, - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [], "track_changes": 1 diff --git a/frappe/core/doctype/log_settings/log_settings.py b/frappe/core/doctype/log_settings/log_settings.py index 1b363cec3c..cc6c1a9d29 100644 --- a/frappe/core/doctype/log_settings/log_settings.py +++ b/frappe/core/doctype/log_settings/log_settings.py @@ -181,7 +181,7 @@ def clear_log_table(doctype, days=90): frappe.db.sql( f"""INSERT INTO `{temporary}` SELECT * FROM `{original}` - WHERE `{original}`.`modified` > NOW() - INTERVAL '{days}' DAY""" + WHERE `{original}`.`creation` > NOW() - INTERVAL '{days}' DAY""" ) frappe.db.sql_ddl(f"RENAME TABLE `{original}` TO `{backup}`, `{temporary}` TO `{original}`") except Exception: diff --git a/frappe/core/doctype/logs_to_clear/logs_to_clear.json b/frappe/core/doctype/logs_to_clear/logs_to_clear.json index df19ccd9e7..3858b0be51 100644 --- a/frappe/core/doctype/logs_to_clear/logs_to_clear.json +++ b/frappe/core/doctype/logs_to_clear/logs_to_clear.json @@ -31,13 +31,13 @@ "index_web_pages_for_search": 1, "istable": 1, "links": [], - "modified": "2022-06-13 02:51:36.857786", + "modified": "2024-03-23 16:03:29.489001", "modified_by": "Administrator", "module": "Core", "name": "Logs To Clear", "owner": "Administrator", "permissions": [], - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [] -} +} \ No newline at end of file diff --git a/frappe/core/doctype/module_def/module_def.json b/frappe/core/doctype/module_def/module_def.json index e9a03bce39..20bb138f53 100644 --- a/frappe/core/doctype/module_def/module_def.json +++ b/frappe/core/doctype/module_def/module_def.json @@ -123,7 +123,7 @@ "link_fieldname": "module" } ], - "modified": "2023-12-08 15:52:37.525003", + "modified": "2024-03-23 16:03:29.918362", "modified_by": "Administrator", "module": "Core", "name": "Module Def", @@ -159,7 +159,7 @@ } ], "show_name_in_global_search": 1, - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [], "track_changes": 1 diff --git a/frappe/core/doctype/module_profile/module_profile.json b/frappe/core/doctype/module_profile/module_profile.json index 32bc757427..37a067d6ae 100644 --- a/frappe/core/doctype/module_profile/module_profile.json +++ b/frappe/core/doctype/module_profile/module_profile.json @@ -40,7 +40,7 @@ "link_fieldname": "module_profile" } ], - "modified": "2021-12-03 15:47:21.296443", + "modified": "2024-03-23 16:03:30.237678", "modified_by": "Administrator", "module": "Core", "name": "Module Profile", @@ -60,7 +60,8 @@ "write": 1 } ], - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", + "states": [], "track_changes": 1 } \ No newline at end of file diff --git a/frappe/core/doctype/navbar_item/navbar_item.json b/frappe/core/doctype/navbar_item/navbar_item.json index 541d785710..801d0f1eca 100644 --- a/frappe/core/doctype/navbar_item/navbar_item.json +++ b/frappe/core/doctype/navbar_item/navbar_item.json @@ -18,9 +18,7 @@ "fieldtype": "Data", "in_list_view": 1, "label": "Item Label", - "mandatory_depends_on": "eval:doc.item_type == 'Route' || doc.item_type == 'Action'", - "show_days": 1, - "show_seconds": 1 + "mandatory_depends_on": "eval:doc.item_type == 'Route' || doc.item_type == 'Action'" }, { "columns": 2, @@ -29,27 +27,21 @@ "in_list_view": 1, "label": "Item Type", "options": "Route\nAction\nSeparator", - "read_only_depends_on": "eval:doc.is_standard", - "show_days": 1, - "show_seconds": 1 + "read_only_depends_on": "eval:doc.is_standard" }, { "default": "0", "fieldname": "hidden", "fieldtype": "Check", "in_list_view": 1, - "label": "Hidden", - "show_days": 1, - "show_seconds": 1 + "label": "Hidden" }, { "default": "0", "fieldname": "is_standard", "fieldtype": "Check", "label": "Is Standard", - "read_only": 1, - "show_days": 1, - "show_seconds": 1 + "read_only": 1 }, { "columns": 4, @@ -59,9 +51,7 @@ "in_list_view": 1, "label": "Route", "mandatory_depends_on": "eval:doc.item_type == 'Route'", - "read_only_depends_on": "eval:doc.is_standard", - "show_days": 1, - "show_seconds": 1 + "read_only_depends_on": "eval:doc.is_standard" }, { "depends_on": "eval:doc.item_type == 'Action'", @@ -69,21 +59,20 @@ "fieldtype": "Data", "label": "Action", "mandatory_depends_on": "eval:doc.item_type == 'Action'", - "read_only_depends_on": "eval:doc.is_standard", - "show_days": 1, - "show_seconds": 1 + "read_only_depends_on": "eval:doc.is_standard" } ], "istable": 1, "links": [], - "modified": "2020-11-02 10:57:37.709262", + "modified": "2024-03-23 16:03:30.447346", "modified_by": "Administrator", "module": "Core", "name": "Navbar Item", "owner": "Administrator", "permissions": [], "quick_entry": 1, - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", + "states": [], "track_changes": 1 } \ No newline at end of file diff --git a/frappe/core/doctype/navbar_settings/navbar_settings.json b/frappe/core/doctype/navbar_settings/navbar_settings.json index 8fc0c83c82..164d80fefa 100644 --- a/frappe/core/doctype/navbar_settings/navbar_settings.json +++ b/frappe/core/doctype/navbar_settings/navbar_settings.json @@ -17,57 +17,43 @@ { "fieldname": "app_logo", "fieldtype": "Attach Image", - "label": "Application Logo", - "show_days": 1, - "show_seconds": 1 + "label": "Application Logo" }, { "fieldname": "settings_dropdown", "fieldtype": "Table", "label": "Settings Dropdown", - "options": "Navbar Item", - "show_days": 1, - "show_seconds": 1 + "options": "Navbar Item" }, { "fieldname": "help_dropdown", "fieldtype": "Table", "label": "Help Dropdown", - "options": "Navbar Item", - "show_days": 1, - "show_seconds": 1 + "options": "Navbar Item" }, { "fieldname": "section_break_2", "fieldtype": "Section Break", - "label": "Dropdowns", - "show_days": 1, - "show_seconds": 1 + "label": "Dropdowns" }, { "fieldname": "logo_section", "fieldtype": "Section Break", - "label": "Application Logo", - "show_days": 1, - "show_seconds": 1 + "label": "Application Logo" }, { "fieldname": "column_break_3", - "fieldtype": "Column Break", - "show_days": 1, - "show_seconds": 1 + "fieldtype": "Column Break" }, { "fieldname": "logo_width", "fieldtype": "Int", - "label": "Logo Width", - "show_days": 1, - "show_seconds": 1 + "label": "Logo Width" } ], "issingle": 1, "links": [], - "modified": "2020-08-06 18:11:29.955835", + "modified": "2024-03-23 16:03:30.561647", "modified_by": "Administrator", "module": "Core", "name": "Navbar Settings", @@ -85,7 +71,8 @@ } ], "quick_entry": 1, - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", + "states": [], "track_changes": 1 } \ No newline at end of file diff --git a/frappe/core/doctype/package/package.json b/frappe/core/doctype/package/package.json index 285e17a5bb..4f5ef67a43 100644 --- a/frappe/core/doctype/package/package.json +++ b/frappe/core/doctype/package/package.json @@ -50,7 +50,7 @@ "link_fieldname": "package" } ], - "modified": "2021-09-05 13:15:01.130982", + "modified": "2024-03-23 16:03:33.307130", "modified_by": "Administrator", "module": "Core", "name": "Package", @@ -70,7 +70,8 @@ "write": 1 } ], - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", + "states": [], "track_changes": 1 } \ No newline at end of file diff --git a/frappe/core/doctype/package_import/package_import.json b/frappe/core/doctype/package_import/package_import.json index f3c6168f8d..c6e095beb1 100644 --- a/frappe/core/doctype/package_import/package_import.json +++ b/frappe/core/doctype/package_import/package_import.json @@ -39,7 +39,7 @@ ], "index_web_pages_for_search": 1, "links": [], - "modified": "2021-09-05 21:30:04.796090", + "modified": "2024-03-23 16:03:33.422131", "modified_by": "Administrator", "module": "Core", "name": "Package Import", @@ -59,7 +59,8 @@ "write": 1 } ], - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", + "states": [], "track_changes": 1 } \ No newline at end of file diff --git a/frappe/core/doctype/package_release/package_release.json b/frappe/core/doctype/package_release/package_release.json index b651d699c4..3d23fc56e6 100644 --- a/frappe/core/doctype/package_release/package_release.json +++ b/frappe/core/doctype/package_release/package_release.json @@ -69,7 +69,7 @@ ], "index_web_pages_for_search": 1, "links": [], - "modified": "2021-09-05 16:04:32.860988", + "modified": "2024-03-23 16:03:33.536719", "modified_by": "Administrator", "module": "Core", "name": "Package Release", @@ -89,7 +89,8 @@ "write": 1 } ], - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", + "states": [], "track_changes": 1 } \ No newline at end of file diff --git a/frappe/core/doctype/page/page.json b/frappe/core/doctype/page/page.json index 83117d802d..06616b3593 100644 --- a/frappe/core/doctype/page/page.json +++ b/frappe/core/doctype/page/page.json @@ -102,7 +102,7 @@ "icon": "fa fa-file", "idx": 1, "links": [], - "modified": "2023-12-08 15:52:37.525003", + "modified": "2024-03-23 16:03:33.657255", "modified_by": "Administrator", "module": "Core", "name": "Page", @@ -128,7 +128,7 @@ "write": 1 } ], - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [], "track_changes": 1 diff --git a/frappe/core/doctype/patch_log/patch_log.json b/frappe/core/doctype/patch_log/patch_log.json index 6be3ce089e..1cf975a884 100644 --- a/frappe/core/doctype/patch_log/patch_log.json +++ b/frappe/core/doctype/patch_log/patch_log.json @@ -37,7 +37,7 @@ "icon": "fa fa-cog", "idx": 1, "links": [], - "modified": "2023-06-07 00:00:01.369265", + "modified": "2024-03-23 16:03:34.014409", "modified_by": "Administrator", "module": "Core", "name": "Patch Log", @@ -61,7 +61,7 @@ } ], "quick_entry": 1, - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [], "title_field": "patch", diff --git a/frappe/core/doctype/permission_inspector/permission_inspector.json b/frappe/core/doctype/permission_inspector/permission_inspector.json index 466f7e6ea1..690f3b61a2 100644 --- a/frappe/core/doctype/permission_inspector/permission_inspector.json +++ b/frappe/core/doctype/permission_inspector/permission_inspector.json @@ -72,7 +72,7 @@ "is_virtual": 1, "issingle": 1, "links": [], - "modified": "2024-01-10 14:17:49.722593", + "modified": "2024-03-23 16:03:34.140177", "modified_by": "Administrator", "module": "Core", "name": "Permission Inspector", @@ -84,7 +84,7 @@ "write": 1 } ], - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [] } \ No newline at end of file diff --git a/frappe/core/doctype/prepared_report/prepared_report.json b/frappe/core/doctype/prepared_report/prepared_report.json index ec86237d7f..172f6ab8a6 100644 --- a/frappe/core/doctype/prepared_report/prepared_report.json +++ b/frappe/core/doctype/prepared_report/prepared_report.json @@ -105,7 +105,7 @@ ], "in_create": 1, "links": [], - "modified": "2024-03-07 12:01:58.209879", + "modified": "2024-03-23 16:03:34.835357", "modified_by": "Administrator", "module": "Core", "name": "Prepared Report", @@ -134,7 +134,7 @@ "share": 1 } ], - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [ { diff --git a/frappe/core/doctype/prepared_report/prepared_report.py b/frappe/core/doctype/prepared_report/prepared_report.py index 6bbda94761..45a631179f 100644 --- a/frappe/core/doctype/prepared_report/prepared_report.py +++ b/frappe/core/doctype/prepared_report/prepared_report.py @@ -51,7 +51,7 @@ class PreparedReport(Document): def clear_old_logs(days=30): prepared_reports_to_delete = frappe.get_all( "Prepared Report", - filters={"modified": ["<", frappe.utils.add_days(frappe.utils.now(), -days)]}, + filters={"creation": ["<", frappe.utils.add_days(frappe.utils.now(), -days)]}, ) for batch in frappe.utils.create_batch(prepared_reports_to_delete, 100): @@ -196,7 +196,7 @@ def expire_stalled_report(): "Prepared Report", { "status": "Started", - "modified": ("<", add_to_date(now(), seconds=-FAILURE_THRESHOLD, as_datetime=True)), + "creation": ("<", add_to_date(now(), seconds=-FAILURE_THRESHOLD, as_datetime=True)), }, { "status": "Failed", diff --git a/frappe/core/doctype/recorder/recorder.py b/frappe/core/doctype/recorder/recorder.py index ddbf208ad2..317bd9c148 100644 --- a/frappe/core/doctype/recorder/recorder.py +++ b/frappe/core/doctype/recorder/recorder.py @@ -43,6 +43,7 @@ class Recorder(Document): requests = Recorder.get_filtered_requests(filters)[start : start + page_length] if order_by_statment := order_by: + order_by_statment = order_by_statment.split(",")[0] if "." in order_by_statment: order_by_statment = order_by_statment.split(".")[1] diff --git a/frappe/core/doctype/recorder_query/recorder_query.json b/frappe/core/doctype/recorder_query/recorder_query.json index 4a529adb5b..75be1cfe09 100644 --- a/frappe/core/doctype/recorder_query/recorder_query.json +++ b/frappe/core/doctype/recorder_query/recorder_query.json @@ -94,13 +94,13 @@ "is_virtual": 1, "istable": 1, "links": [], - "modified": "2023-08-07 13:12:23.496002", + "modified": "2024-03-23 16:03:36.052756", "modified_by": "Administrator", "module": "Core", "name": "Recorder Query", "owner": "Administrator", "permissions": [], - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [] } \ No newline at end of file diff --git a/frappe/core/doctype/report/report.json b/frappe/core/doctype/report/report.json index 353e44c88b..d234f0ad55 100644 --- a/frappe/core/doctype/report/report.json +++ b/frappe/core/doctype/report/report.json @@ -191,7 +191,7 @@ "idx": 1, "index_web_pages_for_search": 1, "links": [], - "modified": "2024-01-03 15:29:01.460404", + "modified": "2024-03-23 16:03:36.343177", "modified_by": "Administrator", "module": "Core", "name": "Report", @@ -240,7 +240,7 @@ } ], "show_name_in_global_search": 1, - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [], "track_changes": 1 diff --git a/frappe/core/doctype/report/report.py b/frappe/core/doctype/report/report.py index c108c8ee6e..0928057e17 100644 --- a/frappe/core/doctype/report/report.py +++ b/frappe/core/doctype/report/report.py @@ -315,7 +315,7 @@ class Report(Document): elif params.get("order_by"): order_by = params.get("order_by") else: - order_by = Report._format([self.ref_doctype, "modified"]) + " desc" + order_by = Report._format([self.ref_doctype, "creation"]) + " desc" if params.get("sort_by_next"): order_by += ( diff --git a/frappe/core/doctype/report/user_activity_report.json b/frappe/core/doctype/report/user_activity_report.json index 5339bbe37d..ee5ec7f7ae 100644 --- a/frappe/core/doctype/report/user_activity_report.json +++ b/frappe/core/doctype/report/user_activity_report.json @@ -6,7 +6,7 @@ "doctype": "Report", "is_standard": "No", "javascript": null, - "json": "{\"filters\":[],\"columns\":[[\"name\",\"User\"],[\"user_type\",\"User\"],[\"first_name\",\"User\"],[\"last_name\",\"User\"],[\"last_active\",\"User\"],[\"role\",\"Has Role\"]],\"sort_by\":\"User.modified\",\"sort_order\":\"desc\",\"sort_by_next\":null,\"sort_order_next\":\"desc\"}", + "json": "{\"filters\":[],\"columns\":[[\"name\",\"User\"],[\"user_type\",\"User\"],[\"first_name\",\"User\"],[\"last_name\",\"User\"],[\"last_active\",\"User\"],[\"role\",\"Has Role\"]],\"sort_by\":\"User.creation\",\"sort_order\":\"desc\",\"sort_by_next\":null,\"sort_order_next\":\"desc\"}", "modified": "2016-09-01 02:59:07.728890", "module": "Core", "name": "User Activity Report", @@ -14,4 +14,4 @@ "ref_doctype": "User", "report_name": "User Activity Report", "report_type": "Report Builder" -} \ No newline at end of file +} diff --git a/frappe/core/doctype/report_column/report_column.json b/frappe/core/doctype/report_column/report_column.json index 2e6a22d29a..bcef081c76 100644 --- a/frappe/core/doctype/report_column/report_column.json +++ b/frappe/core/doctype/report_column/report_column.json @@ -48,14 +48,15 @@ "index_web_pages_for_search": 1, "istable": 1, "links": [], - "modified": "2020-09-03 10:52:03.895817", + "modified": "2024-03-23 16:03:36.524357", "modified_by": "Administrator", "module": "Core", "name": "Report Column", "owner": "Administrator", "permissions": [], "quick_entry": 1, - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", + "states": [], "track_changes": 1 } \ No newline at end of file diff --git a/frappe/core/doctype/report_filter/report_filter.json b/frappe/core/doctype/report_filter/report_filter.json index f0800a055a..3d7ff5a2ea 100644 --- a/frappe/core/doctype/report_filter/report_filter.json +++ b/frappe/core/doctype/report_filter/report_filter.json @@ -76,14 +76,14 @@ "index_web_pages_for_search": 1, "istable": 1, "links": [], - "modified": "2023-06-15 11:37:35.961036", + "modified": "2024-03-23 16:03:36.633258", "modified_by": "Administrator", "module": "Core", "name": "Report Filter", "owner": "Administrator", "permissions": [], "quick_entry": 1, - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [], "track_changes": 1 diff --git a/frappe/core/doctype/role/role.json b/frappe/core/doctype/role/role.json index c963badf6b..c5fde3e5e0 100644 --- a/frappe/core/doctype/role/role.json +++ b/frappe/core/doctype/role/role.json @@ -148,7 +148,7 @@ "idx": 1, "index_web_pages_for_search": 1, "links": [], - "modified": "2024-03-13 20:59:37.875253", + "modified": "2024-03-23 16:03:36.854123", "modified_by": "Administrator", "module": "Core", "name": "Role", @@ -168,7 +168,7 @@ } ], "quick_entry": 1, - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [], "track_changes": 1, diff --git a/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json b/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json index 52ecc5d38f..e7a450bc99 100644 --- a/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json +++ b/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json @@ -71,7 +71,7 @@ "hide_toolbar": 1, "issingle": 1, "links": [], - "modified": "2022-11-23 12:39:05.750386", + "modified": "2024-03-23 16:03:36.991083", "modified_by": "Administrator", "module": "Core", "name": "Role Permission for Page and Report", @@ -89,7 +89,7 @@ } ], "quick_entry": 1, - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [] } \ No newline at end of file diff --git a/frappe/core/doctype/role_profile/role_profile.json b/frappe/core/doctype/role_profile/role_profile.json index c182c5559d..e0fb326114 100644 --- a/frappe/core/doctype/role_profile/role_profile.json +++ b/frappe/core/doctype/role_profile/role_profile.json @@ -43,7 +43,7 @@ "table_fieldname": "role_profiles" } ], - "modified": "2024-02-10 12:22:24.803943", + "modified": "2024-03-23 16:03:37.104710", "modified_by": "Administrator", "module": "Core", "name": "Role Profile", @@ -74,7 +74,7 @@ "write": 1 } ], - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [], "title_field": "role_profile", diff --git a/frappe/core/doctype/rq_job/rq_job.json b/frappe/core/doctype/rq_job/rq_job.json index 6a3946754c..32a062572c 100644 --- a/frappe/core/doctype/rq_job/rq_job.json +++ b/frappe/core/doctype/rq_job/rq_job.json @@ -108,7 +108,7 @@ "in_create": 1, "is_virtual": 1, "links": [], - "modified": "2024-01-13 10:38:40.230972", + "modified": "2024-03-23 16:03:37.325708", "modified_by": "Administrator", "module": "Core", "name": "RQ Job", @@ -135,7 +135,7 @@ "share": 1 } ], - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [ { diff --git a/frappe/core/doctype/rq_job/rq_job.py b/frappe/core/doctype/rq_job/rq_job.py index 93ca331443..ac7641b31d 100644 --- a/frappe/core/doctype/rq_job/rq_job.py +++ b/frappe/core/doctype/rq_job/rq_job.py @@ -76,14 +76,14 @@ class RQJob(Document): return self._job_obj @staticmethod - def get_list(filters=None, start=0, page_length=20, order_by="modified desc"): + def get_list(filters=None, start=0, page_length=20, order_by="creation desc"): matched_job_ids = RQJob.get_matching_job_ids(filters=filters)[start : start + page_length] conn = get_redis_conn() jobs = [serialize_job(job) for job in Job.fetch_many(job_ids=matched_job_ids, connection=conn) if job] order_desc = "desc" in order_by - return sorted(jobs, key=lambda j: j.modified, reverse=order_desc) + return sorted(jobs, key=lambda j: j.creation, reverse=order_desc) @staticmethod def get_matching_job_ids(filters) -> list[str]: diff --git a/frappe/core/doctype/rq_job/test_rq_job.py b/frappe/core/doctype/rq_job/test_rq_job.py index 19eba09596..b9a76ad505 100644 --- a/frappe/core/doctype/rq_job/test_rq_job.py +++ b/frappe/core/doctype/rq_job/test_rq_job.py @@ -56,7 +56,7 @@ class TestRQJob(FrappeTestCase): def test_func_obj_serialization(self): job = frappe.enqueue(method=test_func, queue="short") rq_job = frappe.get_doc("RQ Job", job.id) - self.assertEqual(rq_job.job_name, "test_func") + self.assertEqual(rq_job.job_name, "frappe.core.doctype.rq_job.test_rq_job.test_func") @timeout def test_get_list_filtering(self): diff --git a/frappe/core/doctype/rq_worker/rq_worker.json b/frappe/core/doctype/rq_worker/rq_worker.json index cc301be5b3..6d84ad3e28 100644 --- a/frappe/core/doctype/rq_worker/rq_worker.json +++ b/frappe/core/doctype/rq_worker/rq_worker.json @@ -114,7 +114,7 @@ "in_create": 1, "is_virtual": 1, "links": [], - "modified": "2024-02-29 19:31:08.502527", + "modified": "2024-03-23 16:03:37.451604", "modified_by": "Administrator", "module": "Core", "name": "RQ Worker", @@ -130,7 +130,7 @@ "share": 1 } ], - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [ { diff --git a/frappe/core/doctype/scheduled_job_log/scheduled_job_log.json b/frappe/core/doctype/scheduled_job_log/scheduled_job_log.json index 782c0749f8..e9987eb1cc 100644 --- a/frappe/core/doctype/scheduled_job_log/scheduled_job_log.json +++ b/frappe/core/doctype/scheduled_job_log/scheduled_job_log.json @@ -45,7 +45,7 @@ } ], "links": [], - "modified": "2023-11-09 12:06:41.781270", + "modified": "2024-03-23 16:03:37.828186", "modified_by": "Administrator", "module": "Core", "name": "Scheduled Job Log", @@ -65,7 +65,7 @@ } ], "quick_entry": 1, - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [], "title_field": "scheduled_job_type" diff --git a/frappe/core/doctype/scheduled_job_log/scheduled_job_log.py b/frappe/core/doctype/scheduled_job_log/scheduled_job_log.py index 72e1e6b6c4..f5995872e5 100644 --- a/frappe/core/doctype/scheduled_job_log/scheduled_job_log.py +++ b/frappe/core/doctype/scheduled_job_log/scheduled_job_log.py @@ -25,4 +25,4 @@ class ScheduledJobLog(Document): @staticmethod def clear_old_logs(days=90): table = frappe.qb.DocType("Scheduled Job Log") - frappe.db.delete(table, filters=(table.modified < (Now() - Interval(days=days)))) + frappe.db.delete(table, filters=(table.creation < (Now() - Interval(days=days)))) diff --git a/frappe/core/doctype/scheduled_job_type/scheduled_job_type.json b/frappe/core/doctype/scheduled_job_type/scheduled_job_type.json index b3f04ad4c1..8cbdd9435b 100644 --- a/frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +++ b/frappe/core/doctype/scheduled_job_type/scheduled_job_type.json @@ -6,7 +6,7 @@ "label": "Execute" } ], - "creation": "2019-09-23 14:34:09.205368", + "creation": "2024-02-23 10:41:33.059393", "doctype": "DocType", "editable_grid": 1, "engine": "InnoDB", @@ -39,7 +39,7 @@ }, { "default": "0", - "depends_on": "eval:doc.frequency==='All'", + "depends_on": "eval:[\"All\", \"Cron\"].includes(doc.frequency)", "fieldname": "create_log", "fieldtype": "Check", "label": "Create Log" @@ -102,7 +102,7 @@ "link_fieldname": "scheduled_job_type" } ], - "modified": "2024-02-22 17:16:36.212691", + "modified": "2024-03-30 11:39:49.693632", "modified_by": "Administrator", "module": "Core", "name": "Scheduled Job Type", @@ -123,7 +123,7 @@ ], "quick_entry": 1, "show_title_field_in_link": 1, - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [], "title_field": "method", diff --git a/frappe/core/doctype/scheduled_job_type/scheduled_job_type.py b/frappe/core/doctype/scheduled_job_type/scheduled_job_type.py index 4f4894751b..56e11560ae 100644 --- a/frappe/core/doctype/scheduled_job_type/scheduled_job_type.py +++ b/frappe/core/doctype/scheduled_job_type/scheduled_job_type.py @@ -1,6 +1,7 @@ # Copyright (c) 2021, Frappe Technologies and contributors # License: MIT. See LICENSE +import contextlib import json from datetime import datetime, timedelta from random import randint @@ -48,8 +49,8 @@ class ScheduledJobType(Document): # end: auto-generated types def validate(self): - if self.frequency != "All": - # force logging for all events other than continuous ones (ALL) + if self.frequency not in ("All", "Cron"): + # force logging for all events other than All/Cron self.create_log = 1 if self.frequency == "Cron": diff --git a/frappe/core/doctype/server_script/server_script.json b/frappe/core/doctype/server_script/server_script.json index f081b846f3..197e768fed 100644 --- a/frappe/core/doctype/server_script/server_script.json +++ b/frappe/core/doctype/server_script/server_script.json @@ -151,7 +151,7 @@ "link_fieldname": "server_script" } ], - "modified": "2024-02-27 11:44:46.397495", + "modified": "2024-03-23 16:03:38.075313", "modified_by": "Administrator", "module": "Core", "name": "Server Script", @@ -171,7 +171,7 @@ "write": 1 } ], - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [], "track_changes": 1 diff --git a/frappe/core/doctype/server_script/server_script_list.js b/frappe/core/doctype/server_script/server_script_list.js index 0df447a0eb..1d4cdfdfe6 100644 --- a/frappe/core/doctype/server_script/server_script_list.js +++ b/frappe/core/doctype/server_script/server_script_list.js @@ -15,9 +15,9 @@ function add_github_star_cta(listview) { listview.github_star_banner.remove(); } - const message = "Loving Frappe Framework?"; + const message = __("Loving Frappe Framework?"); const link = "https://github.com/frappe/frappe"; - const cta = "Star us on GitHub"; + const cta = __("Star us on GitHub"); listview.github_star_banner = $(`
diff --git a/frappe/core/doctype/session_default/session_default.json b/frappe/core/doctype/session_default/session_default.json index d382e12456..4710bfbdf0 100644 --- a/frappe/core/doctype/session_default/session_default.json +++ b/frappe/core/doctype/session_default/session_default.json @@ -1,4 +1,5 @@ { + "actions": [], "creation": "2019-07-17 16:21:33.546379", "doctype": "DocType", "editable_grid": 1, @@ -16,14 +17,16 @@ } ], "istable": 1, - "modified": "2019-07-21 13:22:25.752553", + "links": [], + "modified": "2024-03-23 16:03:38.225606", "modified_by": "Administrator", "module": "Core", "name": "Session Default", "owner": "Administrator", "permissions": [], "quick_entry": 1, - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", + "states": [], "track_changes": 1 } \ No newline at end of file diff --git a/frappe/core/doctype/session_default_settings/session_default_settings.json b/frappe/core/doctype/session_default_settings/session_default_settings.json index 3eeb3f4167..2333dcfb15 100644 --- a/frappe/core/doctype/session_default_settings/session_default_settings.json +++ b/frappe/core/doctype/session_default_settings/session_default_settings.json @@ -1,4 +1,5 @@ { + "actions": [], "creation": "2019-07-17 16:22:31.300991", "doctype": "DocType", "editable_grid": 1, @@ -15,7 +16,8 @@ } ], "issingle": 1, - "modified": "2019-07-19 16:04:33.971089", + "links": [], + "modified": "2024-03-23 16:03:38.318576", "modified_by": "Administrator", "module": "Core", "name": "Session Default Settings", @@ -33,7 +35,8 @@ } ], "quick_entry": 1, - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", + "states": [], "track_changes": 1 } \ No newline at end of file diff --git a/frappe/core/doctype/sms_log/sms_log.json b/frappe/core/doctype/sms_log/sms_log.json index 1bdcec13ee..922330f381 100644 --- a/frappe/core/doctype/sms_log/sms_log.json +++ b/frappe/core/doctype/sms_log/sms_log.json @@ -1,371 +1,99 @@ { - "allow_copy": 0, - "allow_guest_to_view": 0, - "allow_import": 0, - "allow_rename": 0, - "autoname": "SYS-SMS-.#####", - "beta": 0, - "creation": "2012-03-27 14:36:47", - "custom": 0, - "docstatus": 0, - "doctype": "DocType", - "editable_grid": 0, + "actions": [], + "autoname": "SYS-SMS-.#####", + "creation": "2012-03-27 14:36:47", + "doctype": "DocType", + "engine": "InnoDB", + "field_order": [ + "sender_name", + "sent_on", + "column_break0", + "message", + "sec_break1", + "no_of_requested_sms", + "requested_numbers", + "column_break1", + "no_of_sent_sms", + "sent_to" + ], "fields": [ { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "columns": 0, - "fieldname": "sender_name", - "fieldtype": "Data", - "hidden": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_standard_filter": 0, - "label": "Sender Name", - "length": 0, - "no_copy": 0, - "permlevel": 0, - "print_hide": 0, - "print_hide_if_no_value": 0, - "read_only": 1, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "translatable": 0, - "unique": 0 - }, + "fieldname": "sender_name", + "fieldtype": "Data", + "label": "Sender Name", + "read_only": 1 + }, { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "columns": 0, - "fieldname": "sent_on", - "fieldtype": "Date", - "hidden": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_standard_filter": 0, - "label": "Sent On", - "length": 0, - "no_copy": 0, - "permlevel": 0, - "print_hide": 0, - "print_hide_if_no_value": 0, - "read_only": 1, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "translatable": 0, - "unique": 0 - }, + "fieldname": "sent_on", + "fieldtype": "Date", + "label": "Sent On", + "read_only": 1 + }, { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "columns": 0, - "fieldname": "column_break0", - "fieldtype": "Column Break", - "hidden": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_standard_filter": 0, - "length": 0, - "no_copy": 0, - "permlevel": 0, - "print_hide": 0, - "print_hide_if_no_value": 0, - "read_only": 0, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "translatable": 0, - "unique": 0, + "fieldname": "column_break0", + "fieldtype": "Column Break", "width": "50%" - }, + }, { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "columns": 0, - "fieldname": "message", - "fieldtype": "Small Text", - "hidden": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_standard_filter": 0, - "label": "Message", - "length": 0, - "no_copy": 0, - "permlevel": 0, - "print_hide": 0, - "print_hide_if_no_value": 0, - "read_only": 1, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "translatable": 0, - "unique": 0 - }, + "fieldname": "message", + "fieldtype": "Small Text", + "label": "Message", + "read_only": 1 + }, { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "columns": 0, - "fieldname": "sec_break1", - "fieldtype": "Section Break", - "hidden": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_standard_filter": 0, - "length": 0, - "no_copy": 0, - "options": "Simple", - "permlevel": 0, - "precision": "", - "print_hide": 0, - "print_hide_if_no_value": 0, - "read_only": 0, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "translatable": 0, - "unique": 0 - }, + "fieldname": "sec_break1", + "fieldtype": "Section Break", + "options": "Simple" + }, { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "columns": 0, - "fieldname": "no_of_requested_sms", - "fieldtype": "Int", - "hidden": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_standard_filter": 0, - "label": "No of Requested SMS", - "length": 0, - "no_copy": 0, - "permlevel": 0, - "print_hide": 0, - "print_hide_if_no_value": 0, - "read_only": 1, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "translatable": 0, - "unique": 0 - }, + "fieldname": "no_of_requested_sms", + "fieldtype": "Int", + "label": "No of Requested SMS", + "read_only": 1 + }, { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "columns": 0, - "fieldname": "requested_numbers", - "fieldtype": "Code", - "hidden": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_standard_filter": 0, - "label": "Requested Numbers", - "length": 0, - "no_copy": 0, - "permlevel": 0, - "print_hide": 0, - "print_hide_if_no_value": 0, - "read_only": 1, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "translatable": 0, - "unique": 0 - }, + "fieldname": "requested_numbers", + "fieldtype": "Code", + "label": "Requested Numbers", + "read_only": 1 + }, { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "columns": 0, - "fieldname": "column_break1", - "fieldtype": "Column Break", - "hidden": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_standard_filter": 0, - "length": 0, - "no_copy": 0, - "permlevel": 0, - "print_hide": 0, - "print_hide_if_no_value": 0, - "read_only": 0, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "translatable": 0, - "unique": 0, + "fieldname": "column_break1", + "fieldtype": "Column Break", "width": "50%" - }, + }, { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "columns": 0, - "fieldname": "no_of_sent_sms", - "fieldtype": "Int", - "hidden": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_standard_filter": 0, - "label": "No of Sent SMS", - "length": 0, - "no_copy": 0, - "permlevel": 0, - "print_hide": 0, - "print_hide_if_no_value": 0, - "read_only": 1, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "translatable": 0, - "unique": 0 - }, + "fieldname": "no_of_sent_sms", + "fieldtype": "Int", + "label": "No of Sent SMS", + "read_only": 1 + }, { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "columns": 0, - "fieldname": "sent_to", - "fieldtype": "Code", - "hidden": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_standard_filter": 0, - "label": "Sent To", - "length": 0, - "no_copy": 0, - "permlevel": 0, - "precision": "", - "print_hide": 0, - "print_hide_if_no_value": 0, - "read_only": 1, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "translatable": 0, - "unique": 0 + "fieldname": "sent_to", + "fieldtype": "Code", + "label": "Sent To", + "read_only": 1 } - ], - "has_web_view": 0, - "hide_heading": 0, - "hide_toolbar": 0, - "icon": "fa fa-mobile-phone", - "idx": 1, - "image_view": 0, - "in_create": 0, - "is_submittable": 0, - "issingle": 0, - "istable": 0, - "max_attachments": 0, - "modified": "2018-08-21 16:15:40.898889", - "modified_by": "Administrator", - "module": "Core", - "name": "SMS Log", - "owner": "Administrator", + ], + "icon": "fa fa-mobile-phone", + "idx": 1, + "links": [], + "modified": "2024-03-23 16:03:38.537041", + "modified_by": "Administrator", + "module": "Core", + "name": "SMS Log", + "owner": "Administrator", "permissions": [ { - "amend": 0, - "cancel": 0, - "create": 0, - "delete": 0, - "email": 1, - "export": 0, - "if_owner": 0, - "import": 0, - "permlevel": 0, - "print": 1, - "read": 1, - "report": 1, - "role": "System Manager", - "set_user_permissions": 0, - "share": 0, - "submit": 0, - "write": 0 + "email": 1, + "print": 1, + "read": 1, + "report": 1, + "role": "System Manager" } - ], - "quick_entry": 0, - "read_only": 0, - "read_only_onload": 0, - "show_name_in_global_search": 0, - "track_changes": 1, - "track_seen": 0, - "track_views": 0 + ], + "sort_field": "creation", + "sort_order": "DESC", + "states": [], + "track_changes": 1 } \ No newline at end of file diff --git a/frappe/core/doctype/sms_parameter/sms_parameter.json b/frappe/core/doctype/sms_parameter/sms_parameter.json index 98972f9e7d..96b4ef02c5 100755 --- a/frappe/core/doctype/sms_parameter/sms_parameter.json +++ b/frappe/core/doctype/sms_parameter/sms_parameter.json @@ -39,13 +39,13 @@ "idx": 1, "istable": 1, "links": [], - "modified": "2022-08-03 12:20:53.129765", + "modified": "2024-03-23 16:03:38.659977", "modified_by": "Administrator", "module": "Core", "name": "SMS Parameter", "owner": "Administrator", "permissions": [], - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [] } \ No newline at end of file diff --git a/frappe/core/doctype/sms_settings/sms_settings.json b/frappe/core/doctype/sms_settings/sms_settings.json index d29949af45..f8f5b746ba 100755 --- a/frappe/core/doctype/sms_settings/sms_settings.json +++ b/frappe/core/doctype/sms_settings/sms_settings.json @@ -60,7 +60,7 @@ "idx": 1, "issingle": 1, "links": [], - "modified": "2021-09-21 19:45:26.809793", + "modified": "2024-03-23 16:03:38.762589", "modified_by": "Administrator", "module": "Core", "name": "SMS Settings", @@ -74,7 +74,8 @@ "write": 1 } ], - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", + "states": [], "track_changes": 1 } \ No newline at end of file diff --git a/frappe/core/doctype/submission_queue/submission_queue.json b/frappe/core/doctype/submission_queue/submission_queue.json index 4e4abceacf..c5d311e435 100644 --- a/frappe/core/doctype/submission_queue/submission_queue.json +++ b/frappe/core/doctype/submission_queue/submission_queue.json @@ -89,7 +89,7 @@ ], "index_web_pages_for_search": 1, "links": [], - "modified": "2023-08-29 12:27:54.754054", + "modified": "2024-03-23 16:03:39.111282", "modified_by": "Administrator", "module": "Core", "name": "Submission Queue", @@ -111,7 +111,7 @@ "role": "Desk User" } ], - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [ { diff --git a/frappe/core/doctype/submission_queue/submission_queue.py b/frappe/core/doctype/submission_queue/submission_queue.py index bad6f88af4..d76ff80e52 100644 --- a/frappe/core/doctype/submission_queue/submission_queue.py +++ b/frappe/core/doctype/submission_queue/submission_queue.py @@ -51,7 +51,7 @@ class SubmissionQueue(Document): from frappe.query_builder.functions import Now table = frappe.qb.DocType("Submission Queue") - frappe.db.delete(table, filters=(table.modified < (Now() - Interval(days=days)))) + frappe.db.delete(table, filters=(table.creation < (Now() - Interval(days=days)))) def insert(self, to_be_queued_doc: Document, action: str): self.status = "Queued" diff --git a/frappe/core/doctype/success_action/success_action.json b/frappe/core/doctype/success_action/success_action.json index 749fa6764f..4392080b36 100644 --- a/frappe/core/doctype/success_action/success_action.json +++ b/frappe/core/doctype/success_action/success_action.json @@ -58,7 +58,7 @@ ], "hide_toolbar": 1, "links": [], - "modified": "2022-08-03 12:20:54.532708", + "modified": "2024-03-23 16:03:39.228220", "modified_by": "Administrator", "module": "Core", "name": "Success Action", @@ -77,7 +77,7 @@ "write": 1 } ], - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [], "track_changes": 1 diff --git a/frappe/core/doctype/system_settings/system_settings.json b/frappe/core/doctype/system_settings/system_settings.json index c00ecb27df..d496ebff32 100644 --- a/frappe/core/doctype/system_settings/system_settings.json +++ b/frappe/core/doctype/system_settings/system_settings.json @@ -661,7 +661,7 @@ "icon": "fa fa-cog", "issingle": 1, "links": [], - "modified": "2024-03-14 15:18:01.465057", + "modified": "2024-03-23 16:03:39.461597", "modified_by": "Administrator", "module": "Core", "name": "System Settings", @@ -676,7 +676,7 @@ } ], "quick_entry": 1, - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [], "track_changes": 1 diff --git a/frappe/core/doctype/system_settings/system_settings.py b/frappe/core/doctype/system_settings/system_settings.py index 6a444fd5d6..87ed3c8ea9 100644 --- a/frappe/core/doctype/system_settings/system_settings.py +++ b/frappe/core/doctype/system_settings/system_settings.py @@ -82,6 +82,7 @@ class SystemSettings(Document): ] otp_issuer_name: DF.Data | None password_reset_limit: DF.Int + rate_limit_email_link_login: DF.Int reset_password_link_expiry_duration: DF.Duration | None reset_password_template: DF.Link | None rounding_method: DF.Literal["Banker's Rounding (legacy)", "Banker's Rounding", "Commercial Rounding"] diff --git a/frappe/core/doctype/transaction_log/transaction_log.json b/frappe/core/doctype/transaction_log/transaction_log.json index 2135976add..ffe5b13eb4 100644 --- a/frappe/core/doctype/transaction_log/transaction_log.json +++ b/frappe/core/doctype/transaction_log/transaction_log.json @@ -101,7 +101,7 @@ ], "in_create": 1, "links": [], - "modified": "2022-08-03 12:20:54.684305", + "modified": "2024-03-23 16:03:59.373102", "modified_by": "Administrator", "module": "Core", "name": "Transaction Log", @@ -117,7 +117,7 @@ "share": 1 } ], - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [], "track_changes": 1 diff --git a/frappe/core/doctype/translation/translation.json b/frappe/core/doctype/translation/translation.json index 68b83ed5d9..a4ea16f6c8 100644 --- a/frappe/core/doctype/translation/translation.json +++ b/frappe/core/doctype/translation/translation.json @@ -83,7 +83,7 @@ } ], "links": [], - "modified": "2022-07-04 06:53:54.997004", + "modified": "2024-03-23 16:03:59.551788", "modified_by": "Administrator", "module": "Core", "name": "Translation", @@ -103,7 +103,7 @@ "write": 1 } ], - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [], "title_field": "source_text", diff --git a/frappe/core/doctype/user/user.json b/frappe/core/doctype/user/user.json index 9bdfbf875f..5af6f15b40 100644 --- a/frappe/core/doctype/user/user.json +++ b/frappe/core/doctype/user/user.json @@ -788,7 +788,7 @@ "link_fieldname": "user" } ], - "modified": "2024-03-20 17:15:19.200383", + "modified": "2024-03-23 16:03:59.833565", "modified_by": "Administrator", "module": "Core", "name": "User", @@ -822,7 +822,7 @@ "route": "user", "search_fields": "full_name", "show_name_in_global_search": 1, - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [], "title_field": "full_name", diff --git a/frappe/core/doctype/user/user.py b/frappe/core/doctype/user/user.py index 3d38348121..2d1583a81c 100644 --- a/frappe/core/doctype/user/user.py +++ b/frappe/core/doctype/user/user.py @@ -171,7 +171,8 @@ class User(Document): self.validate_username() self.remove_disabled_roles() self.validate_user_email_inbox() - ask_pass_update() + if self.user_emails: + ask_pass_update() self.validate_allowed_modules() self.validate_user_image() self.set_time_zone() diff --git a/frappe/core/doctype/user_document_type/user_document_type.json b/frappe/core/doctype/user_document_type/user_document_type.json index 69983a2891..e4e40f7548 100644 --- a/frappe/core/doctype/user_document_type/user_document_type.json +++ b/frappe/core/doctype/user_document_type/user_document_type.json @@ -97,13 +97,14 @@ "index_web_pages_for_search": 1, "istable": 1, "links": [], - "modified": "2021-03-16 00:32:24.414313", + "modified": "2024-03-23 16:04:00.313525", "modified_by": "Administrator", "module": "Core", "name": "User Document Type", "owner": "Administrator", "permissions": [], - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", + "states": [], "track_changes": 1 } \ No newline at end of file diff --git a/frappe/core/doctype/user_email/user_email.json b/frappe/core/doctype/user_email/user_email.json index 6e3f813035..cdc76ca9f1 100644 --- a/frappe/core/doctype/user_email/user_email.json +++ b/frappe/core/doctype/user_email/user_email.json @@ -61,13 +61,13 @@ ], "istable": 1, "links": [], - "modified": "2022-06-03 14:25:46.944733", + "modified": "2024-03-23 16:04:00.460634", "modified_by": "Administrator", "module": "Core", "name": "User Email", "owner": "Administrator", "permissions": [], - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [] } \ No newline at end of file diff --git a/frappe/core/doctype/user_group/user_group.json b/frappe/core/doctype/user_group/user_group.json index a67ceea2d2..fd49ac1266 100644 --- a/frappe/core/doctype/user_group/user_group.json +++ b/frappe/core/doctype/user_group/user_group.json @@ -19,7 +19,7 @@ ], "index_web_pages_for_search": 1, "links": [], - "modified": "2023-08-28 22:25:16.941457", + "modified": "2024-03-23 16:04:00.597980", "modified_by": "Administrator", "module": "Core", "name": "User Group", @@ -43,7 +43,7 @@ "role": "Desk User" } ], - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [], "track_changes": 1 diff --git a/frappe/core/doctype/user_group_member/user_group_member.json b/frappe/core/doctype/user_group_member/user_group_member.json index d2ff149366..d495ece00b 100644 --- a/frappe/core/doctype/user_group_member/user_group_member.json +++ b/frappe/core/doctype/user_group_member/user_group_member.json @@ -20,13 +20,14 @@ "index_web_pages_for_search": 1, "istable": 1, "links": [], - "modified": "2021-04-12 15:17:18.773046", + "modified": "2024-03-23 16:04:00.733681", "modified_by": "Administrator", "module": "Core", "name": "User Group Member", "owner": "Administrator", "permissions": [], - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", + "states": [], "track_changes": 1 } \ No newline at end of file diff --git a/frappe/core/doctype/user_permission/user_permission.json b/frappe/core/doctype/user_permission/user_permission.json index 60b6779bfd..197972261d 100644 --- a/frappe/core/doctype/user_permission/user_permission.json +++ b/frappe/core/doctype/user_permission/user_permission.json @@ -90,7 +90,7 @@ } ], "links": [], - "modified": "2022-01-03 11:25:03.726150", + "modified": "2024-03-23 16:04:00.823875", "modified_by": "Administrator", "module": "Core", "name": "User Permission", @@ -109,7 +109,7 @@ "write": 1 } ], - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [], "title_field": "user", diff --git a/frappe/core/doctype/user_role_profile/user_role_profile.json b/frappe/core/doctype/user_role_profile/user_role_profile.json index 686556477f..f5ddf37986 100644 --- a/frappe/core/doctype/user_role_profile/user_role_profile.json +++ b/frappe/core/doctype/user_role_profile/user_role_profile.json @@ -20,13 +20,13 @@ "index_web_pages_for_search": 1, "istable": 1, "links": [], - "modified": "2024-01-29 14:25:09.513552", + "modified": "2024-03-23 16:04:00.948988", "modified_by": "Administrator", "module": "Core", "name": "User Role Profile", "owner": "Administrator", "permissions": [], - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [] } \ No newline at end of file diff --git a/frappe/core/doctype/user_select_document_type/user_select_document_type.json b/frappe/core/doctype/user_select_document_type/user_select_document_type.json index 86e19422c3..7b249a2787 100644 --- a/frappe/core/doctype/user_select_document_type/user_select_document_type.json +++ b/frappe/core/doctype/user_select_document_type/user_select_document_type.json @@ -20,14 +20,15 @@ "index_web_pages_for_search": 1, "istable": 1, "links": [], - "modified": "2021-01-17 18:45:44.993190", + "modified": "2024-03-23 16:04:01.071552", "modified_by": "Administrator", "module": "Core", "name": "User Select Document Type", "owner": "Administrator", "permissions": [], "quick_entry": 1, - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", + "states": [], "track_changes": 1 } \ No newline at end of file diff --git a/frappe/core/doctype/user_social_login/user_social_login.json b/frappe/core/doctype/user_social_login/user_social_login.json index 6b4b1822d1..cd41493a5b 100644 --- a/frappe/core/doctype/user_social_login/user_social_login.json +++ b/frappe/core/doctype/user_social_login/user_social_login.json @@ -44,14 +44,14 @@ ], "istable": 1, "links": [], - "modified": "2022-08-03 12:20:53.800689", + "modified": "2024-03-23 16:04:01.200476", "modified_by": "Administrator", "module": "Core", "name": "User Social Login", "owner": "Administrator", "permissions": [], "quick_entry": 1, - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [], "track_changes": 1 diff --git a/frappe/core/doctype/user_type/user_type.json b/frappe/core/doctype/user_type/user_type.json index 3d6b470af5..03833a8bdd 100644 --- a/frappe/core/doctype/user_type/user_type.json +++ b/frappe/core/doctype/user_type/user_type.json @@ -109,7 +109,7 @@ ], "index_web_pages_for_search": 1, "links": [], - "modified": "2022-06-09 14:00:36.820306", + "modified": "2024-03-23 16:04:01.336002", "modified_by": "Administrator", "module": "Core", "name": "User Type", @@ -138,7 +138,7 @@ "write": 1 } ], - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [], "track_changes": 1 diff --git a/frappe/core/doctype/user_type_module/user_type_module.json b/frappe/core/doctype/user_type_module/user_type_module.json index 0f9cbefc25..285b9a2d94 100644 --- a/frappe/core/doctype/user_type_module/user_type_module.json +++ b/frappe/core/doctype/user_type_module/user_type_module.json @@ -20,14 +20,15 @@ "index_web_pages_for_search": 1, "istable": 1, "links": [], - "modified": "2021-01-24 03:07:43.602927", + "modified": "2024-03-23 16:04:01.539682", "modified_by": "Administrator", "module": "Core", "name": "User Type Module", "owner": "Administrator", "permissions": [], "quick_entry": 1, - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", + "states": [], "track_changes": 1 } \ No newline at end of file diff --git a/frappe/core/doctype/version/version.json b/frappe/core/doctype/version/version.json index 570b53623c..7b8297365f 100644 --- a/frappe/core/doctype/version/version.json +++ b/frappe/core/doctype/version/version.json @@ -18,7 +18,6 @@ "fieldname": "ref_doctype", "fieldtype": "Link", "in_list_view": 1, - "in_standard_filter": 1, "label": "DocType", "options": "DocType", "reqd": 1 @@ -54,10 +53,11 @@ "idx": 1, "in_create": 1, "links": [], - "modified": "2023-12-08 15:52:37.525003", + "modified": "2024-03-23 16:04:01.627592", "modified_by": "Administrator", "module": "Core", "name": "Version", + "naming_rule": "Random", "owner": "Administrator", "permissions": [ { @@ -73,7 +73,7 @@ } ], "quick_entry": 1, - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [], "title_field": "docname", diff --git a/frappe/core/doctype/view_log/view_log.json b/frappe/core/doctype/view_log/view_log.json index a350ae835c..ade16cd09a 100644 --- a/frappe/core/doctype/view_log/view_log.json +++ b/frappe/core/doctype/view_log/view_log.json @@ -33,7 +33,7 @@ } ], "links": [], - "modified": "2022-09-07 05:16:14.587628", + "modified": "2024-03-23 16:04:01.764239", "modified_by": "Administrator", "module": "Core", "name": "View Log", @@ -50,7 +50,7 @@ } ], "quick_entry": 1, - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [] } \ No newline at end of file diff --git a/frappe/core/doctype/view_log/view_log.py b/frappe/core/doctype/view_log/view_log.py index 42d93fff35..457c1e059a 100644 --- a/frappe/core/doctype/view_log/view_log.py +++ b/frappe/core/doctype/view_log/view_log.py @@ -25,4 +25,4 @@ class ViewLog(Document): from frappe.query_builder.functions import Now table = frappe.qb.DocType("View Log") - frappe.db.delete(table, filters=(table.modified < (Now() - Interval(days=days)))) + frappe.db.delete(table, filters=(table.creation < (Now() - Interval(days=days)))) diff --git a/frappe/core/report/document_share_report/document_share_report.json b/frappe/core/report/document_share_report/document_share_report.json index db2f2b6be8..653c9b4d32 100644 --- a/frappe/core/report/document_share_report/document_share_report.json +++ b/frappe/core/report/document_share_report/document_share_report.json @@ -1,24 +1,24 @@ { - "add_total_row": 0, - "apply_user_permissions": 1, - "creation": "2015-02-05 06:01:35.060098", - "disabled": 0, - "docstatus": 0, - "doctype": "Report", - "idx": 2, - "is_standard": "Yes", - "json": "{\"add_total_row\": 0, \"sort_by\": \"DocShare.modified\", \"sort_order\": \"desc\", \"sort_by_next\": null, \"filters\": [], \"sort_order_next\": \"desc\", \"columns\": [[\"name\", \"DocShare\"], [\"user\", \"DocShare\"], [\"share_doctype\", \"DocShare\"], [\"share_name\", \"DocShare\"], [\"read\", \"DocShare\"], [\"write\", \"DocShare\"], [\"share\", \"DocShare\"]]}", - "modified": "2017-02-24 20:01:16.232286", - "modified_by": "Administrator", - "module": "Core", - "name": "Document Share Report", - "owner": "Administrator", - "ref_doctype": "DocShare", - "report_name": "Document Share Report", - "report_type": "Report Builder", + "add_total_row": 0, + "apply_user_permissions": 1, + "creation": "2015-02-05 06:01:35.060098", + "disabled": 0, + "docstatus": 0, + "doctype": "Report", + "idx": 2, + "is_standard": "Yes", + "json": "{\"add_total_row\": 0, \"sort_by\": \"DocShare.creation\", \"sort_order\": \"desc\", \"sort_by_next\": null, \"filters\": [], \"sort_order_next\": \"desc\", \"columns\": [[\"name\", \"DocShare\"], [\"user\", \"DocShare\"], [\"share_doctype\", \"DocShare\"], [\"share_name\", \"DocShare\"], [\"read\", \"DocShare\"], [\"write\", \"DocShare\"], [\"share\", \"DocShare\"]]}", + "modified": "2017-02-24 20:01:16.232286", + "modified_by": "Administrator", + "module": "Core", + "name": "Document Share Report", + "owner": "Administrator", + "ref_doctype": "DocShare", + "report_name": "Document Share Report", + "report_type": "Report Builder", "roles": [ { "role": "System Manager" } ] -} \ No newline at end of file +} diff --git a/frappe/custom/doctype/client_script/client_script.json b/frappe/custom/doctype/client_script/client_script.json index dddf0c0a04..65504d644d 100644 --- a/frappe/custom/doctype/client_script/client_script.json +++ b/frappe/custom/doctype/client_script/client_script.json @@ -77,7 +77,7 @@ "idx": 1, "index_web_pages_for_search": 1, "links": [], - "modified": "2023-12-08 15:52:37.525003", + "modified": "2024-03-23 16:01:29.862624", "modified_by": "Administrator", "module": "Custom", "name": "Client Script", @@ -107,7 +107,7 @@ "write": 1 } ], - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [], "track_changes": 1 diff --git a/frappe/custom/doctype/custom_field/custom_field.json b/frappe/custom/doctype/custom_field/custom_field.json index b0971a1381..09c6fad731 100644 --- a/frappe/custom/doctype/custom_field/custom_field.json +++ b/frappe/custom/doctype/custom_field/custom_field.json @@ -464,7 +464,7 @@ "idx": 1, "index_web_pages_for_search": 1, "links": [], - "modified": "2024-03-07 17:34:47.167183", + "modified": "2024-03-23 16:02:15.143117", "modified_by": "Administrator", "module": "Custom", "name": "Custom Field", @@ -494,7 +494,7 @@ } ], "search_fields": "dt,label,fieldtype,options", - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [], "track_changes": 1 diff --git a/frappe/custom/doctype/customize_form/customize_form.json b/frappe/custom/doctype/customize_form/customize_form.json index 273cab894a..4bba44bf5c 100644 --- a/frappe/custom/doctype/customize_form/customize_form.json +++ b/frappe/custom/doctype/customize_form/customize_form.json @@ -407,7 +407,7 @@ "index_web_pages_for_search": 1, "issingle": 1, "links": [], - "modified": "2023-12-01 18:18:23.086134", + "modified": "2024-03-23 16:02:15.670853", "modified_by": "Administrator", "module": "Custom", "name": "Customize Form", @@ -426,7 +426,7 @@ ], "quick_entry": 1, "search_fields": "doc_type", - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [], "track_changes": 1 diff --git a/frappe/custom/doctype/customize_form_field/customize_form_field.json b/frappe/custom/doctype/customize_form_field/customize_form_field.json index 0dfd7a6c45..3579d5252a 100644 --- a/frappe/custom/doctype/customize_form_field/customize_form_field.json +++ b/frappe/custom/doctype/customize_form_field/customize_form_field.json @@ -484,14 +484,14 @@ "index_web_pages_for_search": 1, "istable": 1, "links": [], - "modified": "2024-02-01 15:56:39.171633", + "modified": "2024-03-23 16:02:15.866361", "modified_by": "Administrator", "module": "Custom", "name": "Customize Form Field", "naming_rule": "Random", "owner": "Administrator", "permissions": [], - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [] } \ No newline at end of file diff --git a/frappe/custom/doctype/doctype_layout/doctype_layout.json b/frappe/custom/doctype/doctype_layout/doctype_layout.json index 5237e7615e..131924bc77 100644 --- a/frappe/custom/doctype/doctype_layout/doctype_layout.json +++ b/frappe/custom/doctype/doctype_layout/doctype_layout.json @@ -43,7 +43,7 @@ ], "index_web_pages_for_search": 1, "links": [], - "modified": "2023-08-28 22:24:08.103972", + "modified": "2024-03-23 16:03:22.020755", "modified_by": "Administrator", "module": "Custom", "name": "DocType Layout", @@ -68,7 +68,7 @@ } ], "route": "doctype-layout", - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [], "track_changes": 1 diff --git a/frappe/custom/doctype/doctype_layout_field/doctype_layout_field.json b/frappe/custom/doctype/doctype_layout_field/doctype_layout_field.json index 006c01ae4e..5d05505304 100644 --- a/frappe/custom/doctype/doctype_layout_field/doctype_layout_field.json +++ b/frappe/custom/doctype/doctype_layout_field/doctype_layout_field.json @@ -26,13 +26,14 @@ "index_web_pages_for_search": 1, "istable": 1, "links": [], - "modified": "2021-05-19 16:27:40.585865", + "modified": "2024-03-23 16:03:22.165461", "modified_by": "Administrator", "module": "Custom", "name": "DocType Layout Field", "owner": "Administrator", "permissions": [], - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", + "states": [], "track_changes": 1 -} +} \ No newline at end of file diff --git a/frappe/custom/doctype/property_setter/property_setter.json b/frappe/custom/doctype/property_setter/property_setter.json index 039826b3b7..54a025298b 100644 --- a/frappe/custom/doctype/property_setter/property_setter.json +++ b/frappe/custom/doctype/property_setter/property_setter.json @@ -117,7 +117,7 @@ "idx": 1, "index_web_pages_for_search": 1, "links": [], - "modified": "2022-02-28 22:24:12.377693", + "modified": "2024-03-23 16:03:35.631784", "modified_by": "Administrator", "module": "Custom", "name": "Property Setter", @@ -147,7 +147,7 @@ } ], "search_fields": "doc_type,property", - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [], "track_changes": 1 diff --git a/frappe/custom/fixtures/temp_doctype.json b/frappe/custom/fixtures/temp_doctype.json index 20b3d9caa9..08d9c230c5 100644 --- a/frappe/custom/fixtures/temp_doctype.json +++ b/frappe/custom/fixtures/temp_doctype.json @@ -24,7 +24,7 @@ "allow_import": 0, "allow_events_in_timeline": 0, "allow_auto_repeat": 0, - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "document_type": "", "show_preview_popup": 0, diff --git a/frappe/custom/fixtures/temp_singles.json b/frappe/custom/fixtures/temp_singles.json index 723f47d7ac..a7a695117c 100644 --- a/frappe/custom/fixtures/temp_singles.json +++ b/frappe/custom/fixtures/temp_singles.json @@ -24,7 +24,7 @@ "allow_import": 0, "allow_events_in_timeline": 0, "allow_auto_repeat": 0, - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "document_type": "", "show_preview_popup": 0, diff --git a/frappe/database/__init__.py b/frappe/database/__init__.py index 12348e2f99..cf911f11e2 100644 --- a/frappe/database/__init__.py +++ b/frappe/database/__init__.py @@ -8,7 +8,7 @@ from shutil import which from frappe.database.database import savepoint -def setup_database(force, verbose=None, no_mariadb_socket=False): +def setup_database(force, verbose=None, mariadb_user_host_login_scope=None): import frappe if frappe.conf.db_type == "postgres": @@ -18,9 +18,7 @@ def setup_database(force, verbose=None, no_mariadb_socket=False): else: import frappe.database.mariadb.setup_db - return frappe.database.mariadb.setup_db.setup_database( - force, verbose, no_mariadb_socket=no_mariadb_socket - ) + return frappe.database.mariadb.setup_db.setup_database(force, verbose, mariadb_user_host_login_scope) def bootstrap_database(verbose=None, source_sql=None): @@ -49,20 +47,26 @@ def drop_user_and_database(db_name, db_user): return frappe.database.mariadb.setup_db.drop_user_and_database(db_name, db_user) -def get_db(host=None, user=None, password=None, port=None, cur_db_name=None): +def get_db(socket=None, host=None, user=None, password=None, port=None, cur_db_name=None): import frappe if frappe.conf.db_type == "postgres": import frappe.database.postgres.database - return frappe.database.postgres.database.PostgresDatabase(host, user, password, port, cur_db_name) + return frappe.database.postgres.database.PostgresDatabase( + socket, host, user, password, port, cur_db_name + ) else: import frappe.database.mariadb.database - return frappe.database.mariadb.database.MariaDBDatabase(host, user, password, port, cur_db_name) + return frappe.database.mariadb.database.MariaDBDatabase( + socket, host, user, password, port, cur_db_name + ) -def get_command(host=None, port=None, user=None, password=None, db_name=None, extra=None, dump=False): +def get_command( + socket=None, host=None, port=None, user=None, password=None, db_name=None, extra=None, dump=False +): import frappe if frappe.conf.db_type == "postgres": @@ -71,7 +75,11 @@ def get_command(host=None, port=None, user=None, password=None, db_name=None, ex else: bin, bin_name = which("psql"), "psql" - if password: + if socket and password: + conn_string = f"postgresql://{user}:{password}@/{db_name}?host={socket}" + elif socket: + conn_string = f"postgresql://{user}@/{db_name}?host={socket}" + elif password: conn_string = f"postgresql://{user}:{password}@{host}:{port}/{db_name}" else: conn_string = f"postgresql://{user}@{host}:{port}/{db_name}" @@ -87,11 +95,12 @@ def get_command(host=None, port=None, user=None, password=None, db_name=None, ex else: bin, bin_name = which("mariadb") or which("mysql"), "mariadb" - command = [ - f"--user={user}", - f"--host={host}", - f"--port={port}", - ] + command = [f"--user={user}"] + if socket: + command.append(f"--socket={socket}") + elif host and port: + command.append(f"--host={host}") + command.append(f"--port={port}") if password: command.append(f"--password={password}") diff --git a/frappe/database/database.py b/frappe/database/database.py index d56d35e5be..15b498d090 100644 --- a/frappe/database/database.py +++ b/frappe/database/database.py @@ -7,6 +7,7 @@ import random import re import string import traceback +import warnings from collections.abc import Iterable, Sequence from contextlib import contextmanager, suppress from time import time @@ -47,6 +48,11 @@ MULTI_WORD_PATTERN = re.compile(r'([`"])(tab([A-Z]\w+)( [A-Z]\w+)+)\1') SQL_ITERATOR_BATCH_SIZE = 100 +TRANSACTION_DISABLED_MSG = """Commit/rollback are disabled during certain events. This command will +be ignored. Commit/Rollback from here WILL CAUSE very hard to debug problems with atomicity and +concurrent data update bugs.""" + + class Database: """ Open a database connection with the given parmeters, if use_default is True, use the @@ -69,6 +75,7 @@ class Database: def __init__( self, + socket=None, host=None, user=None, password=None, @@ -76,6 +83,7 @@ class Database: cur_db_name=None, ): self.setup_type_map() + self.socket = socket self.host = host self.port = port self.user = user @@ -95,8 +103,12 @@ class Database: self.before_rollback = CallbackManager() self.after_rollback = CallbackManager() - # self.db_type: str - # self.last_query (lazy) attribute of last sql query executed + # Setting this to true will disable full rollback and commit + # You can still use savepoint with partial rollback. + self._disable_transaction_control = 0 + + # self.db_type: str + # self.last_query (lazy) attribute of last sql query executed def setup_type_map(self): pass @@ -379,15 +391,15 @@ class Database: """Wrap the object with str to generate mogrified query.""" return LazyMogrify(query, values) - def explain_query(self, query, values=None): + def explain_query(self, query, values=EmptyQueryValues): """Print `EXPLAIN` in error log.""" frappe.log("--- query explain ---") try: - self._cursor.execute(f"EXPLAIN {query}", values) + results = self.sql(f"EXPLAIN {query}", values, as_dict=1) except Exception as e: frappe.log(f"error in query explain: {e}") else: - frappe.log(json.dumps(self.fetch_as_dict(), indent=1)) + frappe.log(json.dumps(results, indent=1)) frappe.log("--- query explain end ---") def sql_list(self, query, values=(), debug=False, **kwargs): @@ -403,8 +415,11 @@ class Database: def sql_ddl(self, query, debug=False): """Commit and execute a query. DDL (Data Definition Language) queries that alter schema autocommit in MariaDB.""" + transaction_control = self._disable_transaction_control + self._disable_transaction_control = 0 self.commit() self.sql(query, debug=debug) + self._disable_transaction_control = transaction_control def check_transaction_status(self, query: str): """Raises exception if more than 200,000 `INSERT`, `UPDATE` queries are @@ -609,7 +624,7 @@ class Database: if (filters is not None) and (filters != doctype or doctype == "DocType"): try: if order_by: - order_by = "modified" if order_by == DefaultOrderBy else order_by + order_by = "creation" if order_by == DefaultOrderBy else order_by out = self._get_values_from_table( fields=fields, filters=filters, @@ -1028,6 +1043,10 @@ class Database: def commit(self): """Commit current transaction. Calls SQL `COMMIT`.""" + if self._disable_transaction_control: + warnings.warn(message=TRANSACTION_DISABLED_MSG, stacklevel=2) + return + self.before_rollback.reset() self.after_rollback.reset() @@ -1042,7 +1061,7 @@ class Database: """`ROLLBACK` current transaction. Optionally rollback to a known save_point.""" if save_point: self.sql(f"rollback to savepoint {save_point}") - else: + elif not self._disable_transaction_control: self.before_commit.reset() self.after_commit.reset() @@ -1052,6 +1071,8 @@ class Database: self.begin() self.after_rollback.run() + else: + warnings.warn(message=TRANSACTION_DISABLED_MSG, stacklevel=2) def savepoint(self, save_point): """Savepoints work as a nested transaction. diff --git a/frappe/database/db_manager.py b/frappe/database/db_manager.py index ef399aac6c..558550d1ac 100644 --- a/frappe/database/db_manager.py +++ b/frappe/database/db_manager.py @@ -25,7 +25,7 @@ class DbManager: def create_database(self, target): if target in self.get_database_list(): self.drop_database(target) - self.db.sql(f"CREATE DATABASE `{target}`") + self.db.sql(f"CREATE DATABASE `{target}` CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci") def drop_database(self, target): self.db.sql_ddl(f"DROP DATABASE IF EXISTS `{target}`") @@ -70,6 +70,7 @@ class DbManager: source = ["<", source] bin, args, bin_name = get_command( + socket=frappe.conf.db_socket, host=frappe.conf.db_host, port=frappe.conf.db_port, user=user, diff --git a/frappe/database/mariadb/database.py b/frappe/database/mariadb/database.py index 4ac1c092c9..b7deed266e 100644 --- a/frappe/database/mariadb/database.py +++ b/frappe/database/mariadb/database.py @@ -116,9 +116,7 @@ class MariaDBConnectionUtil: def get_connection_settings(self) -> dict: conn_settings = { - "host": self.host, "user": self.user, - "password": self.password, "conv": self.CONVERSION_MAP, "charset": "utf8mb4", "use_unicode": True, @@ -127,8 +125,15 @@ class MariaDBConnectionUtil: if self.cur_db_name: conn_settings["database"] = self.cur_db_name - if self.port: - conn_settings["port"] = int(self.port) + if self.socket: + conn_settings["unix_socket"] = self.socket + else: + conn_settings["host"] = self.host + if self.port: + conn_settings["port"] = int(self.port) + + if self.password: + conn_settings["password"] = self.password if frappe.conf.local_infile: conn_settings["local_infile"] = frappe.conf.local_infile @@ -353,6 +358,7 @@ class MariaDBDatabase(MariaDBConnectionUtil, MariaDBExceptionUtil, Database): .where( (information_schema.columns.table_name == table) & (information_schema.columns.column_name == column) + & (information_schema.columns.table_schema == self.cur_db_name) ) .run(pluck=True)[0] ) diff --git a/frappe/database/mariadb/framework_mariadb.sql b/frappe/database/mariadb/framework_mariadb.sql index 91ef69645c..d9f5c9edc5 100644 --- a/frappe/database/mariadb/framework_mariadb.sql +++ b/frappe/database/mariadb/framework_mariadb.sql @@ -133,8 +133,7 @@ CREATE TABLE `tabDocType Action` ( `action_type` varchar(140) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `action` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`name`), - KEY `parent` (`parent`), - KEY `modified` (`modified`) + KEY `parent` (`parent`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- @@ -157,8 +156,7 @@ CREATE TABLE `tabDocType Link` ( `link_doctype` varchar(140) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `link_fieldname` varchar(140) COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`name`), - KEY `parent` (`parent`), - KEY `modified` (`modified`) + KEY `parent` (`parent`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- diff --git a/frappe/database/mariadb/schema.py b/frappe/database/mariadb/schema.py index 22b88b2639..d1ec513026 100644 --- a/frappe/database/mariadb/schema.py +++ b/frappe/database/mariadb/schema.py @@ -33,7 +33,10 @@ class MariaDBTable(DBTable): ] else: # parent types - additional_definitions.append("index modified(modified)") + additional_definitions.append("index creation(creation)") + if self.meta.sort_field == "modified": + # Support old doctype default by indexing it, also 2nd popular choice. + additional_definitions.append("index modified(modified)") # creating sequence(s) if not self.meta.issingle and self.meta.autoname == "autoincrement": @@ -44,6 +47,9 @@ class MariaDBTable(DBTable): # issue link: https://jira.mariadb.org/browse/MDEV-20070 name_column = "name bigint primary key" + elif not self.meta.issingle and self.meta.autoname == "UUID": + name_column = "name uuid primary key" + additional_definitions = ",\n".join(additional_definitions) # create table @@ -73,6 +79,9 @@ class MariaDBTable(DBTable): f"MODIFY `{col.fieldname}` {col.get_definition(for_modification=True)}" for col in columns_to_modify ] + if alter_pk := self.alter_primary_key(): + modify_column_query.append(alter_pk) + modify_column_query.extend( [f"ADD UNIQUE INDEX IF NOT EXISTS {col.fieldname} (`{col.fieldname}`)" for col in self.add_unique] ) @@ -81,6 +90,12 @@ class MariaDBTable(DBTable): for col in self.add_index if not frappe.db.get_column_index(self.table_name, col.fieldname, unique=False) ] + + if self.meta.sort_field == "modified" and not frappe.db.get_column_index( + self.table_name, "modified", unique=False + ): + add_index_query.append("ADD INDEX `modified`(`modified`)") + drop_index_query = [] for col in {*self.drop_index, *self.drop_unique}: @@ -129,3 +144,20 @@ class MariaDBTable(DBTable): ) raise + + def alter_primary_key(self) -> str | None: + # If there are no values in table allow migrating to UUID from varchar + autoname = self.meta.autoname + if autoname == "UUID" and frappe.db.get_column_type(self.doctype, "name") != "uuid": + if not frappe.db.get_value(self.doctype, {}, order_by=None): + return "modify name uuid" + else: + frappe.throw( + _("Primary key of doctype {0} can not be changed as there are existing values.").format( + self.doctype + ) + ) + + # Reverting from UUID to VARCHAR + if autoname != "UUID" and frappe.db.get_column_type(self.doctype, "name") == "uuid": + return f"modify name varchar({frappe.db.VARCHAR_LEN})" diff --git a/frappe/database/mariadb/setup_db.py b/frappe/database/mariadb/setup_db.py index 96e80e741c..95cd1dc824 100644 --- a/frappe/database/mariadb/setup_db.py +++ b/frappe/database/mariadb/setup_db.py @@ -1,15 +1,11 @@ import os +import sys import click import frappe from frappe.database.db_manager import DbManager -REQUIRED_MARIADB_CONFIG = { - "character_set_server": "utf8mb4", - "collation_server": "utf8mb4_unicode_ci", -} - def get_mariadb_variables(): return frappe._dict(frappe.db.sql("show variables")) @@ -23,7 +19,7 @@ def get_mariadb_version(version_string: str = ""): return version.rsplit(".", 1) -def setup_database(force, verbose, no_mariadb_socket=False): +def setup_database(force, verbose, mariadb_user_host_login_scope=None): frappe.local.session = frappe._dict({"user": "Administrator"}) db_user = frappe.conf.db_user @@ -31,8 +27,9 @@ def setup_database(force, verbose, no_mariadb_socket=False): root_conn = get_root_connection() dbman = DbManager(root_conn) dbman_kwargs = {} - if no_mariadb_socket: - dbman_kwargs["host"] = "%" + + if mariadb_user_host_login_scope is not None: + dbman_kwargs["host"] = mariadb_user_host_login_scope dbman.create_user(db_user, frappe.conf.db_password, **dbman_kwargs) if verbose: @@ -41,7 +38,8 @@ def setup_database(force, verbose, no_mariadb_socket=False): if force or (db_name not in dbman.get_database_list()): dbman.drop_database(db_name) else: - raise Exception(f"Database {db_name} already exists") + print(f"Database {db_name} already exists, please drop it manually or pass `--force`.") + sys.exit(1) dbman.create_database(db_name) if verbose: @@ -71,9 +69,7 @@ def bootstrap_database(verbose, source_sql=None): import sys frappe.connect() - if not check_database_settings(): - print("Database settings do not match expected values; stopping database setup.") - sys.exit(1) + check_compatible_versions() import_db_from_sql(source_sql, verbose) @@ -105,30 +101,6 @@ def import_db_from_sql(source_sql=None, verbose=False): print("Imported from database %s" % source_sql) -def check_database_settings(): - check_compatible_versions() - - # Check each expected value vs. actuals: - mariadb_variables = get_mariadb_variables() - result = True - for key, expected_value in REQUIRED_MARIADB_CONFIG.items(): - if mariadb_variables.get(key) != expected_value: - print(f"For key {key}. Expected value {expected_value}, found value {mariadb_variables.get(key)}") - result = False - - if not result: - print( - ( - "{sep2}Creation of your site - {site} failed because MariaDB is not properly {sep}" - "configured.{sep2}" - "Please verify the above settings in MariaDB's my.cnf. Restart MariaDB.{sep}" - "And then run `bench new-site {site}` again.{sep2}" - ).format(site=frappe.local.site, sep2="\n\n", sep="\n") - ) - - return result - - def check_compatible_versions(): try: version = get_mariadb_version() @@ -164,6 +136,7 @@ def get_root_connection(): frappe.flags.root_password = frappe.conf.get("root_password") or getpass("MySQL root password: ") frappe.local.flags.root_connection = frappe.database.get_db( + socket=frappe.conf.db_socket, host=frappe.conf.db_host, port=frappe.conf.db_port, user=frappe.flags.root_login, diff --git a/frappe/database/postgres/database.py b/frappe/database/postgres/database.py index 78763fe2f7..aa64b74cb7 100644 --- a/frappe/database/postgres/database.py +++ b/frappe/database/postgres/database.py @@ -168,10 +168,12 @@ class PostgresDatabase(PostgresExceptionUtil, Database): conn_settings = { "dbname": self.cur_db_name, "user": self.user, - "host": self.host, - "password": self.password, + # libpg defaults to default socket if not specified + "host": self.host or self.socket, } - if self.port: + if self.password: + conn_settings["password"] = self.password + if not self.socket and self.port: conn_settings["port"] = self.port conn = psycopg2.connect(**conn_settings) diff --git a/frappe/database/postgres/schema.py b/frappe/database/postgres/schema.py index 018de93f41..926f9e0edd 100644 --- a/frappe/database/postgres/schema.py +++ b/frappe/database/postgres/schema.py @@ -34,6 +34,9 @@ class PostgresTable(DBTable): frappe.db.create_sequence(self.doctype, check_not_exists=True) name_column = "name bigint primary key" + elif not self.meta.issingle and self.meta.autoname == "UUID": + name_column = "name uuid primary key" + # TODO: set docstatus length # create table frappe.db.sql( @@ -91,6 +94,9 @@ class PostgresTable(DBTable): ) ) + if alter_pk := self.alter_primary_key(): + query.append(alter_pk) + for col in self.set_default: if col.fieldname == "name": continue @@ -181,3 +187,20 @@ class PostgresTable(DBTable): ) else: raise e + + def alter_primary_key(self) -> str | None: + # If there are no values in table allow migrating to UUID from varchar + autoname = self.meta.autoname + if autoname == "UUID" and frappe.db.get_column_type(self.doctype, "name") != "uuid": + if not frappe.db.get_value(self.doctype, {}, order_by=None): + return "alter column `name` TYPE uuid USING name::uuid" + else: + frappe.throw( + _("Primary key of doctype {0} can not be changed as there are existing values.").format( + self.doctype + ) + ) + + # Reverting from UUID to VARCHAR + if autoname != "UUID" and frappe.db.get_column_type(self.doctype, "name") == "uuid": + return f"alter column `name` TYPE varchar({frappe.db.VARCHAR_LEN})" diff --git a/frappe/database/postgres/setup_db.py b/frappe/database/postgres/setup_db.py index fe46cd3998..2c5b76169e 100644 --- a/frappe/database/postgres/setup_db.py +++ b/frappe/database/postgres/setup_db.py @@ -73,6 +73,7 @@ def get_root_connection(): ) frappe.local.flags.root_connection = frappe.database.get_db( + socket=frappe.conf.db_socket, host=frappe.conf.db_host, port=frappe.conf.db_port, user=frappe.flags.root_login, diff --git a/frappe/desk/doctype/bulk_update/bulk_update.json b/frappe/desk/doctype/bulk_update/bulk_update.json index 93458516fd..a678a99e21 100644 --- a/frappe/desk/doctype/bulk_update/bulk_update.json +++ b/frappe/desk/doctype/bulk_update/bulk_update.json @@ -52,7 +52,7 @@ ], "issingle": 1, "links": [], - "modified": "2022-08-03 12:20:50.742376", + "modified": "2024-03-23 16:01:29.575802", "modified_by": "Administrator", "module": "Desk", "name": "Bulk Update", @@ -70,7 +70,7 @@ } ], "quick_entry": 1, - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [], "track_changes": 1 diff --git a/frappe/desk/doctype/calendar_view/calendar_view.json b/frappe/desk/doctype/calendar_view/calendar_view.json index 8149446a3e..445c46a8e1 100644 --- a/frappe/desk/doctype/calendar_view/calendar_view.json +++ b/frappe/desk/doctype/calendar_view/calendar_view.json @@ -53,7 +53,7 @@ } ], "links": [], - "modified": "2023-08-28 22:29:39.662726", + "modified": "2024-03-23 16:01:29.668268", "modified_by": "Administrator", "module": "Desk", "name": "Calendar View", @@ -77,7 +77,7 @@ "role": "Desk User" } ], - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [] } \ No newline at end of file diff --git a/frappe/desk/doctype/console_log/console_log.json b/frappe/desk/doctype/console_log/console_log.json index a2955bf814..e06ddacf51 100644 --- a/frappe/desk/doctype/console_log/console_log.json +++ b/frappe/desk/doctype/console_log/console_log.json @@ -35,7 +35,7 @@ ], "index_web_pages_for_search": 1, "links": [], - "modified": "2024-03-12 20:35:43.921009", + "modified": "2024-03-23 16:01:30.816591", "modified_by": "Administrator", "module": "Desk", "name": "Console Log", @@ -55,7 +55,7 @@ } ], "quick_entry": 1, - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [], "track_changes": 1 diff --git a/frappe/desk/doctype/custom_html_block/custom_html_block.json b/frappe/desk/doctype/custom_html_block/custom_html_block.json index f65ba5177d..6d8aadfbc4 100644 --- a/frappe/desk/doctype/custom_html_block/custom_html_block.json +++ b/frappe/desk/doctype/custom_html_block/custom_html_block.json @@ -93,7 +93,7 @@ ], "index_web_pages_for_search": 1, "links": [], - "modified": "2023-08-28 20:25:00.740795", + "modified": "2024-03-23 16:02:15.380899", "modified_by": "Administrator", "module": "Desk", "name": "Custom HTML Block", @@ -147,7 +147,7 @@ "write": 1 } ], - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [], "track_changes": 1 diff --git a/frappe/desk/doctype/dashboard/dashboard.json b/frappe/desk/doctype/dashboard/dashboard.json index 5b6f4eba86..294abb64c3 100644 --- a/frappe/desk/doctype/dashboard/dashboard.json +++ b/frappe/desk/doctype/dashboard/dashboard.json @@ -67,7 +67,7 @@ } ], "links": [], - "modified": "2023-08-28 22:35:02.993039", + "modified": "2024-03-23 16:02:16.071715", "modified_by": "Administrator", "module": "Desk", "name": "Dashboard", @@ -108,7 +108,7 @@ } ], "quick_entry": 1, - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [], "title_field": "dashboard_name", diff --git a/frappe/desk/doctype/dashboard_chart/dashboard_chart.json b/frappe/desk/doctype/dashboard_chart/dashboard_chart.json index a649633049..d9593664fe 100644 --- a/frappe/desk/doctype/dashboard_chart/dashboard_chart.json +++ b/frappe/desk/doctype/dashboard_chart/dashboard_chart.json @@ -288,7 +288,7 @@ } ], "links": [], - "modified": "2023-09-18 13:41:05.263676", + "modified": "2024-03-23 16:02:16.230433", "modified_by": "Administrator", "module": "Desk", "name": "Dashboard Chart", @@ -329,7 +329,7 @@ "share": 1 } ], - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [], "track_changes": 1 diff --git a/frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json b/frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json index 6347be40ff..f70bacf476 100644 --- a/frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json +++ b/frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json @@ -24,14 +24,15 @@ ], "istable": 1, "links": [], - "modified": "2020-02-28 11:48:24.731946", + "modified": "2024-03-23 16:02:16.427669", "modified_by": "Administrator", "module": "Desk", "name": "Dashboard Chart Field", "owner": "Administrator", "permissions": [], "quick_entry": 1, - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", + "states": [], "track_changes": 1 } \ No newline at end of file diff --git a/frappe/desk/doctype/dashboard_chart_link/dashboard_chart_link.json b/frappe/desk/doctype/dashboard_chart_link/dashboard_chart_link.json index 51b5ed3036..520ebcd3c7 100644 --- a/frappe/desk/doctype/dashboard_chart_link/dashboard_chart_link.json +++ b/frappe/desk/doctype/dashboard_chart_link/dashboard_chart_link.json @@ -28,14 +28,15 @@ ], "istable": 1, "links": [], - "modified": "2020-03-13 19:23:05.561687", + "modified": "2024-03-23 16:02:16.522316", "modified_by": "Administrator", "module": "Desk", "name": "Dashboard Chart Link", "owner": "Administrator", "permissions": [], "quick_entry": 1, - "sort_field": "modified", + "sort_field": "creation", "sort_order": "ASC", + "states": [], "track_changes": 1 } \ No newline at end of file diff --git a/frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json b/frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json index fbe0ae94f0..4e336d3e27 100644 --- a/frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json +++ b/frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json @@ -35,7 +35,7 @@ } ], "links": [], - "modified": "2020-06-26 18:00:37.421491", + "modified": "2024-03-23 16:02:16.623353", "modified_by": "Administrator", "module": "Desk", "name": "Dashboard Chart Source", @@ -63,7 +63,8 @@ "write": 1 } ], - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", + "states": [], "track_changes": 1 } \ No newline at end of file diff --git a/frappe/desk/doctype/dashboard_settings/dashboard_settings.json b/frappe/desk/doctype/dashboard_settings/dashboard_settings.json index 504cd4b6f2..86b77187e3 100644 --- a/frappe/desk/doctype/dashboard_settings/dashboard_settings.json +++ b/frappe/desk/doctype/dashboard_settings/dashboard_settings.json @@ -27,7 +27,7 @@ ], "in_create": 1, "links": [], - "modified": "2023-08-28 22:23:42.722543", + "modified": "2024-03-23 16:02:16.763875", "modified_by": "Administrator", "module": "Desk", "name": "Dashboard Settings", @@ -46,7 +46,7 @@ } ], "read_only": 1, - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [], "track_changes": 1 diff --git a/frappe/desk/doctype/desktop_icon/desktop_icon.json b/frappe/desk/doctype/desktop_icon/desktop_icon.json index ef88346f53..1e42a6d468 100644 --- a/frappe/desk/doctype/desktop_icon/desktop_icon.json +++ b/frappe/desk/doctype/desktop_icon/desktop_icon.json @@ -147,7 +147,7 @@ ], "in_create": 1, "links": [], - "modified": "2022-08-03 12:20:50.577580", + "modified": "2024-03-23 16:02:17.847139", "modified_by": "Administrator", "module": "Desk", "name": "Desktop Icon", @@ -167,7 +167,7 @@ } ], "read_only": 1, - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [], "title_field": "module_name", diff --git a/frappe/desk/doctype/event/event.json b/frappe/desk/doctype/event/event.json index 9a4f63d618..d4af4861d3 100644 --- a/frappe/desk/doctype/event/event.json +++ b/frappe/desk/doctype/event/event.json @@ -295,7 +295,7 @@ "icon": "fa fa-calendar", "idx": 1, "links": [], - "modified": "2024-01-11 07:11:17.467503", + "modified": "2024-03-23 16:03:25.511756", "modified_by": "Administrator", "module": "Desk", "name": "Event", @@ -328,7 +328,7 @@ ], "read_only": 1, "sender_field": "sender", - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [], "subject_field": "subject", diff --git a/frappe/desk/doctype/event_participants/event_participants.json b/frappe/desk/doctype/event_participants/event_participants.json index bbb0a24f3e..454df5dda5 100644 --- a/frappe/desk/doctype/event_participants/event_participants.json +++ b/frappe/desk/doctype/event_participants/event_participants.json @@ -35,14 +35,14 @@ ], "istable": 1, "links": [], - "modified": "2022-10-18 17:49:33.549459", + "modified": "2024-03-23 16:03:25.717745", "modified_by": "Administrator", "module": "Desk", "name": "Event Participants", "owner": "Administrator", "permissions": [], "quick_entry": 1, - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [], "track_changes": 1 diff --git a/frappe/desk/doctype/form_tour/form_tour.json b/frappe/desk/doctype/form_tour/form_tour.json index 6c049998c7..0bb4f9c53c 100644 --- a/frappe/desk/doctype/form_tour/form_tour.json +++ b/frappe/desk/doctype/form_tour/form_tour.json @@ -178,7 +178,7 @@ ], "index_web_pages_for_search": 1, "links": [], - "modified": "2023-08-28 20:24:42.594360", + "modified": "2024-03-23 16:03:25.983797", "modified_by": "Administrator", "module": "Desk", "name": "Form Tour", @@ -202,7 +202,7 @@ "role": "Desk User" } ], - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [], "track_changes": 1 diff --git a/frappe/desk/doctype/form_tour_step/form_tour_step.json b/frappe/desk/doctype/form_tour_step/form_tour_step.json index 26209ccabe..81c8a60bdb 100644 --- a/frappe/desk/doctype/form_tour_step/form_tour_step.json +++ b/frappe/desk/doctype/form_tour_step/form_tour_step.json @@ -217,13 +217,13 @@ "index_web_pages_for_search": 1, "istable": 1, "links": [], - "modified": "2023-05-23 13:09:15.923043", + "modified": "2024-03-23 16:03:26.150327", "modified_by": "Administrator", "module": "Desk", "name": "Form Tour Step", "owner": "Administrator", "permissions": [], - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [], "track_changes": 1 diff --git a/frappe/desk/doctype/global_search_doctype/global_search_doctype.json b/frappe/desk/doctype/global_search_doctype/global_search_doctype.json index 648e8f1824..fd380ab47b 100644 --- a/frappe/desk/doctype/global_search_doctype/global_search_doctype.json +++ b/frappe/desk/doctype/global_search_doctype/global_search_doctype.json @@ -1,4 +1,5 @@ { + "actions": [], "creation": "2019-09-13 21:33:55.551941", "doctype": "DocType", "editable_grid": 1, @@ -16,14 +17,16 @@ } ], "istable": 1, - "modified": "2019-09-18 17:59:44.354052", + "links": [], + "modified": "2024-03-23 16:03:26.489242", "modified_by": "Administrator", "module": "Desk", "name": "Global Search DocType", "owner": "Administrator", "permissions": [], "quick_entry": 1, - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", + "states": [], "track_changes": 1 } \ No newline at end of file diff --git a/frappe/desk/doctype/global_search_settings/global_search_settings.json b/frappe/desk/doctype/global_search_settings/global_search_settings.json index 6fa25f72b7..db21aefe22 100644 --- a/frappe/desk/doctype/global_search_settings/global_search_settings.json +++ b/frappe/desk/doctype/global_search_settings/global_search_settings.json @@ -1,4 +1,5 @@ { + "actions": [], "creation": "2019-09-03 16:08:21.333698", "doctype": "DocType", "editable_grid": 1, @@ -15,7 +16,8 @@ } ], "issingle": 1, - "modified": "2019-10-10 22:05:02.692689", + "links": [], + "modified": "2024-03-23 16:03:26.580482", "modified_by": "Administrator", "module": "Desk", "name": "Global Search Settings", @@ -33,7 +35,8 @@ } ], "quick_entry": 1, - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", + "states": [], "track_changes": 1 } \ No newline at end of file diff --git a/frappe/desk/doctype/kanban_board/kanban_board.json b/frappe/desk/doctype/kanban_board/kanban_board.json index 296aa010e8..f15b2e755b 100644 --- a/frappe/desk/doctype/kanban_board/kanban_board.json +++ b/frappe/desk/doctype/kanban_board/kanban_board.json @@ -84,7 +84,7 @@ } ], "links": [], - "modified": "2023-08-28 22:29:29.569670", + "modified": "2024-03-23 16:03:28.240133", "modified_by": "Administrator", "module": "Desk", "name": "Kanban Board", @@ -117,7 +117,7 @@ } ], "read_only": 1, - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [], "track_changes": 1 diff --git a/frappe/desk/doctype/kanban_board_column/kanban_board_column.json b/frappe/desk/doctype/kanban_board_column/kanban_board_column.json index c0acde5da5..8684b99867 100644 --- a/frappe/desk/doctype/kanban_board_column/kanban_board_column.json +++ b/frappe/desk/doctype/kanban_board_column/kanban_board_column.json @@ -41,14 +41,14 @@ ], "istable": 1, "links": [], - "modified": "2021-12-14 13:13:38.804259", + "modified": "2024-03-23 16:03:28.384170", "modified_by": "Administrator", "module": "Desk", "name": "Kanban Board Column", "owner": "Administrator", "permissions": [], "quick_entry": 1, - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [], "track_changes": 1 diff --git a/frappe/desk/doctype/list_filter/list_filter.json b/frappe/desk/doctype/list_filter/list_filter.json index c897aefeb8..2d029a3f6f 100644 --- a/frappe/desk/doctype/list_filter/list_filter.json +++ b/frappe/desk/doctype/list_filter/list_filter.json @@ -36,7 +36,7 @@ ], "in_create": 1, "links": [], - "modified": "2023-08-28 22:32:51.465521", + "modified": "2024-03-23 16:03:29.075357", "modified_by": "Administrator", "module": "Desk", "name": "List Filter", @@ -56,7 +56,7 @@ } ], "read_only": 1, - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [] } \ No newline at end of file diff --git a/frappe/desk/doctype/list_view_settings/list_view_settings.json b/frappe/desk/doctype/list_view_settings/list_view_settings.json index 69ea379e61..aa5a48a2d0 100644 --- a/frappe/desk/doctype/list_view_settings/list_view_settings.json +++ b/frappe/desk/doctype/list_view_settings/list_view_settings.json @@ -59,7 +59,7 @@ } ], "links": [], - "modified": "2023-02-14 14:46:43.764229", + "modified": "2024-03-23 16:03:29.188038", "modified_by": "Administrator", "module": "Desk", "name": "List View Settings", @@ -78,7 +78,7 @@ } ], "read_only": 1, - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [], "track_changes": 1 diff --git a/frappe/desk/doctype/module_onboarding/module_onboarding.json b/frappe/desk/doctype/module_onboarding/module_onboarding.json index 1eca83571b..4adda25c8e 100644 --- a/frappe/desk/doctype/module_onboarding/module_onboarding.json +++ b/frappe/desk/doctype/module_onboarding/module_onboarding.json @@ -82,7 +82,7 @@ } ], "links": [], - "modified": "2023-08-28 22:24:02.233272", + "modified": "2024-03-23 16:03:30.074327", "modified_by": "Administrator", "module": "Desk", "name": "Module Onboarding", @@ -111,7 +111,7 @@ } ], "read_only": 1, - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [], "track_changes": 1 diff --git a/frappe/desk/doctype/note/note.json b/frappe/desk/doctype/note/note.json index 4d60393d3f..989ae049e4 100644 --- a/frappe/desk/doctype/note/note.json +++ b/frappe/desk/doctype/note/note.json @@ -86,7 +86,7 @@ "icon": "fa fa-file-text", "idx": 1, "links": [], - "modified": "2023-12-08 15:52:37.525003", + "modified": "2024-03-23 16:03:31.284619", "modified_by": "Administrator", "module": "Desk", "name": "Note", @@ -140,7 +140,7 @@ } ], "quick_entry": 1, - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [], "title_field": "title", diff --git a/frappe/desk/doctype/note_seen_by/note_seen_by.json b/frappe/desk/doctype/note_seen_by/note_seen_by.json index 905a043284..16ec72dc30 100644 --- a/frappe/desk/doctype/note_seen_by/note_seen_by.json +++ b/frappe/desk/doctype/note_seen_by/note_seen_by.json @@ -19,14 +19,14 @@ ], "istable": 1, "links": [], - "modified": "2023-04-24 16:14:53.684098", + "modified": "2024-03-23 16:03:31.419397", "modified_by": "Administrator", "module": "Desk", "name": "Note Seen By", "owner": "Administrator", "permissions": [], "quick_entry": 1, - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [] } \ No newline at end of file diff --git a/frappe/desk/doctype/notification_log/notification_log.json b/frappe/desk/doctype/notification_log/notification_log.json index 9fbe7324d3..49b16266b4 100644 --- a/frappe/desk/doctype/notification_log/notification_log.json +++ b/frappe/desk/doctype/notification_log/notification_log.json @@ -103,7 +103,7 @@ "hide_toolbar": 1, "in_create": 1, "links": [], - "modified": "2023-11-18 22:40:12.145940", + "modified": "2024-03-23 16:03:31.715461", "modified_by": "Administrator", "module": "Desk", "name": "Notification Log", @@ -119,7 +119,7 @@ "share": 1 } ], - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [], "title_field": "subject", diff --git a/frappe/desk/doctype/notification_log/notification_log.py b/frappe/desk/doctype/notification_log/notification_log.py index 70e726fd97..70f31606c1 100644 --- a/frappe/desk/doctype/notification_log/notification_log.py +++ b/frappe/desk/doctype/notification_log/notification_log.py @@ -46,7 +46,7 @@ class NotificationLog(Document): from frappe.query_builder.functions import Now table = frappe.qb.DocType("Notification Log") - frappe.db.delete(table, filters=(table.modified < (Now() - Interval(days=days)))) + frappe.db.delete(table, filters=(table.creation < (Now() - Interval(days=days)))) def get_permission_query_conditions(for_user): @@ -165,7 +165,7 @@ def get_email_header(doc, language: str | None = None): @frappe.whitelist() def get_notification_logs(limit=20): notification_logs = frappe.db.get_list( - "Notification Log", fields=["*"], limit=limit, order_by="modified desc" + "Notification Log", fields=["*"], limit=limit, order_by="creation desc" ) users = [log.from_user for log in notification_logs] diff --git a/frappe/desk/doctype/notification_settings/notification_settings.json b/frappe/desk/doctype/notification_settings/notification_settings.json index b4ea0fd1b9..d64bf3fe4d 100644 --- a/frappe/desk/doctype/notification_settings/notification_settings.json +++ b/frappe/desk/doctype/notification_settings/notification_settings.json @@ -119,7 +119,7 @@ "in_create": 1, "index_web_pages_for_search": 1, "links": [], - "modified": "2023-12-01 12:46:15.490640", + "modified": "2024-03-23 16:03:31.952985", "modified_by": "Administrator", "module": "Desk", "name": "Notification Settings", @@ -139,7 +139,7 @@ } ], "read_only": 1, - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [], "track_changes": 1 diff --git a/frappe/desk/doctype/notification_subscribed_document/notification_subscribed_document.json b/frappe/desk/doctype/notification_subscribed_document/notification_subscribed_document.json index b3f4046163..16adb001fe 100644 --- a/frappe/desk/doctype/notification_subscribed_document/notification_subscribed_document.json +++ b/frappe/desk/doctype/notification_subscribed_document/notification_subscribed_document.json @@ -1,4 +1,5 @@ { + "actions": [], "creation": "2019-10-09 15:04:39.504787", "doctype": "DocType", "editable_grid": 1, @@ -17,14 +18,16 @@ } ], "istable": 1, - "modified": "2019-10-09 16:02:00.049237", + "links": [], + "modified": "2024-03-23 16:03:32.089922", "modified_by": "Administrator", "module": "Desk", "name": "Notification Subscribed Document", "owner": "Administrator", "permissions": [], "quick_entry": 1, - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", + "states": [], "track_changes": 1 } \ No newline at end of file diff --git a/frappe/desk/doctype/number_card/number_card.json b/frappe/desk/doctype/number_card/number_card.json index dbe5177bdb..2bbe9cb65d 100644 --- a/frappe/desk/doctype/number_card/number_card.json +++ b/frappe/desk/doctype/number_card/number_card.json @@ -203,7 +203,7 @@ } ], "links": [], - "modified": "2023-11-09 13:44:00.280846", + "modified": "2024-03-23 16:03:32.189147", "modified_by": "Administrator", "module": "Desk", "name": "Number Card", @@ -244,7 +244,7 @@ } ], "search_fields": "label, document_type", - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [], "title_field": "label", diff --git a/frappe/desk/doctype/number_card_link/number_card_link.json b/frappe/desk/doctype/number_card_link/number_card_link.json index ac035b32d8..17b6636a87 100644 --- a/frappe/desk/doctype/number_card_link/number_card_link.json +++ b/frappe/desk/doctype/number_card_link/number_card_link.json @@ -18,14 +18,15 @@ ], "istable": 1, "links": [], - "modified": "2020-04-19 17:45:11.878472", + "modified": "2024-03-23 16:03:32.353267", "modified_by": "Administrator", "module": "Desk", "name": "Number Card Link", "owner": "Administrator", "permissions": [], "quick_entry": 1, - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", + "states": [], "track_changes": 1 } \ No newline at end of file diff --git a/frappe/desk/doctype/onboarding_permission/onboarding_permission.json b/frappe/desk/doctype/onboarding_permission/onboarding_permission.json index f2a9dc35ce..bebe379abc 100644 --- a/frappe/desk/doctype/onboarding_permission/onboarding_permission.json +++ b/frappe/desk/doctype/onboarding_permission/onboarding_permission.json @@ -19,14 +19,15 @@ ], "istable": 1, "links": [], - "modified": "2020-04-30 18:28:40.423802", + "modified": "2024-03-23 16:03:32.987560", "modified_by": "Administrator", "module": "Desk", "name": "Onboarding Permission", "owner": "Administrator", "permissions": [], "quick_entry": 1, - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", + "states": [], "track_changes": 1 } \ No newline at end of file diff --git a/frappe/desk/doctype/onboarding_step/onboarding_step.json b/frappe/desk/doctype/onboarding_step/onboarding_step.json index f81550b352..b16ee581e4 100644 --- a/frappe/desk/doctype/onboarding_step/onboarding_step.json +++ b/frappe/desk/doctype/onboarding_step/onboarding_step.json @@ -217,7 +217,7 @@ } ], "links": [], - "modified": "2023-08-28 22:23:48.174317", + "modified": "2024-03-23 16:03:33.078443", "modified_by": "Administrator", "module": "Desk", "name": "Onboarding Step", @@ -248,7 +248,7 @@ ], "quick_entry": 1, "read_only": 1, - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [], "track_changes": 1 diff --git a/frappe/desk/doctype/onboarding_step_map/onboarding_step_map.json b/frappe/desk/doctype/onboarding_step_map/onboarding_step_map.json index e501a0b143..9f39202e62 100644 --- a/frappe/desk/doctype/onboarding_step_map/onboarding_step_map.json +++ b/frappe/desk/doctype/onboarding_step_map/onboarding_step_map.json @@ -19,14 +19,15 @@ ], "istable": 1, "links": [], - "modified": "2020-04-28 22:06:09.503406", + "modified": "2024-03-23 16:03:33.218395", "modified_by": "Administrator", "module": "Desk", "name": "Onboarding Step Map", "owner": "Administrator", "permissions": [], "quick_entry": 1, - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", + "states": [], "track_changes": 1 } \ No newline at end of file diff --git a/frappe/desk/doctype/route_history/route_history.json b/frappe/desk/doctype/route_history/route_history.json index 0b96277431..1f9e8d2fe3 100644 --- a/frappe/desk/doctype/route_history/route_history.json +++ b/frappe/desk/doctype/route_history/route_history.json @@ -31,7 +31,7 @@ ], "in_create": 1, "links": [], - "modified": "2023-12-04 04:41:32.448331", + "modified": "2024-03-23 16:03:37.217673", "modified_by": "Administrator", "module": "Desk", "name": "Route History", @@ -47,7 +47,7 @@ "share": 1 } ], - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [], "title_field": "route" diff --git a/frappe/desk/doctype/route_history/route_history.py b/frappe/desk/doctype/route_history/route_history.py index 5c0c37d4a7..ff64636b71 100644 --- a/frappe/desk/doctype/route_history/route_history.py +++ b/frappe/desk/doctype/route_history/route_history.py @@ -25,7 +25,7 @@ class RouteHistory(Document): from frappe.query_builder.functions import Now table = frappe.qb.DocType("Route History") - frappe.db.delete(table, filters=(table.modified < (Now() - Interval(days=days)))) + frappe.db.delete(table, filters=(table.creation < (Now() - Interval(days=days)))) @frappe.whitelist() diff --git a/frappe/desk/doctype/system_console/system_console.json b/frappe/desk/doctype/system_console/system_console.json index 9573e23b52..a59ab01b0b 100644 --- a/frappe/desk/doctype/system_console/system_console.json +++ b/frappe/desk/doctype/system_console/system_console.json @@ -86,7 +86,7 @@ "index_web_pages_for_search": 1, "issingle": 1, "links": [], - "modified": "2023-11-03 13:02:00.706806", + "modified": "2024-03-23 16:03:39.355553", "modified_by": "Administrator", "module": "Desk", "name": "System Console", @@ -102,8 +102,8 @@ } ], "quick_entry": 1, - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [], "track_changes": 1 -} +} \ No newline at end of file diff --git a/frappe/desk/doctype/tag/tag.json b/frappe/desk/doctype/tag/tag.json index ad9838d10f..5385a89c72 100644 --- a/frappe/desk/doctype/tag/tag.json +++ b/frappe/desk/doctype/tag/tag.json @@ -1,4 +1,5 @@ { + "actions": [], "allow_rename": 1, "autoname": "Prompt", "creation": "2016-05-25 09:43:44.767581", @@ -15,7 +16,8 @@ "label": "Description" } ], - "modified": "2019-09-25 17:47:41.712237", + "links": [], + "modified": "2024-03-23 16:03:39.682626", "modified_by": "Administrator", "module": "Desk", "name": "Tag", @@ -45,6 +47,7 @@ "write": 1 } ], - "sort_field": "modified", - "sort_order": "DESC" -} + "sort_field": "creation", + "sort_order": "DESC", + "states": [] +} \ No newline at end of file diff --git a/frappe/desk/doctype/tag_link/tag_link.json b/frappe/desk/doctype/tag_link/tag_link.json index 9142279fa3..c80ef8603b 100644 --- a/frappe/desk/doctype/tag_link/tag_link.json +++ b/frappe/desk/doctype/tag_link/tag_link.json @@ -46,7 +46,7 @@ } ], "links": [], - "modified": "2021-09-20 16:53:37.217998", + "modified": "2024-03-23 16:03:39.781828", "modified_by": "Administrator", "module": "Desk", "name": "Tag Link", @@ -77,7 +77,8 @@ } ], "read_only": 1, - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", + "states": [], "track_changes": 1 } \ No newline at end of file diff --git a/frappe/desk/doctype/todo/todo.json b/frappe/desk/doctype/todo/todo.json index c3b534d272..3186a0a846 100644 --- a/frappe/desk/doctype/todo/todo.json +++ b/frappe/desk/doctype/todo/todo.json @@ -161,7 +161,7 @@ "icon": "fa fa-check", "idx": 2, "links": [], - "modified": "2023-10-05 07:44:38.476400", + "modified": "2024-03-23 16:03:58.758787", "modified_by": "Administrator", "module": "Desk", "name": "ToDo", @@ -193,10 +193,11 @@ "quick_entry": 1, "search_fields": "description, reference_type, reference_name", "sender_field": "sender", - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", + "states": [], "subject_field": "description", "title_field": "description", "track_changes": 1, "track_seen": 1 -} +} \ No newline at end of file diff --git a/frappe/desk/doctype/workspace/workspace.json b/frappe/desk/doctype/workspace/workspace.json index e4f58b570a..bd488aadf0 100644 --- a/frappe/desk/doctype/workspace/workspace.json +++ b/frappe/desk/doctype/workspace/workspace.json @@ -219,7 +219,7 @@ ], "in_create": 1, "links": [], - "modified": "2023-08-25 15:04:03.419848", + "modified": "2024-03-23 16:04:05.604044", "modified_by": "Administrator", "module": "Desk", "name": "Workspace", @@ -239,7 +239,7 @@ "write": 1 } ], - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [], "track_changes": 1 diff --git a/frappe/desk/doctype/workspace_chart/workspace_chart.json b/frappe/desk/doctype/workspace_chart/workspace_chart.json index 0d800496af..39db7bd48c 100644 --- a/frappe/desk/doctype/workspace_chart/workspace_chart.json +++ b/frappe/desk/doctype/workspace_chart/workspace_chart.json @@ -26,14 +26,15 @@ ], "istable": 1, "links": [], - "modified": "2021-01-12 13:13:25.781925", + "modified": "2024-03-23 16:04:05.810019", "modified_by": "Administrator", "module": "Desk", "name": "Workspace Chart", "owner": "Administrator", "permissions": [], "quick_entry": 1, - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", + "states": [], "track_changes": 1 } \ No newline at end of file diff --git a/frappe/desk/doctype/workspace_custom_block/workspace_custom_block.json b/frappe/desk/doctype/workspace_custom_block/workspace_custom_block.json index 090719de3a..2c2b70d183 100644 --- a/frappe/desk/doctype/workspace_custom_block/workspace_custom_block.json +++ b/frappe/desk/doctype/workspace_custom_block/workspace_custom_block.json @@ -27,13 +27,13 @@ "index_web_pages_for_search": 1, "istable": 1, "links": [], - "modified": "2023-05-17 14:50:45.575609", + "modified": "2024-03-23 16:04:05.916601", "modified_by": "Administrator", "module": "Desk", "name": "Workspace Custom Block", "owner": "Administrator", "permissions": [], - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [] } \ No newline at end of file diff --git a/frappe/desk/doctype/workspace_link/workspace_link.json b/frappe/desk/doctype/workspace_link/workspace_link.json index 5f0a082a83..e11f606b0e 100644 --- a/frappe/desk/doctype/workspace_link/workspace_link.json +++ b/frappe/desk/doctype/workspace_link/workspace_link.json @@ -121,14 +121,14 @@ "index_web_pages_for_search": 1, "istable": 1, "links": [], - "modified": "2024-01-23 17:39:16.833318", + "modified": "2024-03-23 16:04:06.025772", "modified_by": "Administrator", "module": "Desk", "name": "Workspace Link", "owner": "Administrator", "permissions": [], "quick_entry": 1, - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [], "track_changes": 1 diff --git a/frappe/desk/doctype/workspace_number_card/workspace_number_card.json b/frappe/desk/doctype/workspace_number_card/workspace_number_card.json index f9e3865d74..02d9a9da44 100644 --- a/frappe/desk/doctype/workspace_number_card/workspace_number_card.json +++ b/frappe/desk/doctype/workspace_number_card/workspace_number_card.json @@ -28,13 +28,13 @@ "index_web_pages_for_search": 1, "istable": 1, "links": [], - "modified": "2023-02-15 01:16:26.216201", + "modified": "2024-03-23 16:04:06.156245", "modified_by": "Administrator", "module": "Desk", "name": "Workspace Number Card", "owner": "Administrator", "permissions": [], - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [] } \ No newline at end of file diff --git a/frappe/desk/doctype/workspace_quick_list/workspace_quick_list.json b/frappe/desk/doctype/workspace_quick_list/workspace_quick_list.json index 1542ebe03c..5cbf4126cb 100644 --- a/frappe/desk/doctype/workspace_quick_list/workspace_quick_list.json +++ b/frappe/desk/doctype/workspace_quick_list/workspace_quick_list.json @@ -46,14 +46,14 @@ "index_web_pages_for_search": 1, "istable": 1, "links": [], - "modified": "2022-05-12 13:48:40.617623", + "modified": "2024-03-23 16:04:06.260947", "modified_by": "Administrator", "module": "Desk", "name": "Workspace Quick List", "owner": "Administrator", "permissions": [], "quick_entry": 1, - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [], "track_changes": 1 diff --git a/frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json b/frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json index e47487eaaf..bc6d6b5221 100644 --- a/frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +++ b/frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json @@ -115,14 +115,14 @@ "index_web_pages_for_search": 1, "istable": 1, "links": [], - "modified": "2023-11-27 14:13:38.489737", + "modified": "2024-03-23 16:04:06.370271", "modified_by": "Administrator", "module": "Desk", "name": "Workspace Shortcut", "owner": "Administrator", "permissions": [], "quick_entry": 1, - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [], "track_changes": 1 diff --git a/frappe/desk/form/document_follow.py b/frappe/desk/form/document_follow.py index bae67792bc..ca301ffac9 100644 --- a/frappe/desk/form/document_follow.py +++ b/frappe/desk/form/document_follow.py @@ -156,7 +156,7 @@ def get_document_followed_by_user(user): frappe.qb.from_(DocumentFollow) .where(DocumentFollow.user == user) .select(DocumentFollow.ref_doctype, DocumentFollow.ref_docname) - .orderby(DocumentFollow.modified) + .orderby(DocumentFollow.creation) .limit(20) ).run(as_dict=True) diff --git a/frappe/desk/form/utils.py b/frappe/desk/form/utils.py index b93ebdb5bc..2d8406790d 100644 --- a/frappe/desk/form/utils.py +++ b/frappe/desk/form/utils.py @@ -69,7 +69,7 @@ def update_comment(name, content): @frappe.whitelist() -def get_next(doctype, value, prev, filters=None, sort_order="desc", sort_field="modified"): +def get_next(doctype, value, prev, filters=None, sort_order="desc", sort_field="creation"): prev = int(prev) if not filters: filters = [] diff --git a/frappe/desk/search.py b/frappe/desk/search.py index 85b4a9fdfb..666b351802 100644 --- a/frappe/desk/search.py +++ b/frappe/desk/search.py @@ -162,7 +162,7 @@ def search_widget( formatted_fields = [f"`tab{meta.name}`.`{f.strip()}`" for f in fields] # Insert title field query after name - if meta.show_title_field_in_link: + if meta.show_title_field_in_link and meta.title_field: formatted_fields.insert(1, f"`tab{meta.name}`.{meta.title_field} as `label`") order_by_based_on_meta = get_order_by(doctype, meta) diff --git a/frappe/email/doctype/auto_email_report/auto_email_report.json b/frappe/email/doctype/auto_email_report/auto_email_report.json index 41beac3e3a..0eadc7d74f 100644 --- a/frappe/email/doctype/auto_email_report/auto_email_report.json +++ b/frappe/email/doctype/auto_email_report/auto_email_report.json @@ -220,7 +220,7 @@ } ], "links": [], - "modified": "2024-02-04 13:31:08.624648", + "modified": "2024-03-23 16:01:28.131581", "modified_by": "Administrator", "module": "Email", "name": "Auto Email Report", @@ -251,7 +251,7 @@ "write": 1 } ], - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [], "track_changes": 1 diff --git a/frappe/email/doctype/document_follow/document_follow.json b/frappe/email/doctype/document_follow/document_follow.json index 5dec268217..2261fcb541 100644 --- a/frappe/email/doctype/document_follow/document_follow.json +++ b/frappe/email/doctype/document_follow/document_follow.json @@ -41,7 +41,7 @@ "in_create": 1, "index_web_pages_for_search": 1, "links": [], - "modified": "2023-08-28 22:34:53.394652", + "modified": "2024-03-23 16:03:22.555030", "modified_by": "Administrator", "module": "Email", "name": "Document Follow", @@ -73,7 +73,7 @@ } ], "read_only": 1, - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [] } \ No newline at end of file diff --git a/frappe/email/doctype/email_account/email_account.json b/frappe/email/doctype/email_account/email_account.json index d61165b787..8b3d7d2969 100644 --- a/frappe/email/doctype/email_account/email_account.json +++ b/frappe/email/doctype/email_account/email_account.json @@ -29,6 +29,7 @@ "default_incoming", "use_imap", "use_ssl", + "validate_ssl_certificate", "use_starttls", "email_server", "incoming_port", @@ -611,12 +612,22 @@ "label": "Connected User", "mandatory_depends_on": "eval: doc.auth_method === \"OAuth\"", "options": "User" + }, + { + "default": "1", + "depends_on": "eval:!doc.domain && doc.enable_incoming && doc.use_ssl", + "fetch_from": "domain.use_ssl", + "fieldname": "validate_ssl_certificate", + "fieldtype": "Check", + "hide_days": 1, + "hide_seconds": 1, + "label": "Validate SSL Certificate" } ], "icon": "fa fa-inbox", "index_web_pages_for_search": 1, "links": [], - "modified": "2023-06-05 15:03:08.538819", + "modified": "2024-03-23 16:03:23.581556", "modified_by": "Administrator", "module": "Email", "name": "Email Account", @@ -635,7 +646,7 @@ "role": "Inbox User" } ], - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [], "track_changes": 1 diff --git a/frappe/email/doctype/email_account/email_account_list.js b/frappe/email/doctype/email_account/email_account_list.js index 5913706cbf..0e8fc0c0dd 100644 --- a/frappe/email/doctype/email_account/email_account_list.js +++ b/frappe/email/doctype/email_account/email_account_list.js @@ -16,7 +16,7 @@ frappe.listview_settings["Email Account"] = { return [__("Default Sending"), color, "default_outgoing,=,Yes"]; } else { color = doc.enable_incoming ? "blue" : "gray"; - return [__("Inbox"), color, "is_global,=,No|is_default=No"]; + return [__("Inbox"), color, "default_outgoing,=,No|default_incoming=No"]; } }, }; diff --git a/frappe/email/doctype/email_domain/email_domain.json b/frappe/email/doctype/email_domain/email_domain.json index 5cb4c19940..3940635f08 100644 --- a/frappe/email/doctype/email_domain/email_domain.json +++ b/frappe/email/doctype/email_domain/email_domain.json @@ -12,6 +12,7 @@ "email_server", "use_imap", "use_ssl", + "validate_ssl_certificate", "use_starttls", "column_break_9", "incoming_port", @@ -20,6 +21,7 @@ "smtp_server", "use_tls", "use_ssl_for_outgoing", + "validate_ssl_certificate_for_outgoing", "column_break_18", "smtp_port", "append_emails_to_sent_folder" @@ -125,6 +127,20 @@ { "fieldname": "column_break_18", "fieldtype": "Column Break" + }, + { + "default": "1", + "depends_on": "eval:doc.use_ssl", + "fieldname": "validate_ssl_certificate", + "fieldtype": "Check", + "label": "Validate SSL Certificate" + }, + { + "default": "1", + "depends_on": "eval:doc.use_ssl", + "fieldname": "validate_ssl_certificate_for_outgoing", + "fieldtype": "Check", + "label": "Validate SSL Certificate" } ], "icon": "icon-inbox", @@ -134,7 +150,7 @@ "link_fieldname": "domain" } ], - "modified": "2023-06-05 12:55:06.434541", + "modified": "2024-03-23 16:03:23.836849", "modified_by": "Administrator", "module": "Email", "name": "Email Domain", @@ -150,8 +166,8 @@ "write": 1 } ], - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [], "track_changes": 1 -} +} \ No newline at end of file diff --git a/frappe/email/doctype/email_flag_queue/email_flag_queue.json b/frappe/email/doctype/email_flag_queue/email_flag_queue.json index 14b1ec4f53..757a3a92dc 100644 --- a/frappe/email/doctype/email_flag_queue/email_flag_queue.json +++ b/frappe/email/doctype/email_flag_queue/email_flag_queue.json @@ -45,7 +45,7 @@ ], "in_create": 1, "links": [], - "modified": "2021-11-30 09:51:34.489932", + "modified": "2024-03-23 16:03:24.005944", "modified_by": "Administrator", "module": "Email", "name": "Email Flag Queue", @@ -62,6 +62,7 @@ "share": 1 } ], - "sort_field": "modified", - "sort_order": "DESC" + "sort_field": "creation", + "sort_order": "DESC", + "states": [] } \ No newline at end of file diff --git a/frappe/email/doctype/email_group/email_group.json b/frappe/email/doctype/email_group/email_group.json index 1e90beaecb..9f3ef47d32 100644 --- a/frappe/email/doctype/email_group/email_group.json +++ b/frappe/email/doctype/email_group/email_group.json @@ -78,7 +78,7 @@ "link_fieldname": "email_group" } ], - "modified": "2023-11-24 18:35:17.268492", + "modified": "2024-03-23 16:03:24.125724", "modified_by": "Administrator", "module": "Email", "name": "Email Group", @@ -101,7 +101,7 @@ ], "quick_entry": 1, "show_name_in_global_search": 1, - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [], "track_changes": 1 diff --git a/frappe/email/doctype/email_group_member/email_group_member.json b/frappe/email/doctype/email_group_member/email_group_member.json index 0d68674101..5ccbfb9c0c 100644 --- a/frappe/email/doctype/email_group_member/email_group_member.json +++ b/frappe/email/doctype/email_group_member/email_group_member.json @@ -41,7 +41,7 @@ } ], "links": [], - "modified": "2023-11-25 16:54:59.828669", + "modified": "2024-03-23 16:03:24.266714", "modified_by": "Administrator", "module": "Email", "name": "Email Group Member", @@ -63,7 +63,7 @@ } ], "quick_entry": 1, - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [], "title_field": "email", diff --git a/frappe/email/doctype/email_queue/email_queue.json b/frappe/email/doctype/email_queue/email_queue.json index ea1389d8e9..6c91e3a2eb 100644 --- a/frappe/email/doctype/email_queue/email_queue.json +++ b/frappe/email/doctype/email_queue/email_queue.json @@ -154,7 +154,7 @@ "idx": 1, "in_create": 1, "links": [], - "modified": "2023-06-09 14:31:52.789186", + "modified": "2024-03-23 16:03:24.379339", "modified_by": "Administrator", "module": "Email", "name": "Email Queue", @@ -170,7 +170,7 @@ "role": "System Manager" } ], - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [], "track_changes": 1 diff --git a/frappe/email/doctype/email_queue/email_queue.py b/frappe/email/doctype/email_queue/email_queue.py index a297669ff6..a142845223 100644 --- a/frappe/email/doctype/email_queue/email_queue.py +++ b/frappe/email/doctype/email_queue/email_queue.py @@ -196,7 +196,7 @@ class EmailQueue(Document): # Delete queue table ( - frappe.qb.from_(email_queue).delete().where(email_queue.modified < (Now() - Interval(days=days))) + frappe.qb.from_(email_queue).delete().where(email_queue.creation < (Now() - Interval(days=days))) ).run() # delete child tables, note that this has potential to leave some orphan @@ -205,7 +205,7 @@ class EmailQueue(Document): ( frappe.qb.from_(email_recipient) .delete() - .where(email_recipient.modified < (Now() - Interval(days=days))) + .where(email_recipient.creation < (Now() - Interval(days=days))) ).run() @frappe.whitelist() diff --git a/frappe/email/doctype/email_queue/test_email_queue.py b/frappe/email/doctype/email_queue/test_email_queue.py index 74ea856bf3..4165fa5edc 100644 --- a/frappe/email/doctype/email_queue/test_email_queue.py +++ b/frappe/email/doctype/email_queue/test_email_queue.py @@ -27,8 +27,8 @@ class TestEmailQueue(FrappeTestCase): } ).insert() - old_record.modified = "2010-01-01 00:00:01" - old_record.recipients[0].modified = old_record.modified + old_record.creation = "2010-01-01 00:00:01" + old_record.recipients[0].creation = old_record.creation old_record.db_update_all() new_record = frappe.copy_doc(old_record) diff --git a/frappe/email/doctype/email_queue_recipient/email_queue_recipient.json b/frappe/email/doctype/email_queue_recipient/email_queue_recipient.json index 406449e26d..b0005d4768 100644 --- a/frappe/email/doctype/email_queue_recipient/email_queue_recipient.json +++ b/frappe/email/doctype/email_queue_recipient/email_queue_recipient.json @@ -33,14 +33,14 @@ ], "istable": 1, "links": [], - "modified": "2022-09-06 13:38:10.644417", + "modified": "2024-03-23 16:03:24.564197", "modified_by": "Administrator", "module": "Email", "name": "Email Queue Recipient", "owner": "Administrator", "permissions": [], "quick_entry": 1, - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [] } \ No newline at end of file diff --git a/frappe/email/doctype/email_rule/email_rule.json b/frappe/email/doctype/email_rule/email_rule.json index 20e296290d..b469197554 100644 --- a/frappe/email/doctype/email_rule/email_rule.json +++ b/frappe/email/doctype/email_rule/email_rule.json @@ -26,7 +26,7 @@ } ], "links": [], - "modified": "2022-08-03 12:20:51.443237", + "modified": "2024-03-23 16:03:24.671100", "modified_by": "Administrator", "module": "Email", "name": "Email Rule", @@ -43,7 +43,7 @@ } ], "quick_entry": 1, - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [] } \ No newline at end of file diff --git a/frappe/email/doctype/email_template/email_template.json b/frappe/email/doctype/email_template/email_template.json index 6bf08cd534..ccce3961cf 100644 --- a/frappe/email/doctype/email_template/email_template.json +++ b/frappe/email/doctype/email_template/email_template.json @@ -57,7 +57,7 @@ ], "icon": "fa fa-comment", "links": [], - "modified": "2023-12-12 20:01:07.080625", + "modified": "2024-03-23 16:03:24.779791", "modified_by": "Administrator", "module": "Email", "name": "Email Template", @@ -81,7 +81,7 @@ "write": 1 } ], - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [], "track_changes": 1 diff --git a/frappe/email/doctype/email_unsubscribe/email_unsubscribe.json b/frappe/email/doctype/email_unsubscribe/email_unsubscribe.json index 38df531c35..b5ddb58fcd 100644 --- a/frappe/email/doctype/email_unsubscribe/email_unsubscribe.json +++ b/frappe/email/doctype/email_unsubscribe/email_unsubscribe.json @@ -43,7 +43,7 @@ } ], "links": [], - "modified": "2022-08-03 12:20:51.694626", + "modified": "2024-03-23 16:03:24.894291", "modified_by": "Administrator", "module": "Email", "name": "Email Unsubscribe", @@ -63,7 +63,7 @@ } ], "quick_entry": 1, - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [], "track_changes": 1 diff --git a/frappe/email/doctype/imap_folder/imap_folder.json b/frappe/email/doctype/imap_folder/imap_folder.json index bab50dea39..8a9a65241b 100644 --- a/frappe/email/doctype/imap_folder/imap_folder.json +++ b/frappe/email/doctype/imap_folder/imap_folder.json @@ -41,13 +41,14 @@ "index_web_pages_for_search": 1, "istable": 1, "links": [], - "modified": "2021-09-21 11:53:00.811236", + "modified": "2024-03-23 16:03:27.792499", "modified_by": "Administrator", "module": "Email", "name": "IMAP Folder", "owner": "Administrator", "permissions": [], - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", + "states": [], "track_changes": 1 -} +} \ No newline at end of file diff --git a/frappe/email/doctype/newsletter/newsletter.json b/frappe/email/doctype/newsletter/newsletter.json index e03cc506e6..6b000e89a3 100644 --- a/frappe/email/doctype/newsletter/newsletter.json +++ b/frappe/email/doctype/newsletter/newsletter.json @@ -253,7 +253,7 @@ "index_web_pages_for_search": 1, "is_published_field": "published", "links": [], - "modified": "2024-01-30 14:05:50.645802", + "modified": "2024-03-23 16:03:30.890080", "modified_by": "Administrator", "module": "Email", "name": "Newsletter", @@ -273,7 +273,7 @@ } ], "route": "newsletters", - "sort_field": "modified", + "sort_field": "creation", "sort_order": "ASC", "states": [], "title_field": "subject", diff --git a/frappe/email/doctype/newsletter_attachment/newsletter_attachment.json b/frappe/email/doctype/newsletter_attachment/newsletter_attachment.json index e2add0ed64..47ff57b235 100644 --- a/frappe/email/doctype/newsletter_attachment/newsletter_attachment.json +++ b/frappe/email/doctype/newsletter_attachment/newsletter_attachment.json @@ -20,12 +20,13 @@ "index_web_pages_for_search": 1, "istable": 1, "links": [], - "modified": "2021-12-06 16:37:47.481057", + "modified": "2024-03-23 16:03:31.101104", "modified_by": "Administrator", "module": "Email", "name": "Newsletter Attachment", "owner": "Administrator", "permissions": [], - "sort_field": "modified", - "sort_order": "DESC" + "sort_field": "creation", + "sort_order": "DESC", + "states": [] } \ No newline at end of file diff --git a/frappe/email/doctype/newsletter_email_group/newsletter_email_group.json b/frappe/email/doctype/newsletter_email_group/newsletter_email_group.json index b8c1afe062..b8f1dea630 100644 --- a/frappe/email/doctype/newsletter_email_group/newsletter_email_group.json +++ b/frappe/email/doctype/newsletter_email_group/newsletter_email_group.json @@ -29,14 +29,15 @@ ], "istable": 1, "links": [], - "modified": "2021-12-06 20:12:08.420240", + "modified": "2024-03-23 16:03:31.190219", "modified_by": "Administrator", "module": "Email", "name": "Newsletter Email Group", "owner": "Administrator", "permissions": [], "quick_entry": 1, - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", + "states": [], "track_changes": 1 } \ No newline at end of file diff --git a/frappe/email/doctype/notification/notification.json b/frappe/email/doctype/notification/notification.json index 3626cc29bc..83187d8c33 100644 --- a/frappe/email/doctype/notification/notification.json +++ b/frappe/email/doctype/notification/notification.json @@ -291,7 +291,7 @@ "icon": "fa fa-envelope", "index_web_pages_for_search": 1, "links": [], - "modified": "2023-11-17 08:48:25.616203", + "modified": "2024-03-23 16:03:31.519921", "modified_by": "Administrator", "module": "Email", "name": "Notification", @@ -309,7 +309,7 @@ "write": 1 } ], - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [], "title_field": "subject", diff --git a/frappe/email/doctype/notification_recipient/notification_recipient.json b/frappe/email/doctype/notification_recipient/notification_recipient.json index 0670320a77..631cc3f645 100644 --- a/frappe/email/doctype/notification_recipient/notification_recipient.json +++ b/frappe/email/doctype/notification_recipient/notification_recipient.json @@ -49,13 +49,14 @@ "index_web_pages_for_search": 1, "istable": 1, "links": [], - "modified": "2020-09-01 17:40:27.289105", + "modified": "2024-03-23 16:03:31.847915", "modified_by": "Administrator", "module": "Email", "name": "Notification Recipient", "owner": "Administrator", "permissions": [], "quick_entry": 1, - "sort_field": "modified", - "sort_order": "DESC" + "sort_field": "creation", + "sort_order": "DESC", + "states": [] } \ No newline at end of file diff --git a/frappe/email/doctype/unhandled_email/unhandled_email.json b/frappe/email/doctype/unhandled_email/unhandled_email.json index d904536936..da5d96ba3b 100644 --- a/frappe/email/doctype/unhandled_email/unhandled_email.json +++ b/frappe/email/doctype/unhandled_email/unhandled_email.json @@ -43,7 +43,7 @@ ], "in_create": 1, "links": [], - "modified": "2022-08-03 12:20:51.822287", + "modified": "2024-03-23 16:03:59.723830", "modified_by": "Administrator", "module": "Email", "name": "Unhandled Email", @@ -54,7 +54,7 @@ "role": "System Manager" } ], - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [] } \ No newline at end of file diff --git a/frappe/email/doctype/unhandled_email/unhandled_email.py b/frappe/email/doctype/unhandled_email/unhandled_email.py index f70d0e48b3..9a10af6f99 100644 --- a/frappe/email/doctype/unhandled_email/unhandled_email.py +++ b/frappe/email/doctype/unhandled_email/unhandled_email.py @@ -26,6 +26,6 @@ class UnhandledEmail(Document): frappe.db.delete( "Unhandled Email", { - "modified": ("<", frappe.utils.add_days(frappe.utils.nowdate(), -1 * days)), + "creation": ("<", frappe.utils.add_days(frappe.utils.nowdate(), -1 * days)), }, ) diff --git a/frappe/email/receive.py b/frappe/email/receive.py index abb26a3674..a6c6c00d61 100644 --- a/frappe/email/receive.py +++ b/frappe/email/receive.py @@ -9,7 +9,6 @@ import json import poplib import re import ssl -import time from contextlib import suppress from email.header import decode_header @@ -152,7 +151,7 @@ class EmailServer: def select_imap_folder(self, folder): res = self.imap.select(f'"{folder}"') - return res[0] == "OK" # The folder exsits TODO: handle other resoponses too + return res[0] == "OK" # The folder exists TODO: handle other responses too def logout(self): if cint(self.settings.use_imap): @@ -312,7 +311,6 @@ class EmailServer: return False def make_error_msg(self, uid, msg_num): - partial_mail = None traceback = frappe.get_traceback(with_context=True) with suppress(Exception): # retrieve headers diff --git a/frappe/email/smtp.py b/frappe/email/smtp.py index 7819195422..2b64c8e528 100644 --- a/frappe/email/smtp.py +++ b/frappe/email/smtp.py @@ -7,7 +7,7 @@ from contextlib import suppress import frappe from frappe import _ from frappe.email.oauth import Oauth -from frappe.utils import cint, cstr +from frappe.utils import cint, cstr, get_traceback class InvalidEmailCredentials(frappe.ValidationError): @@ -109,7 +109,7 @@ class SMTPServer: frappe.request.after_response.add(self.quit) elif frappe.job: frappe.job.after_job.add(self.quit) - else: + elif not frappe.flags.in_test: # Console? import atexit @@ -129,8 +129,9 @@ class SMTPServer: @classmethod def throw_invalid_credentials_exception(cls): + original_exception = get_traceback() or "\n" frappe.throw( - _("Please check your email login credentials."), + _("Please check your email login credentials.") + " " + original_exception.splitlines()[-1], title=_("Invalid Credentials"), exc=InvalidEmailCredentials, ) diff --git a/frappe/geo/doctype/currency/currency.json b/frappe/geo/doctype/currency/currency.json index 9a4df0f117..20a1b77313 100644 --- a/frappe/geo/doctype/currency/currency.json +++ b/frappe/geo/doctype/currency/currency.json @@ -82,7 +82,7 @@ "idx": 1, "index_web_pages_for_search": 1, "links": [], - "modified": "2024-01-30 13:18:12.053557", + "modified": "2024-03-23 16:01:31.809369", "modified_by": "Administrator", "module": "Geo", "name": "Currency", @@ -119,7 +119,7 @@ "role": "Purchase User" } ], - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [], "track_changes": 1 diff --git a/frappe/geo/languages.csv b/frappe/geo/languages.csv new file mode 100644 index 0000000000..30a81ab8ed --- /dev/null +++ b/frappe/geo/languages.csv @@ -0,0 +1,81 @@ +language_code,language_name,enabled +af,Afrikaans,0 +am,አማርኛ,0 +ar,العربية,1 +bg,Български,0 +bn,বাংলা,0 +bo,བོད་སྐད་,0 +bs,Bosanski,0 +ca,Català,0 +cs,Čeština,0 +da,Dansk,0 +de,Deutsch,1 +el,Ελληνικά,0 +en,English,0 +en-GB,English (United Kingdom),0 +en-US,English (United States),0 +eo,In-Context Translation,0 +es,Español,1 +es-AR,Español (Argentina),0 +es-BO,Español (Bolivia),0 +es-CL,Español (Chile),0 +es-CO,Español (Colombia),0 +es-DO,Español (República Dominicana),0 +es-EC,Español (Ecuador),0 +es-GT,Español (Guatemala),0 +es-MX,Español (México),0 +es-NI,Español (Nicaragua),0 +es-PE,Español (Perú),0 +et,Eesti,0 +fa,فارسی,1 +fi,Suomi,0 +fil,Filipino,0 +fr,Français,1 +gu,ગુજરાતી,0 +he,עברית,0 +hi,हिन्दी,0 +hr,Hrvatski,0 +hu,Magyar,0 +id,Indonesia,0 +is,Íslenska,0 +it,Italiano,0 +ja,日本語,0 +km,ខ្មែរ,0 +kn,ಕನ್ನಡ,0 +ko,한국어,0 +ku,Kurdî,0 +lo,ລາວ,0 +lt,Lietuvių,0 +lv,Latviešu,0 +mk,Македонски,0 +ml,മലയാളം,0 +mn,Монгол,0 +mr,मराठी,0 +ms,Melayu,0 +my,မြန်မာ,0 +nl,Nederlands,0 +no,Norsk,0 +pl,Polski,0 +ps,پښتو,0 +pt,Português,0 +ro,Română,0 +ru,Русский,0 +rw,Kinyarwanda,0 +si,සිංහල,0 +sk,Slovenčina,0 +sl,Slovenščina,0 +sq,Shqip,0 +sr,Српски,0 +sr-BA,Srpski,0 +sv,Svenska,0 +sw,Kiswahili,0 +ta,தமிழ்,0 +te,తెలుగు,0 +th,ไทย,0 +tr,Türkçe,0 +uk,Українська,0 +ur,اردو,0 +uz,O‘Zbek,0 +vi,Tiếng Việt,0 +zh,中文,0 +zh-TW,繁體中文,0 diff --git a/frappe/geo/languages.json b/frappe/geo/languages.json deleted file mode 100644 index 33092a2c4b..0000000000 --- a/frappe/geo/languages.json +++ /dev/null @@ -1,330 +0,0 @@ -[ - { - "code": "af", - "name": "Afrikaans" - }, - { - "code": "am", - "name": "\u12a0\u121b\u122d\u129b" - }, - { - "code": "ar", - "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629" - }, - { - "code": "bg", - "name": "B\u01celgarski" - }, - { - "code": "bn", - "name": "\u09ac\u09be\u0999\u09be\u09b2\u09bf" - }, - { - "code": "bo", - "name": "\u0f63\u0fb7\u0f0b\u0f66\u0f60\u0f72\u0f0b\u0f66\u0f90\u0f51\u0f0b" - }, - { - "code": "bs", - "name": "Bosanski" - }, - { - "code": "ca", - "name": "Catal\u00e0" - }, - { - "code": "cs", - "name": "\u010desky" - }, - { - "code": "da", - "name": "Dansk" - }, - { - "code": "da-DK", - "name": "Dansk (Danmark)" - }, - { - "code": "de", - "name": "Deutsch" - }, - { - "code": "el", - "name": "\u03b5\u03bb\u03bb\u03b7\u03bd\u03b9\u03ba\u03ac" - }, - { - "code": "en", - "name": "English" - }, - { - "code": "en-GB", - "name": "English (United Kingdom)" - }, - { - "code": "en-US", - "name": "English (United States)" - }, - { - "code": "es", - "name": "Espa\u00f1ol" - }, - { - "code": "es-AR", - "name": "Espa\u00f1ol (Argentina)" - }, - { - "code": "es-BO", - "name": "Espa\u00f1ol (Bolivia)" - }, - { - "code": "es-CL", - "name": "Espa\u00f1ol (Chile)" - }, - { - "code": "es-CO", - "name": "Espa\u00f1ol (Colombia)" - }, - { - "code": "es-DO", - "name": "Espa\u00f1ol (Rep\u00fablica Dominicana)" - }, - { - "code": "es-EC", - "name": "Espa\u00f1ol (Ecuador)" - }, - { - "code": "es-GT", - "name": "Espa\u00f1ol (Guatemala)" - }, - { - "code": "es-MX", - "name": "Espa\u00f1ol (M\u00e9xico)" - }, - { - "code": "es-NI", - "name": "Espa\u00f1ol (Nicaragua)" - }, - { - "code": "es-PE", - "name": "Espa\u00f1ol (Per\u00fa)" - }, - { - "code": "et", - "name": "Eesti" - }, - { - "code": "fa", - "name": "\u067e\u0627\u0631\u0633\u06cc" - }, - { - "code": "fi", - "name": "Suomi" - }, - { - "code": "fil", - "name": "Filipino" - }, - { - "code": "fr", - "name": "Fran\u00e7ais" - }, - { - "code": "fr-CA", - "name": "Fran\u00e7ais Canadien" - }, - { - "code": "gu", - "name": "\u0a97\u0ac1\u0a9c\u0ab0\u0abe\u0aa4\u0ac0" - }, - { - "code": "he", - "name": "\u05e2\u05d1\u05e8\u05d9\u05ea" - }, - { - "code": "hi", - "name": "\u0939\u093f\u0902\u0926\u0940" - }, - { - "code": "hr", - "name": "Hrvatski" - }, - { - "code": "hu", - "name": "Magyar" - }, - { - "code": "id", - "name": "Indonesia" - }, - { - "code": "is", - "name": "\u00edslenska" - }, - { - "code": "it", - "name": "Italiano" - }, - { - "code": "ja", - "name": "\u65e5\u672c\u8a9e" - }, - { - "code": "km", - "name": "\u1797\u17b6\u179f\u17b6\u1781\u17d2\u1798\u17c2\u179a" - }, - { - "code": "kn", - "name": "\u0c95\u0ca8\u0ccd\u0ca8\u0ca1" - }, - { - "code": "ko", - "name": "\ud55c\uad6d\uc758" - }, - { - "code": "ku", - "name": "\u06a9\u0648\u0631\u062f\u06cc" - }, - { - "code": "lo", - "name": "\u0ea5\u0eb2\u0ea7" - }, - { - "code": "lt", - "name": "Lietuvi\u0173 kalba" - }, - { - "code": "lv", - "name": "Latvie\u0161u valoda" - }, - { - "code": "mk", - "name": "\u043c\u0430\u043a\u0435\u0434\u043e\u043d\u0441\u043a\u0438" - }, - { - "code": "ml", - "name": "\u0d2e\u0d32\u0d2f\u0d3e\u0d33\u0d02" - }, - { - "code": "mn", - "name": "\u041c\u043e\u043d\u0433\u043e\u043b (Mongolian)" - }, - { - "code": "mr", - "name": "\u092e\u0930\u093e\u0920\u0940" - }, - { - "code": "ms", - "name": "Melayu" - }, - { - "code": "my", - "name": "\u1019\u103c\u1014\u103a\u1019\u102c" - }, - { - "code": "nl", - "name": "Nederlands" - }, - { - "code": "no", - "name": "Norsk" - }, - { - "code": "pl", - "name": "Polski" - }, - { - "code": "ps", - "name": "\u067e\u069a\u062a\u0648" - }, - { - "code": "pt", - "name": "Portugu\u00eas" - }, - { - "code": "pt-BR", - "name": "Portugu\u00eas Brasileiro" - }, - { - "code": "ro", - "name": "Rom\u00e2n" - }, - { - "code": "ru", - "name": "\u0440\u0443\u0441\u0441\u043a\u0438\u0439" - }, - { - "code": "rw", - "name": "Kinyarwanda" - }, - { - "code": "si", - "name": "\u0dc3\u0dd2\u0d82\u0dc4\u0dbd" - }, - { - "code": "sk", - "name": "Sloven\u010dina (Slovak)" - }, - { - "code": "sl", - "name": "Sloven\u0161\u010dina (Slovene)" - }, - { - "code": "sq", - "name": "Shqiptar" - }, - { - "code": "sr", - "name": "\u0441\u0440\u043f\u0441\u043a\u0438" - }, - { - "code": "sr-BA", - "name": "Srpski" - }, - { - "code": "sv", - "name": "Svenska" - }, - { - "code": "sw", - "name": "Swahili" - }, - { - "code": "ta", - "name": "\u0ba4\u0bae\u0bbf\u0bb4\u0bcd" - }, - { - "code": "te", - "name": "\u0c24\u0c46\u0c32\u0c41\u0c17\u0c41" - }, - { - "code": "th", - "name": "\u0e44\u0e17\u0e22" - }, - { - "code": "tr", - "name": "Türkçe" - }, - { - "code": "uk", - "name": "\u0443\u043a\u0440\u0430\u0457\u043d\u0441\u044c\u043a\u0430" - }, - { - "code": "ur", - "name": "\u0627\u0631\u062f\u0648" - }, - { - "code": "uz", - "name": "\u040e\u0437\u0431\u0435\u043a" - }, - { - "code": "vi", - "name": "Vi\u1ec7t" - }, - { - "code": "zh", - "name": "\u7b80\u4f53\u4e2d\u6587" - }, - { - "code": "zh-TW", - "name": "\u7e41\u9ad4\u4e2d\u6587" - } -] diff --git a/frappe/gettext/translate.py b/frappe/gettext/translate.py index 2919277dc4..a7a3ddf607 100644 --- a/frappe/gettext/translate.py +++ b/frappe/gettext/translate.py @@ -167,7 +167,7 @@ def new_po(locale, target_app: str | None = None): print(f"PO file created_at {po_path}") print( - "You will need to add the language in frappe/geo/languages.json, if you haven't done it already." + "You will need to add the language in frappe/geo/languages.csv, if you haven't done it already." ) diff --git a/frappe/installer.py b/frappe/installer.py index 2c34fb378a..36221d9e68 100644 --- a/frappe/installer.py +++ b/frappe/installer.py @@ -5,6 +5,7 @@ import gzip import json import os import re +import shutil import subprocess import sys from collections import OrderedDict @@ -45,38 +46,28 @@ def _new_site( install_apps=None, source_sql=None, force=False, - no_mariadb_socket=False, - reinstall=False, db_password=None, db_type=None, + db_socket=None, db_host=None, db_port=None, db_user=None, setup_db=True, + rollback_callback=None, + mariadb_user_host_login_scope=None, ): """Install a new Frappe site""" from frappe.utils import scheduler if not force and os.path.exists(site): - print(f"Site {site} already exists") - sys.exit(1) - - if no_mariadb_socket and db_type != "mariadb": - print("--no-mariadb-socket requires db_type to be set to mariadb.") + print(f"Site {site} already exists, use `--force` to proceed anyway") sys.exit(1) frappe.init(site=site) if not db_name: - import hashlib - - db_name = ( - "_" - + hashlib.sha1( - os.path.realpath(frappe.get_site_path()).encode(), usedforsecurity=False - ).hexdigest()[:16] - ) + db_name = f"_{frappe.generate_hash(length=16)}" try: # enable scheduler post install? @@ -85,6 +76,8 @@ def _new_site( enable_scheduler = False make_site_dirs() + if rollback_callback: + rollback_callback.add(lambda: shutil.rmtree(frappe.get_site_path())) with filelock("bench_new_site", timeout=1): install_db( @@ -95,14 +88,15 @@ def _new_site( verbose=verbose, source_sql=source_sql, force=force, - reinstall=reinstall, db_password=db_password, db_type=db_type, + db_socket=db_socket, db_host=db_host, db_port=db_port, db_user=db_user, - no_mariadb_socket=no_mariadb_socket, setup=setup_db, + rollback_callback=rollback_callback, + mariadb_user_host_login_scope=mariadb_user_host_login_scope, ) apps_to_install = ["frappe"] + (frappe.conf.get("install_apps") or []) + (list(install_apps) or []) @@ -132,17 +126,18 @@ def install_db( verbose=True, force=0, site_config=None, - reinstall=False, db_password=None, db_type=None, + db_socket=None, db_host=None, db_port=None, db_user=None, - no_mariadb_socket=False, setup=True, + rollback_callback=None, + mariadb_user_host_login_scope=None, ): import frappe.database - from frappe.database import bootstrap_database, setup_database + from frappe.database import bootstrap_database, drop_user_and_database, setup_database if not db_type: db_type = frappe.conf.db_type @@ -157,6 +152,7 @@ def install_db( site_config=site_config, db_password=db_password, db_type=db_type, + db_socket=db_socket, db_host=db_host, db_port=db_port, db_user=db_user, @@ -167,7 +163,9 @@ def install_db( frappe.flags.root_password = root_password if setup: - setup_database(force, verbose, no_mariadb_socket) + setup_database(force, verbose, mariadb_user_host_login_scope) + if rollback_callback: + rollback_callback.add(lambda: drop_user_and_database(db_name, db_user or db_name)) bootstrap_database( verbose=verbose, @@ -546,6 +544,7 @@ def make_conf( db_password=None, site_config=None, db_type=None, + db_socket=None, db_host=None, db_port=None, db_user=None, @@ -556,6 +555,7 @@ def make_conf( db_password, site_config, db_type=db_type, + db_socket=db_socket, db_host=db_host, db_port=db_port, db_user=db_user, @@ -570,6 +570,7 @@ def make_site_config( db_password=None, site_config=None, db_type=None, + db_socket=None, db_host=None, db_port=None, db_user=None, @@ -584,6 +585,9 @@ def make_site_config( if db_type: site_config["db_type"] = db_type + if db_socket: + site_config["db_socket"] = db_socket + if db_host: site_config["db_host"] = db_host diff --git a/frappe/integrations/doctype/connected_app/connected_app.json b/frappe/integrations/doctype/connected_app/connected_app.json index b66cd9014b..201f161120 100644 --- a/frappe/integrations/doctype/connected_app/connected_app.json +++ b/frappe/integrations/doctype/connected_app/connected_app.json @@ -139,7 +139,7 @@ "link_fieldname": "connected_app" } ], - "modified": "2022-01-07 05:28:45.073041", + "modified": "2024-03-23 16:01:30.633764", "modified_by": "Administrator", "module": "Integrations", "name": "Connected App", @@ -162,8 +162,9 @@ "role": "All" } ], - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", + "states": [], "title_field": "provider_name", "track_changes": 1 } \ No newline at end of file diff --git a/frappe/integrations/doctype/dropbox_settings/dropbox_settings.json b/frappe/integrations/doctype/dropbox_settings/dropbox_settings.json index 15535f08c4..121006bb8b 100644 --- a/frappe/integrations/doctype/dropbox_settings/dropbox_settings.json +++ b/frappe/integrations/doctype/dropbox_settings/dropbox_settings.json @@ -100,7 +100,7 @@ "in_create": 1, "issingle": 1, "links": [], - "modified": "2023-03-20 14:20:19.180611", + "modified": "2024-03-23 16:03:23.176690", "modified_by": "Administrator", "module": "Integrations", "name": "Dropbox Settings", @@ -119,7 +119,7 @@ } ], "read_only": 1, - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [], "track_changes": 1 diff --git a/frappe/integrations/doctype/google_calendar/google_calendar.json b/frappe/integrations/doctype/google_calendar/google_calendar.json index 102569e20d..59a85282b1 100644 --- a/frappe/integrations/doctype/google_calendar/google_calendar.json +++ b/frappe/integrations/doctype/google_calendar/google_calendar.json @@ -110,7 +110,7 @@ } ], "links": [], - "modified": "2023-08-28 22:21:44.238862", + "modified": "2024-03-23 16:03:26.682486", "modified_by": "Administrator", "module": "Integrations", "name": "Google Calendar", @@ -143,7 +143,7 @@ "write": 1 } ], - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [], "track_changes": 1 diff --git a/frappe/integrations/doctype/google_contacts/google_contacts.json b/frappe/integrations/doctype/google_contacts/google_contacts.json index 3858217a65..19e288cb8f 100644 --- a/frappe/integrations/doctype/google_contacts/google_contacts.json +++ b/frappe/integrations/doctype/google_contacts/google_contacts.json @@ -99,7 +99,7 @@ } ], "links": [], - "modified": "2023-12-08 15:52:37.525003", + "modified": "2024-03-23 16:03:26.863560", "modified_by": "Administrator", "module": "Integrations", "name": "Google Contacts", @@ -125,7 +125,7 @@ "write": 1 } ], - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [], "track_changes": 1 diff --git a/frappe/integrations/doctype/google_drive/google_drive.json b/frappe/integrations/doctype/google_drive/google_drive.json index 7bc967a6f8..ece2d429a0 100644 --- a/frappe/integrations/doctype/google_drive/google_drive.json +++ b/frappe/integrations/doctype/google_drive/google_drive.json @@ -102,7 +102,7 @@ ], "issingle": 1, "links": [], - "modified": "2023-12-08 15:52:37.525003", + "modified": "2024-03-23 16:03:26.999110", "modified_by": "Administrator", "module": "Integrations", "name": "Google Drive", @@ -119,7 +119,7 @@ "write": 1 } ], - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [], "track_changes": 1 diff --git a/frappe/integrations/doctype/google_settings/google_settings.json b/frappe/integrations/doctype/google_settings/google_settings.json index ee48fde97b..0f86cab7ba 100644 --- a/frappe/integrations/doctype/google_settings/google_settings.json +++ b/frappe/integrations/doctype/google_settings/google_settings.json @@ -75,7 +75,7 @@ ], "issingle": 1, "links": [], - "modified": "2024-01-16 13:19:22.365362", + "modified": "2024-03-23 16:03:27.101069", "modified_by": "Administrator", "module": "Integrations", "name": "Google Settings", @@ -93,7 +93,7 @@ } ], "quick_entry": 1, - "sort_field": "modified", + "sort_field": "creation", "sort_order": "ASC", "states": [], "track_changes": 1 diff --git a/frappe/integrations/doctype/integration_request/integration_request.json b/frappe/integrations/doctype/integration_request/integration_request.json index 8565b2a0fd..7898a86cc4 100644 --- a/frappe/integrations/doctype/integration_request/integration_request.json +++ b/frappe/integrations/doctype/integration_request/integration_request.json @@ -129,7 +129,7 @@ ], "in_create": 1, "links": [], - "modified": "2023-10-09 09:36:23.856188", + "modified": "2024-03-23 16:03:28.090977", "modified_by": "Administrator", "module": "Integrations", "name": "Integration Request", @@ -146,7 +146,7 @@ "share": 1 } ], - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [], "title_field": "integration_request_service", diff --git a/frappe/integrations/doctype/integration_request/integration_request.py b/frappe/integrations/doctype/integration_request/integration_request.py index 2271fe0ab6..d29a78fc19 100644 --- a/frappe/integrations/doctype/integration_request/integration_request.py +++ b/frappe/integrations/doctype/integration_request/integration_request.py @@ -40,7 +40,7 @@ class IntegrationRequest(Document): from frappe.query_builder.functions import Now table = frappe.qb.DocType("Integration Request") - frappe.db.delete(table, filters=(table.modified < (Now() - Interval(days=days)))) + frappe.db.delete(table, filters=(table.creation < (Now() - Interval(days=days)))) def update_status(self, params, status): data = json.loads(self.data) diff --git a/frappe/integrations/doctype/ldap_group_mapping/ldap_group_mapping.json b/frappe/integrations/doctype/ldap_group_mapping/ldap_group_mapping.json index 9bfe1eac56..1bf268408d 100644 --- a/frappe/integrations/doctype/ldap_group_mapping/ldap_group_mapping.json +++ b/frappe/integrations/doctype/ldap_group_mapping/ldap_group_mapping.json @@ -27,14 +27,14 @@ ], "istable": 1, "links": [], - "modified": "2022-07-07 16:28:44.828514", + "modified": "2024-03-23 16:03:28.603657", "modified_by": "Administrator", "module": "Integrations", "name": "LDAP Group Mapping", "owner": "Administrator", "permissions": [], "quick_entry": 1, - "sort_field": "modified", + "sort_field": "creation", "sort_order": "ASC", "states": [], "track_changes": 1 diff --git a/frappe/integrations/doctype/ldap_settings/ldap_settings.json b/frappe/integrations/doctype/ldap_settings/ldap_settings.json index 0b3bf06239..3c5d65a1fe 100644 --- a/frappe/integrations/doctype/ldap_settings/ldap_settings.json +++ b/frappe/integrations/doctype/ldap_settings/ldap_settings.json @@ -301,7 +301,7 @@ "in_create": 1, "issingle": 1, "links": [], - "modified": "2023-01-24 11:20:06.049708", + "modified": "2024-03-23 16:03:28.700269", "modified_by": "Administrator", "module": "Integrations", "name": "LDAP Settings", @@ -320,7 +320,7 @@ } ], "read_only": 1, - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [], "track_changes": 1 diff --git a/frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json b/frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json index 2cd21bcaf4..35f877e79b 100644 --- a/frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +++ b/frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json @@ -90,7 +90,7 @@ } ], "links": [], - "modified": "2021-04-26 07:23:02.980612", + "modified": "2024-03-23 16:03:32.445085", "modified_by": "Administrator", "module": "Integrations", "name": "OAuth Authorization Code", @@ -107,6 +107,7 @@ "share": 1 } ], - "sort_field": "modified", - "sort_order": "DESC" + "sort_field": "creation", + "sort_order": "DESC", + "states": [] } \ No newline at end of file diff --git a/frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json b/frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json index 2060c48fb9..317bb2c6f5 100644 --- a/frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json +++ b/frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json @@ -75,7 +75,7 @@ } ], "links": [], - "modified": "2023-04-07 07:08:00.249740", + "modified": "2024-03-23 16:03:32.559867", "modified_by": "Administrator", "module": "Integrations", "name": "OAuth Bearer Token", @@ -93,7 +93,7 @@ "share": 1 } ], - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [] } \ No newline at end of file diff --git a/frappe/integrations/doctype/oauth_client/oauth_client.json b/frappe/integrations/doctype/oauth_client/oauth_client.json index 4418f6b126..5c93809111 100644 --- a/frappe/integrations/doctype/oauth_client/oauth_client.json +++ b/frappe/integrations/doctype/oauth_client/oauth_client.json @@ -117,7 +117,7 @@ } ], "links": [], - "modified": "2023-07-17 07:06:35.765981", + "modified": "2024-03-23 16:03:32.679227", "modified_by": "Administrator", "module": "Integrations", "name": "OAuth Client", @@ -136,7 +136,7 @@ "write": 1 } ], - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [], "title_field": "app_name", diff --git a/frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json b/frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json index 219a87f2f4..d091e0480c 100644 --- a/frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json +++ b/frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json @@ -18,7 +18,7 @@ ], "issingle": 1, "links": [], - "modified": "2022-08-03 12:20:52.328415", + "modified": "2024-03-23 16:03:32.808772", "modified_by": "Administrator", "module": "Integrations", "name": "OAuth Provider Settings", @@ -36,7 +36,7 @@ } ], "quick_entry": 1, - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [], "track_changes": 1 diff --git a/frappe/integrations/doctype/oauth_scope/oauth_scope.json b/frappe/integrations/doctype/oauth_scope/oauth_scope.json index 3a6e528999..052394c5f6 100644 --- a/frappe/integrations/doctype/oauth_scope/oauth_scope.json +++ b/frappe/integrations/doctype/oauth_scope/oauth_scope.json @@ -17,14 +17,15 @@ ], "istable": 1, "links": [], - "modified": "2020-07-15 22:15:18.930632", + "modified": "2024-03-23 16:03:32.890426", "modified_by": "Administrator", "module": "Integrations", "name": "OAuth Scope", "owner": "Administrator", "permissions": [], "quick_entry": 1, - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", + "states": [], "track_changes": 1 } \ No newline at end of file diff --git a/frappe/integrations/doctype/push_notification_settings/push_notification_settings.json b/frappe/integrations/doctype/push_notification_settings/push_notification_settings.json index da1d6373a8..2d045070ec 100644 --- a/frappe/integrations/doctype/push_notification_settings/push_notification_settings.json +++ b/frappe/integrations/doctype/push_notification_settings/push_notification_settings.json @@ -46,7 +46,7 @@ "index_web_pages_for_search": 1, "issingle": 1, "links": [], - "modified": "2024-02-28 11:03:30.518196", + "modified": "2024-03-23 16:03:35.768559", "modified_by": "Administrator", "module": "Integrations", "name": "Push Notification Settings", @@ -63,7 +63,7 @@ "write": 1 } ], - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [] } \ No newline at end of file diff --git a/frappe/integrations/doctype/query_parameters/query_parameters.json b/frappe/integrations/doctype/query_parameters/query_parameters.json index de31c28df7..b99c3032ab 100644 --- a/frappe/integrations/doctype/query_parameters/query_parameters.json +++ b/frappe/integrations/doctype/query_parameters/query_parameters.json @@ -26,12 +26,13 @@ ], "istable": 1, "links": [], - "modified": "2020-11-16 15:18:35.887149", + "modified": "2024-03-23 16:03:35.861622", "modified_by": "Administrator", "module": "Integrations", "name": "Query Parameters", "owner": "Administrator", "permissions": [], - "sort_field": "modified", - "sort_order": "DESC" + "sort_field": "creation", + "sort_order": "DESC", + "states": [] } \ No newline at end of file diff --git a/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json b/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json index e2256861cd..9f8015d279 100755 --- a/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json +++ b/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json @@ -130,7 +130,7 @@ "hide_toolbar": 1, "issingle": 1, "links": [], - "modified": "2023-01-11 15:38:20.333833", + "modified": "2024-03-23 16:03:37.575744", "modified_by": "Administrator", "module": "Integrations", "name": "S3 Backup Settings", @@ -148,7 +148,7 @@ } ], "quick_entry": 1, - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [], "track_changes": 1 diff --git a/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json b/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json index 56a76b989b..93491f128b 100644 --- a/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json +++ b/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json @@ -35,7 +35,7 @@ } ], "links": [], - "modified": "2021-05-12 18:24:37.810235", + "modified": "2024-03-23 16:03:38.414990", "modified_by": "Administrator", "module": "Integrations", "name": "Slack Webhook URL", @@ -55,7 +55,8 @@ } ], "quick_entry": 1, - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", + "states": [], "track_changes": 1 } \ No newline at end of file diff --git a/frappe/integrations/doctype/social_login_key/social_login_key.json b/frappe/integrations/doctype/social_login_key/social_login_key.json index 12514c3fdd..f6661ec067 100644 --- a/frappe/integrations/doctype/social_login_key/social_login_key.json +++ b/frappe/integrations/doctype/social_login_key/social_login_key.json @@ -176,7 +176,7 @@ ], "index_web_pages_for_search": 1, "links": [], - "modified": "2023-10-14 12:22:23.601130", + "modified": "2024-03-23 16:03:38.963265", "modified_by": "Administrator", "module": "Integrations", "name": "Social Login Key", @@ -195,7 +195,7 @@ "write": 1 } ], - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [], "title_field": "provider_name", diff --git a/frappe/integrations/doctype/token_cache/token_cache.json b/frappe/integrations/doctype/token_cache/token_cache.json index 0e6601fd98..f45edd24ff 100644 --- a/frappe/integrations/doctype/token_cache/token_cache.json +++ b/frappe/integrations/doctype/token_cache/token_cache.json @@ -86,7 +86,7 @@ } ], "links": [], - "modified": "2023-01-01 21:01:24.405729", + "modified": "2024-03-23 16:03:58.980060", "modified_by": "Administrator", "module": "Integrations", "name": "Token Cache", @@ -105,7 +105,7 @@ "role": "All" } ], - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [] } \ No newline at end of file diff --git a/frappe/integrations/doctype/webhook/webhook.json b/frappe/integrations/doctype/webhook/webhook.json index a4d924fc6f..5ce16026fa 100644 --- a/frappe/integrations/doctype/webhook/webhook.json +++ b/frappe/integrations/doctype/webhook/webhook.json @@ -226,7 +226,7 @@ "link_fieldname": "webhook" } ], - "modified": "2024-02-19 11:40:58.387233", + "modified": "2024-03-23 16:04:03.108172", "modified_by": "Administrator", "module": "Integrations", "name": "Webhook", @@ -246,7 +246,7 @@ "write": 1 } ], - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [], "track_changes": 1 diff --git a/frappe/integrations/doctype/webhook/webhook.py b/frappe/integrations/doctype/webhook/webhook.py index a425537be7..154b0695b0 100644 --- a/frappe/integrations/doctype/webhook/webhook.py +++ b/frappe/integrations/doctype/webhook/webhook.py @@ -156,7 +156,7 @@ def get_context(doc): def enqueue_webhook(doc, webhook) -> None: - request_url = headers = data = None + request_url = headers = data = r = None try: webhook: Webhook = frappe.get_doc("Webhook", webhook.get("name")) request_url = webhook.request_url diff --git a/frappe/integrations/doctype/webhook_data/webhook_data.json b/frappe/integrations/doctype/webhook_data/webhook_data.json index 2ace6a9237..8bf5d905c9 100644 --- a/frappe/integrations/doctype/webhook_data/webhook_data.json +++ b/frappe/integrations/doctype/webhook_data/webhook_data.json @@ -31,13 +31,13 @@ ], "istable": 1, "links": [], - "modified": "2022-08-03 12:20:52.208987", + "modified": "2024-03-23 16:04:03.331064", "modified_by": "Administrator", "module": "Integrations", "name": "Webhook Data", "owner": "Administrator", "permissions": [], - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [] } \ No newline at end of file diff --git a/frappe/integrations/doctype/webhook_header/webhook_header.json b/frappe/integrations/doctype/webhook_header/webhook_header.json index 6a7e8f9999..57333b842b 100644 --- a/frappe/integrations/doctype/webhook_header/webhook_header.json +++ b/frappe/integrations/doctype/webhook_header/webhook_header.json @@ -24,14 +24,14 @@ ], "istable": 1, "links": [], - "modified": "2023-12-11 12:20:51.949422", + "modified": "2024-03-23 16:04:03.419176", "modified_by": "Administrator", "module": "Integrations", "name": "Webhook Header", "owner": "Administrator", "permissions": [], "quick_entry": 1, - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [], "track_changes": 1 diff --git a/frappe/integrations/doctype/webhook_request_log/webhook_request_log.json b/frappe/integrations/doctype/webhook_request_log/webhook_request_log.json index b07197b12a..a932b624e0 100644 --- a/frappe/integrations/doctype/webhook_request_log/webhook_request_log.json +++ b/frappe/integrations/doctype/webhook_request_log/webhook_request_log.json @@ -79,7 +79,7 @@ "in_create": 1, "index_web_pages_for_search": 1, "links": [], - "modified": "2023-05-21 15:50:10.414002", + "modified": "2024-03-23 16:04:03.509383", "modified_by": "Administrator", "module": "Integrations", "name": "Webhook Request Log", @@ -99,7 +99,7 @@ "write": 1 } ], - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [] } \ No newline at end of file diff --git a/frappe/integrations/doctype/webhook_request_log/webhook_request_log.py b/frappe/integrations/doctype/webhook_request_log/webhook_request_log.py index 98d963df93..6f2df360cc 100644 --- a/frappe/integrations/doctype/webhook_request_log/webhook_request_log.py +++ b/frappe/integrations/doctype/webhook_request_log/webhook_request_log.py @@ -30,4 +30,4 @@ class WebhookRequestLog(Document): from frappe.query_builder.functions import Now table = frappe.qb.DocType("Webhook Request Log") - frappe.db.delete(table, filters=(table.modified < (Now() - Interval(days=days)))) + frappe.db.delete(table, filters=(table.creation < (Now() - Interval(days=days)))) diff --git a/frappe/integrations/offsite_backup_utils.py b/frappe/integrations/offsite_backup_utils.py index 8cd29d5ecc..f16eabe748 100644 --- a/frappe/integrations/offsite_backup_utils.py +++ b/frappe/integrations/offsite_backup_utils.py @@ -49,6 +49,7 @@ def get_latest_backup_file(with_files=False): frappe.conf.db_name, frappe.conf.db_user, frappe.conf.db_password, + db_socket=frappe.conf.db_socket, db_host=frappe.conf.db_host, db_port=frappe.conf.db_port, db_type=frappe.conf.db_type, @@ -107,6 +108,7 @@ def generate_files_backup(): frappe.conf.db_name, frappe.conf.db_user, frappe.conf.db_password, + db_socket=frappe.conf.db_socket, db_host=frappe.conf.db_host, db_port=frappe.conf.db_port, db_type=frappe.conf.db_type, diff --git a/frappe/locale/ar.po b/frappe/locale/ar.po index 55a96cfd49..77d75c2495 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: 2024-03-17 09:33+0000\n" -"PO-Revision-Date: 2024-03-18 10:48\n" +"POT-Creation-Date: 2024-03-24 09:33+0000\n" +"PO-Revision-Date: 2024-03-26 12:06\n" "Last-Translator: developers@frappe.io\n" "Language-Team: Arabic\n" "MIME-Version: 1.0\n" @@ -1230,7 +1230,7 @@ msgstr "إضافة / تحديث" msgid "Add A New Rule" msgstr "إضافة قاعدة جديدة" -#: public/js/frappe/views/communication.js:567 +#: public/js/frappe/views/communication.js:578 #: public/js/frappe/views/interaction.js:159 msgid "Add Attachment" msgstr "إضافة مرفق" @@ -1332,7 +1332,7 @@ msgstr "" msgid "Add Review" msgstr "إضافة مراجعة" -#: core/doctype/user/user.py:808 +#: core/doctype/user/user.py:810 msgid "Add Roles" msgstr "" @@ -1340,7 +1340,7 @@ msgstr "" msgid "Add Row" msgstr "" -#: public/js/frappe/views/communication.js:118 +#: public/js/frappe/views/communication.js:121 msgid "Add Signature" msgstr "إضافة التوقيع" @@ -1371,12 +1371,12 @@ msgstr "إضافة المشتركين" msgid "Add Tags" msgstr "" -#: public/js/frappe/list/list_view.js:1897 +#: public/js/frappe/list/list_view.js:1904 msgctxt "Button in list view actions menu" msgid "Add Tags" msgstr "" -#: public/js/frappe/views/communication.js:399 +#: public/js/frappe/views/communication.js:410 msgid "Add Template" msgstr "" @@ -1488,7 +1488,7 @@ msgstr "تمت الإضافة {0}" msgid "Added {0} ({1})" msgstr "وأضاف {0} ({1})" -#: core/doctype/user/user.py:305 +#: core/doctype/user/user.py:307 msgid "Adding System Manager to this User as there must be atleast one System Manager" msgstr "لابد من إضافة صلاحية مدير النظام لهذا المستخدم حيث لابد أن يكون هناك على الأقل مستخدم له هذه الصلاحية" @@ -1594,6 +1594,16 @@ msgstr "عناوين" msgid "Addresses And Contacts" msgstr "العناوين و جهات الاتصال" +#. Description of a DocType +#: custom/doctype/client_script/client_script.json +msgid "Adds a custom client script to a DocType" +msgstr "" + +#. Description of a DocType +#: custom/doctype/custom_field/custom_field.json +msgid "Adds a custom field to a DocType" +msgstr "" + #: public/js/frappe/ui/toolbar/search_utils.js:552 msgid "Administration" msgstr "الادارة" @@ -1615,11 +1625,11 @@ msgstr "الادارة" msgid "Administrator" msgstr "مدير" -#: core/doctype/user/user.py:1212 +#: core/doctype/user/user.py:1214 msgid "Administrator Logged In" msgstr "تسجيل دخول مسؤول النظام" -#: core/doctype/user/user.py:1206 +#: core/doctype/user/user.py:1208 msgid "Administrator accessed {0} on {1} via IP Address {2}." msgstr ".{2} المسؤول ولج {0} بتاريخ {1} عبر العنوان" @@ -2201,7 +2211,7 @@ msgstr "" msgid "Allowing DocType, DocType. Be careful!" msgstr "السماح DOCTYPE ، DOCTYPE . كن حذرا!" -#: core/doctype/user/user.py:1015 +#: core/doctype/user/user.py:1017 msgid "Already Registered" msgstr "مسجل بالفعل" @@ -2453,7 +2463,7 @@ msgstr "المفتاح السري للتطبيق" msgid "App not found for module: {0}" msgstr "" -#: __init__.py:1781 +#: __init__.py:1784 msgid "App {0} is not installed" msgstr "لم يتم تثبيت التطبيق {0}" @@ -2532,7 +2542,7 @@ msgctxt "Property Setter" msgid "Applied On" msgstr "تم التطبيق" -#: public/js/frappe/list/list_view.js:1882 +#: public/js/frappe/list/list_view.js:1889 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" msgstr "تطبيق قاعدة الواجب" @@ -2638,7 +2648,7 @@ msgstr "أرشفة" msgid "Archived Columns" msgstr "أعمدة من الأرشيف" -#: public/js/frappe/list/list_view.js:1861 +#: public/js/frappe/list/list_view.js:1868 msgid "Are you sure you want to clear the assignments?" msgstr "" @@ -2646,7 +2656,7 @@ msgstr "" msgid "Are you sure you want to delete all rows?" msgstr "هل تريد بالتأكيد حذف جميع الصفوف؟" -#: public/js/frappe/views/workspace/workspace.js:891 +#: public/js/frappe/views/workspace/workspace.js:896 msgid "Are you sure you want to delete page {0}?" msgstr "" @@ -2737,7 +2747,7 @@ msgstr "تعيين الشرط" msgid "Assign To" msgstr "تكليف إلى" -#: public/js/frappe/list/list_view.js:1843 +#: public/js/frappe/list/list_view.js:1850 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "تكليف إلى" @@ -2906,7 +2916,7 @@ msgstr "تعيينات" msgid "At least one column is required to show in the grid." msgstr "" -#: website/doctype/web_form/web_form.js:63 +#: website/doctype/web_form/web_form.js:73 msgid "At least one field is required in Web Form Fields Table" msgstr "" @@ -2942,7 +2952,7 @@ msgctxt "Web Form Field" msgid "Attach" msgstr "إرفاق" -#: public/js/frappe/views/communication.js:140 +#: public/js/frappe/views/communication.js:143 msgid "Attach Document Print" msgstr "إرفاق طباعة المستند" @@ -3409,6 +3419,11 @@ msgstr "يمكن تنشيط الربط التلقائي فقط لحساب بري msgid "Automatic Linking can be activated only if Incoming is enabled." msgstr "لا يمكن تنشيط الربط التلقائي إلا إذا تم تمكين الوارد." +#. Description of a DocType +#: automation/doctype/assignment_rule/assignment_rule.json +msgid "Automatically Assign Documents to Users" +msgstr "" + #. Label of a Int field in DocType 'Website Settings' #: website/doctype/website_settings/website_settings.json msgctxt "Website Settings" @@ -3555,7 +3570,7 @@ msgctxt "Print Settings" msgid "B9" msgstr "" -#: public/js/frappe/views/communication.js:77 +#: public/js/frappe/views/communication.js:79 msgid "BCC" msgstr "" @@ -4398,7 +4413,7 @@ msgstr "" msgid "CANCELLED" msgstr "ملغي" -#: public/js/frappe/views/communication.js:72 +#: public/js/frappe/views/communication.js:73 msgid "CC" msgstr "نسخة" @@ -4633,7 +4648,7 @@ msgstr "" msgid "Cancel" msgstr "إلغاء" -#: public/js/frappe/list/list_view.js:1952 +#: public/js/frappe/list/list_view.js:1959 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "إلغاء" @@ -4686,7 +4701,7 @@ msgstr "الغاء جميع الوثائق" msgid "Cancel Scheduling" msgstr "" -#: public/js/frappe/list/list_view.js:1957 +#: public/js/frappe/list/list_view.js:1964 msgctxt "Title of confirmation dialog" msgid "Cancel {0} documents?" msgstr "إلغاء {0} وثائق؟" @@ -4859,7 +4874,7 @@ msgstr "لا يمكن تحرير الإشعار القياسي. للتعديل msgid "Cannot edit Standard charts" msgstr "" -#: core/doctype/report/report.py:69 +#: core/doctype/report/report.py:72 msgid "Cannot edit a standard report. Please duplicate and create a new report" msgstr "لا يمكنك التعديل على التقارير القياسية. يرجى نسخ التقريرالقياسي و التعديل على النسخة الجديدة" @@ -4936,11 +4951,11 @@ msgstr "" msgid "Cannot update {0}" msgstr "لا يمكن تحديث {0}" -#: model/db_query.py:1119 +#: model/db_query.py:1103 msgid "Cannot use sub-query in order by" msgstr "لا يمكن استخدام طلب البحث الفرعي بالترتيب" -#: model/db_query.py:1137 +#: model/db_query.py:1121 msgid "Cannot use {0} in order/group by" msgstr "" @@ -5295,7 +5310,7 @@ msgstr "يتم عرض الجداول الفرعية كشبكة في DocTypes ا msgid "Choose Existing Card or create New Card" msgstr "اختر بطاقة موجودة أو أنشئ بطاقة جديدة" -#: public/js/frappe/views/workspace/workspace.js:1391 +#: public/js/frappe/views/workspace/workspace.js:1396 msgid "Choose a block or continue typing" msgstr "" @@ -5331,15 +5346,15 @@ msgstr "المدينة / البلدة" msgid "Clear" msgstr "واضح" -#: public/js/frappe/views/communication.js:404 +#: public/js/frappe/views/communication.js:415 msgid "Clear & Add Template" msgstr "" -#: public/js/frappe/views/communication.js:99 +#: public/js/frappe/views/communication.js:102 msgid "Clear & Add template" msgstr "" -#: public/js/frappe/list/list_view.js:1858 +#: public/js/frappe/list/list_view.js:1865 msgctxt "Button in list view actions menu" msgid "Clear Assignment" msgstr "" @@ -5366,7 +5381,7 @@ msgstr "" msgid "Clear User Permissions" msgstr "مسح أذونات المستخدم" -#: public/js/frappe/views/communication.js:405 +#: public/js/frappe/views/communication.js:416 msgid "Clear the email message and add the template" msgstr "" @@ -5424,7 +5439,7 @@ msgstr "انقر فوق {0} لإنشاء تحديث الرمز المميز." #: desk/doctype/dashboard_chart/dashboard_chart.js:315 #: desk/doctype/number_card/number_card.js:215 #: email/doctype/auto_email_report/auto_email_report.js:96 -#: website/doctype/web_form/web_form.js:226 +#: website/doctype/web_form/web_form.js:236 msgid "Click table to edit" msgstr "انقر الجدول لتعديل" @@ -5435,7 +5450,7 @@ msgstr "" #: desk/doctype/dashboard_chart/dashboard_chart.js:372 #: desk/doctype/number_card/number_card.js:270 -#: website/doctype/web_form/web_form.js:252 +#: website/doctype/web_form/web_form.js:262 msgid "Click to Set Filters" msgstr "" @@ -6112,7 +6127,7 @@ msgstr "أكمال" msgid "Complete By" msgstr "الكامل من جانب" -#: core/doctype/user/user.py:472 templates/emails/new_user.html:10 +#: core/doctype/user/user.py:474 templates/emails/new_user.html:10 msgid "Complete Registration" msgstr "أكمال التسجيل" @@ -6181,7 +6196,7 @@ msgstr "كتابة رسالة الكترونية" #: desk/doctype/dashboard_chart/dashboard_chart.js:439 #: desk/doctype/number_card/number_card.js:205 #: desk/doctype/number_card/number_card.js:333 -#: website/doctype/web_form/web_form.js:187 +#: website/doctype/web_form/web_form.js:197 msgid "Condition" msgstr "الحالة" @@ -6278,7 +6293,12 @@ msgid "Configure how amended documents will be named.
\n\n" "Default Naming will make the amended document to behave same as new documents." msgstr "" -#: core/doctype/user/user.js:374 public/js/frappe/dom.js:332 +#. Description of a DocType +#: core/doctype/document_naming_settings/document_naming_settings.json +msgid "Configure various aspects of how document naming works like naming series, current counter." +msgstr "" + +#: core/doctype/user/user.js:384 public/js/frappe/dom.js:332 #: www/update-password.html:30 msgid "Confirm" msgstr "أكد" @@ -6293,7 +6313,7 @@ msgstr "أكد" msgid "Confirm Deletion of Account" msgstr "" -#: core/doctype/user/user.js:167 +#: core/doctype/user/user.js:177 msgid "Confirm New Password" msgstr "تأكيد كلمة المرور الجديدة" @@ -6450,6 +6470,10 @@ msgstr "هاتف الاتصال" msgid "Contact Synced with Google Contacts." msgstr "الاتصال متزامنة مع جهات اتصال Google." +#: www/contact.html:4 +msgid "Contact Us" +msgstr "" + #. Name of a DocType #: website/doctype/contact_us_settings/contact_us_settings.json msgid "Contact Us Settings" @@ -6623,6 +6647,10 @@ msgstr "" msgid "Copied to clipboard." msgstr "نسخ إلى الحافظة." +#: website/doctype/web_form/web_form.js:29 +msgid "Copy Embed Code" +msgstr "" + #: public/js/frappe/form/templates/timeline_message_box.html:83 msgid "Copy Link" msgstr "" @@ -6649,7 +6677,7 @@ msgstr "لا يمكن تخصيص DocTypes الأساسية." msgid "Core Modules {0} cannot be searched in Global Search." msgstr "لا يمكن البحث عن الوحدات الأساسية {0} في البحث العالمي." -#: email/smtp.py:77 +#: email/smtp.py:78 msgid "Could not connect to outgoing email server" msgstr "لا يمكن الاتصال بخادم البريد الإلكتروني المنتهية ولايته" @@ -6763,7 +6791,7 @@ msgstr "" #: public/js/frappe/views/file/file_view.js:112 #: public/js/frappe/views/interaction.js:18 #: public/js/frappe/views/reports/query_report.js:1186 -#: public/js/frappe/views/workspace/workspace.js:1223 +#: public/js/frappe/views/workspace/workspace.js:1228 #: workflow/page/workflow_builder/workflow_builder.js:46 msgid "Create" msgstr "انشاء" @@ -6816,7 +6844,7 @@ msgstr "إنشاء جهات اتصال من رسائل البريد الإلكت msgid "Create Custom Fields" msgstr "" -#: public/js/frappe/views/workspace/workspace.js:931 +#: public/js/frappe/views/workspace/workspace.js:936 msgid "Create Duplicate" msgstr "" @@ -6851,11 +6879,11 @@ msgstr "" msgid "Create New Kanban Board" msgstr "" -#: core/doctype/user/user.js:246 +#: core/doctype/user/user.js:256 msgid "Create User Email" msgstr "انشاء بريد إلكتروني" -#: public/js/frappe/views/workspace/workspace.js:471 +#: public/js/frappe/views/workspace/workspace.js:476 msgid "Create Workspace" msgstr "" @@ -6887,6 +6915,11 @@ msgstr "انشاء جديد {0}" msgid "Create a {0} Account" msgstr "" +#. Description of a DocType +#: email/doctype/newsletter/newsletter.json +msgid "Create and send emails to a specific group of subscribers periodically." +msgstr "" + #: printing/page/print_format_builder_beta/print_format_builder_beta.js:34 msgid "Create or Edit Print Format" msgstr "" @@ -7053,6 +7086,11 @@ msgctxt "System Settings" msgid "Currency Precision" msgstr "دقة العملة" +#. Description of a DocType +#: geo/doctype/currency/currency.json +msgid "Currency list stores the currency value, its symbol and fraction unit" +msgstr "" + #. Option for the 'Address Type' (Select) field in DocType 'Address' #: contacts/doctype/address/address.json msgctxt "Address" @@ -7418,7 +7456,7 @@ msgstr "التخصيص" msgid "Customization onboarding is all done!" msgstr "" -#: public/js/frappe/views/workspace/workspace.js:517 +#: public/js/frappe/views/workspace/workspace.js:522 msgid "Customizations Discarded" msgstr "" @@ -7437,7 +7475,7 @@ msgstr "تم تصدير التخصيصات ل {0} إلى:
{1}" msgid "Customize" msgstr "تخصيص" -#: public/js/frappe/list/list_view.js:1703 +#: public/js/frappe/list/list_view.js:1710 msgctxt "Button in list view menu" msgid "Customize" msgstr "تخصيص" @@ -8277,6 +8315,12 @@ msgctxt "DocType" msgid "Default View" msgstr "" +#. Label of a Link field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Default Workspace" +msgstr "" + #: core/doctype/doctype/doctype.py:1325 msgid "Default for 'Check' type of field {0} must be either '0' or '1'" msgstr "يجب أن يكون الإعداد الافتراضي لنوع حقل "التحقق" {0} إما "0" أو "1"" @@ -8316,6 +8360,16 @@ msgstr "الافتراضات" msgid "Defaults Updated" msgstr "" +#. Description of a DocType +#: workflow/doctype/workflow_transition/workflow_transition.json +msgid "Defines actions on states and the next step and allowed roles." +msgstr "" + +#. Description of a DocType +#: 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' #: core/doctype/communication/communication.json msgctxt "Communication" @@ -8327,13 +8381,13 @@ msgstr "مؤجل" #: public/js/frappe/form/grid.js:63 public/js/frappe/form/toolbar.js:423 #: public/js/frappe/views/reports/report_view.js:1642 #: public/js/frappe/views/treeview.js:313 -#: public/js/frappe/views/workspace/workspace.js:829 +#: public/js/frappe/views/workspace/workspace.js:834 #: templates/discussions/reply_card.html:35 #: templates/discussions/reply_section.html:29 msgid "Delete" msgstr "حذف" -#: public/js/frappe/list/list_view.js:1920 +#: public/js/frappe/list/list_view.js:1927 msgctxt "Button in list view actions menu" msgid "Delete" msgstr "حذف" @@ -8372,7 +8426,7 @@ msgstr "حذف البيانات" msgid "Delete Kanban Board" msgstr "" -#: public/js/frappe/views/workspace/workspace.js:830 +#: public/js/frappe/views/workspace/workspace.js:835 msgid "Delete Workspace" msgstr "" @@ -8388,12 +8442,12 @@ msgstr "حذف التعليق؟" msgid "Delete this record to allow sending to this email address" msgstr "احذف هذا السجل للسماح بالإرسال إلى عنوان البريد الإلكتروني هذا" -#: public/js/frappe/list/list_view.js:1925 +#: public/js/frappe/list/list_view.js:1932 msgctxt "Title of confirmation dialog" msgid "Delete {0} item permanently?" msgstr "" -#: public/js/frappe/list/list_view.js:1931 +#: public/js/frappe/list/list_view.js:1938 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "حذف {0} العناصر نهائيا؟" @@ -8447,7 +8501,7 @@ msgctxt "Deleted Document" msgid "Deleted Name" msgstr "الاسم المحذوف" -#: desk/reportview.py:502 +#: desk/reportview.py:506 msgid "Deleting {0}" msgstr "حذف {0}" @@ -8932,7 +8986,7 @@ msgstr "الرد التلقائي معطل" #: public/js/frappe/views/communication.js:30 #: public/js/frappe/views/dashboard/dashboard_view.js:70 -#: public/js/frappe/views/workspace/workspace.js:508 +#: public/js/frappe/views/workspace/workspace.js:513 #: public/js/frappe/web_form/web_form.js:187 msgid "Discard" msgstr "تجاهل" @@ -9232,6 +9286,11 @@ msgstr "لا يمكن دمج DOCTYPE" msgid "DocType can only be renamed by Administrator" msgstr "DOCTYPE لا يمكن تسميتها من قبل المسؤول" +#. Description of a DocType +#: core/doctype/doctype/doctype.json +msgid "DocType is a Table / Form in the application." +msgstr "" + #: integrations/doctype/webhook/webhook.py:82 msgid "DocType must be Submittable for the selected Doc Event" msgstr "يجب تقديم دوكتيب للحدث دوك المحدد" @@ -9292,7 +9351,7 @@ msgstr "" msgid "Doctype required" msgstr "Doctype المطلوبة" -#: public/js/frappe/views/workspace/workspace.js:1309 +#: public/js/frappe/views/workspace/workspace.js:1314 msgid "Doctype with same route already exist. Please choose different title." msgstr "" @@ -9924,7 +9983,7 @@ msgstr "مشروع" #: public/js/frappe/views/workspace/blocks/header.js:46 #: public/js/frappe/views/workspace/blocks/paragraph.js:136 #: public/js/frappe/views/workspace/blocks/spacer.js:44 -#: public/js/frappe/views/workspace/workspace.js:571 +#: public/js/frappe/views/workspace/workspace.js:576 #: public/js/frappe/widgets/base_widget.js:33 msgid "Drag" msgstr "" @@ -9980,8 +10039,8 @@ msgstr "تاريخ الاستحقاق بناء على" #: public/js/frappe/form/grid_row_form.js:42 #: public/js/frappe/form/toolbar.js:377 -#: public/js/frappe/views/workspace/workspace.js:814 -#: public/js/frappe/views/workspace/workspace.js:981 +#: public/js/frappe/views/workspace/workspace.js:819 +#: public/js/frappe/views/workspace/workspace.js:986 msgid "Duplicate" msgstr "مكررة" @@ -9997,8 +10056,8 @@ msgstr "تكرار اسم الفلتر" msgid "Duplicate Name" msgstr "اسم مكرر" -#: public/js/frappe/views/workspace/workspace.js:553 -#: public/js/frappe/views/workspace/workspace.js:815 +#: public/js/frappe/views/workspace/workspace.js:558 +#: public/js/frappe/views/workspace/workspace.js:820 msgid "Duplicate Workspace" msgstr "" @@ -10006,7 +10065,7 @@ msgstr "" msgid "Duplicate current row" msgstr "" -#: public/js/frappe/views/workspace/workspace.js:996 +#: public/js/frappe/views/workspace/workspace.js:1001 msgid "Duplicate of {0} named as {1} is created successfully" msgstr "" @@ -10150,8 +10209,8 @@ msgstr "" #: public/js/frappe/form/toolbar.js:672 #: public/js/frappe/views/reports/query_report.js:813 #: public/js/frappe/views/reports/query_report.js:1634 -#: public/js/frappe/views/workspace/workspace.js:454 -#: public/js/frappe/views/workspace/workspace.js:808 +#: public/js/frappe/views/workspace/workspace.js:459 +#: public/js/frappe/views/workspace/workspace.js:813 #: public/js/frappe/widgets/base_widget.js:64 #: public/js/frappe/widgets/chart_widget.js:298 #: public/js/frappe/widgets/number_card_widget.js:331 @@ -10162,7 +10221,7 @@ msgstr "" msgid "Edit" msgstr "تصحيح" -#: public/js/frappe/list/list_view.js:2006 +#: public/js/frappe/list/list_view.js:2013 msgctxt "Button in list view actions menu" msgid "Edit" msgstr "تصحيح" @@ -10198,7 +10257,7 @@ msgstr "تحرير مخصص HTML" msgid "Edit DocType" msgstr "تعديل القائمة" -#: public/js/frappe/list/list_view.js:1730 +#: public/js/frappe/list/list_view.js:1737 msgctxt "Button in list view menu" msgid "Edit DocType" msgstr "تعديل القائمة" @@ -10283,7 +10342,7 @@ msgctxt "Website Settings" msgid "Edit Values" msgstr "تحرير القيم" -#: public/js/frappe/views/workspace/workspace.js:809 +#: public/js/frappe/views/workspace/workspace.js:814 msgid "Edit Workspace" msgstr "" @@ -10483,11 +10542,11 @@ msgctxt "Email Account" msgid "Email Account Name" msgstr "البريد الإلكتروني اسم الحساب" -#: core/doctype/user/user.py:741 +#: core/doctype/user/user.py:743 msgid "Email Account added multiple times" msgstr "تمت إضافة حساب البريد الإلكتروني عدة مرات" -#: email/smtp.py:42 +#: email/smtp.py:43 msgid "Email Account not setup. Please create a new Email Account from Settings > Email Account" msgstr "" @@ -10643,6 +10702,11 @@ msgstr "البريد الإلكتروني المستلم قائمة الانتظ msgid "Email Queue flushing aborted due to too many failures." msgstr "" +#. Description of a DocType +#: email/doctype/email_queue/email_queue.json +msgid "Email Queue records." +msgstr "" + #. Label of a HTML field in DocType 'Email Template' #: email/doctype/email_template/email_template.json msgctxt "Email Template" @@ -10722,7 +10786,7 @@ msgstr "مزامنة البريد الإلكتروني الخيار" #. Name of a DocType #: email/doctype/email_template/email_template.json -#: public/js/frappe/views/communication.js:92 +#: public/js/frappe/views/communication.js:95 msgid "Email Template" msgstr "قالب البريد الإلكتروني" @@ -10763,7 +10827,7 @@ msgstr "تم وضع علامة على البريد الإلكتروني كغير msgid "Email has been moved to trash" msgstr "تم نقل البريد الإلكتروني إلى المهملات" -#: public/js/frappe/views/communication.js:788 +#: public/js/frappe/views/communication.js:799 msgid "Email not sent to {0} (unsubscribed / disabled)" msgstr "البريد الإلكتروني لا يرسل إلى {0} (غير مشترك / غيرمفعل)" @@ -10781,6 +10845,10 @@ msgctxt "Workflow" msgid "Emails will be sent with next possible workflow actions" msgstr "سيتم إرسال رسائل البريد الإلكتروني مع إجراءات سير العمل التالية المحتملة" +#: website/doctype/web_form/web_form.js:34 +msgid "Embed code copied" +msgstr "" + #. Label of a Check field in DocType 'Google Calendar' #: integrations/doctype/google_calendar/google_calendar.json msgctxt "Google Calendar" @@ -11117,6 +11185,11 @@ msgstr "" 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 +#: integrations/doctype/push_notification_settings/push_notification_settings.json +msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved." +msgstr "" + #. Description of the 'Relay Settings' (Section Break) field in DocType 'Push #. Notification Settings' #: integrations/doctype/push_notification_settings/push_notification_settings.json @@ -11281,7 +11354,7 @@ msgstr "أدخل معرف العميل وسر العميل في إعدادات G msgid "Enter Code displayed in OTP App." msgstr "" -#: public/js/frappe/views/communication.js:743 +#: public/js/frappe/views/communication.js:754 msgid "Enter Email Recipient(s)" msgstr "أدخل البريد الإلكتروني المستلم" @@ -11753,7 +11826,7 @@ msgstr "وقت انتهاء صلاحية رمز الاستجابة السريع msgid "Export" msgstr "تصدير" -#: public/js/frappe/list/list_view.js:2028 +#: public/js/frappe/list/list_view.js:2035 msgctxt "Button in list view actions menu" msgid "Export" msgstr "تصدير" @@ -12198,7 +12271,7 @@ msgctxt "Custom Field" msgid "Field Type" msgstr "نوع الحقل" -#: desk/reportview.py:176 +#: desk/reportview.py:182 msgid "Field not permitted in query" msgstr "" @@ -12552,9 +12625,9 @@ msgstr "الملفات" #: desk/doctype/number_card/number_card.js:205 #: desk/doctype/number_card/number_card.js:333 #: email/doctype/auto_email_report/auto_email_report.js:90 -#: public/js/frappe/list/base_list.js:870 +#: public/js/frappe/list/base_list.js:878 #: public/js/frappe/ui/filters/filter_list.js:134 -#: website/doctype/web_form/web_form.js:187 +#: website/doctype/web_form/web_form.js:197 msgid "Filter" msgstr "منقي" @@ -13478,7 +13551,7 @@ msgctxt "System Settings" msgid "Friday" msgstr "الجمعة" -#: public/js/frappe/views/communication.js:182 +#: public/js/frappe/views/communication.js:185 #: public/js/frappe/views/inbox/inbox_view.js:70 msgid "From" msgstr "من" @@ -13597,7 +13670,7 @@ msgstr "وظيفة" msgid "Function Based On" msgstr "وظيفة على أساس" -#: __init__.py:930 +#: __init__.py:933 msgid "Function {0} is not whitelisted." msgstr "" @@ -13666,6 +13739,10 @@ msgctxt "User" msgid "Gender" msgstr "جنس" +#: www/contact.html:29 +msgid "General" +msgstr "عام" + #. Title of an Onboarding Step #: custom/onboarding_step/report_builder/report_builder.json msgid "Generate Custom Reports" @@ -13722,7 +13799,7 @@ msgctxt "Auto Repeat" msgid "Get Contacts" msgstr "الحصول على اتصالات" -#: website/doctype/web_form/web_form.js:83 +#: website/doctype/web_form/web_form.js:93 msgid "Get Fields" msgstr "احصل على الحقول" @@ -14649,7 +14726,7 @@ msgctxt "Form Tour Step" msgid "Hidden Fields" msgstr "" -#: public/js/frappe/views/workspace/workspace.js:820 +#: public/js/frappe/views/workspace/workspace.js:825 #: public/js/frappe/widgets/base_widget.js:46 #: public/js/frappe/widgets/base_widget.js:176 #: templates/includes/login/login.js:83 @@ -14799,7 +14876,7 @@ msgctxt "Portal Settings" msgid "Hide Standard Menu" msgstr "إخفاء القائمة الرئيسية" -#: public/js/frappe/list/list_view.js:1605 +#: public/js/frappe/list/list_view.js:1612 msgid "Hide Tags" msgstr "" @@ -14807,7 +14884,7 @@ msgstr "" msgid "Hide Weekends" msgstr "إخفاء عطلة نهاية الأسبوع" -#: public/js/frappe/views/workspace/workspace.js:821 +#: public/js/frappe/views/workspace/workspace.js:826 msgid "Hide Workspace" msgstr "" @@ -14964,7 +15041,7 @@ msgstr "كيف ينبغي أن يتم تنسيق هذه العملة؟ إذا ل msgid "ID" msgstr "هوية شخصية" -#: desk/reportview.py:431 public/js/frappe/views/reports/report_view.js:917 +#: desk/reportview.py:435 public/js/frappe/views/reports/report_view.js:917 msgctxt "Label of name column in report" msgid "ID" msgstr "هوية شخصية" @@ -15016,9 +15093,9 @@ msgctxt "Comment" msgid "IP Address" msgstr "عنوان IP" -#: public/js/frappe/views/workspace/workspace.js:638 -#: public/js/frappe/views/workspace/workspace.js:966 -#: public/js/frappe/views/workspace/workspace.js:1211 +#: public/js/frappe/views/workspace/workspace.js:643 +#: public/js/frappe/views/workspace/workspace.js:971 +#: public/js/frappe/views/workspace/workspace.js:1216 msgid "Icon" msgstr "أيقونة" @@ -15215,6 +15292,12 @@ msgctxt "Note" 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' +#: core/doctype/user/user.json +msgctxt "User" +msgid "If left empty, the default workspace will be the last visited workspace" +msgstr "" + #. Description of the 'Port' (Data) field in DocType 'Email Domain' #: email/doctype/email_domain/email_domain.json msgctxt "Email Domain" @@ -15401,7 +15484,7 @@ msgstr "وصول رمز غير قانوني. حاول مرة اخرى" msgid "Illegal Document Status for {0}" msgstr "حالة المستند غير القانوني لـ {0}" -#: model/db_query.py:441 model/db_query.py:444 model/db_query.py:1122 +#: model/db_query.py:440 model/db_query.py:443 model/db_query.py:1106 msgid "Illegal SQL Query" msgstr "استعلام SQL غير قانوني" @@ -15516,7 +15599,7 @@ msgstr "" msgid "Images" msgstr "صور" -#: core/doctype/user/user.js:346 +#: core/doctype/user/user.js:356 msgid "Impersonate" msgstr "" @@ -15526,7 +15609,7 @@ msgctxt "Activity Log" msgid "Impersonate" msgstr "" -#: core/doctype/user/user.js:373 +#: core/doctype/user/user.js:383 msgid "Impersonate as {0}" msgstr "" @@ -15553,7 +15636,7 @@ msgstr "ضمني" msgid "Import" msgstr "استيراد" -#: public/js/frappe/list/list_view.js:1667 +#: public/js/frappe/list/list_view.js:1674 msgctxt "Button in list view menu" msgid "Import" msgstr "استيراد" @@ -15900,7 +15983,7 @@ msgstr "" msgid "Incomplete login details" msgstr "تفاصيل تسجيل الدخول غير مكتملة" -#: email/smtp.py:103 +#: email/smtp.py:104 msgid "Incorrect Configuration" msgstr "التكوين غير الصحيح" @@ -15978,9 +16061,9 @@ msgctxt "Workspace" msgid "Indicator Color" msgstr "" -#: public/js/frappe/views/workspace/workspace.js:645 -#: public/js/frappe/views/workspace/workspace.js:973 -#: public/js/frappe/views/workspace/workspace.js:1217 +#: public/js/frappe/views/workspace/workspace.js:650 +#: public/js/frappe/views/workspace/workspace.js:978 +#: public/js/frappe/views/workspace/workspace.js:1222 msgid "Indicator color" msgstr "" @@ -16112,11 +16195,11 @@ msgstr "" msgid "Insufficient Permission for {0}" msgstr "عدم كفاية الإذن {0}" -#: desk/reportview.py:335 +#: desk/reportview.py:339 msgid "Insufficient Permissions for deleting Report" msgstr "" -#: desk/reportview.py:306 +#: desk/reportview.py:310 msgid "Insufficient Permissions for editing Report" msgstr "" @@ -16221,6 +16304,11 @@ msgstr "متوسط" msgid "Internal Server Error" msgstr "خطأ في الخادم الداخلي" +#. Description of a DocType +#: core/doctype/docshare/docshare.json +msgid "Internal record of document shares" +msgstr "" + #: desk/page/user_profile/user_profile_sidebar.html:22 msgid "Intro" msgstr "" @@ -16301,7 +16389,7 @@ msgstr "تنسيق CSV غير صالح" msgid "Invalid Condition: {}" msgstr "" -#: email/smtp.py:132 +#: email/smtp.py:134 msgid "Invalid Credentials" msgstr "بيانات الاعتماد غير صالحة" @@ -16353,7 +16441,7 @@ msgstr "" msgid "Invalid Mail Server. Please rectify and try again." msgstr "خادم البريد غير صالحة . يرجى تصحيح و حاول مرة أخرى." -#: model/naming.py:93 +#: model/naming.py:94 msgid "Invalid Naming Series: {}" msgstr "" @@ -16365,7 +16453,7 @@ msgstr "" msgid "Invalid Option" msgstr "خيار غير صالح" -#: email/smtp.py:102 +#: email/smtp.py:103 msgid "Invalid Outgoing Mail Server or Port: {0}" msgstr "" @@ -16377,7 +16465,7 @@ msgstr "تنسيق الإخراج غير صالح" msgid "Invalid Parameters." msgstr "" -#: core/doctype/user/user.py:1227 www/update-password.html:121 +#: core/doctype/user/user.py:1229 www/update-password.html:121 #: www/update-password.html:142 www/update-password.html:144 #: www/update-password.html:245 msgid "Invalid Password" @@ -16416,7 +16504,7 @@ msgstr "اسم المستخدم غير صحيح أو كلمة المرور ال msgid "Invalid Webhook Secret" msgstr "" -#: desk/reportview.py:161 +#: desk/reportview.py:167 msgid "Invalid aggregate function" msgstr "" @@ -16457,11 +16545,11 @@ msgstr "مرشح غير صالح: {0}" msgid "Invalid json added in the custom options: {0}" msgstr "تمت إضافة json غير صالح في الخيارات المخصصة: {0}" -#: model/naming.py:444 +#: model/naming.py:466 msgid "Invalid name type (integer) for varchar name column" msgstr "" -#: model/naming.py:54 +#: model/naming.py:55 msgid "Invalid naming series {}: dot (.) missing" msgstr "" @@ -17087,6 +17175,16 @@ msgctxt "Button in kanban view menu" msgid "Kanban Settings" msgstr "" +#. Description of a DocType +#: core/doctype/activity_log/activity_log.json +msgid "Keep track of all update feeds" +msgstr "" + +#. Description of a DocType +#: core/doctype/communication/communication.json +msgid "Keeps track of all communications" +msgstr "" + #. Label of a Data field in DocType 'DefaultValue' #: core/doctype/defaultvalue/defaultvalue.json msgctxt "DefaultValue" @@ -18317,7 +18415,7 @@ msgctxt "Web Form" msgid "List Setting Message" msgstr "" -#: public/js/frappe/list/list_view.js:1747 +#: public/js/frappe/list/list_view.js:1754 msgctxt "Button in list view menu" msgid "List Settings" msgstr "إعدادات القائمة" @@ -18361,6 +18459,11 @@ msgctxt "Web Page" msgid "List as [{\"label\": _(\"Jobs\"), \"route\":\"jobs\"}]" msgstr "القائمة كما [{ "التسمية": _ ( "وظائف")، "الطريق": "وظائف"}]" +#. Description of a DocType +#: core/doctype/patch_log/patch_log.json +msgid "List of patches executed" +msgstr "" + #: public/js/frappe/ui/toolbar/search_utils.js:542 msgid "Lists" msgstr "" @@ -18385,7 +18488,7 @@ msgstr "" #: core/page/permission_manager/permission_manager.js:165 #: public/js/frappe/form/controls/multicheck.js:13 #: public/js/frappe/form/linked_with.js:13 -#: public/js/frappe/list/base_list.js:482 +#: public/js/frappe/list/base_list.js:490 #: public/js/frappe/list/list_view.js:333 public/js/frappe/ui/listing.html:16 #: public/js/frappe/views/reports/query_report.js:1015 msgid "Loading" @@ -18550,7 +18653,7 @@ msgstr "" msgid "Login and view in Browser" msgstr "تسجيل الدخول وعرض في المتصفح" -#: website/doctype/web_form/web_form.js:357 +#: website/doctype/web_form/web_form.js:367 msgid "Login is required to see web form list view. Enable {0} to see list settings" msgstr "" @@ -18614,7 +18717,7 @@ msgctxt "Activity Log" msgid "Logout" msgstr "خروج" -#: core/doctype/user/user.js:173 +#: core/doctype/user/user.js:183 msgid "Logout All Sessions" msgstr "تسجيل الخروج من جميع الجلسات" @@ -19167,7 +19270,7 @@ msgstr "الدمج مسموح فقط بين مجموعة ومجموعة أو ف #: core/doctype/data_import/data_import.js:489 #: public/js/frappe/ui/messages.js:175 -#: public/js/frappe/views/communication.js:111 www/message.html:3 +#: public/js/frappe/views/communication.js:114 www/message.html:3 #: www/message.html:25 msgid "Message" msgstr "رسالة" @@ -19197,7 +19300,7 @@ msgctxt "Communication" msgid "Message" msgstr "رسالة" -#: __init__.py:614 public/js/frappe/ui/messages.js:265 +#: __init__.py:617 public/js/frappe/ui/messages.js:265 msgctxt "Default title of the message dialog" msgid "Message" msgstr "رسالة" @@ -19287,7 +19390,7 @@ msgctxt "Notification" msgid "Message Type" msgstr "" -#: public/js/frappe/views/communication.js:922 +#: public/js/frappe/views/communication.js:933 msgid "Message clipped" msgstr "رسالة قص" @@ -20069,7 +20172,7 @@ msgstr "يجب أن يكون من نوع "إرفاق صورة"" msgid "Must have report permission to access this report." msgstr "يجب أن يكون لديك إذن تقارير للوصول إلى هذا التقرير." -#: core/doctype/report/report.py:145 +#: core/doctype/report/report.py:148 msgid "Must specify a Query to run" msgstr "يجب تحديد استعلام لتشغيل" @@ -20155,7 +20258,7 @@ msgstr "" msgid "Name already taken, please set a new name" msgstr "" -#: model/naming.py:458 +#: model/naming.py:480 msgid "Name cannot contain special characters like {0}" msgstr "الإسم لا يمكن أن يحتوي على أحرف خاصة مثل {0}" @@ -20167,7 +20270,7 @@ msgstr "اسم نوع الوثيقة (DOCTYPE) تريد هذا الحقل لتك msgid "Name of the new Print Format" msgstr "اسم الشكل الجديد طباعة" -#: model/naming.py:453 +#: model/naming.py:475 msgid "Name of {0} cannot be {1}" msgstr "اسم {0} لا يمكن أن يكون {1}" @@ -20227,7 +20330,7 @@ msgctxt "Document Naming Settings" msgid "Naming Series" msgstr "سلسلة التسمية" -#: model/naming.py:243 +#: model/naming.py:244 msgid "Naming Series mandatory" msgstr "تسمية سلسلة إلزامية" @@ -20413,7 +20516,7 @@ msgstr "" msgid "New Mention on {0}" msgstr "إشارة جديدة في {0}" -#: www/contact.py:50 +#: www/contact.py:59 msgid "New Message from Website Contact Page" msgstr "رسالة جديدة من موقع الاتصال الصفحة" @@ -20443,7 +20546,7 @@ msgstr "" msgid "New Onboarding" msgstr "" -#: core/doctype/user/user.js:161 www/update-password.html:19 +#: core/doctype/user/user.js:171 www/update-password.html:19 msgid "New Password" msgstr "كلمة مرور جديدة" @@ -20473,7 +20576,7 @@ msgstr "" msgid "New Workflow Name" msgstr "" -#: public/js/frappe/views/workspace/workspace.js:1178 +#: public/js/frappe/views/workspace/workspace.js:1183 msgid "New Workspace" msgstr "" @@ -20533,7 +20636,7 @@ msgstr "جديد {0}: {1}" msgid "New {} releases for the following apps are available" msgstr "تتوفر {} إصدارات جديدة للتطبيقات التالية" -#: core/doctype/user/user.py:804 +#: core/doctype/user/user.py:806 msgid "Newly created user {0} has no roles enabled." msgstr "" @@ -20802,7 +20905,7 @@ msgstr "" msgid "No Letterhead" msgstr "" -#: model/naming.py:435 +#: model/naming.py:457 msgid "No Name Specified for {0}" msgstr "لا يوجد اسم محدد لـ {0}" @@ -20850,7 +20953,7 @@ msgstr "لا يوجد نتائج" msgid "No Results found" msgstr "" -#: core/doctype/user/user.py:805 +#: core/doctype/user/user.py:807 msgid "No Roles Specified" msgstr "" @@ -20858,7 +20961,7 @@ msgstr "" msgid "No Select Field Found" msgstr "" -#: desk/reportview.py:580 +#: desk/reportview.py:584 msgid "No Tags" msgstr "لا علامات" @@ -20890,7 +20993,7 @@ msgstr "لا توجد تغييرات في المستند" msgid "No changes made because old and new name are the same." msgstr "" -#: public/js/frappe/views/workspace/workspace.js:1483 +#: public/js/frappe/views/workspace/workspace.js:1488 msgid "No changes made on the page" msgstr "" @@ -21000,7 +21103,7 @@ msgctxt "SMS Log" msgid "No of Sent SMS" msgstr "" -#: __init__.py:1118 client.py:109 client.py:151 +#: __init__.py:1121 client.py:109 client.py:151 msgid "No permission for {0}" msgstr "لا يوجد صلاحية لـ {0}
No permission for {0}" @@ -21009,7 +21112,7 @@ msgctxt "{0} = verb, {1} = object" msgid "No permission to '{0}' {1}" msgstr "لا توجد صلاحية ل '{0} ' {1}" -#: model/db_query.py:935 +#: model/db_query.py:924 msgid "No permission to read {0}" msgstr "ليس هناك إذن لقراءة {0}" @@ -21037,7 +21140,7 @@ msgstr "لن يتم تصدير سجلات" msgid "No template found at path: {0}" msgstr "لم يتم العثور على نموذج في المسار: {0}" -#: public/js/frappe/form/controls/multiselect_list.js:226 +#: public/js/frappe/form/controls/multiselect_list.js:246 msgid "No values to show" msgstr "" @@ -21061,11 +21164,7 @@ msgstr "" msgid "No {0} mail" msgstr "لا {0} الإلكتروني" -#: public/js/form_builder/utils.js:117 -msgid "No." -msgstr "" - -#: public/js/frappe/form/grid_row.js:252 +#: public/js/form_builder/utils.js:117 public/js/frappe/form/grid_row.js:252 msgctxt "Title of the 'row number' column" msgid "No." msgstr "" @@ -21111,7 +21210,7 @@ msgctxt "Recorder Query" msgid "Normalized Query" msgstr "" -#: core/doctype/user/user.py:1010 templates/includes/login/login.js:258 +#: core/doctype/user/user.py:1012 templates/includes/login/login.js:258 #: utils/oauth.py:265 msgid "Not Allowed" msgstr "غير مسموح" @@ -21160,10 +21259,10 @@ msgctxt "DocField" msgid "Not Nullable" msgstr "" -#: __init__.py:1014 app.py:353 desk/calendar.py:26 geo/utils.py:97 +#: __init__.py:1017 app.py:353 desk/calendar.py:26 geo/utils.py:97 #: public/js/frappe/web_form/webform_script.js:15 #: website/doctype/web_form/web_form.py:602 -#: website/page_renderers/not_permitted_page.py:20 www/login.py:174 +#: website/page_renderers/not_permitted_page.py:20 www/login.py:178 #: www/qrcode.py:22 www/qrcode.py:25 www/qrcode.py:37 msgid "Not Permitted" msgstr "لا يسمح" @@ -21220,7 +21319,7 @@ msgstr "غير محدد" msgid "Not a valid Comma Separated Value (CSV File)" msgstr "ليس صالحا القيمة المفصولة بفواصل ( CSV ملف)" -#: core/doctype/user/user.py:232 +#: core/doctype/user/user.py:234 msgid "Not a valid User Image." msgstr "ليست صورة مستخدم صالحة." @@ -21273,7 +21372,7 @@ msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType." msgstr "ليس في وضع المطور! يقع في site_config.json أو جعل DOCTYPE \"مخصص\"." #: api/v1.py:88 api/v1.py:93 -#: core/doctype/system_settings/system_settings.py:208 handler.py:109 +#: core/doctype/system_settings/system_settings.py:209 handler.py:109 #: public/js/frappe/request.js:157 public/js/frappe/request.js:167 #: public/js/frappe/request.js:172 #: public/js/frappe/views/kanban/kanban_board.bundle.js:68 @@ -21324,7 +21423,7 @@ msgstr "ملاحظة: يتم إرسال رسائل البريد الإلكترو msgid "Note: Changing the Page Name will break previous URL to this page." msgstr "ملاحظة: يؤدي تغيير اسم الصفحة إلى كسر عنوان ورل السابق لهذه الصفحة." -#: core/doctype/user/user.js:25 +#: core/doctype/user/user.js:35 msgid "Note: Etc timezones have their signs reversed." msgstr "" @@ -21342,7 +21441,7 @@ msgctxt "System Settings" msgid "Note: Multiple sessions will be allowed in case of mobile device" msgstr "ملاحظة: سيتم السماح جلسات متعددة في حالة جهاز الموبايل" -#: core/doctype/user/user.js:361 +#: core/doctype/user/user.js:371 msgid "Note: This will be shared with user." msgstr "" @@ -21589,7 +21688,7 @@ msgstr "" msgid "Number of attachment fields are more than {}, limit updated to {}." msgstr "" -#: core/doctype/system_settings/system_settings.py:161 +#: core/doctype/system_settings/system_settings.py:162 msgid "Number of backups must be greater than zero." msgstr "" @@ -21791,7 +21890,7 @@ msgctxt "Webhook" msgid "On checking this option, URL will be treated like a jinja template string" msgstr "" -#: public/js/frappe/views/communication.js:932 +#: public/js/frappe/views/communication.js:943 msgid "On {0}, {1} wrote:" msgstr "" @@ -21858,7 +21957,7 @@ msgstr "كلمة المرور لمرة واحدة (OTP) رمز التسجيل م msgid "One of" msgstr "واحد من" -#: public/js/frappe/views/workspace/workspace.js:1318 +#: public/js/frappe/views/workspace/workspace.js:1323 msgid "One of the child page with name {0} already exist in {1} Section. Please update the name of the child page first before moving" msgstr "" @@ -21874,7 +21973,7 @@ msgstr "يمكن فقط للمسؤول حذف قائمة انتظار البري msgid "Only Administrator can edit" msgstr "مدير النظام فقط يمكنه التحرير" -#: core/doctype/report/report.py:72 +#: core/doctype/report/report.py:75 msgid "Only Administrator can save a standard report. Please rename and save." msgstr "مسؤول فقط يمكن حفظ تقرير القياسية. الرجاء إعادة تسمية وحفظ." @@ -21902,7 +22001,7 @@ msgstr "فقط إرسال السجلات التي تم تحديثها في آخ msgid "Only Workspace Manager can edit public workspaces" msgstr "" -#: public/js/frappe/views/workspace/workspace.js:542 +#: public/js/frappe/views/workspace/workspace.js:547 msgid "Only Workspace Manager can sort or edit this page" msgstr "" @@ -21932,11 +22031,11 @@ msgstr "ضرورية لسجلات جديدة الحقول الإلزامية ف msgid "Only one {0} can be set as primary." msgstr "يمكن تعيين {0} واحد فقط على أنه أساسي." -#: desk/reportview.py:332 +#: desk/reportview.py:336 msgid "Only reports of type Report Builder can be deleted" msgstr "" -#: desk/reportview.py:303 +#: desk/reportview.py:307 msgid "Only reports of type Report Builder can be edited" msgstr "" @@ -21964,7 +22063,7 @@ msgstr "" msgid "Open" msgstr "فتح" -#: desk/doctype/todo/todo_list.js:20 +#: desk/doctype/todo/todo_list.js:14 msgctxt "Access" msgid "Open" msgstr "فتح" @@ -22061,7 +22160,7 @@ msgstr "فتح عنصر القائمة" msgid "Open your authentication app on your mobile phone." msgstr "افتح تطبيق المصادقة على هاتفك الجوال." -#: desk/doctype/todo/todo_list.js:23 +#: desk/doctype/todo/todo_list.js:17 #: public/js/frappe/form/templates/form_links.html:18 #: public/js/frappe/ui/toolbar/search_utils.js:277 #: public/js/frappe/ui/toolbar/search_utils.js:278 @@ -22565,7 +22664,7 @@ msgctxt "Form Tour" msgid "Page Route" msgstr "" -#: public/js/frappe/views/workspace/workspace.js:1505 +#: public/js/frappe/views/workspace/workspace.js:1510 msgid "Page Saved Successfully" msgstr "" @@ -22606,7 +22705,12 @@ msgstr "" msgid "Page not found" msgstr "لم يتم العثور على الصفحة" -#: public/js/frappe/views/workspace/workspace.js:1305 +#. Description of a DocType +#: website/doctype/web_page/web_page.json +msgid "Page to show on the website\n" +msgstr "" + +#: public/js/frappe/views/workspace/workspace.js:1310 msgid "Page with title {0} already exist." msgstr "" @@ -22624,9 +22728,9 @@ msgid "Parameter" msgstr "المعلمة" #: public/js/frappe/model/model.js:132 -#: public/js/frappe/views/workspace/workspace.js:612 -#: public/js/frappe/views/workspace/workspace.js:940 -#: public/js/frappe/views/workspace/workspace.js:1187 +#: public/js/frappe/views/workspace/workspace.js:617 +#: public/js/frappe/views/workspace/workspace.js:945 +#: public/js/frappe/views/workspace/workspace.js:1192 msgid "Parent" msgstr "رقم الاب" @@ -22748,8 +22852,8 @@ msgctxt "Contact" msgid "Passive" msgstr "غير فعال" -#: core/doctype/user/user.js:148 core/doctype/user/user.js:195 -#: core/doctype/user/user.js:215 desk/page/setup_wizard/setup_wizard.js:474 +#: core/doctype/user/user.js:158 core/doctype/user/user.js:205 +#: core/doctype/user/user.js:225 desk/page/setup_wizard/setup_wizard.js:474 #: www/login.html:21 msgid "Password" msgstr "كلمة السر" @@ -22791,11 +22895,11 @@ msgctxt "Web Form Field" msgid "Password" msgstr "كلمة السر" -#: core/doctype/user/user.py:1073 +#: core/doctype/user/user.py:1075 msgid "Password Email Sent" msgstr "" -#: core/doctype/user/user.py:452 +#: core/doctype/user/user.py:454 msgid "Password Reset" msgstr "إعادة تعيين كلمة المرور" @@ -22831,7 +22935,7 @@ msgstr "" msgid "Password not found for {0} {1} {2}" msgstr "" -#: core/doctype/user/user.py:1072 +#: core/doctype/user/user.py:1074 msgid "Password reset instructions have been sent to your email" msgstr "تم إرسال إرشادات إعادة تعيين كلمة السر إلى بريدك الإلكتروني" @@ -22843,7 +22947,7 @@ msgstr "" msgid "Password size exceeded the maximum allowed size" msgstr "" -#: core/doctype/user/user.py:868 +#: core/doctype/user/user.py:870 msgid "Password size exceeded the maximum allowed size." msgstr "" @@ -22851,7 +22955,7 @@ msgstr "" msgid "Passwords do not match" msgstr "" -#: core/doctype/user/user.js:181 +#: core/doctype/user/user.js:191 msgid "Passwords do not match!" msgstr "كلمة المرور غير مطابقة!" @@ -23086,7 +23190,7 @@ msgid "Permission Type" msgstr "" #. Label of a Card Break in the Users Workspace -#: core/doctype/user/user.js:123 core/doctype/user/user.js:132 +#: core/doctype/user/user.js:133 core/doctype/user/user.js:142 #: core/page/permission_manager/permission_manager.js:214 #: core/workspace/users/users.json msgid "Permissions" @@ -23320,7 +23424,7 @@ msgstr "الرجاء إضافة موضوع إلى بريدك الإلكترون msgid "Please add a valid comment." msgstr "الرجاء إضافة تعليق صالح." -#: core/doctype/user/user.py:1055 +#: core/doctype/user/user.py:1057 msgid "Please ask your administrator to verify your sign-up" msgstr "الرجاء اطلب من المشرف التأكد من تسجيلك" @@ -23352,11 +23456,11 @@ msgstr "يرجى التحقق من قيم المرشح المحددة لمخطط msgid "Please check the value of \"Fetch From\" set for field {0}" msgstr "يرجى التحقق من قيمة مجموعة "الجلب من" للحقل {0}" -#: core/doctype/user/user.py:1053 +#: core/doctype/user/user.py:1055 msgid "Please check your email for verification" msgstr "يرجى التحقق من بريدك الالكتروني للتحقق" -#: email/smtp.py:131 +#: email/smtp.py:133 msgid "Please check your email login credentials." msgstr "" @@ -23404,7 +23508,7 @@ msgstr "من فضلك لا تغيير عناوين القالب." msgid "Please duplicate this to make changes" msgstr "يرجى تكرار هذه إلى إجراء تغييرات" -#: core/doctype/system_settings/system_settings.py:154 +#: core/doctype/system_settings/system_settings.py:155 msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login." msgstr "" @@ -23540,7 +23644,7 @@ msgstr "يرجى تحديد DOCTYPE أولا" msgid "Please select Entity Type first" msgstr "يرجى اختيار نوع الكيان أولا" -#: core/doctype/system_settings/system_settings.py:104 +#: core/doctype/system_settings/system_settings.py:105 msgid "Please select Minimum Password Score" msgstr "يرجى تحديد الحد الأدنى لسجل كلمة المرور" @@ -23568,7 +23672,7 @@ msgstr "الرجاء تحديد مرشح تاريخ صالح" msgid "Please select applicable Doctypes" msgstr "يرجى اختيار الأساليب المناسبة" -#: model/db_query.py:1134 +#: model/db_query.py:1118 msgid "Please select atleast 1 column from {0} to sort/group" msgstr "يرجى تحديد عمود واحد على الأقل من {0} إلى التصنيف / المجموعة" @@ -23611,7 +23715,7 @@ msgstr "يرجى تعيين المرشحات" msgid "Please set filters value in Report Filter table." msgstr "الرجاء تعيين قيمة عوامل التصفية في جدول تصفية التقرير." -#: model/naming.py:528 +#: model/naming.py:550 msgid "Please set the document name" msgstr "" @@ -23623,7 +23727,7 @@ msgstr "يرجى تعيين المستندات التالية في لوحة ال msgid "Please set the series to be used." msgstr "يرجى ضبط المسلسل ليتم استخدامه." -#: core/doctype/system_settings/system_settings.py:117 +#: core/doctype/system_settings/system_settings.py:118 msgid "Please setup SMS before setting it as an authentication method, via SMS Settings" msgstr "يرجى إعداد سمز قبل تعيينه كطريقة المصادقة، عبر إعدادات سمز" @@ -23635,7 +23739,7 @@ msgstr "يرجى إعداد رسالة أولاً" msgid "Please setup default Email Account from Settings > Email Account" msgstr "" -#: core/doctype/user/user.py:403 +#: core/doctype/user/user.py:405 msgid "Please setup default outgoing Email Account from Settings > Email Account" msgstr "" @@ -23887,7 +23991,7 @@ msgstr "" msgid "Preparing Report" msgstr "إعداد التقرير" -#: public/js/frappe/views/communication.js:400 +#: public/js/frappe/views/communication.js:411 msgid "Prepend the template to the email message" msgstr "" @@ -24044,7 +24148,7 @@ msgstr "" msgid "Print" msgstr "طباعة" -#: public/js/frappe/list/list_view.js:1912 +#: public/js/frappe/list/list_view.js:1919 msgctxt "Button in list view actions menu" msgid "Print" msgstr "طباعة" @@ -24213,7 +24317,7 @@ msgctxt "DocField" msgid "Print Hide If No Value" msgstr "طباعة إخفاء إذا لا قيمة" -#: public/js/frappe/views/communication.js:153 +#: public/js/frappe/views/communication.js:156 msgid "Print Language" msgstr "لغة الطباعة" @@ -24465,6 +24569,11 @@ msgctxt "Module Def" msgid "Property Setter" msgstr "الملكية واضعة" +#. Description of a DocType +#: custom/doctype/property_setter/property_setter.json +msgid "Property Setter overrides a standard DocType or Field property" +msgstr "" + #. Label of a Data field in DocType 'Property Setter' #: custom/doctype/property_setter/property_setter.json msgctxt "Property Setter" @@ -24503,9 +24612,9 @@ msgid "Provider Name" msgstr "اسم المزود" #: desk/doctype/note/note_list.js:6 public/js/frappe/views/interaction.js:78 -#: public/js/frappe/views/workspace/workspace.js:619 -#: public/js/frappe/views/workspace/workspace.js:947 -#: public/js/frappe/views/workspace/workspace.js:1193 +#: public/js/frappe/views/workspace/workspace.js:624 +#: public/js/frappe/views/workspace/workspace.js:952 +#: public/js/frappe/views/workspace/workspace.js:1198 msgid "Public" msgstr "جمهور" @@ -24528,7 +24637,7 @@ msgid "Public" msgstr "جمهور" #: website/doctype/blog_post/blog_post.js:36 -#: website/doctype/web_form/web_form.js:76 +#: website/doctype/web_form/web_form.js:86 msgid "Publish" msgstr "نشر" @@ -24972,6 +25081,12 @@ msgctxt "Blog Settings" msgid "Rate Limits" msgstr "" +#. Label of a Int field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Rate limit for email link login" +msgstr "" + #. Label of a Int field in DocType 'Communication' #: core/doctype/communication/communication.json msgctxt "Communication" @@ -25048,7 +25163,7 @@ msgstr "" #: core/doctype/communication/communication.js:268 #: public/js/frappe/form/footer/form_timeline.js:587 -#: public/js/frappe/views/communication.js:336 +#: public/js/frappe/views/communication.js:347 msgid "Re: {0}" msgstr "رد: {0}" @@ -25850,11 +25965,11 @@ msgid "Refreshing" msgstr "" #: core/doctype/system_settings/system_settings.js:52 -#: core/doctype/user/user.js:340 desk/page/setup_wizard/setup_wizard.js:204 +#: core/doctype/user/user.js:350 desk/page/setup_wizard/setup_wizard.js:204 msgid "Refreshing..." msgstr "يحديث ..." -#: core/doctype/user/user.py:1017 +#: core/doctype/user/user.py:1019 msgid "Registered but disabled" msgstr "سجل لكن المعوقين" @@ -26221,7 +26336,7 @@ msgctxt "Onboarding Step" msgid "Report Description" msgstr "وصف تقرير" -#: core/doctype/report/report.py:145 +#: core/doctype/report/report.py:148 msgid "Report Document Error" msgstr "تقرير خطأ في المستند" @@ -26371,7 +26486,7 @@ msgstr "التقرير مع أكثر من 10 أعمدة تبدو أفضل في msgid "Report {0}" msgstr "تقرير {0}" -#: desk/reportview.py:339 +#: desk/reportview.py:343 msgid "Report {0} deleted" msgstr "" @@ -26379,7 +26494,7 @@ msgstr "" msgid "Report {0} is disabled" msgstr "تقرير غير مفعلة {0}" -#: desk/reportview.py:316 +#: desk/reportview.py:320 msgid "Report {0} saved" msgstr "" @@ -26405,6 +26520,16 @@ msgstr "التقارير والماجستير" msgid "Reports already in Queue" msgstr "التقارير موجودة بالفعل في قائمة الانتظار" +#. Description of a DocType +#: core/doctype/user/user.json +msgid "Represents a User in the system." +msgstr "" + +#. Description of a DocType +#: 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 "" + #: www/me.html:66 msgid "Request Account Deletion" msgstr "" @@ -26541,7 +26666,7 @@ msgstr "" msgid "Reset Fields" msgstr "تصفير البيانات في الحقول" -#: core/doctype/user/user.js:155 core/doctype/user/user.js:158 +#: core/doctype/user/user.js:165 core/doctype/user/user.js:168 msgid "Reset LDAP Password" msgstr "إعادة تعيين كلمة مرور LDAP" @@ -26549,11 +26674,11 @@ msgstr "إعادة تعيين كلمة مرور LDAP" msgid "Reset Layout" msgstr "" -#: core/doctype/user/user.js:206 +#: core/doctype/user/user.js:216 msgid "Reset OTP Secret" msgstr "إعادة تعيين مكتب المدعي العام سر" -#: core/doctype/user/user.js:139 www/login.html:179 www/me.html:35 +#: core/doctype/user/user.js:149 www/login.html:179 www/me.html:35 #: www/me.html:44 www/update-password.html:3 www/update-password.html:9 msgid "Reset Password" msgstr "إعادة تعيين كلمة المرور" @@ -27002,7 +27127,7 @@ msgstr "اذونات الصلاحيات" msgid "Role Permissions Manager" msgstr "مدير ضوابط الصلاحيات" -#: public/js/frappe/list/list_view.js:1689 +#: public/js/frappe/list/list_view.js:1696 msgctxt "Button in list view menu" msgid "Role Permissions Manager" msgstr "مدير ضوابط الصلاحيات" @@ -27048,7 +27173,7 @@ msgctxt "DocPerm" msgid "Role and Level" msgstr "مستوى الصلاحية" -#: core/doctype/user/user.py:348 +#: core/doctype/user/user.py:350 msgid "Role has been set as per the user type {0}" msgstr "" @@ -27635,7 +27760,7 @@ msgstr "السبت" #: public/js/frappe/views/kanban/kanban_view.js:340 #: public/js/frappe/views/reports/query_report.js:1802 #: public/js/frappe/views/reports/report_view.js:1628 -#: public/js/frappe/views/workspace/workspace.js:493 +#: public/js/frappe/views/workspace/workspace.js:498 #: public/js/frappe/widgets/base_widget.js:140 #: public/js/frappe/widgets/quick_list_widget.js:117 #: public/js/print_format_builder/print_format_builder.bundle.js:15 @@ -27649,7 +27774,7 @@ msgctxt "Notification" msgid "Save" msgstr "حفظ" -#: core/doctype/user/user.js:311 +#: core/doctype/user/user.js:321 msgid "Save API Secret: {0}" msgstr "" @@ -27697,7 +27822,7 @@ msgstr "حفظ" #: public/js/frappe/list/list_settings.js:40 #: public/js/frappe/views/kanban/kanban_settings.js:47 -#: public/js/frappe/views/workspace/workspace.js:505 +#: public/js/frappe/views/workspace/workspace.js:510 msgid "Saving" msgstr "حفظ" @@ -27736,7 +27861,7 @@ msgstr "" msgid "Schedule Newsletter" msgstr "" -#: public/js/frappe/views/communication.js:82 +#: public/js/frappe/views/communication.js:85 msgid "Schedule Send At" msgstr "" @@ -27942,6 +28067,11 @@ msgctxt "Server Script" msgid "Script Type" msgstr "نوع البرنامج النصي" +#. Description of a DocType +#: website/doctype/website_script/website_script.json +msgid "Script to attach to all web pages." +msgstr "" + #. Label of a Card Break in the Build Workspace #: core/workspace/build/build.json msgid "Scripting" @@ -28231,8 +28361,8 @@ msgstr "حدد" msgid "Select All" msgstr "" -#: public/js/frappe/views/communication.js:162 -#: public/js/frappe/views/communication.js:567 +#: public/js/frappe/views/communication.js:165 +#: public/js/frappe/views/communication.js:578 #: public/js/frappe/views/interaction.js:93 #: public/js/frappe/views/interaction.js:155 msgid "Select Attachments" @@ -28383,7 +28513,7 @@ msgid "Select Page" msgstr "" #: printing/page/print_format_builder_beta/print_format_builder_beta.js:68 -#: public/js/frappe/views/communication.js:145 +#: public/js/frappe/views/communication.js:148 msgid "Select Print Format" msgstr "حدد تنسيق طباعة" @@ -28630,7 +28760,7 @@ msgctxt "Print Settings" msgid "Send Print as PDF" msgstr "إرسال الطباعة بصيغة PDF" -#: public/js/frappe/views/communication.js:135 +#: public/js/frappe/views/communication.js:138 msgid "Send Read Receipt" msgstr "إرسال مقروءة إيصال" @@ -28716,7 +28846,7 @@ msgstr "إرسال الاستفسارات إلى عنوان البريد الإ msgid "Send login link" msgstr "" -#: public/js/frappe/views/communication.js:129 +#: public/js/frappe/views/communication.js:132 msgid "Send me a copy" msgstr "أرسل لي نسخة" @@ -29045,7 +29175,7 @@ msgctxt "System Settings" msgid "Session Expiry (idle timeout)" msgstr "" -#: core/doctype/system_settings/system_settings.py:111 +#: core/doctype/system_settings/system_settings.py:112 msgid "Session Expiry must be in format {0}" msgstr "يجب أن يكون انتهاء الجلسة بالتنسيق {0}" @@ -29077,7 +29207,7 @@ msgstr "تعيين عوامل التصفية الديناميكية" #: desk/doctype/dashboard_chart/dashboard_chart.js:381 #: desk/doctype/number_card/number_card.js:277 -#: website/doctype/web_form/web_form.js:259 +#: website/doctype/web_form/web_form.js:269 msgid "Set Filters" msgstr "ضبط المرشحات" @@ -29137,7 +29267,7 @@ msgctxt "Role Permission for Page and Report" msgid "Set Role For" msgstr "تعيين صلاحية لل" -#: core/doctype/user/user.js:116 +#: core/doctype/user/user.js:126 #: core/page/permission_manager/permission_manager.js:65 msgid "Set User Permissions" msgstr "تعيين صلاحيات المستخدم" @@ -29261,7 +29391,7 @@ msgstr "إعداد النظام الخاص بك" #: integrations/workspace/integrations/integrations.json #: public/js/frappe/form/templates/print_layout.html:25 #: public/js/frappe/ui/toolbar/toolbar.js:264 -#: public/js/frappe/views/workspace/workspace.js:521 +#: public/js/frappe/views/workspace/workspace.js:526 msgid "Settings" msgstr "إعدادات" @@ -29296,6 +29426,21 @@ msgctxt "Navbar Settings" msgid "Settings Dropdown" msgstr "قائمة الإعدادات المنسدلة" +#. Description of a DocType +#: website/doctype/contact_us_settings/contact_us_settings.json +msgid "Settings for Contact Us Page" +msgstr "" + +#. Description of a DocType +#: website/doctype/about_us_settings/about_us_settings.json +msgid "Settings for the About Us Page" +msgstr "" + +#. Description of a DocType +#: website/doctype/blog_settings/blog_settings.json +msgid "Settings to control blog categories and interactions like comments and likes" +msgstr "" + #. Label of a Card Break in the Website Workspace #: public/js/frappe/ui/toolbar/search_utils.js:567 #: website/workspace/website/website.json @@ -29664,7 +29809,7 @@ msgid "Show Sidebar" msgstr "مشاهدة الشريط الجانبي" #: public/js/frappe/list/list_sidebar.html:66 -#: public/js/frappe/list/list_view.js:1605 +#: public/js/frappe/list/list_view.js:1612 msgid "Show Tags" msgstr "أضهر العلامات" @@ -29820,7 +29965,7 @@ msgctxt "Email Group" msgid "Sign Up and Confirmation" msgstr "" -#: core/doctype/user/user.py:1010 +#: core/doctype/user/user.py:1012 msgid "Sign Up is disabled" msgstr "تم تعطيل الاشتراك" @@ -30022,6 +30167,11 @@ msgctxt "Website Slideshow" msgid "Slideshow Name" msgstr "اسم العرض" +#. Description of a DocType +#: website/doctype/website_slideshow/website_slideshow.json +msgid "Slideshow like display for the website" +msgstr "" + #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' #: custom/doctype/custom_field/custom_field.json msgctxt "Custom Field" @@ -30232,7 +30382,7 @@ msgstr "" msgid "Special Characters are not allowed" msgstr "لا يسمح أحرف خاصة" -#: model/naming.py:60 +#: model/naming.py:61 msgid "Special Characters except '-', '#', '.', '/', '{{' and '}}' not allowed in naming series {0}" msgstr "{0} الأحرف الخاصة باستثناء "-" ، "#" ، "." ، "/" ، "{{" و "}}" غير مسموح في سلسلة التسمية" @@ -30242,7 +30392,7 @@ msgctxt "Website Settings" msgid "Splash Image" msgstr "" -#: desk/reportview.py:378 public/js/frappe/web_form/web_form_list.js:175 +#: desk/reportview.py:382 public/js/frappe/web_form/web_form_list.js:175 #: templates/print_formats/standard_macros.html:44 msgid "Sr" msgstr "ر.ت" @@ -30317,11 +30467,11 @@ msgstr "لا يمكن تحديث تنسيق الطباعة القياسية" msgid "Standard Print Style cannot be changed. Please duplicate to edit." msgstr "لا يمكن تغيير نمط الطباعة القياسي. الرجاء تكرار التعديل." -#: desk/reportview.py:329 +#: desk/reportview.py:333 msgid "Standard Reports cannot be deleted" msgstr "" -#: desk/reportview.py:300 +#: desk/reportview.py:304 msgid "Standard Reports cannot be edited" msgstr "" @@ -30331,7 +30481,7 @@ msgctxt "Portal Settings" msgid "Standard Sidebar Menu" msgstr "قائمة الشريط الجانبي الرئيسية" -#: website/doctype/web_form/web_form.js:30 +#: website/doctype/web_form/web_form.js:40 msgid "Standard Web Forms can not be modified, duplicate the Web Form instead." msgstr "" @@ -30797,7 +30947,7 @@ msgctxt "Website Settings" msgid "Subdomain" msgstr "مجال فرعي" -#: public/js/frappe/views/communication.js:104 +#: public/js/frappe/views/communication.js:107 #: public/js/frappe/views/inbox/inbox_view.js:63 msgid "Subject" msgstr "موضوع" @@ -30893,7 +31043,7 @@ msgstr "" msgid "Submit" msgstr "تسجيل" -#: public/js/frappe/list/list_view.js:1979 +#: public/js/frappe/list/list_view.js:1986 msgctxt "Button in list view actions menu" msgid "Submit" msgstr "تسجيل" @@ -30990,7 +31140,7 @@ msgstr "أرسل هذا المستند لإكمال هذه الخطوة." msgid "Submit this document to confirm" msgstr "إرسال هذه الوثيقة إلى تأكيد" -#: public/js/frappe/list/list_view.js:1984 +#: public/js/frappe/list/list_view.js:1991 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "إرسال {0} وثائق؟" @@ -31170,7 +31320,7 @@ msgstr "" msgid "Successfully updated {0} out of {1} records." msgstr "" -#: core/doctype/user/user.py:725 +#: core/doctype/user/user.py:727 msgid "Suggested Username: {0}" msgstr "اسم المستخدم اقترح: {0}" @@ -31747,7 +31897,7 @@ msgstr "تحذيرات القالب" msgid "Templates" msgstr "" -#: core/doctype/user/user.py:1021 +#: core/doctype/user/user.py:1023 msgid "Temporarily Disabled" msgstr "موقوف مؤقتا" @@ -31835,6 +31985,12 @@ msgstr "محرر النصوص" msgid "Thank you" msgstr "شكرا" +#: www/contact.py:37 +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 "" + #: website/doctype/web_form/templates/web_form.html:137 msgid "Thank you for spending your valuable time to fill this form" msgstr "" @@ -31980,7 +32136,7 @@ msgstr "" msgid "The link will expire in {0} minutes" msgstr "" -#: www/login.py:175 +#: www/login.py:179 msgid "The link you trying to login is invalid or expired." msgstr "" @@ -32030,11 +32186,11 @@ msgid "The project number obtained from Google Cloud Console under " msgstr "" -#: core/doctype/user/user.py:981 +#: core/doctype/user/user.py:983 msgid "The reset password link has been expired" msgstr "" -#: core/doctype/user/user.py:983 +#: core/doctype/user/user.py:985 msgid "The reset password link has either been used before or is invalid" msgstr "" @@ -32132,8 +32288,8 @@ msgstr "" msgid "There are {0} with the same filters already in the queue:" msgstr "" -#: website/doctype/web_form/web_form.js:71 -#: website/doctype/web_form/web_form.js:307 +#: website/doctype/web_form/web_form.js:81 +#: website/doctype/web_form/web_form.js:317 msgid "There can be only 9 Page Break fields in a Web Form" msgstr "" @@ -32161,7 +32317,7 @@ msgstr "" msgid "There must be atleast one permission rule." msgstr "يجب أن يكون هناك على الأقل قاعدة إذن واحد." -#: core/doctype/user/user.py:533 +#: core/doctype/user/user.py:535 msgid "There should remain at least one System Manager" msgstr "يجب أن يظل هناك مدير نظام واحد على الأقل" @@ -32181,11 +32337,11 @@ msgstr "كانت هناك أخطاء" msgid "There were errors while creating the document. Please try again." msgstr "كانت هناك أخطاء أثناء إنشاء المستند. حاول مرة اخرى." -#: public/js/frappe/views/communication.js:809 +#: public/js/frappe/views/communication.js:820 msgid "There were errors while sending email. Please try again." msgstr "كانت هناك أخطاء أثناء إرسال البريد الإلكتروني. يرجى المحاولة مرة أخرى." -#: model/naming.py:448 +#: model/naming.py:470 msgid "There were some errors setting the name, please contact the administrator" msgstr "كانت هناك بعض الأخطاء التي تحدد الاسم، يرجى الاتصال بالمشرف" @@ -32232,7 +32388,7 @@ msgstr "" msgid "This Kanban Board will be private" msgstr "وهذا المجلس كانبان يكون القطاع الخاص" -#: __init__.py:1010 +#: __init__.py:1013 msgid "This action is only allowed for {}" msgstr "هذا الإجراء مسموح به فقط لـ {}" @@ -32460,7 +32616,7 @@ msgstr "" msgid "This will terminate the job immediately and might be dangerous, are you sure? " msgstr "" -#: core/doctype/user/user.py:1241 +#: core/doctype/user/user.py:1243 msgid "Throttled" msgstr "مخنوق" @@ -32728,9 +32884,9 @@ msgstr "الطابع الزمني" #: core/doctype/doctype/boilerplate/controller_list.html:14 #: core/doctype/doctype/boilerplate/controller_list.html:23 -#: public/js/frappe/views/workspace/workspace.js:605 -#: public/js/frappe/views/workspace/workspace.js:934 -#: public/js/frappe/views/workspace/workspace.js:1181 +#: public/js/frappe/views/workspace/workspace.js:610 +#: public/js/frappe/views/workspace/workspace.js:939 +#: public/js/frappe/views/workspace/workspace.js:1186 msgid "Title" msgstr "اللقب" @@ -32913,7 +33069,7 @@ msgctxt "Auto Email Report" msgid "To Date Field" msgstr "إلى تاريخ الحقل" -#: desk/doctype/todo/todo_list.js:12 +#: desk/doctype/todo/todo_list.js:6 msgid "To Do" msgstr "قائمة المهام" @@ -33077,7 +33233,7 @@ msgstr "تبديل عرض الشبكة" msgid "Toggle Sidebar" msgstr "تبديل الشريط الجانبي" -#: public/js/frappe/list/list_view.js:1720 +#: public/js/frappe/list/list_view.js:1727 msgctxt "Button in list view menu" msgid "Toggle Sidebar" msgstr "تبديل الشريط الجانبي" @@ -33139,7 +33295,7 @@ msgstr "طلبات كثيرة جدا" msgid "Too many changes to database in single action." msgstr "" -#: core/doctype/user/user.py:1022 +#: core/doctype/user/user.py:1024 msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour" msgstr "وقعت الكثير من المستخدمين في الآونة الأخيرة، وذلك هو تعطيل التسجيل. يرجى المحاولة مرة أخرى في ساعة" @@ -33337,6 +33493,11 @@ msgid "Track if your email has been opened by the recipient.\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 +#: automation/doctype/milestone_tracker/milestone_tracker.json +msgid "Track milestones for any document" +msgstr "" + #: public/js/frappe/utils/utils.js:1757 msgid "Tracking URL generated and copied to clipboard" msgstr "" @@ -33827,7 +33988,7 @@ msgstr "الغاء المتابعة" msgid "Unhandled Email" msgstr "البريد الإلكتروني غير معالج" -#: public/js/frappe/views/workspace/workspace.js:562 +#: public/js/frappe/views/workspace/workspace.js:567 msgid "Unhide Workspace" msgstr "" @@ -33874,7 +34035,7 @@ msgid "Unlock Reference Document" msgstr "" #: website/doctype/blog_post/blog_post.js:36 -#: website/doctype/web_form/web_form.js:76 +#: website/doctype/web_form/web_form.js:86 msgid "Unpublish" msgstr "" @@ -33978,7 +34139,7 @@ msgstr "الأحداث القادمة لهذا اليوم" #: printing/page/print_format_builder/print_format_builder.js:670 #: printing/page/print_format_builder/print_format_builder.js:757 #: public/js/frappe/form/grid_row.js:403 -#: public/js/frappe/views/workspace/workspace.js:653 +#: public/js/frappe/views/workspace/workspace.js:658 msgid "Update" msgstr "تحديث" @@ -33994,7 +34155,7 @@ msgctxt "Document Naming Settings" msgid "Update Amendment Naming" msgstr "" -#: public/js/frappe/views/workspace/workspace.js:602 +#: public/js/frappe/views/workspace/workspace.js:607 msgid "Update Details" msgstr "تحديث التفاصيل" @@ -34256,11 +34417,11 @@ msgctxt "Email Account" msgid "Use different Email ID" msgstr "" -#: model/db_query.py:424 +#: model/db_query.py:423 msgid "Use of function {0} in field is restricted" msgstr "" -#: model/db_query.py:403 +#: model/db_query.py:402 msgid "Use of sub-query or function is restricted" msgstr "استخدام الاستعلام الفرعي أو وظيفة مقيدة" @@ -34556,6 +34717,11 @@ msgctxt "Social Login Key" msgid "User ID Property" msgstr "خاصية معرف المستخدم" +#. Description of a DocType +#: website/doctype/blogger/blogger.json +msgid "User ID of a Blogger" +msgstr "" + #. Label of a Link field in DocType 'Contact' #: contacts/doctype/contact/contact.json msgctxt "Contact" @@ -34605,7 +34771,7 @@ msgstr "إذن المستخدم" msgid "User Permissions" msgstr "ضوابط المستخدم" -#: public/js/frappe/list/list_view.js:1678 +#: public/js/frappe/list/list_view.js:1685 msgctxt "Button in list view menu" msgid "User Permissions" msgstr "ضوابط المستخدم" @@ -34740,15 +34906,15 @@ msgstr "" msgid "User with email: {0} does not exist in the system. Please ask 'System Administrator' to create the user for you." msgstr "" -#: core/doctype/user/user.py:538 +#: core/doctype/user/user.py:540 msgid "User {0} cannot be deleted" msgstr "المستخدم {0} لا يمكن حذف" -#: core/doctype/user/user.py:277 +#: core/doctype/user/user.py:279 msgid "User {0} cannot be disabled" msgstr "المستخدم {0} لا يمكن تعطيل" -#: core/doctype/user/user.py:607 +#: core/doctype/user/user.py:609 msgid "User {0} cannot be renamed" msgstr "المستخدم {0} لا يمكن إعادة تسمية" @@ -34765,7 +34931,7 @@ msgstr "لا يملك المستخدم {0} حق الوصول إلى النمط msgid "User {0} has requested for data deletion" msgstr "طلب المستخدم {0} حذف البيانات" -#: core/doctype/user/user.py:1370 +#: core/doctype/user/user.py:1372 msgid "User {0} impersonated as {1}" msgstr "" @@ -34799,7 +34965,7 @@ msgctxt "User Social Login" msgid "Username" msgstr "اسم االمستخدم" -#: core/doctype/user/user.py:692 +#: core/doctype/user/user.py:694 msgid "Username {0} already exists" msgstr "اسم المستخدم {0} موجود بالفعل" @@ -34880,7 +35046,7 @@ msgstr "الصلاحية" #: public/js/frappe/list/bulk_operations.js:306 #: public/js/frappe/list/bulk_operations.js:368 #: public/js/frappe/list/list_view_permission_restrictions.html:4 -#: website/doctype/web_form/web_form.js:187 +#: website/doctype/web_form/web_form.js:197 msgid "Value" msgstr "القيمة" @@ -35114,7 +35280,7 @@ msgstr "عرض القائمة" msgid "View Log" msgstr "عرض السجل" -#: core/doctype/user/user.js:127 +#: core/doctype/user/user.js:137 #: core/doctype/user_permission/user_permission.js:24 msgid "View Permitted Documents" msgstr "عرض المستندات المسموح بها" @@ -35291,6 +35457,10 @@ msgstr "لقد تلقينا طلبًا بحذف {0} البيانات المرت msgid "We have received a request from you to download your {0} data associated with: {1}" msgstr "لقد تلقينا طلبًا منك لتنزيل بيانات {0} المرتبطة بـ: {1}" +#: www/contact.py:48 +msgid "We've received your query!" +msgstr "" + #: public/js/frappe/form/controls/password.js:88 msgid "Weak" msgstr "" @@ -35833,11 +36003,11 @@ msgstr "" msgid "Welcome Workspace" msgstr "" -#: core/doctype/user/user.py:395 +#: core/doctype/user/user.py:397 msgid "Welcome email sent" msgstr "رسالة الترحيب تم أرسالها" -#: core/doctype/user/user.py:470 +#: core/doctype/user/user.py:472 msgid "Welcome to {0}" msgstr "أهلا وسهلا بك إلى {0}" @@ -36007,6 +36177,7 @@ msgid "Workflow Action" msgstr "إجراء سير العمل" #. Name of a DocType +#. Description of a DocType #: workflow/doctype/workflow_action_master/workflow_action_master.json msgid "Workflow Action Master" msgstr "سير العمل الاجراء الاساسي" @@ -36102,6 +36273,11 @@ msgstr "حالة سير العمل" msgid "Workflow Transition" msgstr "الانتقال سير العمل" +#. Description of a DocType +#: workflow/doctype/workflow_state/workflow_state.json +msgid "Workflow state represents the current state of a document." +msgstr "" + #. Description of the Onboarding Step 'Setup Approval Workflows' #: custom/onboarding_step/workflows/workflows.json msgid "Workflows allow you to define custom rules for the approval process of a particular document in ERPNext. You can also set complex Workflow Rules and set approval conditions." @@ -36120,6 +36296,12 @@ msgctxt "Module Def" msgid "Workspace" msgstr "" +#. Label of a Section Break field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Workspace" +msgstr "" + #. Label of a Link in the Build Workspace #: core/workspace/build/build.json msgctxt "Workspace" @@ -36170,15 +36352,15 @@ msgstr "" msgid "Workspace not found" msgstr "" -#: public/js/frappe/views/workspace/workspace.js:1271 +#: public/js/frappe/views/workspace/workspace.js:1276 msgid "Workspace {0} Created Successfully" msgstr "" -#: public/js/frappe/views/workspace/workspace.js:900 +#: public/js/frappe/views/workspace/workspace.js:905 msgid "Workspace {0} Deleted Successfully" msgstr "" -#: public/js/frappe/views/workspace/workspace.js:678 +#: public/js/frappe/views/workspace/workspace.js:683 msgid "Workspace {0} Edited Successfully" msgstr "" @@ -36408,7 +36590,7 @@ msgstr "" msgid "You are not allowed to create columns" msgstr "لا يسمح لك بأنشاء اعمدة" -#: core/doctype/report/report.py:94 +#: core/doctype/report/report.py:97 msgid "You are not allowed to delete Standard Report" msgstr "لا يُسمح لك بحذف التقرير القياسي" @@ -36416,7 +36598,7 @@ msgstr "لا يُسمح لك بحذف التقرير القياسي" msgid "You are not allowed to delete a standard Website Theme" msgstr "لا يسمح لك بحذف موضوع الموقع القياسي" -#: core/doctype/report/report.py:377 +#: core/doctype/report/report.py:383 msgid "You are not allowed to edit the report." msgstr "" @@ -36428,7 +36610,7 @@ msgstr "غير مسموح لك بتصدير النمط {}" msgid "You are not allowed to print this report" msgstr "لا يسمح لك بطباعة هذا التقرير" -#: public/js/frappe/views/communication.js:753 +#: public/js/frappe/views/communication.js:764 msgid "You are not allowed to send emails related to this document" msgstr "لا يسمح لك بإرسال رسائل البريد الإلكتروني ذات الصلة بهذه الوثيقة" @@ -36448,7 +36630,7 @@ msgstr "" msgid "You are not permitted to access this page." msgstr "لا يسمح لك بالوصول إلى هذه الصفحة." -#: __init__.py:929 +#: __init__.py:932 msgid "You are not permitted to access this resource." msgstr "" @@ -36501,7 +36683,7 @@ msgstr "" msgid "You can continue with the onboarding after exploring this page" msgstr "" -#: core/doctype/user/user.py:598 +#: core/doctype/user/user.py:600 msgid "You can disable the user instead of deleting it." msgstr "" @@ -36537,6 +36719,13 @@ msgstr "يمكنك تحميل فقط حتى 5000 دفعة واحدة. (قد ي msgid "You can select one from the following," msgstr "" +#. Description of the 'Rate limit for email link login' (Int) field in DocType +#. 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "You can set a high value here if multiple users will be logging in from the same network." +msgstr "" + #: desk/query_report.py:332 msgid "You can try changing the filters of your report." msgstr "يمكنك محاولة تغيير عوامل تصفية تقريرك." @@ -37722,7 +37911,7 @@ msgstr "قفل" msgid "logged in" msgstr "تسجيل الدخول" -#: website/doctype/web_form/web_form.js:352 +#: website/doctype/web_form/web_form.js:362 msgid "login_required" msgstr "" @@ -38746,7 +38935,7 @@ msgctxt "Form timeline" msgid "{0} attached {1}" msgstr "" -#: core/doctype/system_settings/system_settings.py:141 +#: core/doctype/system_settings/system_settings.py:142 msgid "{0} can not be more than {1}" msgstr "" @@ -38884,7 +39073,7 @@ msgstr "{0} تم بنجاح الإضافة إلى مجموعة البريد ا msgid "{0} has left the conversation in {1} {2}" msgstr "{0} تركت محادثة في {1} {2}" -#: __init__.py:2480 +#: __init__.py:2483 msgid "{0} has no versions tracked." msgstr "{0} لا يحتوي على إصدارات متعقبة." @@ -39030,7 +39219,7 @@ msgstr "{0} هو الآن تنسيق الطباعة الافتراضي لنوع msgid "{0} is one of {1}" msgstr "" -#: email/doctype/email_account/email_account.py:277 model/naming.py:201 +#: email/doctype/email_account/email_account.py:277 model/naming.py:202 #: printing/doctype/print_format/print_format.py:90 utils/csvutils.py:131 msgid "{0} is required" msgstr "{0} مطلوب" @@ -39043,11 +39232,11 @@ msgstr "" msgid "{0} is within {1}" msgstr "" -#: public/js/frappe/list/list_view.js:1595 +#: public/js/frappe/list/list_view.js:1602 msgid "{0} items selected" msgstr "{0} العناصر المحددة" -#: core/doctype/user/user.py:1379 +#: core/doctype/user/user.py:1381 msgid "{0} just impersonated as you. They gave this reason: {1}" msgstr "" @@ -39113,11 +39302,11 @@ msgstr "{0} غير مسموح بإعادة تسميته" msgid "{0} not found" msgstr "لم يتم العثور على {0}" -#: core/doctype/report/report.py:413 public/js/frappe/list/list_view.js:986 +#: core/doctype/report/report.py:419 public/js/frappe/list/list_view.js:987 msgid "{0} of {1}" msgstr "{0} من {1}" -#: public/js/frappe/list/list_view.js:988 +#: public/js/frappe/list/list_view.js:989 msgid "{0} of {1} ({2} rows with children)" msgstr "{0} من {1} ({2} صفوف تحتوي على أطفال)" @@ -39242,7 +39431,7 @@ msgstr "{0} الغى مشاركة هذه الوثيقة مع {1}" msgid "{0} updated" msgstr "{0} تم تحديث" -#: public/js/frappe/form/controls/multiselect_list.js:162 +#: public/js/frappe/form/controls/multiselect_list.js:182 msgid "{0} values selected" msgstr "{0} القيم المحددة" diff --git a/frappe/locale/de.po b/frappe/locale/de.po index ad54318728..ee5f454cd6 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: 2024-03-17 09:33+0000\n" -"PO-Revision-Date: 2024-03-20 11:37\n" +"POT-Creation-Date: 2024-03-24 09:33+0000\n" +"PO-Revision-Date: 2024-03-26 12:06\n" "Last-Translator: developers@frappe.io\n" "Language-Team: German\n" "MIME-Version: 1.0\n" @@ -1425,7 +1425,7 @@ msgstr "Hinzufügen / Aktualisieren" msgid "Add A New Rule" msgstr "Neue Regel hinzufügen" -#: public/js/frappe/views/communication.js:567 +#: public/js/frappe/views/communication.js:578 #: public/js/frappe/views/interaction.js:159 msgid "Add Attachment" msgstr "Anhang hinzufügen" @@ -1527,7 +1527,7 @@ msgstr "Abfrageparameter hinzufügen" msgid "Add Review" msgstr "Bewertung hinzufügen" -#: core/doctype/user/user.py:808 +#: core/doctype/user/user.py:810 msgid "Add Roles" msgstr "Rollen hinzufügen" @@ -1535,7 +1535,7 @@ msgstr "Rollen hinzufügen" msgid "Add Row" msgstr "Zeile hinzufügen" -#: public/js/frappe/views/communication.js:118 +#: public/js/frappe/views/communication.js:121 msgid "Add Signature" msgstr "Signatur hinzufügen" @@ -1566,12 +1566,12 @@ msgstr "Abonnenten hinzufügen" msgid "Add Tags" msgstr "Tags hinzufügen" -#: public/js/frappe/list/list_view.js:1897 +#: public/js/frappe/list/list_view.js:1904 msgctxt "Button in list view actions menu" msgid "Add Tags" msgstr "Tags hinzufügen" -#: public/js/frappe/views/communication.js:399 +#: public/js/frappe/views/communication.js:410 msgid "Add Template" msgstr "Vorlage hinzufügen" @@ -1683,7 +1683,7 @@ msgstr "{0} hinzugefügt" msgid "Added {0} ({1})" msgstr "{0} ({1}) hinzugefügt" -#: core/doctype/user/user.py:305 +#: core/doctype/user/user.py:307 msgid "Adding System Manager to this User as there must be atleast one System Manager" msgstr "System-Manager Rolle zu diesem Benutzer hinzugefügt, da mindestens ein System-Manager vorhanden sein muss" @@ -1789,6 +1789,16 @@ msgstr "Adressen" msgid "Addresses And Contacts" msgstr "Adressen und Kontakte" +#. Description of a DocType +#: custom/doctype/client_script/client_script.json +msgid "Adds a custom client script to a DocType" +msgstr "" + +#. Description of a DocType +#: custom/doctype/custom_field/custom_field.json +msgid "Adds a custom field to a DocType" +msgstr "" + #: public/js/frappe/ui/toolbar/search_utils.js:552 msgid "Administration" msgstr "Verwaltung" @@ -1810,11 +1820,11 @@ msgstr "Verwaltung" msgid "Administrator" msgstr "Administrator" -#: core/doctype/user/user.py:1212 +#: core/doctype/user/user.py:1214 msgid "Administrator Logged In" msgstr "Administrator hat sich angemeldet" -#: core/doctype/user/user.py:1206 +#: core/doctype/user/user.py:1208 msgid "Administrator accessed {0} on {1} via IP Address {2}." msgstr "Administrator hat auf {0} über {1} zugegriffen mit IP-Adresse {2}." @@ -2396,7 +2406,7 @@ msgstr "Erlaubte Module" msgid "Allowing DocType, DocType. Be careful!" msgstr "DocType, DocType zulassen. Achtung!" -#: core/doctype/user/user.py:1015 +#: core/doctype/user/user.py:1017 msgid "Already Registered" msgstr "Bereits registriert" @@ -2648,7 +2658,7 @@ msgstr "App geheimer Schlüssel" msgid "App not found for module: {0}" msgstr "App nicht gefunden für Modul: {0}" -#: __init__.py:1781 +#: __init__.py:1784 msgid "App {0} is not installed" msgstr "App {0} ist nicht installiert" @@ -2727,7 +2737,7 @@ msgctxt "Property Setter" msgid "Applied On" msgstr "Aufgetragen auf" -#: public/js/frappe/list/list_view.js:1882 +#: public/js/frappe/list/list_view.js:1889 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" msgstr "Zuweisungsregel anwenden" @@ -2833,7 +2843,7 @@ msgstr "Archiviert" msgid "Archived Columns" msgstr "Archivierte Spalten" -#: public/js/frappe/list/list_view.js:1861 +#: public/js/frappe/list/list_view.js:1868 msgid "Are you sure you want to clear the assignments?" msgstr "Sind Sie sicher, dass Sie die Zuweisungen löschen möchten?" @@ -2841,7 +2851,7 @@ msgstr "Sind Sie sicher, dass Sie die Zuweisungen löschen möchten?" msgid "Are you sure you want to delete all rows?" msgstr "Möchten Sie wirklich alle Zeilen löschen?" -#: public/js/frappe/views/workspace/workspace.js:891 +#: public/js/frappe/views/workspace/workspace.js:896 msgid "Are you sure you want to delete page {0}?" msgstr "Sind Sie sicher, dass Sie die Seite {0} löschen möchten?" @@ -2932,7 +2942,7 @@ msgstr "Bedingung zuweisen" msgid "Assign To" msgstr "Zuweisen zu" -#: public/js/frappe/list/list_view.js:1843 +#: public/js/frappe/list/list_view.js:1850 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "Zuweisen zu" @@ -3101,7 +3111,7 @@ msgstr "Zuordnungen" msgid "At least one column is required to show in the grid." msgstr "Mindestens eine Spalte muss im Raster angezeigt werden." -#: website/doctype/web_form/web_form.js:63 +#: website/doctype/web_form/web_form.js:73 msgid "At least one field is required in Web Form Fields Table" msgstr "Mindestens ein Feld ist in der Tabelle der Webformularfelder erforderlich" @@ -3137,7 +3147,7 @@ msgctxt "Web Form Field" msgid "Attach" msgstr "Anhängen" -#: public/js/frappe/views/communication.js:140 +#: public/js/frappe/views/communication.js:143 msgid "Attach Document Print" msgstr "Dokumentendruck anhängen" @@ -3604,6 +3614,11 @@ msgstr "Die automatische Verknüpfung kann nur für ein E-Mail-Konto aktiviert w msgid "Automatic Linking can be activated only if Incoming is enabled." msgstr "Die automatische Verknüpfung kann nur aktiviert werden, wenn Eingehend aktiviert ist." +#. Description of a DocType +#: automation/doctype/assignment_rule/assignment_rule.json +msgid "Automatically Assign Documents to Users" +msgstr "" + #. Label of a Int field in DocType 'Website Settings' #: website/doctype/website_settings/website_settings.json msgctxt "Website Settings" @@ -3750,7 +3765,7 @@ msgctxt "Print Settings" msgid "B9" msgstr "B9" -#: public/js/frappe/views/communication.js:77 +#: public/js/frappe/views/communication.js:79 msgid "BCC" msgstr "BCC" @@ -4594,7 +4609,7 @@ msgstr "C5E" msgid "CANCELLED" msgstr "Abgebrochen" -#: public/js/frappe/views/communication.js:72 +#: public/js/frappe/views/communication.js:73 msgid "CC" msgstr "CC" @@ -4829,7 +4844,7 @@ msgstr "Kann {0} nicht in {1} umbenennen, da {0} nicht existiert." msgid "Cancel" msgstr "Abbrechen" -#: public/js/frappe/list/list_view.js:1952 +#: public/js/frappe/list/list_view.js:1959 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "Abbrechen" @@ -4882,7 +4897,7 @@ msgstr "Alle Dokumente abbrechen" msgid "Cancel Scheduling" msgstr "Planung abbrechen" -#: public/js/frappe/list/list_view.js:1957 +#: public/js/frappe/list/list_view.js:1964 msgctxt "Title of confirmation dialog" msgid "Cancel {0} documents?" msgstr "Abbrechen von {0} Dokumenten?" @@ -5055,7 +5070,7 @@ msgstr "Standardbenachrichtigung kann nicht bearbeitet werden. Um es zu bearbeit msgid "Cannot edit Standard charts" msgstr "Standarddiagramme können nicht bearbeitet werden" -#: core/doctype/report/report.py:69 +#: core/doctype/report/report.py:72 msgid "Cannot edit a standard report. Please duplicate and create a new report" msgstr "Der Standard-Report kann nicht bearbeitet werden. Bitte kopieren und einen neuen Bericht erstellen" @@ -5132,11 +5147,11 @@ msgstr "Der private Arbeitsbereich anderer Benutzer kann nicht verändert werden msgid "Cannot update {0}" msgstr "Kann {0} nicht aktualisieren" -#: model/db_query.py:1119 +#: model/db_query.py:1103 msgid "Cannot use sub-query in order by" msgstr "Kann in \"sortieren nach\" keine Unterabfrage verwenden." -#: model/db_query.py:1137 +#: model/db_query.py:1121 msgid "Cannot use {0} in order/group by" msgstr "{0} kann für die Sortierung oder Gruppierung verwendet werden" @@ -5492,7 +5507,7 @@ msgstr "Untergeordnete Tabellen werden in anderen DocTypes als Raster angezeigt" msgid "Choose Existing Card or create New Card" msgstr "Wählen Sie Vorhandene Karte oder erstellen Sie eine neue Karte" -#: public/js/frappe/views/workspace/workspace.js:1391 +#: public/js/frappe/views/workspace/workspace.js:1396 msgid "Choose a block or continue typing" msgstr "Wählen Sie einen Block oder tippen Sie weiter" @@ -5528,15 +5543,15 @@ msgstr "Ort/ Wohnort" msgid "Clear" msgstr "Löschen" -#: public/js/frappe/views/communication.js:404 +#: public/js/frappe/views/communication.js:415 msgid "Clear & Add Template" msgstr "Leeren und Vorlage einfügen" -#: public/js/frappe/views/communication.js:99 +#: public/js/frappe/views/communication.js:102 msgid "Clear & Add template" msgstr "Leeren und Vorlage einfügen" -#: public/js/frappe/list/list_view.js:1858 +#: public/js/frappe/list/list_view.js:1865 msgctxt "Button in list view actions menu" msgid "Clear Assignment" msgstr "Zuweisung löschen" @@ -5563,7 +5578,7 @@ msgstr "Lösche Logs nach (in Tagen)" msgid "Clear User Permissions" msgstr "Benutzerrechte löschen" -#: public/js/frappe/views/communication.js:405 +#: public/js/frappe/views/communication.js:416 msgid "Clear the email message and add the template" msgstr "Email-Feld leeren und Vorlage einfügen" @@ -5621,7 +5636,7 @@ msgstr "Klicken Sie auf {0}, um das Refresh Token zu generieren." #: desk/doctype/dashboard_chart/dashboard_chart.js:315 #: desk/doctype/number_card/number_card.js:215 #: email/doctype/auto_email_report/auto_email_report.js:96 -#: website/doctype/web_form/web_form.js:226 +#: website/doctype/web_form/web_form.js:236 msgid "Click table to edit" msgstr "Klicken Sie auf Tabelle bearbeiten" @@ -5632,7 +5647,7 @@ msgstr "Klicken Sie hier, um dynamische Filter einzustellen" #: desk/doctype/dashboard_chart/dashboard_chart.js:372 #: desk/doctype/number_card/number_card.js:270 -#: website/doctype/web_form/web_form.js:252 +#: website/doctype/web_form/web_form.js:262 msgid "Click to Set Filters" msgstr "Klicken Sie, um Filter einzustellen" @@ -6309,7 +6324,7 @@ msgstr "Komplett" msgid "Complete By" msgstr "Fertigstellen bis" -#: core/doctype/user/user.py:472 templates/emails/new_user.html:10 +#: core/doctype/user/user.py:474 templates/emails/new_user.html:10 msgid "Complete Registration" msgstr "Anmeldung abschliessen" @@ -6378,7 +6393,7 @@ msgstr "E-Mail verfassen" #: desk/doctype/dashboard_chart/dashboard_chart.js:439 #: desk/doctype/number_card/number_card.js:205 #: desk/doctype/number_card/number_card.js:333 -#: website/doctype/web_form/web_form.js:187 +#: website/doctype/web_form/web_form.js:197 msgid "Condition" msgstr "Zustand" @@ -6477,7 +6492,12 @@ msgstr "Legen Sie fest, wie berichtigte Dokumente benannt werden sollen.
\n\n "Standardmäßig wird ein Berichtigungszähler verwendet, der am Ende des Originalnamens eine Zahl anhängt, die die berichtigte Version angibt.
\n\n" "Die Standardbenennung bewirkt, dass sich das berichtigte Dokument genauso verhält wie neue Dokumente." -#: core/doctype/user/user.js:374 public/js/frappe/dom.js:332 +#. Description of a DocType +#: core/doctype/document_naming_settings/document_naming_settings.json +msgid "Configure various aspects of how document naming works like naming series, current counter." +msgstr "" + +#: core/doctype/user/user.js:384 public/js/frappe/dom.js:332 #: www/update-password.html:30 msgid "Confirm" msgstr "Bestätigen" @@ -6492,7 +6512,7 @@ msgstr "Bestätigen" msgid "Confirm Deletion of Account" msgstr "Löschen des Kontos bestätigen" -#: core/doctype/user/user.js:167 +#: core/doctype/user/user.js:177 msgid "Confirm New Password" msgstr "Bestätige neues Passwort" @@ -6649,6 +6669,10 @@ msgstr "Kontakt-Telefon" msgid "Contact Synced with Google Contacts." msgstr "Kontakt Mit Google-Kontakten synchronisiert." +#: www/contact.html:4 +msgid "Contact Us" +msgstr "" + #. Name of a DocType #: website/doctype/contact_us_settings/contact_us_settings.json msgid "Contact Us Settings" @@ -6822,6 +6846,10 @@ msgstr "Steuert, ob sich neue Benutzer mit diesem Social Login Key anmelden kön msgid "Copied to clipboard." msgstr "In die Zwischenablage kopiert." +#: website/doctype/web_form/web_form.js:29 +msgid "Copy Embed Code" +msgstr "" + #: public/js/frappe/form/templates/timeline_message_box.html:83 msgid "Copy Link" msgstr "Link kopieren" @@ -6848,7 +6876,7 @@ msgstr "Core DocTypes können nicht angepasst werden." msgid "Core Modules {0} cannot be searched in Global Search." msgstr "Kernmodule {0} können in der globalen Suche nicht durchsucht werden." -#: email/smtp.py:77 +#: email/smtp.py:78 msgid "Could not connect to outgoing email server" msgstr "Konnte keine Verbindung zum Postausgangsserver herstellen" @@ -6962,7 +6990,7 @@ msgstr "Cr" #: public/js/frappe/views/file/file_view.js:112 #: public/js/frappe/views/interaction.js:18 #: public/js/frappe/views/reports/query_report.js:1186 -#: public/js/frappe/views/workspace/workspace.js:1223 +#: public/js/frappe/views/workspace/workspace.js:1228 #: workflow/page/workflow_builder/workflow_builder.js:46 msgid "Create" msgstr "Erstellen" @@ -7015,7 +7043,7 @@ msgstr "Erstellen Sie Kontakte aus eingehenden E-Mails" msgid "Create Custom Fields" msgstr "Benutzerdefinierte Felder erstellen" -#: public/js/frappe/views/workspace/workspace.js:931 +#: public/js/frappe/views/workspace/workspace.js:936 msgid "Create Duplicate" msgstr "Duplikat erstellen" @@ -7050,11 +7078,11 @@ msgstr "Neuen DocType erstellen" msgid "Create New Kanban Board" msgstr "Neue Kanban-Tafel erstellen" -#: core/doctype/user/user.js:246 +#: core/doctype/user/user.js:256 msgid "Create User Email" msgstr "Benutzer E-Mail erstellen" -#: public/js/frappe/views/workspace/workspace.js:471 +#: public/js/frappe/views/workspace/workspace.js:476 msgid "Create Workspace" msgstr "Arbeitsbereich erstellen" @@ -7086,6 +7114,11 @@ msgstr "Neu erstellen: {0}" msgid "Create a {0} Account" msgstr "Ein {0} Konto erstellen" +#. Description of a DocType +#: email/doctype/newsletter/newsletter.json +msgid "Create and send emails to a specific group of subscribers periodically." +msgstr "" + #: printing/page/print_format_builder_beta/print_format_builder_beta.js:34 msgid "Create or Edit Print Format" msgstr "Druckformat erstellen oder bearbeiten" @@ -7252,6 +7285,11 @@ msgctxt "System Settings" msgid "Currency Precision" msgstr "Währungsgenauigkeit" +#. Description of a DocType +#: geo/doctype/currency/currency.json +msgid "Currency list stores the currency value, its symbol and fraction unit" +msgstr "" + #. Option for the 'Address Type' (Select) field in DocType 'Address' #: contacts/doctype/address/address.json msgctxt "Address" @@ -7617,7 +7655,7 @@ msgstr "Anpassung" msgid "Customization onboarding is all done!" msgstr "Das Anpassungs-Onboarding ist abgeschlossen!" -#: public/js/frappe/views/workspace/workspace.js:517 +#: public/js/frappe/views/workspace/workspace.js:522 msgid "Customizations Discarded" msgstr "Anpassungen verworfen" @@ -7636,7 +7674,7 @@ msgstr "Anpassungen für {0} exportiert nach:
{1}" msgid "Customize" msgstr "Anpassen" -#: public/js/frappe/list/list_view.js:1703 +#: public/js/frappe/list/list_view.js:1710 msgctxt "Button in list view menu" msgid "Customize" msgstr "Anpassen" @@ -8476,6 +8514,12 @@ msgctxt "DocType" msgid "Default View" msgstr "Standardansicht" +#. Label of a Link field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Default Workspace" +msgstr "" + #: core/doctype/doctype/doctype.py:1325 msgid "Default for 'Check' type of field {0} must be either '0' or '1'" msgstr "Die Standardeinstellung für den Feldtyp 'Check' {0} muss entweder '0' oder '1' sein." @@ -8515,6 +8559,16 @@ msgstr "Standardeinstellungen" msgid "Defaults Updated" msgstr "Standardeinstellungen aktualisiert" +#. Description of a DocType +#: workflow/doctype/workflow_transition/workflow_transition.json +msgid "Defines actions on states and the next step and allowed roles." +msgstr "" + +#. Description of a DocType +#: 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' #: core/doctype/communication/communication.json msgctxt "Communication" @@ -8526,13 +8580,13 @@ msgstr "Verzögert" #: public/js/frappe/form/grid.js:63 public/js/frappe/form/toolbar.js:423 #: public/js/frappe/views/reports/report_view.js:1642 #: public/js/frappe/views/treeview.js:313 -#: public/js/frappe/views/workspace/workspace.js:829 +#: public/js/frappe/views/workspace/workspace.js:834 #: templates/discussions/reply_card.html:35 #: templates/discussions/reply_section.html:29 msgid "Delete" msgstr "Löschen" -#: public/js/frappe/list/list_view.js:1920 +#: public/js/frappe/list/list_view.js:1927 msgctxt "Button in list view actions menu" msgid "Delete" msgstr "Löschen" @@ -8571,7 +8625,7 @@ msgstr "Daten löschen" msgid "Delete Kanban Board" msgstr "Kanban-Board löschen" -#: public/js/frappe/views/workspace/workspace.js:830 +#: public/js/frappe/views/workspace/workspace.js:835 msgid "Delete Workspace" msgstr "Arbeitsbereich löschen" @@ -8587,12 +8641,12 @@ msgstr "Kommentar 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" -#: public/js/frappe/list/list_view.js:1925 +#: public/js/frappe/list/list_view.js:1932 msgctxt "Title of confirmation dialog" msgid "Delete {0} item permanently?" msgstr "Element {0} endgültig löschen?" -#: public/js/frappe/list/list_view.js:1931 +#: public/js/frappe/list/list_view.js:1938 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "{0} Elemente dauerhaft löschen?" @@ -8646,7 +8700,7 @@ msgctxt "Deleted Document" msgid "Deleted Name" msgstr "Gelöschte Namen" -#: desk/reportview.py:502 +#: desk/reportview.py:506 msgid "Deleting {0}" msgstr "Löscht {0}" @@ -9131,7 +9185,7 @@ msgstr "Automatische Antwort deaktiviert" #: public/js/frappe/views/communication.js:30 #: public/js/frappe/views/dashboard/dashboard_view.js:70 -#: public/js/frappe/views/workspace/workspace.js:508 +#: public/js/frappe/views/workspace/workspace.js:513 #: public/js/frappe/web_form/web_form.js:187 msgid "Discard" msgstr "Verwerfen" @@ -9431,6 +9485,11 @@ msgstr "DocType kann nicht zusammengeführt werden" msgid "DocType can only be renamed by Administrator" msgstr "DocType darf nur vom Administrator umbenannt werden" +#. Description of a DocType +#: core/doctype/doctype/doctype.json +msgid "DocType is a Table / Form in the application." +msgstr "" + #: integrations/doctype/webhook/webhook.py:82 msgid "DocType must be Submittable for the selected Doc Event" msgstr "DocType muss für das ausgewählte Doc-Ereignis übermittelt werden" @@ -9491,7 +9550,7 @@ msgstr "Der DocType-Name ist auf {0} Zeichen begrenzt ({1})" msgid "Doctype required" msgstr "Doctype erforderlich" -#: public/js/frappe/views/workspace/workspace.js:1309 +#: public/js/frappe/views/workspace/workspace.js:1314 msgid "Doctype with same route already exist. Please choose different title." msgstr "Unter demselben Pfad gibt es bereits einen DocType. Bitte wählen Sie einen anderen Titel." @@ -10123,7 +10182,7 @@ msgstr "Entwurf" #: public/js/frappe/views/workspace/blocks/header.js:46 #: public/js/frappe/views/workspace/blocks/paragraph.js:136 #: public/js/frappe/views/workspace/blocks/spacer.js:44 -#: public/js/frappe/views/workspace/workspace.js:571 +#: public/js/frappe/views/workspace/workspace.js:576 #: public/js/frappe/widgets/base_widget.js:33 msgid "Drag" msgstr "Ziehen" @@ -10179,8 +10238,8 @@ msgstr "Fälligkeitsdatum basiert auf" #: public/js/frappe/form/grid_row_form.js:42 #: public/js/frappe/form/toolbar.js:377 -#: public/js/frappe/views/workspace/workspace.js:814 -#: public/js/frappe/views/workspace/workspace.js:981 +#: public/js/frappe/views/workspace/workspace.js:819 +#: public/js/frappe/views/workspace/workspace.js:986 msgid "Duplicate" msgstr "Duplizieren" @@ -10196,8 +10255,8 @@ msgstr "Doppelter Filtername" msgid "Duplicate Name" msgstr "Doppelter Name" -#: public/js/frappe/views/workspace/workspace.js:553 -#: public/js/frappe/views/workspace/workspace.js:815 +#: public/js/frappe/views/workspace/workspace.js:558 +#: public/js/frappe/views/workspace/workspace.js:820 msgid "Duplicate Workspace" msgstr "Arbeitsbereich duplizieren" @@ -10205,7 +10264,7 @@ msgstr "Arbeitsbereich duplizieren" msgid "Duplicate current row" msgstr "Aktuelle Zeile duplizieren" -#: public/js/frappe/views/workspace/workspace.js:996 +#: public/js/frappe/views/workspace/workspace.js:1001 msgid "Duplicate of {0} named as {1} is created successfully" msgstr "Das Duplikat von {0} mit dem Namen {1} wurde erfolgreich erstellt" @@ -10349,8 +10408,8 @@ msgstr "Für jedes in ERPNext erstellte Dokument kann eine eindeutige ID generie #: public/js/frappe/form/toolbar.js:672 #: public/js/frappe/views/reports/query_report.js:813 #: public/js/frappe/views/reports/query_report.js:1634 -#: public/js/frappe/views/workspace/workspace.js:454 -#: public/js/frappe/views/workspace/workspace.js:808 +#: public/js/frappe/views/workspace/workspace.js:459 +#: public/js/frappe/views/workspace/workspace.js:813 #: public/js/frappe/widgets/base_widget.js:64 #: public/js/frappe/widgets/chart_widget.js:298 #: public/js/frappe/widgets/number_card_widget.js:331 @@ -10361,7 +10420,7 @@ msgstr "Für jedes in ERPNext erstellte Dokument kann eine eindeutige ID generie msgid "Edit" msgstr "Bearbeiten" -#: public/js/frappe/list/list_view.js:2006 +#: public/js/frappe/list/list_view.js:2013 msgctxt "Button in list view actions menu" msgid "Edit" msgstr "Bearbeiten" @@ -10397,7 +10456,7 @@ msgstr "Benutzerdefiniertes HTML bearbeiten" msgid "Edit DocType" msgstr "DocType bearbeiten" -#: public/js/frappe/list/list_view.js:1730 +#: public/js/frappe/list/list_view.js:1737 msgctxt "Button in list view menu" msgid "Edit DocType" msgstr "DocType bearbeiten" @@ -10482,7 +10541,7 @@ msgctxt "Website Settings" msgid "Edit Values" msgstr "Werte bearbeiten" -#: public/js/frappe/views/workspace/workspace.js:809 +#: public/js/frappe/views/workspace/workspace.js:814 msgid "Edit Workspace" msgstr "Arbeitsbereich bearbeiten" @@ -10682,11 +10741,11 @@ msgctxt "Email Account" msgid "Email Account Name" msgstr "E-Mail-Konten-Name" -#: core/doctype/user/user.py:741 +#: core/doctype/user/user.py:743 msgid "Email Account added multiple times" msgstr "E-Mail-Konto wurde mehrmals hinzugefügt" -#: email/smtp.py:42 +#: email/smtp.py:43 msgid "Email Account not setup. Please create a new Email Account from Settings > Email Account" msgstr "E-Mail-Konto nicht eingerichtet. Bitte erstellen Sie ein neues E-Mail-Konto unter Einstellungen > E-Mail-Konto" @@ -10842,6 +10901,11 @@ msgstr "E-Mail-Queue Empfänger" msgid "Email Queue flushing aborted due to too many failures." msgstr "Das Leeren der E-Mail-Warteschlange wurde aufgrund zu vieler Fehler abgebrochen." +#. Description of a DocType +#: email/doctype/email_queue/email_queue.json +msgid "Email Queue records." +msgstr "" + #. Label of a HTML field in DocType 'Email Template' #: email/doctype/email_template/email_template.json msgctxt "Email Template" @@ -10921,7 +10985,7 @@ msgstr "E-Mail-Sync Option" #. Name of a DocType #: email/doctype/email_template/email_template.json -#: public/js/frappe/views/communication.js:92 +#: public/js/frappe/views/communication.js:95 msgid "Email Template" msgstr "E-Mail-Vorlage" @@ -10962,7 +11026,7 @@ msgstr "E-Mail wurde als Spam markiert" msgid "Email has been moved to trash" msgstr "E-Mail wurde in den Papierkorb geworfen" -#: public/js/frappe/views/communication.js:788 +#: public/js/frappe/views/communication.js:799 msgid "Email not sent to {0} (unsubscribed / disabled)" msgstr "E-Mail wurde nicht an {0} gesendet (abbestellt / deaktiviert)" @@ -10980,6 +11044,10 @@ msgctxt "Workflow" msgid "Emails will be sent with next possible workflow actions" msgstr "E-Mails werden mit den nächsten möglichen Workflow-Aktionen gesendet" +#: website/doctype/web_form/web_form.js:34 +msgid "Embed code copied" +msgstr "" + #. Label of a Check field in DocType 'Google Calendar' #: integrations/doctype/google_calendar/google_calendar.json msgctxt "Google Calendar" @@ -11317,6 +11385,11 @@ msgstr "Aktiviert Kalender- und Gantt-Ansichten." msgid "Enabling auto reply on an incoming email account will send automated replies to all the synchronized emails. Do you wish to continue?" msgstr "Wenn Sie die automatische Beantwortung für ein eingehendes E-Mail-Konto aktivieren, werden automatische Antworten an alle synchronisierten E-Mails gesendet. Möchten Sie fortfahren?" +#. Description of a DocType +#: integrations/doctype/push_notification_settings/push_notification_settings.json +msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved." +msgstr "" + #. Description of the 'Relay Settings' (Section Break) field in DocType 'Push #. Notification Settings' #: integrations/doctype/push_notification_settings/push_notification_settings.json @@ -11481,7 +11554,7 @@ msgstr "Geben Sie in den Google-Einstellungen die Client ID und das Client Secre msgid "Enter Code displayed in OTP App." msgstr "Geben Sie den in der OTP-App angezeigten Code ein." -#: public/js/frappe/views/communication.js:743 +#: public/js/frappe/views/communication.js:754 msgid "Enter Email Recipient(s)" msgstr "Geben Sie den/die E-Mail-Empfänger an" @@ -11954,7 +12027,7 @@ msgstr "Verfallzeit der QR Code Bildseite" msgid "Export" msgstr "Exportieren" -#: public/js/frappe/list/list_view.js:2028 +#: public/js/frappe/list/list_view.js:2035 msgctxt "Button in list view actions menu" msgid "Export" msgstr "Exportieren" @@ -12399,7 +12472,7 @@ msgctxt "Custom Field" msgid "Field Type" msgstr "Feldtyp" -#: desk/reportview.py:176 +#: desk/reportview.py:182 msgid "Field not permitted in query" msgstr "Feld in der Abfrage nicht erlaubt" @@ -12753,9 +12826,9 @@ msgstr "Dateien" #: desk/doctype/number_card/number_card.js:205 #: desk/doctype/number_card/number_card.js:333 #: email/doctype/auto_email_report/auto_email_report.js:90 -#: public/js/frappe/list/base_list.js:870 +#: public/js/frappe/list/base_list.js:878 #: public/js/frappe/ui/filters/filter_list.js:134 -#: website/doctype/web_form/web_form.js:187 +#: website/doctype/web_form/web_form.js:197 msgid "Filter" msgstr "Filter" @@ -13681,7 +13754,7 @@ msgctxt "System Settings" msgid "Friday" msgstr "Freitag" -#: public/js/frappe/views/communication.js:182 +#: public/js/frappe/views/communication.js:185 #: public/js/frappe/views/inbox/inbox_view.js:70 msgid "From" msgstr "Von" @@ -13800,7 +13873,7 @@ msgstr "Funktion" msgid "Function Based On" msgstr "Funktion basiert auf" -#: __init__.py:930 +#: __init__.py:933 msgid "Function {0} is not whitelisted." msgstr "Funktion {0} ist nicht freigegeben." @@ -13869,6 +13942,10 @@ msgctxt "User" msgid "Gender" msgstr "Geschlecht" +#: www/contact.html:29 +msgid "General" +msgstr "Allgemein" + #. Title of an Onboarding Step #: custom/onboarding_step/report_builder/report_builder.json msgid "Generate Custom Reports" @@ -13925,7 +14002,7 @@ msgctxt "Auto Repeat" msgid "Get Contacts" msgstr "Kontakte erhalten" -#: website/doctype/web_form/web_form.js:83 +#: website/doctype/web_form/web_form.js:93 msgid "Get Fields" msgstr "Felder erhalten" @@ -14852,7 +14929,7 @@ msgctxt "Form Tour Step" msgid "Hidden Fields" msgstr "Versteckte Felder" -#: public/js/frappe/views/workspace/workspace.js:820 +#: public/js/frappe/views/workspace/workspace.js:825 #: public/js/frappe/widgets/base_widget.js:46 #: public/js/frappe/widgets/base_widget.js:176 #: templates/includes/login/login.js:83 @@ -15002,7 +15079,7 @@ msgctxt "Portal Settings" msgid "Hide Standard Menu" msgstr "Standardmenü ausblenden" -#: public/js/frappe/list/list_view.js:1605 +#: public/js/frappe/list/list_view.js:1612 msgid "Hide Tags" msgstr "Schlagworte ausblenden" @@ -15010,7 +15087,7 @@ msgstr "Schlagworte ausblenden" msgid "Hide Weekends" msgstr "Wochenenden ausblenden" -#: public/js/frappe/views/workspace/workspace.js:821 +#: public/js/frappe/views/workspace/workspace.js:826 msgid "Hide Workspace" msgstr "Arbeitsbereich ausblenden" @@ -15167,7 +15244,7 @@ msgstr "Wie soll diese Währung formatiert werden? Wenn nichts festgelegt ist, w msgid "ID" msgstr "ID" -#: desk/reportview.py:431 public/js/frappe/views/reports/report_view.js:917 +#: desk/reportview.py:435 public/js/frappe/views/reports/report_view.js:917 msgctxt "Label of name column in report" msgid "ID" msgstr "ID" @@ -15219,9 +15296,9 @@ msgctxt "Comment" msgid "IP Address" msgstr "IP Adresse" -#: public/js/frappe/views/workspace/workspace.js:638 -#: public/js/frappe/views/workspace/workspace.js:966 -#: public/js/frappe/views/workspace/workspace.js:1211 +#: public/js/frappe/views/workspace/workspace.js:643 +#: public/js/frappe/views/workspace/workspace.js:971 +#: public/js/frappe/views/workspace/workspace.js:1216 msgid "Icon" msgstr "Symbol" @@ -15418,6 +15495,12 @@ msgctxt "Note" msgid "If enabled, users will be notified every time they login. If not enabled, users will only be notified once." msgstr "Wenn aktiviert, werden die Benutzer jedes Mal benachrichtigt, wenn sie sich anmelden. Wenn nicht aktiviert, werden die Benutzer nur einmal benachrichtigt." +#. Description of the 'Default Workspace' (Link) field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "If left empty, the default workspace will be the last visited workspace" +msgstr "" + #. Description of the 'Port' (Data) field in DocType 'Email Domain' #: email/doctype/email_domain/email_domain.json msgctxt "Email Domain" @@ -15604,7 +15687,7 @@ msgstr "Illegal Access-Token. Bitte versuche es erneut" msgid "Illegal Document Status for {0}" msgstr "Illegaler Dokumentstatus für {0}" -#: model/db_query.py:441 model/db_query.py:444 model/db_query.py:1122 +#: model/db_query.py:440 model/db_query.py:443 model/db_query.py:1106 msgid "Illegal SQL Query" msgstr "Ungültige SQL-Abfrage" @@ -15719,7 +15802,7 @@ msgstr "Bild optimiert" msgid "Images" msgstr "Bilder" -#: core/doctype/user/user.js:346 +#: core/doctype/user/user.js:356 msgid "Impersonate" msgstr "" @@ -15729,7 +15812,7 @@ msgctxt "Activity Log" msgid "Impersonate" msgstr "" -#: core/doctype/user/user.js:373 +#: core/doctype/user/user.js:383 msgid "Impersonate as {0}" msgstr "" @@ -15756,7 +15839,7 @@ msgstr "Implizit" msgid "Import" msgstr "Importieren" -#: public/js/frappe/list/list_view.js:1667 +#: public/js/frappe/list/list_view.js:1674 msgctxt "Button in list view menu" msgid "Import" msgstr "Importieren" @@ -16103,7 +16186,7 @@ msgstr "Unvollständige Implementierung des virtuellen DocTypes" msgid "Incomplete login details" msgstr "Unvollständige Anmeldedaten" -#: email/smtp.py:103 +#: email/smtp.py:104 msgid "Incorrect Configuration" msgstr "Falsche Konfiguration" @@ -16181,9 +16264,9 @@ msgctxt "Workspace" msgid "Indicator Color" msgstr "Indikatorfarbe" -#: public/js/frappe/views/workspace/workspace.js:645 -#: public/js/frappe/views/workspace/workspace.js:973 -#: public/js/frappe/views/workspace/workspace.js:1217 +#: public/js/frappe/views/workspace/workspace.js:650 +#: public/js/frappe/views/workspace/workspace.js:978 +#: public/js/frappe/views/workspace/workspace.js:1222 msgid "Indicator color" msgstr "Indikatorfarbe" @@ -16315,11 +16398,11 @@ msgstr "Unzureichende Berechtigungsstufe für {0}" msgid "Insufficient Permission for {0}" msgstr "Unzureichende Berechtigung für {0}" -#: desk/reportview.py:335 +#: desk/reportview.py:339 msgid "Insufficient Permissions for deleting Report" msgstr "Unzureichende Berechtigungen um Bericht zu löschen" -#: desk/reportview.py:306 +#: desk/reportview.py:310 msgid "Insufficient Permissions for editing Report" msgstr "Unzureichende Berechtigungen um Bericht zu bearbeiten" @@ -16424,6 +16507,11 @@ msgstr "Mittlere" msgid "Internal Server Error" msgstr "interner Serverfehler" +#. Description of a DocType +#: core/doctype/docshare/docshare.json +msgid "Internal record of document shares" +msgstr "" + #: desk/page/user_profile/user_profile_sidebar.html:22 msgid "Intro" msgstr "Einführung" @@ -16504,7 +16592,7 @@ msgstr "Ungültige CSV-Format" msgid "Invalid Condition: {}" msgstr "Ungültige Bedingung: {}" -#: email/smtp.py:132 +#: email/smtp.py:134 msgid "Invalid Credentials" msgstr "Ungültige Anmeldeinformationen" @@ -16556,7 +16644,7 @@ msgstr "Ungültiger Login. Versuchen Sie es erneut." msgid "Invalid Mail Server. Please rectify and try again." msgstr "Ungültiger E-Mail-Server. Bitte Angaben korrigieren und erneut versuchen." -#: model/naming.py:93 +#: model/naming.py:94 msgid "Invalid Naming Series: {}" msgstr "Ungültiger Nummernkreis: {}" @@ -16568,7 +16656,7 @@ msgstr "Ungültige Operation" msgid "Invalid Option" msgstr "Ungültige Option" -#: email/smtp.py:102 +#: email/smtp.py:103 msgid "Invalid Outgoing Mail Server or Port: {0}" msgstr "Ungültiger Postausgang Server oder Port: {0}" @@ -16580,7 +16668,7 @@ msgstr "Ungültige Ausgabeformat" msgid "Invalid Parameters." msgstr "Ungültige Parameter." -#: core/doctype/user/user.py:1227 www/update-password.html:121 +#: core/doctype/user/user.py:1229 www/update-password.html:121 #: www/update-password.html:142 www/update-password.html:144 #: www/update-password.html:245 msgid "Invalid Password" @@ -16619,7 +16707,7 @@ msgstr "Ungültiger Benutzername oder fehlendes Passwort. Bitte Angaben korrigie msgid "Invalid Webhook Secret" msgstr "Ungültiges Webhook Geheimnis" -#: desk/reportview.py:161 +#: desk/reportview.py:167 msgid "Invalid aggregate function" msgstr "Ungültige Aggregatfunktion" @@ -16660,11 +16748,11 @@ msgstr "Ungültiger Filter: {0}" msgid "Invalid json added in the custom options: {0}" msgstr "Ungültiger JSON in den benutzerdefinierten Optionen hinzugefügt: {0}" -#: model/naming.py:444 +#: model/naming.py:466 msgid "Invalid name type (integer) for varchar name column" msgstr "Ungültiger Namenstyp (Ganzzahl) für die Varchar-Namensspalte" -#: model/naming.py:54 +#: model/naming.py:55 msgid "Invalid naming series {}: dot (.) missing" msgstr "Ungültiger Nummernkreis {}: Punkt (.) fehlt" @@ -17290,6 +17378,16 @@ msgctxt "Button in kanban view menu" msgid "Kanban Settings" msgstr "Kanban-Einstellungen" +#. Description of a DocType +#: core/doctype/activity_log/activity_log.json +msgid "Keep track of all update feeds" +msgstr "" + +#. Description of a DocType +#: core/doctype/communication/communication.json +msgid "Keeps track of all communications" +msgstr "" + #. Label of a Data field in DocType 'DefaultValue' #: core/doctype/defaultvalue/defaultvalue.json msgctxt "DefaultValue" @@ -18520,7 +18618,7 @@ msgctxt "Web Form" msgid "List Setting Message" msgstr "" -#: public/js/frappe/list/list_view.js:1747 +#: public/js/frappe/list/list_view.js:1754 msgctxt "Button in list view menu" msgid "List Settings" msgstr "Listeneinstellungen" @@ -18564,6 +18662,11 @@ msgctxt "Web Page" msgid "List as [{\"label\": _(\"Jobs\"), \"route\":\"jobs\"}]" msgstr "Liste als [{ \"label\": _ ( \"Jobs\"), \"route\": \"jobs\"}]" +#. Description of a DocType +#: core/doctype/patch_log/patch_log.json +msgid "List of patches executed" +msgstr "" + #: public/js/frappe/ui/toolbar/search_utils.js:542 msgid "Lists" msgstr "Listen" @@ -18588,7 +18691,7 @@ msgstr "Weitere Kommunikation laden" #: core/page/permission_manager/permission_manager.js:165 #: public/js/frappe/form/controls/multicheck.js:13 #: public/js/frappe/form/linked_with.js:13 -#: public/js/frappe/list/base_list.js:482 +#: public/js/frappe/list/base_list.js:490 #: public/js/frappe/list/list_view.js:333 public/js/frappe/ui/listing.html:16 #: public/js/frappe/views/reports/query_report.js:1015 msgid "Loading" @@ -18753,7 +18856,7 @@ msgstr "Mit {0} anmelden" msgid "Login and view in Browser" msgstr "Anmelden und im Browser anzeigen" -#: website/doctype/web_form/web_form.js:357 +#: website/doctype/web_form/web_form.js:367 msgid "Login is required to see web form list view. Enable {0} to see list settings" msgstr "Um die Listenansicht des Webformulars zu sehen, ist eine Anmeldung erforderlich. Aktivieren Sie {0}, um die Listeneinstellungen zu sehen" @@ -18817,7 +18920,7 @@ msgctxt "Activity Log" msgid "Logout" msgstr "Abmelden" -#: core/doctype/user/user.js:173 +#: core/doctype/user/user.js:183 msgid "Logout All Sessions" msgstr "Alle Sitzungen abmelden" @@ -19371,7 +19474,7 @@ msgstr "Zusammenführung ist nur möglich zwischen Gruppen oder Knoten" #: core/doctype/data_import/data_import.js:489 #: public/js/frappe/ui/messages.js:175 -#: public/js/frappe/views/communication.js:111 www/message.html:3 +#: public/js/frappe/views/communication.js:114 www/message.html:3 #: www/message.html:25 msgid "Message" msgstr "Nachricht" @@ -19401,7 +19504,7 @@ msgctxt "Communication" msgid "Message" msgstr "Nachricht" -#: __init__.py:614 public/js/frappe/ui/messages.js:265 +#: __init__.py:617 public/js/frappe/ui/messages.js:265 msgctxt "Default title of the message dialog" msgid "Message" msgstr "Nachricht" @@ -19491,7 +19594,7 @@ msgctxt "Notification" msgid "Message Type" msgstr "Nachrichtentyp" -#: public/js/frappe/views/communication.js:922 +#: public/js/frappe/views/communication.js:933 msgid "Message clipped" msgstr "Nachricht abgeschnitten" @@ -20273,7 +20376,7 @@ msgstr "Muss vom Typ sein "Bild anhängen"" msgid "Must have report permission to access this report." msgstr "Um auf diesen Bericht zuzugreifen, muss eine Berichtsberechtigung vorliegen." -#: core/doctype/report/report.py:145 +#: core/doctype/report/report.py:148 msgid "Must specify a Query to run" msgstr "Muss eine Abfrage angeben, die ausgeführt werden soll" @@ -20359,7 +20462,7 @@ msgstr "Name (Dokumentname)" msgid "Name already taken, please set a new name" msgstr "Name bereits vergeben, bitte einen neuen Namen festlegen" -#: model/naming.py:458 +#: model/naming.py:480 msgid "Name cannot contain special characters like {0}" msgstr "Der Name darf keine Sonderzeichen wie {0} enthalten" @@ -20371,7 +20474,7 @@ msgstr "Name des Dokumenttyps (DocType) mit dem dieses Feld verknüpft sein soll msgid "Name of the new Print Format" msgstr "Name des neuen Druckformats" -#: model/naming.py:453 +#: model/naming.py:475 msgid "Name of {0} cannot be {1}" msgstr "Name von {0} kann nicht {1} sein" @@ -20435,7 +20538,7 @@ msgctxt "Document Naming Settings" msgid "Naming Series" msgstr "Nummernkreis" -#: model/naming.py:243 +#: model/naming.py:244 msgid "Naming Series mandatory" msgstr "Nummernkreis zwingend erforderlich" @@ -20621,7 +20724,7 @@ msgstr "Neue Links" msgid "New Mention on {0}" msgstr "Neue Erwähnung zu {0}" -#: www/contact.py:50 +#: www/contact.py:59 msgid "New Message from Website Contact Page" msgstr "Neue Nachricht von der Webseite Kontaktseite" @@ -20651,7 +20754,7 @@ msgstr "Neue Zahlenkarte" msgid "New Onboarding" msgstr "Neues Onboarding" -#: core/doctype/user/user.js:161 www/update-password.html:19 +#: core/doctype/user/user.js:171 www/update-password.html:19 msgid "New Password" msgstr "Neues Passwort" @@ -20681,7 +20784,7 @@ msgstr "Neuer Wert" msgid "New Workflow Name" msgstr "Neuer Workflow-Name" -#: public/js/frappe/views/workspace/workspace.js:1178 +#: public/js/frappe/views/workspace/workspace.js:1183 msgid "New Workspace" msgstr "Neuer Arbeitsbereich" @@ -20741,7 +20844,7 @@ msgstr "Neu {0}: {1}" msgid "New {} releases for the following apps are available" msgstr "Neue {} Versionen für die folgenden Apps sind verfügbar" -#: core/doctype/user/user.py:804 +#: core/doctype/user/user.py:806 msgid "Newly created user {0} has no roles enabled." msgstr "Der neu erstellte Benutzer {0} hat keine aktivierten Rollen." @@ -21010,7 +21113,7 @@ msgstr "Keine Bezeichnung" msgid "No Letterhead" msgstr "Kein Briefkopf" -#: model/naming.py:435 +#: model/naming.py:457 msgid "No Name Specified for {0}" msgstr "Kein Name für {0} angegeben" @@ -21058,7 +21161,7 @@ msgstr "Keine Ergebnisse" msgid "No Results found" msgstr "Keine Ergebnisse gefunden" -#: core/doctype/user/user.py:805 +#: core/doctype/user/user.py:807 msgid "No Roles Specified" msgstr "Keine Rollen festgelegt" @@ -21066,7 +21169,7 @@ msgstr "Keine Rollen festgelegt" msgid "No Select Field Found" msgstr "Kein Auswahlfeld gefunden" -#: desk/reportview.py:580 +#: desk/reportview.py:584 msgid "No Tags" msgstr "Keine Schlagworte" @@ -21098,7 +21201,7 @@ msgstr "Keine Änderungen im Dokument" msgid "No changes made because old and new name are the same." msgstr "Keine Änderungen vorgenommen, weil der alte und neue Name gleich sind." -#: public/js/frappe/views/workspace/workspace.js:1483 +#: public/js/frappe/views/workspace/workspace.js:1488 msgid "No changes made on the page" msgstr "Keine Änderungen an der Seite" @@ -21208,7 +21311,7 @@ msgctxt "SMS Log" msgid "No of Sent SMS" msgstr "Anzahl der gesendeten SMS" -#: __init__.py:1118 client.py:109 client.py:151 +#: __init__.py:1121 client.py:109 client.py:151 msgid "No permission for {0}" msgstr "Keine Berechtigung für {0}" @@ -21217,7 +21320,7 @@ msgctxt "{0} = verb, {1} = object" msgid "No permission to '{0}' {1}" msgstr "Keine Berechtigung um '{0}' {1}" -#: model/db_query.py:935 +#: model/db_query.py:924 msgid "No permission to read {0}" msgstr "Keine Berechtigung zum Lesen {0}" @@ -21245,7 +21348,7 @@ msgstr "Es werden keine Datensätze exportiert" msgid "No template found at path: {0}" msgstr "Keine Vorlage im Pfad: {0} gefunden" -#: public/js/frappe/form/controls/multiselect_list.js:226 +#: public/js/frappe/form/controls/multiselect_list.js:246 msgid "No values to show" msgstr "Keine Werte anzuzeigen" @@ -21269,11 +21372,7 @@ msgstr "Keine {0} mit passenden Filtern gefunden. Löschen Sie Filter, um alle { msgid "No {0} mail" msgstr "Nein {0} mail" -#: public/js/form_builder/utils.js:117 -msgid "No." -msgstr "Nr." - -#: public/js/frappe/form/grid_row.js:252 +#: public/js/form_builder/utils.js:117 public/js/frappe/form/grid_row.js:252 msgctxt "Title of the 'row number' column" msgid "No." msgstr "Nr." @@ -21319,7 +21418,7 @@ msgctxt "Recorder Query" msgid "Normalized Query" msgstr "Normalisierte Abfrage" -#: core/doctype/user/user.py:1010 templates/includes/login/login.js:258 +#: core/doctype/user/user.py:1012 templates/includes/login/login.js:258 #: utils/oauth.py:265 msgid "Not Allowed" msgstr "Nicht Erlaubt" @@ -21368,10 +21467,10 @@ msgctxt "DocField" msgid "Not Nullable" msgstr "Nicht nullbar" -#: __init__.py:1014 app.py:353 desk/calendar.py:26 geo/utils.py:97 +#: __init__.py:1017 app.py:353 desk/calendar.py:26 geo/utils.py:97 #: public/js/frappe/web_form/webform_script.js:15 #: website/doctype/web_form/web_form.py:602 -#: website/page_renderers/not_permitted_page.py:20 www/login.py:174 +#: website/page_renderers/not_permitted_page.py:20 www/login.py:178 #: www/qrcode.py:22 www/qrcode.py:25 www/qrcode.py:37 msgid "Not Permitted" msgstr "Nicht zulässig" @@ -21428,7 +21527,7 @@ msgstr "Nicht eingetragen" msgid "Not a valid Comma Separated Value (CSV File)" msgstr "Keine gültige .csv-Datei" -#: core/doctype/user/user.py:232 +#: core/doctype/user/user.py:234 msgid "Not a valid User Image." msgstr "Kein gültiges Benutzerbild." @@ -21481,7 +21580,7 @@ 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." #: api/v1.py:88 api/v1.py:93 -#: core/doctype/system_settings/system_settings.py:208 handler.py:109 +#: core/doctype/system_settings/system_settings.py:209 handler.py:109 #: public/js/frappe/request.js:157 public/js/frappe/request.js:167 #: public/js/frappe/request.js:172 #: public/js/frappe/views/kanban/kanban_board.bundle.js:68 @@ -21532,7 +21631,7 @@ msgstr "Hinweis: Standardmäßig werden E-Mails für fehlgeschlagene Backups ges msgid "Note: Changing the Page Name will break previous URL to this page." msgstr "Hinweis: Wenn Sie den Seitennamen ändern, wird die vorherige URL auf diese Seite gelegt." -#: core/doctype/user/user.js:25 +#: core/doctype/user/user.js:35 msgid "Note: Etc timezones have their signs reversed." msgstr "Hinweis: Bei \"Etc\"-Zeitzonen sind die Vorzeichen umgekehrt." @@ -21550,7 +21649,7 @@ msgctxt "System Settings" 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" -#: core/doctype/user/user.js:361 +#: core/doctype/user/user.js:371 msgid "Note: This will be shared with user." msgstr "" @@ -21797,7 +21896,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." -#: core/doctype/system_settings/system_settings.py:161 +#: core/doctype/system_settings/system_settings.py:162 msgid "Number of backups must be greater than zero." msgstr "Anzahl der Backups muss größer als Null sein." @@ -21999,7 +22098,7 @@ msgctxt "Webhook" msgid "On checking this option, URL will be treated like a jinja template string" msgstr "Beim Aktivieren dieser Option wird die URL wie eine Jinja-Vorlage behandelt" -#: public/js/frappe/views/communication.js:932 +#: public/js/frappe/views/communication.js:943 msgid "On {0}, {1} wrote:" msgstr "Am {0}, schrieb {1}:" @@ -22066,7 +22165,7 @@ msgstr "Einmal-Passwort (OTP) Registrierungscode von {}" msgid "One of" msgstr "Einer von" -#: public/js/frappe/views/workspace/workspace.js:1318 +#: public/js/frappe/views/workspace/workspace.js:1323 msgid "One of the child page with name {0} already exist in {1} Section. Please update the name of the child page first before moving" msgstr "Eine untergeordnete Seiten mit dem Namen {0} existiert bereits im Bereich {1}. Bitte aktualisieren Sie zuerst den Namen der untergeordneten Seite, bevor Sie sie verschieben." @@ -22082,7 +22181,7 @@ msgstr "Nur Administrator kann E-Mail-Queue löschen" msgid "Only Administrator can edit" msgstr "Kann nur vom Administrator bearbeitet werden" -#: core/doctype/report/report.py:72 +#: core/doctype/report/report.py:75 msgid "Only Administrator can save a standard report. Please rename and save." msgstr "Nur der Administrator kann einen Standardbericht speichern. Bitte umbenennen und speichern." @@ -22110,7 +22209,7 @@ msgstr "Nur Send Records aktualisiert in den letzten X Stunden" msgid "Only Workspace Manager can edit public workspaces" msgstr "Nur der Workspace Manager kann öffentliche Arbeitsbereiche bearbeiten" -#: public/js/frappe/views/workspace/workspace.js:542 +#: public/js/frappe/views/workspace/workspace.js:547 msgid "Only Workspace Manager can sort or edit this page" msgstr "Nur der Workspace-Manager kann diese Seite sortieren oder bearbeiten" @@ -22140,11 +22239,11 @@ msgstr "Für neue Datensätze sind nur Pflichtfelder zwingend erforderlich. Nich msgid "Only one {0} can be set as primary." msgstr "Es kann nur eine {0} als primäre festgelegt werden." -#: desk/reportview.py:332 +#: desk/reportview.py:336 msgid "Only reports of type Report Builder can be deleted" msgstr "Nur Berichte aus dem Berichterstellungswerkzeug können gelöscht werden" -#: desk/reportview.py:303 +#: desk/reportview.py:307 msgid "Only reports of type Report Builder can be edited" msgstr "Nur Berichte aus dem Berichterstellungswerkzeug können bearbeitet werden" @@ -22172,7 +22271,7 @@ msgstr "Hoppla! Etwas ist schief gelaufen." msgid "Open" msgstr "Offen" -#: desk/doctype/todo/todo_list.js:20 +#: desk/doctype/todo/todo_list.js:14 msgctxt "Access" msgid "Open" msgstr "Offen" @@ -22269,7 +22368,7 @@ msgstr "Listenelement öffnen" msgid "Open your authentication app on your mobile phone." msgstr "Öffnen Sie Ihre Authentifizierungs-App auf Ihrem Mobiltelefon." -#: desk/doctype/todo/todo_list.js:23 +#: desk/doctype/todo/todo_list.js:17 #: public/js/frappe/form/templates/form_links.html:18 #: public/js/frappe/ui/toolbar/search_utils.js:277 #: public/js/frappe/ui/toolbar/search_utils.js:278 @@ -22773,7 +22872,7 @@ msgctxt "Form Tour" msgid "Page Route" msgstr "Seitenpfad" -#: public/js/frappe/views/workspace/workspace.js:1505 +#: public/js/frappe/views/workspace/workspace.js:1510 msgid "Page Saved Successfully" msgstr "Seite erfolgreich gespeichert" @@ -22814,7 +22913,12 @@ msgstr "Seitenhöhe und -Breite können nicht Null sein" msgid "Page not found" msgstr "Seite nicht gefunden" -#: public/js/frappe/views/workspace/workspace.js:1305 +#. Description of a DocType +#: website/doctype/web_page/web_page.json +msgid "Page to show on the website\n" +msgstr "" + +#: public/js/frappe/views/workspace/workspace.js:1310 msgid "Page with title {0} already exist." msgstr "Seite mit Titel {0} existiert bereits." @@ -22832,9 +22936,9 @@ msgid "Parameter" msgstr "Parameter" #: public/js/frappe/model/model.js:132 -#: public/js/frappe/views/workspace/workspace.js:612 -#: public/js/frappe/views/workspace/workspace.js:940 -#: public/js/frappe/views/workspace/workspace.js:1187 +#: public/js/frappe/views/workspace/workspace.js:617 +#: public/js/frappe/views/workspace/workspace.js:945 +#: public/js/frappe/views/workspace/workspace.js:1192 msgid "Parent" msgstr "Übergeordnetes Element" @@ -22956,8 +23060,8 @@ msgctxt "Contact" msgid "Passive" msgstr "Passiv" -#: core/doctype/user/user.js:148 core/doctype/user/user.js:195 -#: core/doctype/user/user.js:215 desk/page/setup_wizard/setup_wizard.js:474 +#: core/doctype/user/user.js:158 core/doctype/user/user.js:205 +#: core/doctype/user/user.js:225 desk/page/setup_wizard/setup_wizard.js:474 #: www/login.html:21 msgid "Password" msgstr "Passwort" @@ -22999,11 +23103,11 @@ msgctxt "Web Form Field" msgid "Password" msgstr "Passwort" -#: core/doctype/user/user.py:1073 +#: core/doctype/user/user.py:1075 msgid "Password Email Sent" msgstr "Passwort E-Mail gesendet" -#: core/doctype/user/user.py:452 +#: core/doctype/user/user.py:454 msgid "Password Reset" msgstr "Passwort zurücksetzen" @@ -23039,7 +23143,7 @@ msgstr "Passwort fehlt im E-Mail-Konto" msgid "Password not found for {0} {1} {2}" msgstr "Passwort für {0} {1} {2} nicht gefunden" -#: core/doctype/user/user.py:1072 +#: core/doctype/user/user.py:1074 msgid "Password reset instructions have been sent to your email" msgstr "Eine Anleitung zum Zurücksetzen des Passworts wurde an ihre E-Mail-Adresse verschickt" @@ -23051,7 +23155,7 @@ msgstr "Passwort gesetzt" msgid "Password size exceeded the maximum allowed size" msgstr "Passwort überschreitet die maximal zulässige Länge" -#: core/doctype/user/user.py:868 +#: core/doctype/user/user.py:870 msgid "Password size exceeded the maximum allowed size." msgstr "Passwort überschreitet die maximal zulässige Länge." @@ -23059,7 +23163,7 @@ msgstr "Passwort überschreitet die maximal zulässige Länge." msgid "Passwords do not match" msgstr "" -#: core/doctype/user/user.js:181 +#: core/doctype/user/user.js:191 msgid "Passwords do not match!" msgstr "Passwörter stimmen nicht überein!" @@ -23294,7 +23398,7 @@ msgid "Permission Type" msgstr "Berechtigungsart" #. Label of a Card Break in the Users Workspace -#: core/doctype/user/user.js:123 core/doctype/user/user.js:132 +#: core/doctype/user/user.js:133 core/doctype/user/user.js:142 #: core/page/permission_manager/permission_manager.js:214 #: core/workspace/users/users.json msgid "Permissions" @@ -23528,7 +23632,7 @@ msgstr "Bitte füge einen Betreff zu deiner E-Mail hinzu" msgid "Please add a valid comment." msgstr "Bitte fügen Sie einen gültigen Kommentar hinzu." -#: core/doctype/user/user.py:1055 +#: core/doctype/user/user.py:1057 msgid "Please ask your administrator to verify your sign-up" msgstr "Bitte fragen Sie Ihren Administrator Ihre Anmeldung bis zum überprüfen" @@ -23560,11 +23664,11 @@ msgstr "Bitte überprüfen Sie die für das Dashboard-Diagramm festgelegten Filt msgid "Please check the value of \"Fetch From\" set for field {0}" msgstr "Bitte überprüfen Sie den Wert von "Abrufen von" für Feld {0}" -#: core/doctype/user/user.py:1053 +#: core/doctype/user/user.py:1055 msgid "Please check your email for verification" msgstr "Bitte überprüfen Sie Ihren Posteingang. Wir haben Ihnen eine E-Mail mit einer Bitte um Bestätigung geschickt." -#: email/smtp.py:131 +#: email/smtp.py:133 msgid "Please check your email login credentials." msgstr "Bitte überprüfen Sie Ihre E-Mail-Anmeldedaten." @@ -23612,7 +23716,7 @@ msgstr "Bitte nicht die Vorlagenköpfe ändern." msgid "Please duplicate this to make changes" msgstr "Bitte kopieren um Änderungen vorzunehmen" -#: core/doctype/system_settings/system_settings.py:154 +#: core/doctype/system_settings/system_settings.py:155 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." @@ -23748,7 +23852,7 @@ msgstr "Bitte zuerst DocType auswählen" msgid "Please select Entity Type first" msgstr "Bitte wählen Sie zunächst Entitätstyp" -#: core/doctype/system_settings/system_settings.py:104 +#: core/doctype/system_settings/system_settings.py:105 msgid "Please select Minimum Password Score" msgstr "Bitte wählen Sie Minimum Password Score" @@ -23776,7 +23880,7 @@ msgstr "Bitte wählen Sie einen gültigen Datumsfilter" msgid "Please select applicable Doctypes" msgstr "Bitte zutreffende Doctypes auswählen" -#: model/db_query.py:1134 +#: model/db_query.py:1118 msgid "Please select atleast 1 column from {0} to sort/group" msgstr "Bitte wählen Sie atleast 1 Spalte von {0} sortieren / Gruppe" @@ -23819,7 +23923,7 @@ msgstr "Bitte Filter einstellen" msgid "Please set filters value in Report Filter table." msgstr "Bitte setzen Sie Filter Wert in Berichtsfiltertabelle." -#: model/naming.py:528 +#: model/naming.py:550 msgid "Please set the document name" msgstr "Bitte geben Sie den Dokumentnamen ein" @@ -23831,7 +23935,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." -#: core/doctype/system_settings/system_settings.py:117 +#: core/doctype/system_settings/system_settings.py:118 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" @@ -23843,7 +23947,7 @@ msgstr "Bitte richten Sie zuerst eine Nachricht ein" msgid "Please setup default Email Account from Settings > Email Account" msgstr "Bitte richten Sie ein Standard-E-Mail-Konto unter Einstellungen > E-Mail-Konto ein" -#: core/doctype/user/user.py:403 +#: core/doctype/user/user.py:405 msgid "Please setup default outgoing Email Account from Settings > Email Account" msgstr "Bitte legen Sie das Standard-E-Mail-Konto unter Einstellungen > E-Mail-Konto fest" @@ -24095,7 +24199,7 @@ msgstr "Das Rendern des vorbereiteten Berichts ist fehlgeschlagen" msgid "Preparing Report" msgstr "Bericht vorbereiten" -#: public/js/frappe/views/communication.js:400 +#: public/js/frappe/views/communication.js:411 msgid "Prepend the template to the email message" msgstr "Vorlage oberhalb der Email-Nachricht einfügen" @@ -24252,7 +24356,7 @@ msgstr "Primäre Telefonnummer" msgid "Print" msgstr "Drucken" -#: public/js/frappe/list/list_view.js:1912 +#: public/js/frappe/list/list_view.js:1919 msgctxt "Button in list view actions menu" msgid "Print" msgstr "Drucken" @@ -24421,7 +24525,7 @@ msgctxt "DocField" msgid "Print Hide If No Value" msgstr "Druck verbergen wenn ohne Wert" -#: public/js/frappe/views/communication.js:153 +#: public/js/frappe/views/communication.js:156 msgid "Print Language" msgstr "Drucksprache" @@ -24673,6 +24777,11 @@ msgctxt "Module Def" msgid "Property Setter" msgstr "Einstellprogramm für Eigenschaften" +#. Description of a DocType +#: custom/doctype/property_setter/property_setter.json +msgid "Property Setter overrides a standard DocType or Field property" +msgstr "" + #. Label of a Data field in DocType 'Property Setter' #: custom/doctype/property_setter/property_setter.json msgctxt "Property Setter" @@ -24711,9 +24820,9 @@ msgid "Provider Name" msgstr "Anbietername" #: desk/doctype/note/note_list.js:6 public/js/frappe/views/interaction.js:78 -#: public/js/frappe/views/workspace/workspace.js:619 -#: public/js/frappe/views/workspace/workspace.js:947 -#: public/js/frappe/views/workspace/workspace.js:1193 +#: public/js/frappe/views/workspace/workspace.js:624 +#: public/js/frappe/views/workspace/workspace.js:952 +#: public/js/frappe/views/workspace/workspace.js:1198 msgid "Public" msgstr "Öffentlich" @@ -24736,7 +24845,7 @@ msgid "Public" msgstr "Öffentlich" #: website/doctype/blog_post/blog_post.js:36 -#: website/doctype/web_form/web_form.js:76 +#: website/doctype/web_form/web_form.js:86 msgid "Publish" msgstr "Veröffentlichen" @@ -25180,6 +25289,12 @@ msgctxt "Blog Settings" msgid "Rate Limits" msgstr "Anfragen begrenzen" +#. Label of a Int field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Rate limit for email link login" +msgstr "" + #. Label of a Int field in DocType 'Communication' #: core/doctype/communication/communication.json msgctxt "Communication" @@ -25256,7 +25371,7 @@ msgstr "" #: core/doctype/communication/communication.js:268 #: public/js/frappe/form/footer/form_timeline.js:587 -#: public/js/frappe/views/communication.js:336 +#: public/js/frappe/views/communication.js:347 msgid "Re: {0}" msgstr "" @@ -26058,11 +26173,11 @@ msgid "Refreshing" msgstr "Aktualisiere" #: core/doctype/system_settings/system_settings.js:52 -#: core/doctype/user/user.js:340 desk/page/setup_wizard/setup_wizard.js:204 +#: core/doctype/user/user.js:350 desk/page/setup_wizard/setup_wizard.js:204 msgid "Refreshing..." msgstr "Aktualisiere..." -#: core/doctype/user/user.py:1017 +#: core/doctype/user/user.py:1019 msgid "Registered but disabled" msgstr "Registrierte aber deaktiviert" @@ -26429,7 +26544,7 @@ msgctxt "Onboarding Step" msgid "Report Description" msgstr "Berichtsbeschreibung" -#: core/doctype/report/report.py:145 +#: core/doctype/report/report.py:148 msgid "Report Document Error" msgstr "Dokumentfehler melden" @@ -26579,7 +26694,7 @@ msgstr "Berichte mit mehr als 10 Spalten sehen im Querformat besser aus." msgid "Report {0}" msgstr "Bericht {0}" -#: desk/reportview.py:339 +#: desk/reportview.py:343 msgid "Report {0} deleted" msgstr "Bericht {0} gelöscht" @@ -26587,7 +26702,7 @@ msgstr "Bericht {0} gelöscht" msgid "Report {0} is disabled" msgstr "Bericht {0} ist deaktiviert" -#: desk/reportview.py:316 +#: desk/reportview.py:320 msgid "Report {0} saved" msgstr "Bericht {0} gespeichert" @@ -26613,6 +26728,16 @@ msgstr "Berichte & Stammdaten" msgid "Reports already in Queue" msgstr "Berichtet bereits in der Warteschlange" +#. Description of a DocType +#: core/doctype/user/user.json +msgid "Represents a User in the system." +msgstr "" + +#. Description of a DocType +#: 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 "" + #: www/me.html:66 msgid "Request Account Deletion" msgstr "Kontolöschung anfordern" @@ -26749,7 +26874,7 @@ msgstr "Dashboard-Anpassungen zurücksetzen" msgid "Reset Fields" msgstr "Felder zurücksetzen" -#: core/doctype/user/user.js:155 core/doctype/user/user.js:158 +#: core/doctype/user/user.js:165 core/doctype/user/user.js:168 msgid "Reset LDAP Password" msgstr "LDAP-Passwort zurücksetzen" @@ -26757,11 +26882,11 @@ msgstr "LDAP-Passwort zurücksetzen" msgid "Reset Layout" msgstr "Layout zurücksetzen" -#: core/doctype/user/user.js:206 +#: core/doctype/user/user.js:216 msgid "Reset OTP Secret" msgstr "OTP-Geheimnis zurücksetzen" -#: core/doctype/user/user.js:139 www/login.html:179 www/me.html:35 +#: core/doctype/user/user.js:149 www/login.html:179 www/me.html:35 #: www/me.html:44 www/update-password.html:3 www/update-password.html:9 msgid "Reset Password" msgstr "Passwort zurücksetzen" @@ -27210,7 +27335,7 @@ msgstr "Rollenberechtigungen" msgid "Role Permissions Manager" msgstr "Rollenberechtigungen-Manager" -#: public/js/frappe/list/list_view.js:1689 +#: public/js/frappe/list/list_view.js:1696 msgctxt "Button in list view menu" msgid "Role Permissions Manager" msgstr "Rollenberechtigungen-Manager" @@ -27256,7 +27381,7 @@ msgctxt "DocPerm" msgid "Role and Level" msgstr "Rolle und Ebene" -#: core/doctype/user/user.py:348 +#: core/doctype/user/user.py:350 msgid "Role has been set as per the user type {0}" msgstr "Die Rolle wurde gemäß Benutzertyp {0} festgelegt" @@ -27843,7 +27968,7 @@ msgstr "Samstag" #: public/js/frappe/views/kanban/kanban_view.js:340 #: public/js/frappe/views/reports/query_report.js:1802 #: public/js/frappe/views/reports/report_view.js:1628 -#: public/js/frappe/views/workspace/workspace.js:493 +#: public/js/frappe/views/workspace/workspace.js:498 #: public/js/frappe/widgets/base_widget.js:140 #: public/js/frappe/widgets/quick_list_widget.js:117 #: public/js/print_format_builder/print_format_builder.bundle.js:15 @@ -27857,7 +27982,7 @@ msgctxt "Notification" msgid "Save" msgstr "Speichern" -#: core/doctype/user/user.js:311 +#: core/doctype/user/user.js:321 msgid "Save API Secret: {0}" msgstr "API-Geheimnis speichern: {0}" @@ -27905,7 +28030,7 @@ msgstr "Gespeichert" #: public/js/frappe/list/list_settings.js:40 #: public/js/frappe/views/kanban/kanban_settings.js:47 -#: public/js/frappe/views/workspace/workspace.js:505 +#: public/js/frappe/views/workspace/workspace.js:510 msgid "Saving" msgstr "Speichere" @@ -27944,7 +28069,7 @@ msgstr "Planen" msgid "Schedule Newsletter" msgstr "Newsletter planen" -#: public/js/frappe/views/communication.js:82 +#: public/js/frappe/views/communication.js:85 msgid "Schedule Send At" msgstr "Senden planen am" @@ -28150,6 +28275,11 @@ msgctxt "Server Script" msgid "Script Type" msgstr "Skripttyp" +#. Description of a DocType +#: website/doctype/website_script/website_script.json +msgid "Script to attach to all web pages." +msgstr "" + #. Label of a Card Break in the Build Workspace #: core/workspace/build/build.json msgid "Scripting" @@ -28439,8 +28569,8 @@ msgstr "Auswählen" msgid "Select All" msgstr "Alle auswählen" -#: public/js/frappe/views/communication.js:162 -#: public/js/frappe/views/communication.js:567 +#: public/js/frappe/views/communication.js:165 +#: public/js/frappe/views/communication.js:578 #: public/js/frappe/views/interaction.js:93 #: public/js/frappe/views/interaction.js:155 msgid "Select Attachments" @@ -28591,7 +28721,7 @@ msgid "Select Page" msgstr "Seite auswählen" #: printing/page/print_format_builder_beta/print_format_builder_beta.js:68 -#: public/js/frappe/views/communication.js:145 +#: public/js/frappe/views/communication.js:148 msgid "Select Print Format" msgstr "Druckformat auswählen" @@ -28838,7 +28968,7 @@ msgctxt "Print Settings" msgid "Send Print as PDF" msgstr "Ausdruck als PDF senden" -#: public/js/frappe/views/communication.js:135 +#: public/js/frappe/views/communication.js:138 msgid "Send Read Receipt" msgstr "Lesebestätigung senden" @@ -28924,7 +29054,7 @@ msgstr "Anfragen an diese E-Mail-Adresse senden" msgid "Send login link" msgstr "Anmelde-Link senden" -#: public/js/frappe/views/communication.js:129 +#: public/js/frappe/views/communication.js:132 msgid "Send me a copy" msgstr "Kopie an mich senden" @@ -29253,7 +29383,7 @@ msgctxt "System Settings" msgid "Session Expiry (idle timeout)" msgstr "Ablauf der Sitzung (Leerlaufzeit)" -#: core/doctype/system_settings/system_settings.py:111 +#: core/doctype/system_settings/system_settings.py:112 msgid "Session Expiry must be in format {0}" msgstr "Sitzungsablauf muss im Format {0} sein" @@ -29285,7 +29415,7 @@ msgstr "Dynamische Filter einstellen" #: desk/doctype/dashboard_chart/dashboard_chart.js:381 #: desk/doctype/number_card/number_card.js:277 -#: website/doctype/web_form/web_form.js:259 +#: website/doctype/web_form/web_form.js:269 msgid "Set Filters" msgstr "Filter setzen" @@ -29345,7 +29475,7 @@ msgctxt "Role Permission for Page and Report" msgid "Set Role For" msgstr "Rolle anwenden auf" -#: core/doctype/user/user.js:116 +#: core/doctype/user/user.js:126 #: core/page/permission_manager/permission_manager.js:65 msgid "Set User Permissions" msgstr "Nutzer-Berechtigungen setzen" @@ -29493,7 +29623,7 @@ msgstr "Einrichten Ihres Systems" #: integrations/workspace/integrations/integrations.json #: public/js/frappe/form/templates/print_layout.html:25 #: public/js/frappe/ui/toolbar/toolbar.js:264 -#: public/js/frappe/views/workspace/workspace.js:521 +#: public/js/frappe/views/workspace/workspace.js:526 msgid "Settings" msgstr "Einstellungen" @@ -29528,6 +29658,21 @@ msgctxt "Navbar Settings" msgid "Settings Dropdown" msgstr "Dropdown-Liste Einstellungen" +#. Description of a DocType +#: website/doctype/contact_us_settings/contact_us_settings.json +msgid "Settings for Contact Us Page" +msgstr "" + +#. Description of a DocType +#: website/doctype/about_us_settings/about_us_settings.json +msgid "Settings for the About Us Page" +msgstr "" + +#. Description of a DocType +#: website/doctype/blog_settings/blog_settings.json +msgid "Settings to control blog categories and interactions like comments and likes" +msgstr "" + #. Label of a Card Break in the Website Workspace #: public/js/frappe/ui/toolbar/search_utils.js:567 #: website/workspace/website/website.json @@ -29896,7 +30041,7 @@ msgid "Show Sidebar" msgstr "anzeigen Sidebar" #: public/js/frappe/list/list_sidebar.html:66 -#: public/js/frappe/list/list_view.js:1605 +#: public/js/frappe/list/list_view.js:1612 msgid "Show Tags" msgstr "Schlagworte anzeigen" @@ -30052,7 +30197,7 @@ msgctxt "Email Group" msgid "Sign Up and Confirmation" msgstr "Anmeldung und Bestätigung" -#: core/doctype/user/user.py:1010 +#: core/doctype/user/user.py:1012 msgid "Sign Up is disabled" msgstr "Die Registrierung ist deaktiviert" @@ -30254,6 +30399,11 @@ msgctxt "Website Slideshow" msgid "Slideshow Name" msgstr "Name der Diaschau" +#. Description of a DocType +#: website/doctype/website_slideshow/website_slideshow.json +msgid "Slideshow like display for the website" +msgstr "" + #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' #: custom/doctype/custom_field/custom_field.json msgctxt "Custom Field" @@ -30464,7 +30614,7 @@ msgstr "SparkPost" msgid "Special Characters are not allowed" msgstr "Sonderzeichen sind nicht erlaubt" -#: model/naming.py:60 +#: model/naming.py:61 msgid "Special Characters except '-', '#', '.', '/', '{{' and '}}' not allowed in naming series {0}" msgstr "Sonderzeichen außer "-", "#", ".", "/", "{{" Und "}}" sind bei der Benennung von Serien nicht zulässig {0}" @@ -30474,7 +30624,7 @@ msgctxt "Website Settings" msgid "Splash Image" msgstr "Splash-Bild" -#: desk/reportview.py:378 public/js/frappe/web_form/web_form_list.js:175 +#: desk/reportview.py:382 public/js/frappe/web_form/web_form_list.js:175 #: templates/print_formats/standard_macros.html:44 msgid "Sr" msgstr "Pos" @@ -30549,11 +30699,11 @@ msgstr "Standard-Druckformat kann nicht aktualisiert werden" msgid "Standard Print Style cannot be changed. Please duplicate to edit." msgstr "Standard Print Style kann nicht geändert werden. Bitte duplizieren, um zu bearbeiten." -#: desk/reportview.py:329 +#: desk/reportview.py:333 msgid "Standard Reports cannot be deleted" msgstr "Standardberichte können nicht gelöscht werden" -#: desk/reportview.py:300 +#: desk/reportview.py:304 msgid "Standard Reports cannot be edited" msgstr "Standard-Berichte können nicht bearbeitet werden" @@ -30563,7 +30713,7 @@ msgctxt "Portal Settings" msgid "Standard Sidebar Menu" msgstr "Standard-Sidebar-Menü" -#: website/doctype/web_form/web_form.js:30 +#: website/doctype/web_form/web_form.js:40 msgid "Standard Web Forms can not be modified, duplicate the Web Form instead." msgstr "" @@ -31029,7 +31179,7 @@ msgctxt "Website Settings" msgid "Subdomain" msgstr "Unterdomäne" -#: public/js/frappe/views/communication.js:104 +#: public/js/frappe/views/communication.js:107 #: public/js/frappe/views/inbox/inbox_view.js:63 msgid "Subject" msgstr "Betreff" @@ -31125,7 +31275,7 @@ msgstr "" msgid "Submit" msgstr "Buchen" -#: public/js/frappe/list/list_view.js:1979 +#: public/js/frappe/list/list_view.js:1986 msgctxt "Button in list view actions menu" msgid "Submit" msgstr "Buchen" @@ -31222,7 +31372,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" -#: public/js/frappe/list/list_view.js:1984 +#: public/js/frappe/list/list_view.js:1991 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "{0} Dokumente einreichen?" @@ -31402,7 +31552,7 @@ msgstr "Erfolgreich aktualisiert {0}" msgid "Successfully updated {0} out of {1} records." msgstr "{0} von {1} Datensätzen erfolgreich aktualisiert." -#: core/doctype/user/user.py:725 +#: core/doctype/user/user.py:727 msgid "Suggested Username: {0}" msgstr "Empfohlener Benutzername: {0}" @@ -31979,7 +32129,7 @@ msgstr "Vorlagenwarnungen" msgid "Templates" msgstr "Vorlagen" -#: core/doctype/user/user.py:1021 +#: core/doctype/user/user.py:1023 msgid "Temporarily Disabled" msgstr "Zeitweise nicht verfügbar" @@ -32067,6 +32217,12 @@ msgstr "Text Bearbeiter" msgid "Thank you" msgstr "Danke" +#: www/contact.py:37 +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 "" + #: website/doctype/web_form/templates/web_form.html:137 msgid "Thank you for spending your valuable time to fill this form" msgstr "Vielen Dank, dass Sie sich die Zeit genommen haben, dieses Formular auszufüllen" @@ -32216,7 +32372,7 @@ msgstr "Das Limit für den Benutzertyp {0} in der Seitenkonfigurationsdatei wurd msgid "The link will expire in {0} minutes" msgstr "Der Link läuft in {0} Minuten ab" -#: www/login.py:175 +#: www/login.py:179 msgid "The link you trying to login is invalid or expired." msgstr "Der Link, mit dem Sie sich anmelden möchten, ist ungültig oder abgelaufen." @@ -32268,11 +32424,11 @@ msgstr "Die Projektnummer aus der Google Cloud Console unter
" -#: core/doctype/user/user.py:981 +#: core/doctype/user/user.py:983 msgid "The reset password link has been expired" msgstr "Der Link zum Zurücksetzen des Passworts ist abgelaufen" -#: core/doctype/user/user.py:983 +#: core/doctype/user/user.py:985 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" @@ -32370,8 +32526,8 @@ msgstr "" msgid "There are {0} with the same filters already in the queue:" msgstr "Es gibt bereits {0} mit denselben Filtern in der Warteschlange:" -#: website/doctype/web_form/web_form.js:71 -#: website/doctype/web_form/web_form.js:307 +#: website/doctype/web_form/web_form.js:81 +#: website/doctype/web_form/web_form.js:317 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" @@ -32399,7 +32555,7 @@ msgstr "In der Warteschlange befindet sich bereits {0} mit denselben Filtern:" msgid "There must be atleast one permission rule." msgstr "Es muss atleast eine Erlaubnis Regel sein." -#: core/doctype/user/user.py:533 +#: core/doctype/user/user.py:535 msgid "There should remain at least one System Manager" msgstr "Es sollte mindestens ein System-Manager übrig bleiben" @@ -32419,11 +32575,11 @@ msgstr "Es gab Fehler" msgid "There were errors while creating the document. Please try again." msgstr "Beim Erstellen des Dokuments sind Fehler aufgetreten. Bitte versuche es erneut." -#: public/js/frappe/views/communication.js:809 +#: public/js/frappe/views/communication.js:820 msgid "There were errors while sending email. Please try again." msgstr "Beim Versand der E-Mail ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut." -#: model/naming.py:448 +#: model/naming.py:470 msgid "There were some errors setting the name, please contact the administrator" msgstr "Beim Setzen des Namens hat es einige Fehler gegeben. Kontaktieren Sie bitte Ihren Administrator" @@ -32470,7 +32626,7 @@ msgstr "Dieser DocType enthält keine Standortfelder" msgid "This Kanban Board will be private" msgstr "Dieser Kanbantafel wird privat" -#: __init__.py:1010 +#: __init__.py:1013 msgid "This action is only allowed for {}" msgstr "Diese Aktion ist nur für {} zulässig" @@ -32702,7 +32858,7 @@ msgstr "Dadurch wird diese Tour zurückgesetzt und für alle Benutzer sichtbar. msgid "This will terminate the job immediately and might be dangerous, are you sure? " msgstr "Das wird den Auftrag sofort beenden und könnte gefährlich sein, sind Sie sicher? " -#: core/doctype/user/user.py:1241 +#: core/doctype/user/user.py:1243 msgid "Throttled" msgstr "Gedrosselt" @@ -32970,9 +33126,9 @@ msgstr "Zeitstempel" #: core/doctype/doctype/boilerplate/controller_list.html:14 #: core/doctype/doctype/boilerplate/controller_list.html:23 -#: public/js/frappe/views/workspace/workspace.js:605 -#: public/js/frappe/views/workspace/workspace.js:934 -#: public/js/frappe/views/workspace/workspace.js:1181 +#: public/js/frappe/views/workspace/workspace.js:610 +#: public/js/frappe/views/workspace/workspace.js:939 +#: public/js/frappe/views/workspace/workspace.js:1186 msgid "Title" msgstr "Bezeichnung" @@ -33155,7 +33311,7 @@ msgctxt "Auto Email Report" msgid "To Date Field" msgstr "Bis Datumsfeld" -#: desk/doctype/todo/todo_list.js:12 +#: desk/doctype/todo/todo_list.js:6 msgid "To Do" msgstr "Aufgabe" @@ -33325,7 +33481,7 @@ msgstr "Rasteransicht wechseln" msgid "Toggle Sidebar" msgstr "Seitenleiste umschalten" -#: public/js/frappe/list/list_view.js:1720 +#: public/js/frappe/list/list_view.js:1727 msgctxt "Button in list view menu" msgid "Toggle Sidebar" msgstr "Seitenleiste umschalten" @@ -33387,7 +33543,7 @@ msgstr "Zu viele Anfragen" msgid "Too many changes to database in single action." msgstr "Zu viele Änderungen an der Datenbank in einer einzelnen Aktion." -#: core/doctype/user/user.py:1022 +#: core/doctype/user/user.py:1024 msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour" msgstr "Zu viele Benutzer unterzeichnete vor kurzem, also die Registrierung ist deaktiviert. Bitte versuchen Sie es in einer Stunde zurück" @@ -33587,6 +33743,11 @@ msgstr "Verfolgen Sie, ob Ihre E-Mail vom Empfänger geöffnet wurde.\n" "
\n" "Hinweis: Wenn Sie an mehrere Empfänger senden, gilt die E-Mail auch dann als \"Geöffnet\", wenn nur ein Empfänger sie liest." +#. Description of a DocType +#: automation/doctype/milestone_tracker/milestone_tracker.json +msgid "Track milestones for any document" +msgstr "" + #: public/js/frappe/utils/utils.js:1757 msgid "Tracking URL generated and copied to clipboard" msgstr "Tracking URL generiert und in die Zwischenablage kopiert" @@ -34078,7 +34239,7 @@ msgstr "Nicht mehr folgen" msgid "Unhandled Email" msgstr "Unbearbeitete E-Mail" -#: public/js/frappe/views/workspace/workspace.js:562 +#: public/js/frappe/views/workspace/workspace.js:567 msgid "Unhide Workspace" msgstr "Arbeitsbereich einblenden" @@ -34125,7 +34286,7 @@ msgid "Unlock Reference Document" msgstr "Referenzdokument entsperren" #: website/doctype/blog_post/blog_post.js:36 -#: website/doctype/web_form/web_form.js:76 +#: website/doctype/web_form/web_form.js:86 msgid "Unpublish" msgstr "Zurückziehen" @@ -34229,7 +34390,7 @@ msgstr "Bevorstehenden Veranstaltungen für heute" #: printing/page/print_format_builder/print_format_builder.js:670 #: printing/page/print_format_builder/print_format_builder.js:757 #: public/js/frappe/form/grid_row.js:403 -#: public/js/frappe/views/workspace/workspace.js:653 +#: public/js/frappe/views/workspace/workspace.js:658 msgid "Update" msgstr "Aktualisieren" @@ -34245,7 +34406,7 @@ msgctxt "Document Naming Settings" msgid "Update Amendment Naming" msgstr "Benennung aktualisieren" -#: public/js/frappe/views/workspace/workspace.js:602 +#: public/js/frappe/views/workspace/workspace.js:607 msgid "Update Details" msgstr "Details aktualisieren" @@ -34507,11 +34668,11 @@ msgctxt "Email Account" msgid "Use different Email ID" msgstr "Andere E-Mail-Adresse verwenden" -#: model/db_query.py:424 +#: model/db_query.py:423 msgid "Use of function {0} in field is restricted" msgstr "Die Verwendung der Funktion {0} im Feld ist eingeschränkt" -#: model/db_query.py:403 +#: model/db_query.py:402 msgid "Use of sub-query or function is restricted" msgstr "Die Verwendung von Teilabfragen oder Funktionen ist eingeschränkt." @@ -34807,6 +34968,11 @@ msgctxt "Social Login Key" msgid "User ID Property" msgstr "Benutzer-ID-Eigenschaft" +#. Description of a DocType +#: website/doctype/blogger/blogger.json +msgid "User ID of a Blogger" +msgstr "" + #. Label of a Link field in DocType 'Contact' #: contacts/doctype/contact/contact.json msgctxt "Contact" @@ -34856,7 +35022,7 @@ msgstr "Benutzerberechtigung" msgid "User Permissions" msgstr "Benutzerberechtigungen" -#: public/js/frappe/list/list_view.js:1678 +#: public/js/frappe/list/list_view.js:1685 msgctxt "Button in list view menu" msgid "User Permissions" msgstr "Benutzerberechtigungen" @@ -34991,15 +35157,15 @@ msgstr "Benutzer mit E-Mail-Adresse {0} existiert nicht" msgid "User with email: {0} does not exist in the system. Please ask 'System Administrator' to create the user for you." msgstr "Ein Benutzer mit der E-Mail-Adresse {0} existiert nicht im System. Bitten Sie den 'Systemadministrator', den Benutzer für Sie anzulegen." -#: core/doctype/user/user.py:538 +#: core/doctype/user/user.py:540 msgid "User {0} cannot be deleted" msgstr "Benutzer {0} kann nicht gelöscht werden" -#: core/doctype/user/user.py:277 +#: core/doctype/user/user.py:279 msgid "User {0} cannot be disabled" msgstr "Benutzer {0} kann nicht deaktiviert werden" -#: core/doctype/user/user.py:607 +#: core/doctype/user/user.py:609 msgid "User {0} cannot be renamed" msgstr "Benutzer {0} kann nicht umbenannt werden" @@ -35016,7 +35182,7 @@ msgstr "Benutzer {0} hat keinen Doctype-Zugriff über die Rollenberechtigung fü msgid "User {0} has requested for data deletion" msgstr "Benutzer {0} hat das Löschen von Daten angefordert" -#: core/doctype/user/user.py:1370 +#: core/doctype/user/user.py:1372 msgid "User {0} impersonated as {1}" msgstr "" @@ -35050,7 +35216,7 @@ msgctxt "User Social Login" msgid "Username" msgstr "Benutzername" -#: core/doctype/user/user.py:692 +#: core/doctype/user/user.py:694 msgid "Username {0} already exists" msgstr "Benutzername {0} ist bereits vorhanden" @@ -35131,7 +35297,7 @@ msgstr "Gültigkeit" #: public/js/frappe/list/bulk_operations.js:306 #: public/js/frappe/list/bulk_operations.js:368 #: public/js/frappe/list/list_view_permission_restrictions.html:4 -#: website/doctype/web_form/web_form.js:187 +#: website/doctype/web_form/web_form.js:197 msgid "Value" msgstr "Wert" @@ -35365,7 +35531,7 @@ msgstr "Liste anzeigen" msgid "View Log" msgstr "Protokoll anzeigen" -#: core/doctype/user/user.js:127 +#: core/doctype/user/user.js:137 #: core/doctype/user_permission/user_permission.js:24 msgid "View Permitted Documents" msgstr "Anzeigen von zulässigen Dokumenten" @@ -35542,6 +35708,10 @@ msgstr "Wir haben eine Anfrage zum Löschen von {0} Daten erhalten, die im Zusam msgid "We have received a request from you to download your {0} data associated with: {1}" msgstr "Wir haben von Ihnen die Aufforderung erhalten, Ihre {0} Daten herunterzuladen, die im Zusammenhang stehen mit: {1}" +#: www/contact.py:48 +msgid "We've received your query!" +msgstr "" + #: public/js/frappe/form/controls/password.js:88 msgid "Weak" msgstr "Schwach" @@ -36084,11 +36254,11 @@ msgstr "Willkommens-URL" msgid "Welcome Workspace" msgstr "Willkommens-Arbeitsbereich" -#: core/doctype/user/user.py:395 +#: core/doctype/user/user.py:397 msgid "Welcome email sent" msgstr "Willkommens-E-Mail versenden" -#: core/doctype/user/user.py:470 +#: core/doctype/user/user.py:472 msgid "Welcome to {0}" msgstr "Willkommen auf {0}" @@ -36258,6 +36428,7 @@ msgid "Workflow Action" msgstr "Workflow-Aktion" #. Name of a DocType +#. Description of a DocType #: workflow/doctype/workflow_action_master/workflow_action_master.json msgid "Workflow Action Master" msgstr "Stammdaten zu Workflow-Aktionen" @@ -36353,6 +36524,11 @@ msgstr "Workflow-Status" msgid "Workflow Transition" msgstr "Workflow-Übergang" +#. Description of a DocType +#: workflow/doctype/workflow_state/workflow_state.json +msgid "Workflow state represents the current state of a document." +msgstr "" + #. Description of the Onboarding Step 'Setup Approval Workflows' #: custom/onboarding_step/workflows/workflows.json msgid "Workflows allow you to define custom rules for the approval process of a particular document in ERPNext. You can also set complex Workflow Rules and set approval conditions." @@ -36371,6 +36547,12 @@ msgctxt "Module Def" msgid "Workspace" msgstr "Arbeitsbereich" +#. Label of a Section Break field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Workspace" +msgstr "Arbeitsbereich" + #. Label of a Link in the Build Workspace #: core/workspace/build/build.json msgctxt "Workspace" @@ -36421,15 +36603,15 @@ msgstr "Arbeitsbereich-Verknüpfung" msgid "Workspace not found" msgstr "Arbeitsbereich nicht gefunden" -#: public/js/frappe/views/workspace/workspace.js:1271 +#: public/js/frappe/views/workspace/workspace.js:1276 msgid "Workspace {0} Created Successfully" msgstr "Arbeitsbereich {0} erfolgreich erstellt" -#: public/js/frappe/views/workspace/workspace.js:900 +#: public/js/frappe/views/workspace/workspace.js:905 msgid "Workspace {0} Deleted Successfully" msgstr "Arbeitsbereich {0} erfolgreich gelöscht" -#: public/js/frappe/views/workspace/workspace.js:678 +#: public/js/frappe/views/workspace/workspace.js:683 msgid "Workspace {0} Edited Successfully" msgstr "Arbeitsbereich {0} erfolgreich bearbeitet" @@ -36659,7 +36841,7 @@ msgstr "Sie können auf diesen Datensatz {0} nicht zugreifen, da er mit {1} '{2} msgid "You are not allowed to create columns" msgstr "Sie sind nicht berechtigt Spalten zu erstellen" -#: core/doctype/report/report.py:94 +#: core/doctype/report/report.py:97 msgid "You are not allowed to delete Standard Report" msgstr "Sie dürfen den Standardbericht nicht löschen" @@ -36667,7 +36849,7 @@ msgstr "Sie dürfen den Standardbericht nicht löschen" msgid "You are not allowed to delete a standard Website Theme" msgstr "Sie sind nicht berechtigt, eine Standard-Webseiten-Vorlage zu löschen" -#: core/doctype/report/report.py:377 +#: core/doctype/report/report.py:383 msgid "You are not allowed to edit the report." msgstr "Sie sind nicht berechtigt, den Bericht zu bearbeiten." @@ -36679,7 +36861,7 @@ msgstr "Sie dürfen keinen {} Doctype exportieren" msgid "You are not allowed to print this report" msgstr "Sie sind nicht berechtigt diesen Bericht zu drucken" -#: public/js/frappe/views/communication.js:753 +#: public/js/frappe/views/communication.js:764 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" @@ -36699,7 +36881,7 @@ msgstr "Sie sind nicht berechtigt, ohne Anmeldung auf diese Seite zuzugreifen." msgid "You are not permitted to access this page." msgstr "Sie sind nicht berechtigt auf diese Seite zuzugreifen." -#: __init__.py:929 +#: __init__.py:932 msgid "You are not permitted to access this resource." msgstr "Sie sind nicht berechtigt, auf diese Ressource zuzugreifen." @@ -36752,7 +36934,7 @@ msgstr "Sie können die Aufbewahrungsrichtlinie unter {0} ändern." msgid "You can continue with the onboarding after exploring this page" msgstr "Sie können nach Erkundung dieser Seite mit dem Onboarding fortfahren" -#: core/doctype/user/user.py:598 +#: core/doctype/user/user.py:600 msgid "You can disable the user instead of deleting it." msgstr "" @@ -36788,6 +36970,13 @@ msgstr "Sie können nur bis zu 5000 Datensätze auf einmal hochladen (in einigen msgid "You can select one from the following," msgstr "Sie können eine der folgenden Optionen auswählen," +#. Description of the 'Rate limit for email link login' (Int) field in DocType +#. 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "You can set a high value here if multiple users will be logging in from the same network." +msgstr "" + #: desk/query_report.py:332 msgid "You can try changing the filters of your report." msgstr "Sie können versuchen, die Filter Ihres Berichts zu ändern." @@ -37973,7 +38162,7 @@ msgstr "sperren" msgid "logged in" msgstr "Angemeldet" -#: website/doctype/web_form/web_form.js:352 +#: website/doctype/web_form/web_form.js:362 msgid "login_required" msgstr "login_required" @@ -38997,7 +39186,7 @@ msgctxt "Form timeline" msgid "{0} attached {1}" msgstr "{0} hat {1} angehängt" -#: core/doctype/system_settings/system_settings.py:141 +#: core/doctype/system_settings/system_settings.py:142 msgid "{0} can not be more than {1}" msgstr "{0} darf nicht größer als {1} sein" @@ -39135,7 +39324,7 @@ msgstr "{0} wurde zur E-Mail-Gruppe hinzugefügt." msgid "{0} has left the conversation in {1} {2}" msgstr "{0} hat die Unterhaltung verlassen in {1} {2}" -#: __init__.py:2480 +#: __init__.py:2483 msgid "{0} has no versions tracked." msgstr "Für {0} wurden keine Versionen verfolgt." @@ -39281,7 +39470,7 @@ msgstr "{0} ist jetzt das Standard-Druckformat für den DocType {1}" msgid "{0} is one of {1}" msgstr "{0} ist eine von {1}" -#: email/doctype/email_account/email_account.py:277 model/naming.py:201 +#: email/doctype/email_account/email_account.py:277 model/naming.py:202 #: printing/doctype/print_format/print_format.py:90 utils/csvutils.py:131 msgid "{0} is required" msgstr "{0} erforderlich" @@ -39294,11 +39483,11 @@ msgstr "{0} ist eingetragen" msgid "{0} is within {1}" msgstr "{0} ist innerhalb von {1}" -#: public/js/frappe/list/list_view.js:1595 +#: public/js/frappe/list/list_view.js:1602 msgid "{0} items selected" msgstr "{0} Elemente ausgewählt" -#: core/doctype/user/user.py:1379 +#: core/doctype/user/user.py:1381 msgid "{0} just impersonated as you. They gave this reason: {1}" msgstr "" @@ -39365,11 +39554,11 @@ msgstr "{0} darf nicht umbenannt werden" msgid "{0} not found" msgstr "{0} nicht gefunden" -#: core/doctype/report/report.py:413 public/js/frappe/list/list_view.js:986 +#: core/doctype/report/report.py:419 public/js/frappe/list/list_view.js:987 msgid "{0} of {1}" msgstr "{0} von {1}" -#: public/js/frappe/list/list_view.js:988 +#: public/js/frappe/list/list_view.js:989 msgid "{0} of {1} ({2} rows with children)" msgstr "{0} von {1} ({2} Zeilen mit untergeordneten Elementen)" @@ -39494,7 +39683,7 @@ msgstr "{0} teilt dieses Dokument nicht mehr mit {1}" msgid "{0} updated" msgstr "{0} aktualisiert" -#: public/js/frappe/form/controls/multiselect_list.js:162 +#: public/js/frappe/form/controls/multiselect_list.js:182 msgid "{0} values selected" msgstr "{0} Werte ausgewählt" diff --git a/frappe/locale/eo.po b/frappe/locale/eo.po new file mode 100644 index 0000000000..af609b872e --- /dev/null +++ b/frappe/locale/eo.po @@ -0,0 +1,37572 @@ +msgid "" +msgstr "" +"Project-Id-Version: frappe\n" +"Report-Msgid-Bugs-To: developers@frappe.io\n" +"POT-Creation-Date: 2024-01-10 16:34+0553\n" +"PO-Revision-Date: 2024-03-27 11:23\n" +"Last-Translator: developers@frappe.io\n" +"Language-Team: Esperanto\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.13.1\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Crowdin-Project: frappe\n" +"X-Crowdin-Project-ID: 639578\n" +"X-Crowdin-Language: eo\n" +"X-Crowdin-File: /frappe/frappe/locale/main.pot\n" +"X-Crowdin-File-ID: 8\n" +"Language: eo_UY\n" + +#: templates/emails/download_data.html:9 +msgid " to your browser" +msgstr "crwdns2:0crwdne2:0" + +#. Option for a Select field in DocType 'Document Naming Rule Condition' +#: core/doctype/document_naming_rule_condition/document_naming_rule_condition.json +msgctxt "Document Naming Rule Condition" +msgid "!=" +msgstr "crwdns4:0crwdne4:0" + +#. Description of a Data field in DocType 'About Us Settings' +#: website/doctype/about_us_settings/about_us_settings.json +msgctxt "About Us Settings" +msgid "\"Company History\"" +msgstr "crwdns6:0crwdne6:0" + +#: core/doctype/data_export/exporter.py:204 +msgid "\"Parent\" signifies the parent table in which this row must be added" +msgstr "crwdns8:0crwdne8:0" + +#. Description of a Data field in DocType 'About Us Settings' +#: website/doctype/about_us_settings/about_us_settings.json +msgctxt "About Us Settings" +msgid "\"Team Members\" or \"Management\"" +msgstr "crwdns10:0crwdne10:0" + +#: public/js/frappe/form/form.js:1063 +msgid "\"amended_from\" field must be present to do an amendment." +msgstr "crwdns12:0crwdne12:0" + +#: utils/csvutils.py:219 +msgid "\"{0}\" is not a valid Google Sheets URL" +msgstr "crwdns14:0{0}crwdne14:0" + +#. Option for a Select field in DocType 'Currency' +#: geo/doctype/currency/currency.json +msgctxt "Currency" +msgid "# ###,##" +msgstr "crwdns16:0crwdne16:0" + +#. Option for a Select field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "# ###,##" +msgstr "crwdns18:0crwdne18:0" + +#. Option for a Select field in DocType 'Currency' +#: geo/doctype/currency/currency.json +msgctxt "Currency" +msgid "# ###.##" +msgstr "crwdns20:0crwdne20:0" + +#. Option for a Select field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "# ###.##" +msgstr "crwdns22:0crwdne22:0" + +#. Option for a Select field in DocType 'Currency' +#: geo/doctype/currency/currency.json +msgctxt "Currency" +msgid "#'###.##" +msgstr "crwdns24:0crwdne24:0" + +#. Option for a Select field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "#'###.##" +msgstr "crwdns26:0crwdne26:0" + +#. Option for a Select field in DocType 'Currency' +#: geo/doctype/currency/currency.json +msgctxt "Currency" +msgid "#, ###.##" +msgstr "crwdns28:0crwdne28:0" + +#. Option for a Select field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "#, ###.##" +msgstr "crwdns30:0crwdne30:0" + +#. Option for a Select field in DocType 'Currency' +#: geo/doctype/currency/currency.json +msgctxt "Currency" +msgid "#,###" +msgstr "crwdns32:0crwdne32:0" + +#. Option for a Select field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "#,###" +msgstr "crwdns34:0crwdne34:0" + +#. Option for a Select field in DocType 'Currency' +#: geo/doctype/currency/currency.json +msgctxt "Currency" +msgid "#,###.##" +msgstr "crwdns36:0crwdne36:0" + +#. Option for a Select field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "#,###.##" +msgstr "crwdns38:0crwdne38:0" + +#. Option for a Select field in DocType 'Currency' +#: geo/doctype/currency/currency.json +msgctxt "Currency" +msgid "#,###.###" +msgstr "crwdns40:0crwdne40:0" + +#. Option for a Select field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "#,###.###" +msgstr "crwdns42:0crwdne42:0" + +#. Option for a Select field in DocType 'Currency' +#: geo/doctype/currency/currency.json +msgctxt "Currency" +msgid "#,##,###.##" +msgstr "crwdns44:0crwdne44:0" + +#. Option for a Select field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "#,##,###.##" +msgstr "crwdns46:0crwdne46:0" + +#. Option for a Select field in DocType 'Currency' +#: geo/doctype/currency/currency.json +msgctxt "Currency" +msgid "#.###" +msgstr "crwdns48:0crwdne48:0" + +#. Option for a Select field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "#.###" +msgstr "crwdns50:0crwdne50:0" + +#. Option for a Select field in DocType 'Currency' +#: geo/doctype/currency/currency.json +msgctxt "Currency" +msgid "#.###,##" +msgstr "crwdns52:0crwdne52:0" + +#. Option for a Select field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "#.###,##" +msgstr "crwdns54:0crwdne54:0" + +#: public/js/frappe/ui/toolbar/tag_utils.js:21 +#: public/js/frappe/ui/toolbar/tag_utils.js:22 +msgid "#{0}" +msgstr "crwdns56:0#{0}crwdne56:0" + +#. Label of a Code field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "<head> HTML" +msgstr "crwdns58:0crwdne58:0" + +#: public/js/form_builder/store.js:201 +msgid "'In Global Search' is not allowed for field {0} of type {1}" +msgstr "crwdns60:0{0}crwdnd60:0{1}crwdne60:0" + +#: core/doctype/doctype/doctype.py:1305 +msgid "'In Global Search' not allowed for type {0} in row {1}" +msgstr "crwdns62:0{0}crwdnd62:0{1}crwdne62:0" + +#: public/js/form_builder/store.js:193 +msgid "'In List View' is not allowed for field {0} of type {1}" +msgstr "crwdns64:0{0}crwdnd64:0{1}crwdne64:0" + +#: custom/doctype/customize_form/customize_form.py:360 +msgid "'In List View' not allowed for type {0} in row {1}" +msgstr "crwdns66:0{0}crwdnd66:0{1}crwdne66:0" + +#: automation/doctype/auto_repeat/auto_repeat.py:149 +msgid "'Recipients' not specified" +msgstr "crwdns68:0crwdne68:0" + +#: utils/__init__.py:240 +msgid "'{0}' is not a valid URL" +msgstr "crwdns70:0{0}crwdne70:0" + +#: core/doctype/doctype/doctype.py:1299 +msgid "'{0}' not allowed for type {1} in row {2}" +msgstr "crwdns72:0{0}crwdnd72:0{1}crwdnd72:0{2}crwdne72:0" + +#: model/rename_doc.py:688 +msgid "** Failed: {0} to {1}: {2}" +msgstr "crwdns74:0{0}crwdnd74:0{1}crwdnd74:0{2}crwdne74:0" + +#. Description of a Select field in DocType 'Workflow Document State' +#: workflow/doctype/workflow_document_state/workflow_document_state.json +msgctxt "Workflow Document State" +msgid "0 - Draft; 1 - Submitted; 2 - Cancelled" +msgstr "crwdns76:0crwdne76:0" + +#. Description of a Int field in DocType 'Web Page' +#: website/doctype/web_page/web_page.json +msgctxt "Web Page" +msgid "0 is highest" +msgstr "crwdns78:0crwdne78:0" + +#: public/js/frappe/form/grid_row.js:786 +msgid "1 = True & 0 = False" +msgstr "crwdns80:0crwdne80:0" + +#. Description of a Int field in DocType 'Currency' +#: geo/doctype/currency/currency.json +msgctxt "Currency" +msgid "1 Currency = [?] Fraction\n" +"For e.g. 1 USD = 100 Cent" +msgstr "crwdns82:0crwdne82:0" + +#: public/js/frappe/form/reminders.js:19 +msgid "1 Day" +msgstr "crwdns84:0crwdne84:0" + +#: integrations/doctype/google_calendar/google_calendar.py:358 +msgid "1 Google Calendar Event synced." +msgstr "crwdns86:0crwdne86:0" + +#: website/doctype/blog_post/blog_post.py:378 +msgid "1 comment" +msgstr "crwdns88:0crwdne88:0" + +#: tests/test_utils.py:647 +msgid "1 day ago" +msgstr "crwdns90:0crwdne90:0" + +#: public/js/frappe/form/reminders.js:17 +msgid "1 hour" +msgstr "crwdns92:0crwdne92:0" + +#: public/js/frappe/utils/pretty_date.js:52 tests/test_utils.py:645 +msgid "1 hour ago" +msgstr "crwdns94:0crwdne94:0" + +#: public/js/frappe/utils/pretty_date.js:48 tests/test_utils.py:643 +msgid "1 minute ago" +msgstr "crwdns96:0crwdne96:0" + +#: public/js/frappe/utils/pretty_date.js:66 tests/test_utils.py:651 +msgid "1 month ago" +msgstr "crwdns98:0crwdne98:0" + +#: public/js/frappe/data_import/data_exporter.js:223 +msgid "1 record will be exported" +msgstr "crwdns100:0crwdne100:0" + +#: tests/test_utils.py:642 +msgid "1 second ago" +msgstr "crwdns102:0crwdne102:0" + +#: public/js/frappe/utils/pretty_date.js:62 tests/test_utils.py:649 +msgid "1 week ago" +msgstr "crwdns104:0crwdne104:0" + +#: public/js/frappe/utils/pretty_date.js:70 tests/test_utils.py:653 +msgid "1 year ago" +msgstr "crwdns106:0crwdne106:0" + +#: tests/test_utils.py:646 +msgid "2 hours ago" +msgstr "crwdns108:0crwdne108:0" + +#: tests/test_utils.py:652 +msgid "2 months ago" +msgstr "crwdns110:0crwdne110:0" + +#: tests/test_utils.py:650 +msgid "2 weeks ago" +msgstr "crwdns112:0crwdne112:0" + +#: tests/test_utils.py:654 +msgid "2 years ago" +msgstr "crwdns114:0crwdne114:0" + +#: tests/test_utils.py:644 +msgid "3 minutes ago" +msgstr "crwdns116:0crwdne116:0" + +#: public/js/frappe/form/reminders.js:16 +msgid "30 minutes" +msgstr "crwdns118:0crwdne118:0" + +#: public/js/frappe/form/reminders.js:18 +msgid "4 hours" +msgstr "crwdns120:0crwdne120:0" + +#: public/js/frappe/data_import/data_exporter.js:37 +msgid "5 Records" +msgstr "crwdns122:0crwdne122:0" + +#: tests/test_utils.py:648 +msgid "5 days ago" +msgstr "crwdns124:0crwdne124:0" + +#: desk/doctype/bulk_update/bulk_update.py:37 +msgid "; not allowed in condition" +msgstr "crwdns126:0crwdne126:0" + +#. Option for a Select field in DocType 'Document Naming Rule Condition' +#: core/doctype/document_naming_rule_condition/document_naming_rule_condition.json +msgctxt "Document Naming Rule Condition" +msgid "<" +msgstr "crwdns128:0crwdne128:0" + +#. Option for a Select field in DocType 'Document Naming Rule Condition' +#: core/doctype/document_naming_rule_condition/document_naming_rule_condition.json +msgctxt "Document Naming Rule Condition" +msgid "<=" +msgstr "crwdns130:0crwdne130:0" + +#: public/js/frappe/widgets/widget_dialog.js:564 +msgid "{0} is not a valid URL" +msgstr "crwdns132:0{0}crwdne132:0" + +#. Content of an HTML field in DocType 'Property Setter' +#: custom/doctype/property_setter/property_setter.json +msgctxt "Property Setter" +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 "crwdns134:0crwdne134:0" + +#. Content of an HTML field in DocType 'Document Naming Settings' +#: core/doctype/document_naming_settings/document_naming_settings.json +msgctxt "Document Naming Settings" +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" +"
    • .FY. - Fiscal Year
    • \n" +"
    • \n" +" .{fieldname}. - fieldname on the document e.g.\n" +" branch\n" +"
    • \n" +"
    \n" +"
  • \n" +"
\n" +" Examples:\n" +"
    \n" +"
  • INV-
  • \n" +"
  • INV-10-
  • \n" +"
  • INVK-
  • \n" +"
  • INV-.YYYY.-.{branch}.-.MM.-.####
  • \n" +"
\n" +"
\n" +"
\n" +msgstr "crwdns136:0{fieldname}crwdnd136:0{branch}crwdne136:0" + +#. Content of an HTML field in DocType 'Print Format' +#: printing/doctype/print_format/print_format.json +msgctxt "Print Format" +msgid "

Custom CSS Help

\n\n" +"

Notes:

\n\n" +"
    \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 "crwdns138:0crwdne138:0" + +#. Content of an HTML field in DocType 'Print Format' +#: printing/doctype/print_format/print_format.json +#, python-format +msgctxt "Print 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 "crwdns140:0{{ doc.select_print_heading or \"Invoice\" }}crwdnd140:0{{ doc.customer_name }}crwdnd140:0{{ doc.get_formatted(\"invoice_date\") }}crwdnd140:0{%- for row in doc.items -%}crwdnd140:0{{ row.idx }}crwdnd140:0{{ row.item_name }}crwdnd140:0{% if row.item_code != row.item_name -%}crwdnd140:0{{ row.item_code}}crwdnd140:0{%- endif %}crwdnd140:0{{ row.description }}crwdnd140:0{{ row.qty }}crwdnd140:0{{ row.uom or row.stock_uom }}crwdnd140:0{{\n" +"\t\t\t\trow.get_formatted(\"rate\", doc) }}crwdnd140:0{{\n" +"\t\t\t\trow.get_formatted(\"amount\", doc) }}crwdnd140:0{%- endfor -%}crwdne140:0" + +#. Description of a Code field in DocType 'Address Template' +#: contacts/doctype/address_template/address_template.json +#, python-format +msgctxt "Address Template" +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 "crwdns142:0{{ address_line1 }}crwdnd142:0{% if address_line2 %}crwdnd142:0{{ address_line2 }}crwdnd142:0{% endif -%}crwdnd142:0{{ city }}crwdnd142:0{% if state %}crwdnd142:0{{ state }}crwdnd142:0{% endif -%}crwdnd142:0{% if pincode %}crwdnd142:0{{ pincode }}crwdnd142:0{% endif -%}crwdnd142:0{{ country }}crwdnd142:0{% if phone %}crwdnd142:0{{ phone }}crwdnd142:0{% endif -%}crwdnd142:0{% if fax %}crwdnd142:0{{ fax }}crwdnd142:0{% endif -%}crwdnd142:0{% if email_id %}crwdnd142:0{{ email_id }}crwdnd142:0{% endif -%}crwdne142:0" + +#. Content of an HTML field in DocType 'Email Template' +#: email/doctype/email_template/email_template.json +msgctxt "Email Template" +msgid "

Email Reply Example

\n\n" +"
Order Overdue\n\n"
+"Transaction {{ name }} has exceeded Due Date. Please take necessary action.\n\n"
+"Details\n\n"
+"- 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 "crwdns144:0{{ name }}crwdnd144:0{{ customer }}crwdnd144:0{{ grand_total }}crwdne144:0" + +#. Content of an HTML field in DocType 'Data Import' +#: core/doctype/data_import/data_import.json +msgctxt "Data Import" +msgid "
Or
" +msgstr "crwdns146:0crwdne146:0" + +#. Content of an HTML field in DocType 'Notification' +#: email/doctype/notification/notification.json +#, python-format +msgctxt "Notification" +msgid "
Message Example
\n\n" +"
<h3>Order Overdue</h3>\n\n"
+"<p>Transaction {{ doc.name }} has exceeded Due Date. Please take necessary action.</p>\n\n"
+"<!-- 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 "crwdns148:0{{ doc.name }}crwdnd148:0{% if comments %}crwdnd148:0{{ comments[-1].comment }}crwdnd148:0{{ comments[-1].by }}crwdnd148:0{% endif %}crwdnd148:0{{ doc.customer }}crwdnd148:0{{ doc.grand_total }}crwdne148:0" + +#. Content of an HTML field in DocType 'Webhook' +#: integrations/doctype/webhook/webhook.json +msgctxt "Webhook" +msgid "

Condition Examples:

\n" +"
doc.status==\"Open\"
doc.due_date==nowdate()
doc.total > 40000\n" +"
" +msgstr "crwdns150:0crwdne150:0" + +#. Content of an HTML field in DocType 'Notification' +#: email/doctype/notification/notification.json +msgctxt "Notification" +msgid "

Condition Examples:

\n" +"
doc.status==\"Open\"
doc.due_date==nowdate()
doc.total > 40000\n" +"
\n" +msgstr "crwdns152:0crwdne152:0" + +#. Content of an HTML field in DocType 'Web Form' +#: website/doctype/web_form/web_form.json +msgctxt "Web Form" +msgid "

Multiple webforms can be created for a single doctype. Add filters specific to this webform to display correct record after submission.

For Example:

\n" +"

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 "crwdns154:0crwdne154:0" + +#. Description of a Code field in DocType 'Web Page' +#: website/doctype/web_page/web_page.json +msgctxt "Web Page" +msgid "

Set context before rendering a template. Example:

\n" +"

\n"
+"context.project = frappe.get_doc(\"Project\", frappe.form_dict.name)\n"
+"
" +msgstr "crwdns156:0crwdne156:0" + +#. Content of an HTML field in DocType 'Custom HTML Block' +#: desk/doctype/custom_html_block/custom_html_block.json +msgctxt "Custom HTML Block" +msgid "

To interact with above HTML you will have to use `root_element` as a parent selector.

For example:

// here root_element is provided by default\n"
+"let some_class_element = root_element.querySelector('.some-class');\n"
+"some_class_element.textContent = \"New content\";\n"
+"
" +msgstr "crwdns158:0crwdne158:0" + +#: twofactor.py:469 +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 "crwdns160:0{0}crwdne160:0" + +#. Description of a Data field in DocType 'Scheduled Job Type' +#: core/doctype/scheduled_job_type/scheduled_job_type.json +msgctxt "Scheduled Job Type" +msgid "
*  *  *  *  *\n"
+"┬  ┬  ┬  ┬  ┬\n"
+"│  │  │  │  │\n"
+"│  │  │  │  └ day of week (0 - 6) (0 is Sunday)\n"
+"│  │  │  └───── month (1 - 12)\n"
+"│  │  └────────── day of month (1 - 31)\n"
+"│  └─────────────── hour (0 - 23)\n"
+"└──────────────────── minute (0 - 59)\n\n"
+"---\n\n"
+"* - Any value\n"
+"/ - Step values\n"
+"
\n" +msgstr "crwdns162:0crwdne162:0" + +#. Description of a Data field in DocType 'Server Script' +#: core/doctype/server_script/server_script.json +msgctxt "Server Script" +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 "crwdns164:0crwdne164:0" + +#. Content of an HTML field in DocType 'Workflow Transition' +#: workflow/doctype/workflow_transition/workflow_transition.json +msgctxt "Workflow Transition" +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" +"

Example:

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

" +msgstr "crwdns166:0crwdne166:0" + +#: 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 "crwdns168:0{0}crwdne168:0" + +#. Option for a Select field in DocType 'Document Naming Rule Condition' +#: core/doctype/document_naming_rule_condition/document_naming_rule_condition.json +msgctxt "Document Naming Rule Condition" +msgid "=" +msgstr "crwdns170:0crwdne170:0" + +#. Option for a Select field in DocType 'Document Naming Rule Condition' +#: core/doctype/document_naming_rule_condition/document_naming_rule_condition.json +msgctxt "Document Naming Rule Condition" +msgid ">" +msgstr "crwdns172:0crwdne172:0" + +#. Option for a Select field in DocType 'Document Naming Rule Condition' +#: core/doctype/document_naming_rule_condition/document_naming_rule_condition.json +msgctxt "Document Naming Rule Condition" +msgid ">=" +msgstr "crwdns174:0crwdne174:0" + +#. Description of the Onboarding Step 'Custom Document Types' +#: custom/onboarding_step/custom_doctype/custom_doctype.json +msgid "A DocType (Document Type) is used to insert forms in ERPNext. Forms such as Customer, Orders, and Invoices are Doctypes in the backend. You can also create new DocTypes to create new forms in ERPNext as per your business needs." +msgstr "crwdns176:0crwdne176:0" + +#: core/doctype/doctype/doctype.py:1015 +msgid "A DocType's name should start with a letter and can only consist of letters, numbers, spaces, underscores and hyphens" +msgstr "crwdns178:0crwdne178:0" + +#: website/doctype/blog_post/blog_post.py:93 +msgid "A featured post must have a cover image" +msgstr "crwdns180:0crwdne180:0" + +#: custom/doctype/custom_field/custom_field.py:171 +msgid "A field with the name {0} already exists in {1}" +msgstr "crwdns182:0{0}crwdnd182:0{1}crwdne182:0" + +#: core/doctype/file/file.py:254 +msgid "A file with same name {} already exists" +msgstr "crwdns184:0crwdne184:0" + +#. Description of a Text field in DocType 'OAuth Client' +#: integrations/doctype/oauth_client/oauth_client.json +msgctxt "OAuth Client" +msgid "A list of resources which the Client App will have access to after the user allows it.
e.g. project" +msgstr "crwdns186:0crwdne186:0" + +#: templates/emails/new_user.html:5 +msgid "A new account has been created for you at {0}" +msgstr "crwdns188:0{0}crwdne188:0" + +#: automation/doctype/auto_repeat/auto_repeat.py:388 +msgid "A recurring {0} {1} has been created for you via Auto Repeat {2}." +msgstr "crwdns190:0{0}crwdnd190:0{1}crwdnd190:0{2}crwdne190:0" + +#. Description of a Data field in DocType 'Currency' +#: geo/doctype/currency/currency.json +msgctxt "Currency" +msgid "A symbol for this currency. For e.g. $" +msgstr "crwdns192:0crwdne192:0" + +#: printing/doctype/print_format_field_template/print_format_field_template.py:48 +msgid "A template already exists for field {0} of {1}" +msgstr "crwdns194:0{0}crwdnd194:0{1}crwdne194:0" + +#: utils/password_strength.py:173 +msgid "A word by itself is easy to guess." +msgstr "crwdns196:0crwdne196:0" + +#. Option for a Select field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "A0" +msgstr "crwdns198:0crwdne198:0" + +#. Option for a Select field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "A1" +msgstr "crwdns200:0crwdne200:0" + +#. Option for a Select field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "A2" +msgstr "crwdns202:0crwdne202:0" + +#. Option for a Select field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "A3" +msgstr "crwdns204:0crwdne204:0" + +#. Option for a Select field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "A4" +msgstr "crwdns206:0crwdne206:0" + +#. Option for a Select field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "A5" +msgstr "crwdns208:0crwdne208:0" + +#. Option for a Select field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "A6" +msgstr "crwdns210:0crwdne210:0" + +#. Option for a Select field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "A7" +msgstr "crwdns212:0crwdne212:0" + +#. Option for a Select field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "A8" +msgstr "crwdns214:0crwdne214:0" + +#. Option for a Select field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "A9" +msgstr "crwdns216:0crwdne216:0" + +#. Option for a Select field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "ALL" +msgstr "crwdns218:0crwdne218:0" + +#. Option for a Select field in DocType 'Server Script' +#: core/doctype/server_script/server_script.json +msgctxt "Server Script" +msgid "API" +msgstr "crwdns220:0crwdne220:0" + +#. Label of a Section Break field in DocType 'S3 Backup Settings' +#: integrations/doctype/s3_backup_settings/s3_backup_settings.json +msgctxt "S3 Backup Settings" +msgid "API Access" +msgstr "crwdns222:0crwdne222:0" + +#. Label of a Section Break field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "API Access" +msgstr "crwdns224:0crwdne224:0" + +#. Label of a Data field in DocType 'Social Login Key' +#: integrations/doctype/social_login_key/social_login_key.json +msgctxt "Social Login Key" +msgid "API Endpoint" +msgstr "crwdns226:0crwdne226:0" + +#. Label of a Code field in DocType 'Social Login Key' +#: integrations/doctype/social_login_key/social_login_key.json +msgctxt "Social Login Key" +msgid "API Endpoint Args" +msgstr "crwdns228:0crwdne228:0" + +#. Label of a Data field in DocType 'Google Settings' +#. Label of a Section Break field in DocType 'Google Settings' +#: integrations/doctype/google_settings/google_settings.json +msgctxt "Google Settings" +msgid "API Key" +msgstr "crwdns230:0crwdne230:0" + +#. Label of a Data field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "API Key" +msgstr "crwdns232:0crwdne232:0" + +#. Description of a Data field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "API Key cannot be regenerated" +msgstr "crwdns234:0crwdne234:0" + +#. Label of a Data field in DocType 'Server Script' +#: core/doctype/server_script/server_script.json +msgctxt "Server Script" +msgid "API Method" +msgstr "crwdns236:0crwdne236:0" + +#. Label of a Password field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "API Secret" +msgstr "crwdns238:0crwdne238:0" + +#. Option for a Select field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "ASC" +msgstr "crwdns240:0crwdne240:0" + +#. Option for a Select field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "ASC" +msgstr "crwdns242:0crwdne242:0" + +#. Label of a standard help item +#. Type: Action +#: hooks.py +msgid "About" +msgstr "crwdns244:0crwdne244:0" + +#: www/about.html:11 www/about.html:18 +msgid "About Us" +msgstr "crwdns246:0crwdne246:0" + +#. Name of a DocType +#: website/doctype/about_us_settings/about_us_settings.json +msgid "About Us Settings" +msgstr "crwdns248:0crwdne248:0" + +#. Label of a Link in the Website Workspace +#: website/workspace/website/website.json +msgctxt "About Us Settings" +msgid "About Us Settings" +msgstr "crwdns250:0crwdne250:0" + +#. Name of a DocType +#: website/doctype/about_us_team_member/about_us_team_member.json +msgid "About Us Team Member" +msgstr "crwdns252:0crwdne252:0" + +#: core/doctype/data_import/data_import.js:27 +msgid "About {0} minute remaining" +msgstr "crwdns254:0{0}crwdne254:0" + +#: core/doctype/data_import/data_import.js:28 +msgid "About {0} minutes remaining" +msgstr "crwdns256:0{0}crwdne256:0" + +#: core/doctype/data_import/data_import.js:25 +msgid "About {0} seconds remaining" +msgstr "crwdns258:0{0}crwdne258:0" + +#. Label of a Data field in DocType 'S3 Backup Settings' +#: integrations/doctype/s3_backup_settings/s3_backup_settings.json +msgctxt "S3 Backup Settings" +msgid "Access Key ID" +msgstr "crwdns260:0crwdne260:0" + +#. Label of a Password field in DocType 'S3 Backup Settings' +#: integrations/doctype/s3_backup_settings/s3_backup_settings.json +msgctxt "S3 Backup Settings" +msgid "Access Key Secret" +msgstr "crwdns262:0crwdne262:0" + +#. Name of a DocType +#: core/doctype/access_log/access_log.json +msgid "Access Log" +msgstr "crwdns264:0crwdne264:0" + +#. Label of a Link in the Users Workspace +#: core/workspace/users/users.json +msgctxt "Access Log" +msgid "Access Log" +msgstr "crwdns266:0crwdne266:0" + +#. Linked DocType in User's connections +#: core/doctype/user/user.json +msgctxt "User" +msgid "Access Log" +msgstr "crwdns268:0crwdne268:0" + +#. Label of a Data field in DocType 'OAuth Bearer Token' +#: integrations/doctype/oauth_bearer_token/oauth_bearer_token.json +msgctxt "OAuth Bearer Token" +msgid "Access Token" +msgstr "crwdns270:0crwdne270:0" + +#. Label of a Password field in DocType 'Token Cache' +#: integrations/doctype/token_cache/token_cache.json +msgctxt "Token Cache" +msgid "Access Token" +msgstr "crwdns272:0crwdne272:0" + +#. Label of a Data field in DocType 'Social Login Key' +#: integrations/doctype/social_login_key/social_login_key.json +msgctxt "Social Login Key" +msgid "Access Token URL" +msgstr "crwdns274:0crwdne274:0" + +#: auth.py:444 +msgid "Access not allowed from this IP Address" +msgstr "crwdns276:0crwdne276:0" + +#. Label of a Section Break field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Account" +msgstr "crwdns278:0crwdne278:0" + +#. Label of a Section Break field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Account Deletion Settings" +msgstr "crwdns280:0crwdne280:0" + +#. Name of a role +#: automation/doctype/auto_repeat/auto_repeat.json +#: contacts/doctype/contact/contact.json +msgid "Accounts Manager" +msgstr "crwdns282:0crwdne282:0" + +#. Name of a role +#: automation/doctype/auto_repeat/auto_repeat.json +#: contacts/doctype/address/address.json contacts/doctype/contact/contact.json +#: geo/doctype/currency/currency.json +msgid "Accounts User" +msgstr "crwdns284:0crwdne284:0" + +#: email/doctype/email_group/email_group.js:34 +#: email/doctype/email_group/email_group.js:63 +#: email/doctype/email_group/email_group.js:72 +#: printing/page/print_format_builder_beta/print_format_builder_beta.js:37 +#: public/js/frappe/form/sidebar/review.js:59 +#: workflow/page/workflow_builder/workflow_builder.js:37 +msgid "Action" +msgstr "crwdns286:0crwdne286:0" + +#. Label of a Select field in DocType 'Amended Document Naming Settings' +#: core/doctype/amended_document_naming_settings/amended_document_naming_settings.json +msgctxt "Amended Document Naming Settings" +msgid "Action" +msgstr "crwdns288:0crwdne288:0" + +#. Label of a Select field in DocType 'Email Flag Queue' +#: email/doctype/email_flag_queue/email_flag_queue.json +msgctxt "Email Flag Queue" +msgid "Action" +msgstr "crwdns290:0crwdne290:0" + +#. Option for a Select field in DocType 'Navbar Item' +#. Label of a Data field in DocType 'Navbar Item' +#: core/doctype/navbar_item/navbar_item.json +msgctxt "Navbar Item" +msgid "Action" +msgstr "crwdns292:0crwdne292:0" + +#. Label of a Select field in DocType 'Onboarding Step' +#: desk/doctype/onboarding_step/onboarding_step.json +msgctxt "Onboarding Step" +msgid "Action" +msgstr "crwdns294:0crwdne294:0" + +#. Label of a Link field in DocType 'Workflow Transition' +#: workflow/doctype/workflow_transition/workflow_transition.json +msgctxt "Workflow Transition" +msgid "Action" +msgstr "crwdns296:0crwdne296:0" + +#. Label of a Small Text field in DocType 'DocType Action' +#: core/doctype/doctype_action/doctype_action.json +msgctxt "DocType Action" +msgid "Action / Route" +msgstr "crwdns298:0crwdne298:0" + +#: public/js/frappe/widgets/onboarding_widget.js:310 +#: public/js/frappe/widgets/onboarding_widget.js:381 +msgid "Action Complete" +msgstr "crwdns300:0crwdne300:0" + +#: model/document.py:1648 +msgid "Action Failed" +msgstr "crwdns302:0crwdne302:0" + +#. Label of a Data field in DocType 'Onboarding Step' +#: desk/doctype/onboarding_step/onboarding_step.json +msgctxt "Onboarding Step" +msgid "Action Label" +msgstr "crwdns304:0crwdne304:0" + +#. Label of a Int field in DocType 'Success Action' +#: core/doctype/success_action/success_action.json +msgctxt "Success Action" +msgid "Action Timeout (Seconds)" +msgstr "crwdns306:0crwdne306:0" + +#. Label of a Select field in DocType 'DocType Action' +#: core/doctype/doctype_action/doctype_action.json +msgctxt "DocType Action" +msgid "Action Type" +msgstr "crwdns308:0crwdne308:0" + +#: core/doctype/submission_queue/submission_queue.py:119 +msgid "Action {0} completed successfully on {1} {2}. View it {3}" +msgstr "crwdns310:0{0}crwdnd310:0{1}crwdnd310:0{2}crwdnd310:0{3}crwdne310:0" + +#: core/doctype/submission_queue/submission_queue.py:115 +msgid "Action {0} failed on {1} {2}. View it {3}" +msgstr "crwdns312:0{0}crwdnd312:0{1}crwdnd312:0{2}crwdnd312:0{3}crwdne312:0" + +#: core/doctype/communication/communication.js:66 +#: core/doctype/communication/communication.js:74 +#: core/doctype/communication/communication.js:82 +#: core/doctype/communication/communication.js:90 +#: core/doctype/communication/communication.js:99 +#: core/doctype/communication/communication.js:108 +#: core/doctype/communication/communication.js:131 +#: core/doctype/rq_job/rq_job_list.js:14 core/doctype/rq_job/rq_job_list.js:39 +#: custom/doctype/customize_form/customize_form.js:108 +#: custom/doctype/customize_form/customize_form.js:116 +#: custom/doctype/customize_form/customize_form.js:124 +#: custom/doctype/customize_form/customize_form.js:132 +#: custom/doctype/customize_form/customize_form.js:140 +#: custom/doctype/customize_form/customize_form.js:238 +#: public/js/frappe/views/reports/query_report.js:190 +#: public/js/frappe/views/reports/query_report.js:203 +#: public/js/frappe/views/reports/query_report.js:213 +msgid "Actions" +msgstr "crwdns314:0crwdne314:0" + +#. Label of a Table field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Actions" +msgstr "crwdns316:0crwdne316:0" + +#. Label of a Section Break field in DocType 'DocType' +#. Label of a Table field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Actions" +msgstr "crwdns318:0crwdne318:0" + +#. Label of a Check field in DocType 'Package Import' +#: core/doctype/package_import/package_import.json +msgctxt "Package Import" +msgid "Activate" +msgstr "crwdns320:0crwdne320:0" + +#: core/doctype/recorder/recorder_list.js:105 core/doctype/user/user_list.js:12 +#: workflow/doctype/workflow/workflow_list.js:5 +msgid "Active" +msgstr "crwdns322:0crwdne322:0" + +#. Option for a Select field in DocType 'Auto Repeat' +#: automation/doctype/auto_repeat/auto_repeat.json +msgctxt "Auto Repeat" +msgid "Active" +msgstr "crwdns324:0crwdne324:0" + +#. Option for a Select field in DocType 'Kanban Board Column' +#: desk/doctype/kanban_board_column/kanban_board_column.json +msgctxt "Kanban Board Column" +msgid "Active" +msgstr "crwdns326:0crwdne326:0" + +#. Option for a Select field in DocType 'OAuth Bearer Token' +#: integrations/doctype/oauth_bearer_token/oauth_bearer_token.json +msgctxt "OAuth Bearer Token" +msgid "Active" +msgstr "crwdns328:0crwdne328:0" + +#. Option for a Select field in DocType 'LDAP Settings' +#: integrations/doctype/ldap_settings/ldap_settings.json +msgctxt "LDAP Settings" +msgid "Active Directory" +msgstr "crwdns330:0crwdne330:0" + +#. Label of a Section Break field in DocType 'Domain Settings' +#. Label of a Table field in DocType 'Domain Settings' +#: core/doctype/domain_settings/domain_settings.json +msgctxt "Domain Settings" +msgid "Active Domains" +msgstr "crwdns332:0crwdne332:0" + +#: www/third_party_apps.html:32 +msgid "Active Sessions" +msgstr "crwdns334:0crwdne334:0" + +#: public/js/frappe/form/dashboard.js:22 +msgid "Activity" +msgstr "crwdns336:0crwdne336:0" + +#. Group in User's connections +#: core/doctype/user/user.json +msgctxt "User" +msgid "Activity" +msgstr "crwdns338:0crwdne338:0" + +#. Name of a DocType +#: core/doctype/activity_log/activity_log.json +msgid "Activity Log" +msgstr "crwdns340:0crwdne340:0" + +#. Label of a Link in the Build Workspace +#. Label of a Link in the Users Workspace +#: core/workspace/build/build.json core/workspace/users/users.json +msgctxt "Activity Log" +msgid "Activity Log" +msgstr "crwdns342:0crwdne342:0" + +#. Linked DocType in User's connections +#: core/doctype/user/user.json +msgctxt "User" +msgid "Activity Log" +msgstr "crwdns344:0crwdne344:0" + +#: core/page/permission_manager/permission_manager.js:465 +#: email/doctype/email_group/email_group.js:60 +#: public/js/frappe/form/grid_row.js:468 +#: public/js/frappe/form/sidebar/assign_to.js:100 +#: public/js/frappe/list/bulk_operations.js:372 +#: public/js/frappe/views/dashboard/dashboard_view.js:440 +#: public/js/frappe/views/reports/query_report.js:265 +#: public/js/frappe/views/reports/query_report.js:293 +#: public/js/frappe/widgets/widget_dialog.js:30 +msgid "Add" +msgstr "crwdns346:0crwdne346:0" + +#: core/doctype/user_permission/user_permission_list.js:4 +msgid "Add / Update" +msgstr "crwdns348:0crwdne348:0" + +#: core/page/permission_manager/permission_manager.js:425 +msgid "Add A New Rule" +msgstr "crwdns350:0crwdne350:0" + +#: public/js/frappe/views/interaction.js:159 +msgid "Add Attachment" +msgstr "crwdns352:0crwdne352:0" + +#. Label of a Check field in DocType 'Web Page Block' +#: website/doctype/web_page_block/web_page_block.json +msgctxt "Web Page Block" +msgid "Add Background Image" +msgstr "crwdns354:0crwdne354:0" + +#. Title of an Onboarding Step +#: website/onboarding_step/add_blog_category/add_blog_category.json +msgid "Add Blog Category" +msgstr "crwdns356:0crwdne356:0" + +#. Label of a Check field in DocType 'Web Page Block' +#: website/doctype/web_page_block/web_page_block.json +msgctxt "Web Page Block" +msgid "Add Border at Bottom" +msgstr "crwdns358:0crwdne358:0" + +#. Label of a Check field in DocType 'Web Page Block' +#: website/doctype/web_page_block/web_page_block.json +msgctxt "Web Page Block" +msgid "Add Border at Top" +msgstr "crwdns360:0crwdne360:0" + +#: public/js/frappe/views/reports/query_report.js:209 +msgid "Add Chart to Dashboard" +msgstr "crwdns362:0crwdne362:0" + +#: public/js/frappe/views/treeview.js:285 +msgid "Add Child" +msgstr "crwdns364:0crwdne364:0" + +#: public/js/frappe/views/reports/query_report.js:1664 +#: public/js/frappe/views/reports/query_report.js:1667 +#: public/js/frappe/views/reports/report_view.js:329 +#: public/js/frappe/views/reports/report_view.js:354 +msgid "Add Column" +msgstr "crwdns366:0crwdne366:0" + +#: core/doctype/communication/communication.js:127 +msgid "Add Contact" +msgstr "crwdns368:0crwdne368:0" + +#: desk/doctype/event/event.js:38 +msgid "Add Contacts" +msgstr "crwdns370:0crwdne370:0" + +#. Label of a Check field in DocType 'Web Page Block' +#: website/doctype/web_page_block/web_page_block.json +msgctxt "Web Page Block" +msgid "Add Container" +msgstr "crwdns372:0crwdne372:0" + +#. Label of a Button field in DocType 'Web Page' +#: website/doctype/web_page/web_page.json +msgctxt "Web Page" +msgid "Add Custom Tags" +msgstr "crwdns374:0crwdne374:0" + +#: public/js/frappe/widgets/widget_dialog.js:159 +#: public/js/frappe/widgets/widget_dialog.js:683 +msgid "Add Filters" +msgstr "crwdns376:0crwdne376:0" + +#. Label of a Check field in DocType 'Web Page Block' +#: website/doctype/web_page_block/web_page_block.json +msgctxt "Web Page Block" +msgid "Add Gray Background" +msgstr "crwdns378:0crwdne378:0" + +#: public/js/frappe/ui/group_by/group_by.js:417 +msgid "Add Group" +msgstr "crwdns380:0crwdne380:0" + +#: core/page/permission_manager/permission_manager.js:428 +msgid "Add New Permission Rule" +msgstr "crwdns382:0crwdne382:0" + +#: desk/doctype/event/event.js:35 desk/doctype/event/event.js:42 +msgid "Add Participants" +msgstr "crwdns384:0crwdne384:0" + +#. Label of a Check field in DocType 'Email Group' +#: email/doctype/email_group/email_group.json +msgctxt "Email Group" +msgid "Add Query Parameters" +msgstr "crwdns386:0crwdne386:0" + +#: public/js/frappe/form/sidebar/review.js:45 +msgid "Add Review" +msgstr "crwdns388:0crwdne388:0" + +#: core/doctype/user/user.py:768 +msgid "Add Roles" +msgstr "crwdns390:0crwdne390:0" + +#: public/js/frappe/views/communication.js:117 +msgid "Add Signature" +msgstr "crwdns392:0crwdne392:0" + +#. Label of a Check field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Add Signature" +msgstr "crwdns394:0crwdne394:0" + +#. Label of a Check field in DocType 'Web Page Block' +#: website/doctype/web_page_block/web_page_block.json +msgctxt "Web Page Block" +msgid "Add Space at Bottom" +msgstr "crwdns396:0crwdne396:0" + +#. Label of a Check field in DocType 'Web Page Block' +#: website/doctype/web_page_block/web_page_block.json +msgctxt "Web Page Block" +msgid "Add Space at Top" +msgstr "crwdns398:0crwdne398:0" + +#: email/doctype/email_group/email_group.js:38 +#: email/doctype/email_group/email_group.js:59 +msgid "Add Subscribers" +msgstr "crwdns400:0crwdne400:0" + +#: public/js/frappe/list/bulk_operations.js:360 +msgid "Add Tags" +msgstr "crwdns402:0crwdne402:0" + +#: public/js/frappe/list/list_view.js:1834 +msgctxt "Button in list view actions menu" +msgid "Add Tags" +msgstr "crwdns404:0crwdne404:0" + +#: public/js/frappe/views/communication.js:316 +msgid "Add Template" +msgstr "crwdns406:0crwdne406:0" + +#. Label of a Check field in DocType 'Report' +#: core/doctype/report/report.json +msgctxt "Report" +msgid "Add Total Row" +msgstr "crwdns408:0crwdne408:0" + +#. Label of a Check field in DocType 'Email Queue' +#: email/doctype/email_queue/email_queue.json +msgctxt "Email Queue" +msgid "Add Unsubscribe Link" +msgstr "crwdns410:0crwdne410:0" + +#: core/doctype/user_permission/user_permission_list.js:6 +msgid "Add User Permissions" +msgstr "crwdns412:0crwdne412:0" + +#. Label of a Check field in DocType 'Event' +#: desk/doctype/event/event.json +msgctxt "Event" +msgid "Add Video Conferencing" +msgstr "crwdns414:0crwdne414:0" + +#: public/js/frappe/form/form_tour.js:203 +msgid "Add a Row" +msgstr "crwdns416:0crwdne416:0" + +#: templates/includes/comments/comments.html:30 +#: templates/includes/comments/comments.html:47 +msgid "Add a comment" +msgstr "crwdns418:0crwdne418:0" + +#: public/js/frappe/form/form.js:192 +msgid "Add a row above the current row" +msgstr "crwdns420:0crwdne420:0" + +#: public/js/frappe/form/form.js:204 +msgid "Add a row at the bottom" +msgstr "crwdns422:0crwdne422:0" + +#: public/js/frappe/form/form.js:200 +msgid "Add a row at the top" +msgstr "crwdns424:0crwdne424:0" + +#: public/js/frappe/form/form.js:196 +msgid "Add a row below the current row" +msgstr "crwdns426:0crwdne426:0" + +#: public/js/frappe/views/dashboard/dashboard_view.js:285 +msgid "Add a {0} Chart" +msgstr "crwdns428:0{0}crwdne428:0" + +#: custom/doctype/client_script/client_script.js:16 +msgid "Add script for Child Table" +msgstr "crwdns430:0crwdne430:0" + +#: public/js/frappe/utils/dashboard_utils.js:263 +#: public/js/frappe/views/reports/query_report.js:251 +msgid "Add to Dashboard" +msgstr "crwdns432:0crwdne432:0" + +#: public/js/frappe/form/sidebar/assign_to.js:98 +msgid "Add to ToDo" +msgstr "crwdns434:0crwdne434:0" + +#: website/doctype/website_slideshow/website_slideshow.js:32 +msgid "Add to table" +msgstr "crwdns436:0crwdne436:0" + +#: public/js/frappe/form/footer/form_timeline.js:97 +msgid "Add to this activity by mailing to {0}" +msgstr "crwdns438:0{0}crwdne438:0" + +#. Description of a Code field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Added HTML in the <head> section of the web page, primarily used for website verification and SEO" +msgstr "crwdns440:0crwdne440:0" + +#: core/doctype/log_settings/log_settings.py:82 +msgid "Added default log doctypes: {}" +msgstr "crwdns442:0crwdne442:0" + +#: core/doctype/file/file.py:720 +msgid "Added {0}" +msgstr "crwdns444:0{0}crwdne444:0" + +#: public/js/frappe/form/link_selector.js:180 +#: public/js/frappe/form/link_selector.js:202 +msgid "Added {0} ({1})" +msgstr "crwdns446:0{0}crwdnd446:0{1}crwdne446:0" + +#: core/doctype/user/user.py:271 +msgid "Adding System Manager to this User as there must be atleast one System Manager" +msgstr "crwdns448:0crwdne448:0" + +#. Label of a Section Break field in DocType 'Custom DocPerm' +#: core/doctype/custom_docperm/custom_docperm.json +msgctxt "Custom DocPerm" +msgid "Additional Permissions" +msgstr "crwdns450:0crwdne450:0" + +#. Label of a Section Break field in DocType 'DocPerm' +#: core/doctype/docperm/docperm.json +msgctxt "DocPerm" +msgid "Additional Permissions" +msgstr "crwdns452:0crwdne452:0" + +#. Name of a DocType +#: contacts/doctype/address/address.json +msgid "Address" +msgstr "crwdns454:0crwdne454:0" + +#. Label of a Link field in DocType 'Contact' +#: contacts/doctype/contact/contact.json +msgctxt "Contact" +msgid "Address" +msgstr "crwdns456:0crwdne456:0" + +#. Label of a Section Break field in DocType 'Contact Us Settings' +#: website/doctype/contact_us_settings/contact_us_settings.json +msgctxt "Contact Us Settings" +msgid "Address" +msgstr "crwdns458:0crwdne458:0" + +#. Label of a Small Text field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Address" +msgstr "crwdns460:0crwdne460:0" + +#. Label of a Data field in DocType 'Address' +#: contacts/doctype/address/address.json +msgctxt "Address" +msgid "Address Line 1" +msgstr "crwdns462:0crwdne462:0" + +#. Label of a Data field in DocType 'Contact Us Settings' +#: website/doctype/contact_us_settings/contact_us_settings.json +msgctxt "Contact Us Settings" +msgid "Address Line 1" +msgstr "crwdns464:0crwdne464:0" + +#. Label of a Data field in DocType 'Address' +#: contacts/doctype/address/address.json +msgctxt "Address" +msgid "Address Line 2" +msgstr "crwdns466:0crwdne466:0" + +#. Label of a Data field in DocType 'Contact Us Settings' +#: website/doctype/contact_us_settings/contact_us_settings.json +msgctxt "Contact Us Settings" +msgid "Address Line 2" +msgstr "crwdns468:0crwdne468:0" + +#. Name of a DocType +#: contacts/doctype/address_template/address_template.json +msgid "Address Template" +msgstr "crwdns470:0crwdne470:0" + +#. Label of a Data field in DocType 'Address' +#: contacts/doctype/address/address.json +msgctxt "Address" +msgid "Address Title" +msgstr "crwdns472:0crwdne472:0" + +#. Label of a Data field in DocType 'Contact Us Settings' +#: website/doctype/contact_us_settings/contact_us_settings.json +msgctxt "Contact Us Settings" +msgid "Address Title" +msgstr "crwdns474:0crwdne474:0" + +#: contacts/doctype/address/address.py:71 +msgid "Address Title is mandatory." +msgstr "crwdns476:0crwdne476:0" + +#. Label of a Select field in DocType 'Address' +#: contacts/doctype/address/address.json +msgctxt "Address" +msgid "Address Type" +msgstr "crwdns478:0crwdne478:0" + +#. Description of a Small Text field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Address and other legal information you may want to put in the footer." +msgstr "crwdns480:0crwdne480:0" + +#: contacts/doctype/address/address.py:208 +msgid "Addresses" +msgstr "crwdns482:0crwdne482:0" + +#. Name of a report +#: contacts/report/addresses_and_contacts/addresses_and_contacts.json +msgid "Addresses And Contacts" +msgstr "crwdns484:0crwdne484:0" + +#: public/js/frappe/ui/toolbar/search_utils.js:536 +msgid "Administration" +msgstr "crwdns486:0crwdne486:0" + +#. Name of a role +#: contacts/doctype/salutation/salutation.json +#: core/doctype/doctype/doctype.json core/doctype/domain/domain.json +#: core/doctype/module_def/module_def.json core/doctype/page/page.json +#: core/doctype/patch_log/patch_log.json core/doctype/recorder/recorder.json +#: core/doctype/report/report.json core/doctype/rq_job/rq_job.json +#: core/doctype/transaction_log/transaction_log.json +#: core/doctype/user_type/user_type.json core/doctype/version/version.json +#: custom/doctype/client_script/client_script.json +#: custom/doctype/custom_field/custom_field.json +#: custom/doctype/property_setter/property_setter.json +#: desk/doctype/dashboard_chart_source/dashboard_chart_source.json +#: desk/doctype/onboarding_step/onboarding_step.json +#: website/doctype/website_theme/website_theme.json +msgid "Administrator" +msgstr "crwdns488:0crwdne488:0" + +#: core/doctype/user/user.py:1179 +msgid "Administrator Logged In" +msgstr "crwdns490:0crwdne490:0" + +#: core/doctype/user/user.py:1173 +msgid "Administrator accessed {0} on {1} via IP Address {2}." +msgstr "crwdns492:0{0}crwdnd492:0{1}crwdnd492:0{2}crwdne492:0" + +#. Label of a Section Break field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Advanced" +msgstr "crwdns494:0crwdne494:0" + +#. Label of a Tab Break field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Advanced" +msgstr "crwdns496:0crwdne496:0" + +#. Label of a Section Break field in DocType 'User Permission' +#: core/doctype/user_permission/user_permission.json +msgctxt "User Permission" +msgid "Advanced Control" +msgstr "crwdns498:0crwdne498:0" + +#: public/js/frappe/form/controls/link.js:315 +#: public/js/frappe/form/controls/link.js:317 +msgid "Advanced Search" +msgstr "crwdns500:0crwdne500:0" + +#. Label of a Section Break field in DocType 'OAuth Client' +#: integrations/doctype/oauth_client/oauth_client.json +msgctxt "OAuth Client" +msgid "Advanced Settings" +msgstr "crwdns502:0crwdne502:0" + +#. Option for a Select field in DocType 'Server Script' +#: core/doctype/server_script/server_script.json +msgctxt "Server Script" +msgid "After Cancel" +msgstr "crwdns504:0crwdne504:0" + +#. Option for a Select field in DocType 'Server Script' +#: core/doctype/server_script/server_script.json +msgctxt "Server Script" +msgid "After Delete" +msgstr "crwdns506:0crwdne506:0" + +#. Option for a Select field in DocType 'Server Script' +#: core/doctype/server_script/server_script.json +msgctxt "Server Script" +msgid "After Insert" +msgstr "crwdns508:0crwdne508:0" + +#. Option for a Select field in DocType 'Server Script' +#: core/doctype/server_script/server_script.json +msgctxt "Server Script" +msgid "After Save" +msgstr "crwdns510:0crwdne510:0" + +#. Option for a Select field in DocType 'Server Script' +#: core/doctype/server_script/server_script.json +msgctxt "Server Script" +msgid "After Save (Submitted Document)" +msgstr "crwdns512:0crwdne512:0" + +#. Label of a Section Break field in DocType 'Web Form' +#: website/doctype/web_form/web_form.json +msgctxt "Web Form" +msgid "After Submission" +msgstr "crwdns514:0crwdne514:0" + +#. Option for a Select field in DocType 'Server Script' +#: core/doctype/server_script/server_script.json +msgctxt "Server Script" +msgid "After Submit" +msgstr "crwdns516:0crwdne516:0" + +#: desk/doctype/number_card/number_card.py:58 +msgid "Aggregate Field is required to create a number card" +msgstr "crwdns518:0crwdne518:0" + +#. Label of a Select field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "Aggregate Function Based On" +msgstr "crwdns520:0crwdne520:0" + +#. Label of a Select field in DocType 'Number Card' +#: desk/doctype/number_card/number_card.json +msgctxt "Number Card" +msgid "Aggregate Function Based On" +msgstr "crwdns522:0crwdne522:0" + +#: desk/doctype/dashboard_chart/dashboard_chart.py:410 +msgid "Aggregate Function field is required to create a dashboard chart" +msgstr "crwdns524:0crwdne524:0" + +#. Option for a Select field in DocType 'Notification Log' +#: desk/doctype/notification_log/notification_log.json +msgctxt "Notification Log" +msgid "Alert" +msgstr "crwdns526:0crwdne526:0" + +#. Label of a Card Break in the Tools Workspace +#: automation/workspace/tools/tools.json +msgid "Alerts and Notifications" +msgstr "crwdns528:0crwdne528:0" + +#. Label of a Select field in DocType 'Letter Head' +#: printing/doctype/letter_head/letter_head.json +msgctxt "Letter Head" +msgid "Align" +msgstr "crwdns530:0crwdne530:0" + +#. Label of a Check field in DocType 'Print Format' +#: printing/doctype/print_format/print_format.json +msgctxt "Print Format" +msgid "Align Labels to the Right" +msgstr "crwdns532:0crwdne532:0" + +#. Label of a Check field in DocType 'Top Bar Item' +#: website/doctype/top_bar_item/top_bar_item.json +msgctxt "Top Bar Item" +msgid "Align Right" +msgstr "crwdns534:0crwdne534:0" + +#: printing/page/print_format_builder/print_format_builder.js:479 +msgid "Align Value" +msgstr "crwdns536:0crwdne536:0" + +#. Name of a role +#: contacts/doctype/address/address.json contacts/doctype/contact/contact.json +#: contacts/doctype/gender/gender.json +#: contacts/doctype/salutation/salutation.json +#: core/doctype/communication/communication.json core/doctype/file/file.json +#: core/doctype/language/language.json core/doctype/module_def/module_def.json +#: core/doctype/user/user.json desk/doctype/event/event.json +#: desk/doctype/notification_log/notification_log.json +#: desk/doctype/notification_settings/notification_settings.json +#: desk/doctype/tag/tag.json desk/doctype/tag_link/tag_link.json +#: desk/doctype/todo/todo.json geo/doctype/country/country.json +#: integrations/doctype/connected_app/connected_app.json +#: integrations/doctype/token_cache/token_cache.json +#: printing/doctype/print_heading/print_heading.json +#: website/doctype/personal_data_download_request/personal_data_download_request.json +#: website/doctype/website_settings/website_settings.json +msgid "All" +msgstr "crwdns538:0crwdne538:0" + +#. Option for a Select field in DocType 'Scheduled Job Type' +#: core/doctype/scheduled_job_type/scheduled_job_type.json +msgctxt "Scheduled Job Type" +msgid "All" +msgstr "crwdns540:0crwdne540:0" + +#. Option for a Select field in DocType 'Server Script' +#: core/doctype/server_script/server_script.json +msgctxt "Server Script" +msgid "All" +msgstr "crwdns542:0crwdne542:0" + +#: public/js/frappe/ui/notifications/notifications.js:394 +msgid "All Day" +msgstr "crwdns544:0crwdne544:0" + +#. Label of a Check field in DocType 'Calendar View' +#: desk/doctype/calendar_view/calendar_view.json +msgctxt "Calendar View" +msgid "All Day" +msgstr "crwdns546:0crwdne546:0" + +#. Label of a Check field in DocType 'Event' +#: desk/doctype/event/event.json +msgctxt "Event" +msgid "All Day" +msgstr "crwdns548:0crwdne548:0" + +#: website/doctype/website_slideshow/website_slideshow.py:42 +msgid "All Images attached to Website Slideshow should be public" +msgstr "crwdns550:0crwdne550:0" + +#: public/js/frappe/data_import/data_exporter.js:29 +msgid "All Records" +msgstr "crwdns552:0crwdne552:0" + +#: custom/doctype/customize_form/customize_form.js:384 +msgid "All customizations will be removed. Please confirm." +msgstr "crwdns554:0crwdne554:0" + +#: templates/includes/comments/comments.html:158 +msgid "All fields are necessary to submit the comment." +msgstr "crwdns556:0crwdne556:0" + +#. Description of a Table field in DocType 'Workflow' +#: workflow/doctype/workflow/workflow.json +msgctxt "Workflow" +msgid "All possible Workflow States and roles of the workflow. Docstatus Options: 0 is \"Saved\", 1 is \"Submitted\" and 2 is \"Cancelled\"" +msgstr "crwdns558:0crwdne558:0" + +#: utils/password_strength.py:187 +msgid "All-uppercase is almost as easy to guess as all-lowercase." +msgstr "crwdns560:0crwdne560:0" + +#. Label of a Link field in DocType 'ToDo' +#: desk/doctype/todo/todo.json +msgctxt "ToDo" +msgid "Allocated To" +msgstr "crwdns562:0crwdne562:0" + +#. Label of a Check field in DocType 'Energy Point Rule' +#: social/doctype/energy_point_rule/energy_point_rule.json +msgctxt "Energy Point Rule" +msgid "Allot Points To Assigned Users" +msgstr "crwdns564:0crwdne564:0" + +#: templates/includes/oauth_confirmation.html:15 +msgid "Allow" +msgstr "crwdns566:0crwdne566:0" + +#. Option for a Select field in DocType 'Social Login Key' +#: integrations/doctype/social_login_key/social_login_key.json +msgctxt "Social Login Key" +msgid "Allow" +msgstr "crwdns568:0crwdne568:0" + +#. Label of a Link field in DocType 'User Permission' +#: core/doctype/user_permission/user_permission.json +msgctxt "User Permission" +msgid "Allow" +msgstr "crwdns570:0crwdne570:0" + +#: website/doctype/website_settings/website_settings.py:160 +msgid "Allow API Indexing Access" +msgstr "crwdns572:0crwdne572:0" + +#. Label of a Check field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Allow Auto Repeat" +msgstr "crwdns574:0crwdne574:0" + +#. Label of a Check field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Allow Auto Repeat" +msgstr "crwdns576:0crwdne576:0" + +#. Label of a Check field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Allow Bulk Edit" +msgstr "crwdns578:0crwdne578:0" + +#. Label of a Check field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Allow Bulk Edit" +msgstr "crwdns580:0crwdne580:0" + +#. Label of a Check field in DocType 'Web Form' +#: website/doctype/web_form/web_form.json +msgctxt "Web Form" +msgid "Allow Comments" +msgstr "crwdns582:0crwdne582:0" + +#. Label of a Int field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Allow Consecutive Login Attempts " +msgstr "crwdns584:0crwdne584:0" + +#. Label of a Check field in DocType 'Web Form' +#: website/doctype/web_form/web_form.json +msgctxt "Web Form" +msgid "Allow Delete" +msgstr "crwdns586:0crwdne586:0" + +#. Label of a Button field in DocType 'Dropbox Settings' +#: integrations/doctype/dropbox_settings/dropbox_settings.json +msgctxt "Dropbox Settings" +msgid "Allow Dropbox Access" +msgstr "crwdns588:0crwdne588:0" + +#. Label of a Check field in DocType 'Web Form' +#: website/doctype/web_form/web_form.json +msgctxt "Web Form" +msgid "Allow Editing After Submit" +msgstr "crwdns590:0crwdne590:0" + +#: integrations/doctype/google_calendar/google_calendar.py:100 +#: integrations/doctype/google_calendar/google_calendar.py:114 +msgid "Allow Google Calendar Access" +msgstr "crwdns592:0crwdne592:0" + +#: integrations/doctype/google_contacts/google_contacts.py:39 +msgid "Allow Google Contacts Access" +msgstr "crwdns594:0crwdne594:0" + +#: integrations/doctype/google_drive/google_drive.py:51 +msgid "Allow Google Drive Access" +msgstr "crwdns596:0crwdne596:0" + +#. Label of a Check field in DocType 'Server Script' +#: core/doctype/server_script/server_script.json +msgctxt "Server Script" +msgid "Allow Guest" +msgstr "crwdns598:0crwdne598:0" + +#. Label of a Check field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Allow Guest to View" +msgstr "crwdns600:0crwdne600:0" + +#. Label of a Check field in DocType 'Blog Settings' +#: website/doctype/blog_settings/blog_settings.json +msgctxt "Blog Settings" +msgid "Allow Guest to comment" +msgstr "crwdns602:0crwdne602:0" + +#. Label of a Check field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Allow Guests to Upload Files" +msgstr "crwdns604:0crwdne604:0" + +#. Label of a Check field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Allow Import (via Data Import Tool)" +msgstr "crwdns606:0crwdne606:0" + +#. Label of a Check field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Allow Import (via Data Import Tool)" +msgstr "crwdns608:0crwdne608:0" + +#. Label of a Check field in DocType 'Web Form' +#: website/doctype/web_form/web_form.json +msgctxt "Web Form" +msgid "Allow Incomplete Forms" +msgstr "crwdns610:0crwdne610:0" + +#. Label of a Int field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Allow Login After Fail" +msgstr "crwdns612:0crwdne612:0" + +#. Label of a Check field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Allow Login using Mobile Number" +msgstr "crwdns614:0crwdne614:0" + +#. Label of a Check field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Allow Login using User Name" +msgstr "crwdns616:0crwdne616:0" + +#. Label of a Section Break field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Allow Modules" +msgstr "crwdns618:0crwdne618:0" + +#. Label of a Check field in DocType 'Web Form' +#: website/doctype/web_form/web_form.json +msgctxt "Web Form" +msgid "Allow Multiple Responses" +msgstr "crwdns620:0crwdne620:0" + +#. Label of a Check field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Allow Older Web View Links (Insecure)" +msgstr "crwdns622:0crwdne622:0" + +#. Label of a Check field in DocType 'Web Form' +#: website/doctype/web_form/web_form.json +msgctxt "Web Form" +msgid "Allow Print" +msgstr "crwdns624:0crwdne624:0" + +#. Label of a Check field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "Allow Print for Cancelled" +msgstr "crwdns626:0crwdne626:0" + +#: automation/doctype/auto_repeat/auto_repeat.py:395 +msgid "Allow Print for Draft" +msgstr "crwdns628:0crwdne628:0" + +#. Label of a Check field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "Allow Print for Draft" +msgstr "crwdns630:0crwdne630:0" + +#. Label of a Check field in DocType 'Web Form Field' +#: website/doctype/web_form_field/web_form_field.json +msgctxt "Web Form Field" +msgid "Allow Read On All Link Options" +msgstr "crwdns632:0crwdne632:0" + +#. Label of a Check field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Allow Rename" +msgstr "crwdns634:0crwdne634:0" + +#. Label of a Table MultiSelect field in DocType 'Module Onboarding' +#: desk/doctype/module_onboarding/module_onboarding.json +msgctxt "Module Onboarding" +msgid "Allow Roles" +msgstr "crwdns636:0crwdne636:0" + +#. Label of a Section Break field in DocType 'Role Permission for Page and +#. Report' +#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json +msgctxt "Role Permission for Page and Report" +msgid "Allow Roles" +msgstr "crwdns638:0crwdne638:0" + +#. Label of a Check field in DocType 'Workflow Transition' +#: workflow/doctype/workflow_transition/workflow_transition.json +msgctxt "Workflow Transition" +msgid "Allow Self Approval" +msgstr "crwdns640:0crwdne640:0" + +#. Label of a Check field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Allow Sending Usage Data for Improving Applications" +msgstr "crwdns642:0crwdne642:0" + +#. Description of a Check field in DocType 'Workflow Transition' +#: workflow/doctype/workflow_transition/workflow_transition.json +msgctxt "Workflow Transition" +msgid "Allow approval for creator of the document" +msgstr "crwdns644:0crwdne644:0" + +#. Label of a Check field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Allow document creation via Email" +msgstr "crwdns646:0crwdne646:0" + +#. Label of a Check field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Allow document creation via Email" +msgstr "crwdns648:0crwdne648:0" + +#. Label of a Check field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Allow events in timeline" +msgstr "crwdns650:0crwdne650:0" + +#. Label of a Check field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Allow in Quick Entry" +msgstr "crwdns652:0crwdne652:0" + +#. Label of a Check field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Allow in Quick Entry" +msgstr "crwdns654:0crwdne654:0" + +#. Label of a Check field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Allow in Quick Entry" +msgstr "crwdns656:0crwdne656:0" + +#. Label of a Check field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Allow on Submit" +msgstr "crwdns658:0crwdne658:0" + +#. Label of a Check field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Allow on Submit" +msgstr "crwdns660:0crwdne660:0" + +#. Label of a Check field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Allow on Submit" +msgstr "crwdns662:0crwdne662:0" + +#. Label of a Check field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Allow only one session per user" +msgstr "crwdns664:0crwdne664:0" + +#. Label of a Check field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "Allow page break inside tables" +msgstr "crwdns666:0crwdne666:0" + +#: desk/page/setup_wizard/setup_wizard.js:420 +msgid "Allow recording my first session to improve user experience" +msgstr "crwdns668:0crwdne668:0" + +#. Description of a Check field in DocType 'Web Form' +#: website/doctype/web_form/web_form.json +msgctxt "Web Form" +msgid "Allow saving if mandatory fields are not filled" +msgstr "crwdns670:0crwdne670:0" + +#: desk/page/setup_wizard/setup_wizard.js:413 +msgid "Allow sending usage data for improving applications" +msgstr "crwdns672:0crwdne672:0" + +#. Description of a Int field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Allow user to login only after this hour (0-24)" +msgstr "crwdns674:0crwdne674:0" + +#. Description of a Int field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Allow user to login only before this hour (0-24)" +msgstr "crwdns676:0crwdne676:0" + +#. Description of a Check field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Allow users to log in without a password, using a login link sent to their email" +msgstr "crwdns678:0crwdne678:0" + +#. Label of a Link field in DocType 'Workflow Transition' +#: workflow/doctype/workflow_transition/workflow_transition.json +msgctxt "Workflow Transition" +msgid "Allowed" +msgstr "crwdns680:0crwdne680:0" + +#. Label of a Small Text field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Allowed File Extensions" +msgstr "crwdns682:0crwdne682:0" + +#. Label of a Check field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Allowed In Mentions" +msgstr "crwdns684:0crwdne684:0" + +#. Label of a Section Break field in DocType 'User Type' +#: core/doctype/user_type/user_type.json +msgctxt "User Type" +msgid "Allowed Modules" +msgstr "crwdns686:0crwdne686:0" + +#: public/js/frappe/form/form.js:1229 +msgid "Allowing DocType, DocType. Be careful!" +msgstr "crwdns688:0crwdne688:0" + +#: core/doctype/user/user.py:977 +msgid "Already Registered" +msgstr "crwdns690:0crwdne690:0" + +#: desk/form/assign_to.py:132 +msgid "Already in the following Users ToDo list:{0}" +msgstr "crwdns692:0{0}crwdne692:0" + +#: public/js/frappe/views/reports/report_view.js:840 +msgid "Also adding the dependent currency field {0}" +msgstr "crwdns694:0{0}crwdne694:0" + +#: public/js/frappe/views/reports/report_view.js:853 +msgid "Also adding the status dependency field {0}" +msgstr "crwdns696:0{0}crwdne696:0" + +#. Label of a Data field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Alternative Email ID" +msgstr "crwdns698:0crwdne698:0" + +#. Label of a Check field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "Always add \"Draft\" Heading for printing draft documents" +msgstr "crwdns700:0crwdne700:0" + +#. Label of a Check field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Always use this email address as sender address" +msgstr "crwdns702:0crwdne702:0" + +#. Label of a Check field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Always use this name as sender name" +msgstr "crwdns704:0crwdne704:0" + +#. Label of a Check field in DocType 'Custom DocPerm' +#: core/doctype/custom_docperm/custom_docperm.json +msgctxt "Custom DocPerm" +msgid "Amend" +msgstr "crwdns706:0crwdne706:0" + +#. Label of a Check field in DocType 'DocPerm' +#: core/doctype/docperm/docperm.json +msgctxt "DocPerm" +msgid "Amend" +msgstr "crwdns708:0crwdne708:0" + +#. Label of a Check field in DocType 'User Document Type' +#: core/doctype/user_document_type/user_document_type.json +msgctxt "User Document Type" +msgid "Amend" +msgstr "crwdns710:0crwdne710:0" + +#. Option for a Select field in DocType 'Amended Document Naming Settings' +#: core/doctype/amended_document_naming_settings/amended_document_naming_settings.json +msgctxt "Amended Document Naming Settings" +msgid "Amend Counter" +msgstr "crwdns712:0crwdne712:0" + +#. Option for a Select field in DocType 'Document Naming Settings' +#: core/doctype/document_naming_settings/document_naming_settings.json +msgctxt "Document Naming Settings" +msgid "Amend Counter" +msgstr "crwdns714:0crwdne714:0" + +#. Name of a DocType +#: core/doctype/amended_document_naming_settings/amended_document_naming_settings.json +msgid "Amended Document Naming Settings" +msgstr "crwdns716:0crwdne716:0" + +#. Label of a Section Break field in DocType 'Document Naming Settings' +#: core/doctype/document_naming_settings/document_naming_settings.json +msgctxt "Document Naming Settings" +msgid "Amended Documents" +msgstr "crwdns718:0crwdne718:0" + +#. Label of a Link field in DocType 'Personal Data Download Request' +#: website/doctype/personal_data_download_request/personal_data_download_request.json +msgctxt "Personal Data Download Request" +msgid "Amended From" +msgstr "crwdns720:0crwdne720:0" + +#. Label of a Link field in DocType 'Transaction Log' +#: core/doctype/transaction_log/transaction_log.json +msgctxt "Transaction Log" +msgid "Amended From" +msgstr "crwdns722:0crwdne722:0" + +#: public/js/frappe/form/save.js:12 +msgctxt "Freeze message while amending a document" +msgid "Amending" +msgstr "crwdns724:0crwdne724:0" + +#. Label of a Table field in DocType 'Document Naming Settings' +#: core/doctype/document_naming_settings/document_naming_settings.json +msgctxt "Document Naming Settings" +msgid "Amendment Naming Override" +msgstr "crwdns726:0crwdne726:0" + +#: core/doctype/document_naming_settings/document_naming_settings.py:208 +msgid "Amendment naming rules updated." +msgstr "crwdns728:0crwdne728:0" + +#: public/js/frappe/ui/toolbar/toolbar.js:287 +msgid "An error occurred while setting Session Defaults" +msgstr "crwdns730:0crwdne730:0" + +#. Description of a Attach field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "An icon file with .ico extension. Should be 16 x 16 px. Generated using a favicon generator. [favicon-generator.org]" +msgstr "crwdns732:0crwdne732:0" + +#: templates/includes/oauth_confirmation.html:35 +msgid "An unexpected error occurred while authorizing {}." +msgstr "crwdns734:0crwdne734:0" + +#. Label of a Section Break field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Analytics" +msgstr "crwdns736:0crwdne736:0" + +#: public/js/frappe/ui/filters/filter.js:35 +msgid "Ancestors Of" +msgstr "crwdns738:0crwdne738:0" + +#. Option for a Select field in DocType 'Scheduled Job Type' +#: core/doctype/scheduled_job_type/scheduled_job_type.json +msgctxt "Scheduled Job Type" +msgid "Annual" +msgstr "crwdns740:0crwdne740:0" + +#. Label of a Code field in DocType 'Personal Data Deletion Request' +#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +msgctxt "Personal Data Deletion Request" +msgid "Anonymization Matrix" +msgstr "crwdns742:0crwdne742:0" + +#. Label of a Check field in DocType 'Web Form' +#: website/doctype/web_form/web_form.json +msgctxt "Web Form" +msgid "Anonymous" +msgstr "crwdns744:0crwdne744:0" + +#: public/js/frappe/request.js:186 +msgid "Another transaction is blocking this one. Please try again in a few seconds." +msgstr "crwdns746:0crwdne746:0" + +#: model/rename_doc.py:379 +msgid "Another {0} with name {1} exists, select another name" +msgstr "crwdns748:0{0}crwdnd748:0{1}crwdne748:0" + +#. Description of a Code field in DocType 'Print Format' +#: printing/doctype/print_format/print_format.json +msgctxt "Print Format" +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 "crwdns750:0crwdne750:0" + +#. Label of a Data field in DocType 'Desktop Icon' +#: desk/doctype/desktop_icon/desktop_icon.json +msgctxt "Desktop Icon" +msgid "App" +msgstr "crwdns752:0crwdne752:0" + +#. Label of a Data field in DocType 'Website Theme Ignore App' +#: website/doctype/website_theme_ignore_app/website_theme_ignore_app.json +msgctxt "Website Theme Ignore App" +msgid "App" +msgstr "crwdns754:0crwdne754:0" + +#. Label of a Data field in DocType 'Dropbox Settings' +#: integrations/doctype/dropbox_settings/dropbox_settings.json +msgctxt "Dropbox Settings" +msgid "App Access Key" +msgstr "crwdns756:0crwdne756:0" + +#: integrations/doctype/dropbox_settings/dropbox_settings.js:22 +msgid "App Access Key and/or Secret Key are not present." +msgstr "crwdns758:0crwdne758:0" + +#. Label of a Data field in DocType 'OAuth Client' +#: integrations/doctype/oauth_client/oauth_client.json +msgctxt "OAuth Client" +msgid "App Client ID" +msgstr "crwdns760:0crwdne760:0" + +#. Label of a Data field in DocType 'OAuth Client' +#: integrations/doctype/oauth_client/oauth_client.json +msgctxt "OAuth Client" +msgid "App Client Secret" +msgstr "crwdns762:0crwdne762:0" + +#. Label of a Data field in DocType 'Google Settings' +#: integrations/doctype/google_settings/google_settings.json +msgctxt "Google Settings" +msgid "App ID" +msgstr "crwdns764:0crwdne764:0" + +#. Label of a Attach Image field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "App Logo" +msgstr "crwdns766:0crwdne766:0" + +#: core/doctype/installed_applications/installed_applications.js:27 +msgid "App Name" +msgstr "crwdns768:0crwdne768:0" + +#. Label of a Select field in DocType 'Module Def' +#: core/doctype/module_def/module_def.json +msgctxt "Module Def" +msgid "App Name" +msgstr "crwdns770:0crwdne770:0" + +#. Label of a Data field in DocType 'OAuth Client' +#: integrations/doctype/oauth_client/oauth_client.json +msgctxt "OAuth Client" +msgid "App Name" +msgstr "crwdns772:0crwdne772:0" + +#. Label of a Data field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "App Name" +msgstr "crwdns774:0crwdne774:0" + +#. Label of a Password field in DocType 'Dropbox Settings' +#: integrations/doctype/dropbox_settings/dropbox_settings.json +msgctxt "Dropbox Settings" +msgid "App Secret Key" +msgstr "crwdns776:0crwdne776:0" + +#: modules/utils.py:268 +msgid "App not found for module: {0}" +msgstr "crwdns778:0{0}crwdne778:0" + +#: __init__.py:1660 +msgid "App {0} is not installed" +msgstr "crwdns780:0{0}crwdne780:0" + +#. Label of a Check field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Append Emails to Sent Folder" +msgstr "crwdns782:0crwdne782:0" + +#. Label of a Check field in DocType 'Email Domain' +#: email/doctype/email_domain/email_domain.json +msgctxt "Email Domain" +msgid "Append Emails to Sent Folder" +msgstr "crwdns784:0crwdne784:0" + +#. Label of a Link field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Append To" +msgstr "crwdns786:0crwdne786:0" + +#. Label of a Link field in DocType 'IMAP Folder' +#: email/doctype/imap_folder/imap_folder.json +msgctxt "IMAP Folder" +msgid "Append To" +msgstr "crwdns788:0crwdne788:0" + +#: email/doctype/email_account/email_account.py:178 +msgid "Append To can be one of {0}" +msgstr "crwdns790:0{0}crwdne790:0" + +#. Description of a Link field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +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 "crwdns792:0crwdne792:0" + +#: core/doctype/user_permission/user_permission_list.js:105 +msgid "Applicable Document Types" +msgstr "crwdns794:0crwdne794:0" + +#. Label of a Link field in DocType 'User Permission' +#: core/doctype/user_permission/user_permission.json +msgctxt "User Permission" +msgid "Applicable For" +msgstr "crwdns796:0crwdne796:0" + +#. Label of a Attach Image field in DocType 'Navbar Settings' +#. Label of a Section Break field in DocType 'Navbar Settings' +#: core/doctype/navbar_settings/navbar_settings.json +msgctxt "Navbar Settings" +msgid "Application Logo" +msgstr "crwdns798:0crwdne798:0" + +#. Label of a Data field in DocType 'Installed Application' +#: core/doctype/installed_application/installed_application.json +msgctxt "Installed Application" +msgid "Application Name" +msgstr "crwdns800:0crwdne800:0" + +#. Label of a Data field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Application Name" +msgstr "crwdns802:0crwdne802:0" + +#. Label of a Data field in DocType 'Installed Application' +#: core/doctype/installed_application/installed_application.json +msgctxt "Installed Application" +msgid "Application Version" +msgstr "crwdns804:0crwdne804:0" + +#. Label of a Select field in DocType 'Property Setter' +#: custom/doctype/property_setter/property_setter.json +msgctxt "Property Setter" +msgid "Applied On" +msgstr "crwdns806:0crwdne806:0" + +#: public/js/frappe/list/list_view.js:1819 +msgctxt "Button in list view actions menu" +msgid "Apply Assignment Rule" +msgstr "crwdns808:0crwdne808:0" + +#. Label of a Check field in DocType 'Web Form' +#: website/doctype/web_form/web_form.json +msgctxt "Web Form" +msgid "Apply Document Permissions" +msgstr "crwdns810:0crwdne810:0" + +#: public/js/frappe/ui/filters/filter_list.js:315 +msgid "Apply Filters" +msgstr "crwdns812:0crwdne812:0" + +#. Label of a Check field in DocType 'Energy Point Rule' +#: social/doctype/energy_point_rule/energy_point_rule.json +msgctxt "Energy Point Rule" +msgid "Apply Only Once" +msgstr "crwdns814:0crwdne814:0" + +#. Label of a Check field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Apply Strict User Permissions" +msgstr "crwdns816:0crwdne816:0" + +#. Label of a Select field in DocType 'Client Script' +#: custom/doctype/client_script/client_script.json +msgctxt "Client Script" +msgid "Apply To" +msgstr "crwdns818:0crwdne818:0" + +#. Label of a Check field in DocType 'User Permission' +#: core/doctype/user_permission/user_permission.json +msgctxt "User Permission" +msgid "Apply To All Document Types" +msgstr "crwdns820:0crwdne820:0" + +#. Label of a Link field in DocType 'User Type' +#: core/doctype/user_type/user_type.json +msgctxt "User Type" +msgid "Apply User Permission On" +msgstr "crwdns822:0crwdne822:0" + +#. Description of a Check field in DocType 'Custom DocPerm' +#: core/doctype/custom_docperm/custom_docperm.json +msgctxt "Custom DocPerm" +msgid "Apply this rule if the User is the Owner" +msgstr "crwdns824:0crwdne824:0" + +#. Description of a Check field in DocType 'DocPerm' +#: core/doctype/docperm/docperm.json +msgctxt "DocPerm" +msgid "Apply this rule if the User is the Owner" +msgstr "crwdns826:0crwdne826:0" + +#. Description of a Check field in DocType 'Energy Point Rule' +#: social/doctype/energy_point_rule/energy_point_rule.json +msgctxt "Energy Point Rule" +msgid "Apply this rule only once per document" +msgstr "crwdns828:0crwdne828:0" + +#: core/doctype/user_permission/user_permission_list.js:75 +msgid "Apply to all Documents Types" +msgstr "crwdns830:0crwdne830:0" + +#: model/workflow.py:265 +msgid "Applying: {0}" +msgstr "crwdns832:0{0}crwdne832:0" + +#: public/js/frappe/form/sidebar/review.js:62 +msgid "Appreciate" +msgstr "crwdns834:0crwdne834:0" + +#. Option for a Select field in DocType 'Energy Point Log' +#: social/doctype/energy_point_log/energy_point_log.json +msgctxt "Energy Point Log" +msgid "Appreciation" +msgstr "crwdns836:0crwdne836:0" + +#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:111 +msgid "Approval Required" +msgstr "crwdns838:0crwdne838:0" + +#: public/js/frappe/utils/number_systems.js:41 +msgctxt "Number system" +msgid "Ar" +msgstr "crwdns840:0crwdne840:0" + +#. Option for a Select field in DocType 'Kanban Board Column' +#: desk/doctype/kanban_board_column/kanban_board_column.json +msgctxt "Kanban Board Column" +msgid "Archived" +msgstr "crwdns842:0crwdne842:0" + +#: public/js/frappe/views/kanban/kanban_board.bundle.js:490 +msgid "Archived Columns" +msgstr "crwdns844:0crwdne844:0" + +#: public/js/frappe/form/grid.js:269 +msgid "Are you sure you want to delete all rows?" +msgstr "crwdns846:0crwdne846:0" + +#: public/js/frappe/views/workspace/workspace.js:885 +msgid "Are you sure you want to delete page {0}?" +msgstr "crwdns848:0{0}crwdne848:0" + +#: public/js/frappe/form/sidebar/attachments.js:135 +msgid "Are you sure you want to delete the attachment?" +msgstr "crwdns850:0crwdne850:0" + +#: public/js/frappe/web_form/web_form.js:185 +msgid "Are you sure you want to discard the changes?" +msgstr "crwdns852:0crwdne852:0" + +#: public/js/frappe/form/toolbar.js:110 +msgid "Are you sure you want to merge {0} with {1}?" +msgstr "crwdns854:0{0}crwdnd854:0{1}crwdne854:0" + +#: public/js/frappe/views/kanban/kanban_view.js:105 +msgid "Are you sure you want to proceed?" +msgstr "crwdns856:0crwdne856:0" + +#: core/doctype/rq_job/rq_job_list.js:25 +msgid "Are you sure you want to re-enable scheduler?" +msgstr "crwdns858:0crwdne858:0" + +#: core/doctype/communication/communication.js:163 +msgid "Are you sure you want to relink this communication to {0}?" +msgstr "crwdns860:0{0}crwdne860:0" + +#: core/doctype/rq_job/rq_job_list.js:10 +msgid "Are you sure you want to remove all failed jobs?" +msgstr "crwdns862:0crwdne862:0" + +#: public/js/frappe/list/list_filter.js:109 +msgid "Are you sure you want to remove the {0} filter?" +msgstr "crwdns864:0{0}crwdne864:0" + +#: public/js/frappe/views/dashboard/dashboard_view.js:267 +msgid "Are you sure you want to reset all customizations?" +msgstr "crwdns866:0crwdne866:0" + +#: email/doctype/newsletter/newsletter.js:60 +msgid "Are you sure you want to send this newsletter now?" +msgstr "crwdns868:0crwdne868:0" + +#: core/doctype/document_naming_rule/document_naming_rule.js:16 +#: core/doctype/user_permission/user_permission_list.js:165 +msgid "Are you sure?" +msgstr "crwdns870:0crwdne870:0" + +#. Label of a Code field in DocType 'RQ Job' +#: core/doctype/rq_job/rq_job.json +msgctxt "RQ Job" +msgid "Arguments" +msgstr "crwdns872:0crwdne872:0" + +#. Option for a Select field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "Arial" +msgstr "crwdns874:0crwdne874:0" + +#: desk/form/assign_to.py:102 +msgid "As document sharing is disabled, please give them the required permissions before assigning." +msgstr "crwdns876:0crwdne876:0" + +#: 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 "crwdns878:0{0}crwdnd878:0{1}crwdne878:0" + +#. Label of a Code field in DocType 'Assignment Rule' +#: automation/doctype/assignment_rule/assignment_rule.json +msgctxt "Assignment Rule" +msgid "Assign Condition" +msgstr "crwdns880:0crwdne880:0" + +#: public/js/frappe/form/sidebar/assign_to.js:163 +msgid "Assign To" +msgstr "crwdns882:0crwdne882:0" + +#: public/js/frappe/list/list_view.js:1804 +msgctxt "Button in list view actions menu" +msgid "Assign To" +msgstr "crwdns884:0crwdne884:0" + +#. Label of a Section Break field in DocType 'Assignment Rule' +#: automation/doctype/assignment_rule/assignment_rule.json +msgctxt "Assignment Rule" +msgid "Assign To Users" +msgstr "crwdns886:0crwdne886:0" + +#: public/js/frappe/form/sidebar/assign_to.js:232 +msgid "Assign a user" +msgstr "crwdns888:0crwdne888:0" + +#: automation/doctype/assignment_rule/assignment_rule.js:52 +msgid "Assign one by one, in sequence" +msgstr "crwdns890:0crwdne890:0" + +#: public/js/frappe/form/sidebar/assign_to.js:154 +msgid "Assign to me" +msgstr "crwdns892:0crwdne892:0" + +#: automation/doctype/assignment_rule/assignment_rule.js:53 +msgid "Assign to the one who has the least assignments" +msgstr "crwdns894:0crwdne894:0" + +#: automation/doctype/assignment_rule/assignment_rule.js:54 +msgid "Assign to the user set in this field" +msgstr "crwdns896:0crwdne896:0" + +#. Option for a Select field in DocType 'Comment' +#: core/doctype/comment/comment.json +msgctxt "Comment" +msgid "Assigned" +msgstr "crwdns898:0crwdne898:0" + +#. Option for a Select field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Assigned" +msgstr "crwdns900:0crwdne900:0" + +#: desk/report/todo/todo.py:41 +msgid "Assigned By" +msgstr "crwdns902:0crwdne902:0" + +#. Label of a Link field in DocType 'ToDo' +#: desk/doctype/todo/todo.json +msgctxt "ToDo" +msgid "Assigned By" +msgstr "crwdns904:0crwdne904:0" + +#. Label of a Read Only field in DocType 'ToDo' +#: desk/doctype/todo/todo.json +msgctxt "ToDo" +msgid "Assigned By Full Name" +msgstr "crwdns906:0crwdne906:0" + +#: desk/doctype/todo/todo_list.js:35 +msgid "Assigned By Me" +msgstr "crwdns908:0crwdne908:0" + +#: model/__init__.py:151 model/meta.py:54 +#: public/js/frappe/list/list_sidebar_group_by.js:71 +#: public/js/frappe/model/meta.js:207 public/js/frappe/model/model.js:126 +#: public/js/frappe/views/interaction.js:82 +msgid "Assigned To" +msgstr "crwdns910:0crwdne910:0" + +#: desk/report/todo/todo.py:40 +msgid "Assigned To/Owner" +msgstr "crwdns912:0crwdne912:0" + +#: public/js/frappe/form/sidebar/assign_to.js:241 +msgid "Assigning..." +msgstr "crwdns914:0crwdne914:0" + +#. Option for a Select field in DocType 'Notification Log' +#: desk/doctype/notification_log/notification_log.json +msgctxt "Notification Log" +msgid "Assignment" +msgstr "crwdns916:0crwdne916:0" + +#. Option for a Select field in DocType 'Comment' +#: core/doctype/comment/comment.json +msgctxt "Comment" +msgid "Assignment Completed" +msgstr "crwdns918:0crwdne918:0" + +#. Option for a Select field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Assignment Completed" +msgstr "crwdns920:0crwdne920:0" + +#. Label of a Section Break field in DocType 'Assignment Rule' +#. Label of a Table field in DocType 'Assignment Rule' +#: automation/doctype/assignment_rule/assignment_rule.json +msgctxt "Assignment Rule" +msgid "Assignment Days" +msgstr "crwdns922:0crwdne922:0" + +#: automation/doctype/assignment_rule/assignment_rule.py:64 +msgid "Assignment Day{0} {1} has been repeated." +msgstr "crwdns924:0{0}crwdnd924:0{1}crwdne924:0" + +#. Name of a DocType +#: automation/doctype/assignment_rule/assignment_rule.json +msgid "Assignment Rule" +msgstr "crwdns926:0crwdne926:0" + +#. Label of a Link in the Tools Workspace +#. Label of a shortcut in the Tools Workspace +#: automation/workspace/tools/tools.json +msgctxt "Assignment Rule" +msgid "Assignment Rule" +msgstr "crwdns928:0crwdne928:0" + +#. Linked DocType in DocType's connections +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Assignment Rule" +msgstr "crwdns930:0crwdne930:0" + +#. Label of a Link field in DocType 'ToDo' +#: desk/doctype/todo/todo.json +msgctxt "ToDo" +msgid "Assignment Rule" +msgstr "crwdns932:0crwdne932:0" + +#. Name of a DocType +#: automation/doctype/assignment_rule_day/assignment_rule_day.json +msgid "Assignment Rule Day" +msgstr "crwdns934:0crwdne934:0" + +#. Name of a DocType +#: automation/doctype/assignment_rule_user/assignment_rule_user.json +msgid "Assignment Rule User" +msgstr "crwdns936:0crwdne936:0" + +#: automation/doctype/assignment_rule/assignment_rule.py:53 +msgid "Assignment Rule is not allowed on {0} document type" +msgstr "crwdns938:0{0}crwdne938:0" + +#. Label of a Section Break field in DocType 'Assignment Rule' +#: automation/doctype/assignment_rule/assignment_rule.json +msgctxt "Assignment Rule" +msgid "Assignment Rules" +msgstr "crwdns940:0crwdne940:0" + +#: desk/doctype/notification_log/notification_log.py:157 +msgid "Assignment Update on {0}" +msgstr "crwdns942:0{0}crwdne942:0" + +#: desk/form/assign_to.py:75 +msgid "Assignment for {0} {1}" +msgstr "crwdns944:0{0}crwdnd944:0{1}crwdne944:0" + +#: desk/doctype/todo/todo.py:62 +msgid "Assignment of {0} removed by {1}" +msgstr "crwdns946:0{0}crwdnd946:0{1}crwdne946:0" + +#: public/js/frappe/form/sidebar/assign_to.js:227 +msgid "Assignments" +msgstr "crwdns948:0crwdne948:0" + +#. Label of a Check field in DocType 'Notification Settings' +#: desk/doctype/notification_settings/notification_settings.json +msgctxt "Notification Settings" +msgid "Assignments" +msgstr "crwdns950:0crwdne950:0" + +#: public/js/frappe/form/grid_row.js:629 +msgid "At least one column is required to show in the grid." +msgstr "crwdns952:0crwdne952:0" + +#: website/doctype/web_form/web_form.js:64 +msgid "Atleast one field is required in Web Form Fields Table" +msgstr "crwdns954:0crwdne954:0" + +#: core/doctype/data_export/data_export.js:44 +msgid "Atleast one field of Parent Document Type is mandatory" +msgstr "crwdns956:0crwdne956:0" + +#: public/js/frappe/form/controls/attach.js:5 +msgid "Attach" +msgstr "crwdns958:0crwdne958:0" + +#. Option for a Select field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Attach" +msgstr "crwdns960:0crwdne960:0" + +#. Option for a Select field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Attach" +msgstr "crwdns962:0crwdne962:0" + +#. Option for a Select field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Attach" +msgstr "crwdns964:0crwdne964:0" + +#. Option for a Select field in DocType 'Web Form Field' +#: website/doctype/web_form_field/web_form_field.json +msgctxt "Web Form Field" +msgid "Attach" +msgstr "crwdns966:0crwdne966:0" + +#: public/js/frappe/views/communication.js:139 +msgid "Attach Document Print" +msgstr "crwdns968:0crwdne968:0" + +#. Option for a Select field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Attach Image" +msgstr "crwdns970:0crwdne970:0" + +#. Option for a Select field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Attach Image" +msgstr "crwdns972:0crwdne972:0" + +#. Option for a Select field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Attach Image" +msgstr "crwdns974:0crwdne974:0" + +#. Option for a Select field in DocType 'Web Form Field' +#: website/doctype/web_form_field/web_form_field.json +msgctxt "Web Form Field" +msgid "Attach Image" +msgstr "crwdns976:0crwdne976:0" + +#. Option for a Select field in DocType 'Web Template Field' +#: website/doctype/web_template_field/web_template_field.json +msgctxt "Web Template Field" +msgid "Attach Image" +msgstr "crwdns978:0crwdne978:0" + +#. Label of a Attach field in DocType 'Package Import' +#: core/doctype/package_import/package_import.json +msgctxt "Package Import" +msgid "Attach Package" +msgstr "crwdns980:0crwdne980:0" + +#. Label of a Check field in DocType 'Notification' +#: email/doctype/notification/notification.json +msgctxt "Notification" +msgid "Attach Print" +msgstr "crwdns982:0crwdne982:0" + +#: website/doctype/website_slideshow/website_slideshow.js:8 +msgid "Attach files / urls and add in table." +msgstr "crwdns984:0crwdne984:0" + +#. Label of a Code field in DocType 'Notification Log' +#: desk/doctype/notification_log/notification_log.json +msgctxt "Notification Log" +msgid "Attached File" +msgstr "crwdns986:0crwdne986:0" + +#. Label of a Link field in DocType 'File' +#: core/doctype/file/file.json +msgctxt "File" +msgid "Attached To DocType" +msgstr "crwdns988:0crwdne988:0" + +#. Label of a Data field in DocType 'File' +#: core/doctype/file/file.json +msgctxt "File" +msgid "Attached To Field" +msgstr "crwdns990:0crwdne990:0" + +#. Label of a Data field in DocType 'File' +#: core/doctype/file/file.json +msgctxt "File" +msgid "Attached To Name" +msgstr "crwdns992:0crwdne992:0" + +#: core/doctype/file/file.py:140 +msgid "Attached To Name must be a string or an integer" +msgstr "crwdns994:0crwdne994:0" + +#. Option for a Select field in DocType 'Comment' +#: core/doctype/comment/comment.json +msgctxt "Comment" +msgid "Attachment" +msgstr "crwdns996:0crwdne996:0" + +#. Option for a Select field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Attachment" +msgstr "crwdns998:0crwdne998:0" + +#. Label of a Attach field in DocType 'Newsletter Attachment' +#: email/doctype/newsletter_attachment/newsletter_attachment.json +msgctxt "Newsletter Attachment" +msgid "Attachment" +msgstr "crwdns1000:0crwdne1000:0" + +#. Label of a Int field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Attachment Limit (MB)" +msgstr "crwdns1002:0crwdne1002:0" + +#. Label of a Int field in DocType 'Email Domain' +#: email/doctype/email_domain/email_domain.json +msgctxt "Email Domain" +msgid "Attachment Limit (MB)" +msgstr "crwdns1004:0crwdne1004:0" + +#: core/doctype/file/file.py:321 +#: public/js/frappe/form/sidebar/attachments.js:36 +msgid "Attachment Limit Reached" +msgstr "crwdns1006:0crwdne1006:0" + +#. Label of a HTML field in DocType 'Notification Log' +#: desk/doctype/notification_log/notification_log.json +msgctxt "Notification Log" +msgid "Attachment Link" +msgstr "crwdns1008:0crwdne1008:0" + +#. Option for a Select field in DocType 'Comment' +#: core/doctype/comment/comment.json +msgctxt "Comment" +msgid "Attachment Removed" +msgstr "crwdns1010:0crwdne1010:0" + +#. Option for a Select field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Attachment Removed" +msgstr "crwdns1012:0crwdne1012:0" + +#: core/doctype/file/utils.py:40 +#: email/doctype/newsletter/templates/newsletter.html:47 +#: website/doctype/web_form/templates/web_form.html:103 +msgid "Attachments" +msgstr "crwdns1014:0crwdne1014:0" + +#. Label of a Code field in DocType 'Email Queue' +#: email/doctype/email_queue/email_queue.json +msgctxt "Email Queue" +msgid "Attachments" +msgstr "crwdns1016:0crwdne1016:0" + +#. Label of a Table field in DocType 'Newsletter' +#: email/doctype/newsletter/newsletter.json +msgctxt "Newsletter" +msgid "Attachments" +msgstr "crwdns1018:0crwdne1018:0" + +#: public/js/frappe/form/print_utils.js:89 +msgid "Attempting Connection to QZ Tray..." +msgstr "crwdns1020:0crwdne1020:0" + +#: public/js/frappe/form/print_utils.js:105 +msgid "Attempting to launch QZ Tray..." +msgstr "crwdns1022:0crwdne1022:0" + +#. Label of a Table field in DocType 'Newsletter' +#: email/doctype/newsletter/newsletter.json +msgctxt "Newsletter" +msgid "Audience" +msgstr "crwdns1024:0crwdne1024:0" + +#. Name of a report +#: custom/report/audit_system_hooks/audit_system_hooks.json +msgid "Audit System Hooks" +msgstr "crwdns1026:0crwdne1026:0" + +#. Name of a DocType +#: core/doctype/audit_trail/audit_trail.json +msgid "Audit Trail" +msgstr "crwdns1028:0crwdne1028:0" + +#. Label of a Code field in DocType 'Social Login Key' +#: integrations/doctype/social_login_key/social_login_key.json +msgctxt "Social Login Key" +msgid "Auth URL Data" +msgstr "crwdns1030:0crwdne1030:0" + +#. Label of a Card Break in the Integrations Workspace +#: integrations/workspace/integrations/integrations.json +msgid "Authentication" +msgstr "crwdns1032:0crwdne1032:0" + +#. Label of a Section Break field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Authentication" +msgstr "crwdns1034:0crwdne1034:0" + +#: www/qrcode.html:19 +msgid "Authentication Apps you can use are: " +msgstr "crwdns1036:0crwdne1036:0" + +#: email/doctype/email_account/email_account.py:294 +msgid "Authentication failed while receiving emails from Email Account: {0}." +msgstr "crwdns1038:0{0}crwdne1038:0" + +#. Label of a Data field in DocType 'Help Article' +#: website/doctype/help_article/help_article.json +msgctxt "Help Article" +msgid "Author" +msgstr "crwdns1040:0crwdne1040:0" + +#. Label of a Password field in DocType 'Google Calendar' +#: integrations/doctype/google_calendar/google_calendar.json +msgctxt "Google Calendar" +msgid "Authorization Code" +msgstr "crwdns1042:0crwdne1042:0" + +#. Label of a Password field in DocType 'Google Contacts' +#: integrations/doctype/google_contacts/google_contacts.json +msgctxt "Google Contacts" +msgid "Authorization Code" +msgstr "crwdns1044:0crwdne1044:0" + +#. Label of a Data field in DocType 'Google Drive' +#: integrations/doctype/google_drive/google_drive.json +msgctxt "Google Drive" +msgid "Authorization Code" +msgstr "crwdns1046:0crwdne1046:0" + +#. Label of a Data field in DocType 'OAuth Authorization Code' +#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +msgctxt "OAuth Authorization Code" +msgid "Authorization Code" +msgstr "crwdns1048:0crwdne1048:0" + +#. Option for a Select field in DocType 'OAuth Client' +#: integrations/doctype/oauth_client/oauth_client.json +msgctxt "OAuth Client" +msgid "Authorization Code" +msgstr "crwdns1050:0crwdne1050:0" + +#. Label of a Small Text field in DocType 'Connected App' +#: integrations/doctype/connected_app/connected_app.json +msgctxt "Connected App" +msgid "Authorization URI" +msgstr "crwdns1052:0crwdne1052:0" + +#: templates/includes/oauth_confirmation.html:32 +msgid "Authorization error for {}." +msgstr "crwdns1054:0crwdne1054:0" + +#. Label of a Button field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Authorize API Access" +msgstr "crwdns1056:0crwdne1056:0" + +#. Label of a Button field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Authorize API Indexing Access" +msgstr "crwdns1058:0crwdne1058:0" + +#. Label of a Button field in DocType 'Google Calendar' +#: integrations/doctype/google_calendar/google_calendar.json +msgctxt "Google Calendar" +msgid "Authorize Google Calendar Access" +msgstr "crwdns1060:0crwdne1060:0" + +#. Label of a Button field in DocType 'Google Contacts' +#: integrations/doctype/google_contacts/google_contacts.json +msgctxt "Google Contacts" +msgid "Authorize Google Contacts Access" +msgstr "crwdns1062:0crwdne1062:0" + +#. Label of a Button field in DocType 'Google Drive' +#: integrations/doctype/google_drive/google_drive.json +msgctxt "Google Drive" +msgid "Authorize Google Drive Access" +msgstr "crwdns1064:0crwdne1064:0" + +#. Label of a Data field in DocType 'Social Login Key' +#: integrations/doctype/social_login_key/social_login_key.json +msgctxt "Social Login Key" +msgid "Authorize URL" +msgstr "crwdns1066:0crwdne1066:0" + +#. Option for a Select field in DocType 'Integration Request' +#: integrations/doctype/integration_request/integration_request.json +msgctxt "Integration Request" +msgid "Authorized" +msgstr "crwdns1068:0crwdne1068:0" + +#. Option for a Select field in DocType 'Energy Point Log' +#: social/doctype/energy_point_log/energy_point_log.json +msgctxt "Energy Point Log" +msgid "Auto" +msgstr "crwdns1070:0crwdne1070:0" + +#. Option for a Select field in DocType 'OAuth Provider Settings' +#: integrations/doctype/oauth_provider_settings/oauth_provider_settings.json +msgctxt "OAuth Provider Settings" +msgid "Auto" +msgstr "crwdns1072:0crwdne1072:0" + +#. Name of a DocType +#: email/doctype/auto_email_report/auto_email_report.json +msgid "Auto Email Report" +msgstr "crwdns1074:0crwdne1074:0" + +#. Label of a Link in the Tools Workspace +#: automation/workspace/tools/tools.json +msgctxt "Auto Email Report" +msgid "Auto Email Report" +msgstr "crwdns1076:0crwdne1076:0" + +#. Label of a Data field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Auto Name" +msgstr "crwdns1078:0crwdne1078:0" + +#. Label of a Data field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Auto Name" +msgstr "crwdns1080:0crwdne1080:0" + +#. Name of a DocType +#: automation/doctype/auto_repeat/auto_repeat.json +#: public/js/frappe/utils/common.js:442 +msgid "Auto Repeat" +msgstr "crwdns1082:0crwdne1082:0" + +#. Label of a Link in the Tools Workspace +#: automation/workspace/tools/tools.json +msgctxt "Auto Repeat" +msgid "Auto Repeat" +msgstr "crwdns1084:0crwdne1084:0" + +#. Linked DocType in DocType's connections +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Auto Repeat" +msgstr "crwdns1086:0crwdne1086:0" + +#. Name of a DocType +#: automation/doctype/auto_repeat_day/auto_repeat_day.json +msgid "Auto Repeat Day" +msgstr "crwdns1088:0crwdne1088:0" + +#: automation/doctype/auto_repeat/auto_repeat.py:158 +msgid "Auto Repeat Day{0} {1} has been repeated." +msgstr "crwdns1090:0{0}crwdnd1090:0{1}crwdne1090:0" + +#: automation/doctype/auto_repeat/auto_repeat.py:436 +msgid "Auto Repeat Document Creation Failed" +msgstr "crwdns1092:0crwdne1092:0" + +#: automation/doctype/auto_repeat/auto_repeat.js:115 +msgid "Auto Repeat Schedule" +msgstr "crwdns1094:0crwdne1094:0" + +#: public/js/frappe/utils/common.js:434 +msgid "Auto Repeat created for this document" +msgstr "crwdns1096:0crwdne1096:0" + +#: automation/doctype/auto_repeat/auto_repeat.py:439 +msgid "Auto Repeat failed for {0}" +msgstr "crwdns1098:0{0}crwdne1098:0" + +#. Label of a Section Break field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Auto Reply" +msgstr "crwdns1100:0crwdne1100:0" + +#. Label of a Text Editor field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Auto Reply Message" +msgstr "crwdns1102:0crwdne1102:0" + +#: automation/doctype/assignment_rule/assignment_rule.py:179 +msgid "Auto assignment failed: {0}" +msgstr "crwdns1104:0{0}crwdne1104:0" + +#. Label of a Check field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Auto follow documents that are assigned to you" +msgstr "crwdns1106:0crwdne1106:0" + +#. Label of a Check field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Auto follow documents that are shared with you" +msgstr "crwdns1108:0crwdne1108:0" + +#. Label of a Check field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Auto follow documents that you Like" +msgstr "crwdns1110:0crwdne1110:0" + +#. Label of a Check field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Auto follow documents that you comment on" +msgstr "crwdns1112:0crwdne1112:0" + +#. Label of a Check field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Auto follow documents that you create" +msgstr "crwdns1114:0crwdne1114:0" + +#. Option for a Select field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Autocomplete" +msgstr "crwdns1116:0crwdne1116:0" + +#. Option for a Select field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Autocomplete" +msgstr "crwdns1118:0crwdne1118:0" + +#. Option for a Select field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Autocomplete" +msgstr "crwdns1120:0crwdne1120:0" + +#. Option for a Select field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Autoincrement" +msgstr "crwdns1122:0crwdne1122:0" + +#. Option for a Select field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Automated Message" +msgstr "crwdns1124:0crwdne1124:0" + +#: public/js/frappe/ui/theme_switcher.js:69 +msgid "Automatic" +msgstr "crwdns1126:0crwdne1126:0" + +#. Option for a Select field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Automatic" +msgstr "crwdns1128:0crwdne1128:0" + +#: email/doctype/email_account/email_account.py:675 +msgid "Automatic Linking can be activated only for one Email Account." +msgstr "crwdns1130:0crwdne1130:0" + +#: email/doctype/email_account/email_account.py:670 +msgid "Automatic Linking can be activated only if Incoming is enabled." +msgstr "crwdns1132:0crwdne1132:0" + +#. Label of a Int field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Automatically delete account within (hours)" +msgstr "crwdns1134:0crwdne1134:0" + +#. Label of a Card Break in the Tools Workspace +#: automation/workspace/tools/tools.json +msgid "Automation" +msgstr "crwdns1136:0crwdne1136:0" + +#. Label of a Attach Image field in DocType 'Blogger' +#: website/doctype/blogger/blogger.json +msgctxt "Blogger" +msgid "Avatar" +msgstr "crwdns1138:0crwdne1138:0" + +#: public/js/frappe/form/controls/password.js:89 +#: public/js/frappe/ui/group_by/group_by.js:21 +msgid "Average" +msgstr "crwdns1140:0crwdne1140:0" + +#. Option for a Select field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "Average" +msgstr "crwdns1142:0crwdne1142:0" + +#. Option for a Select field in DocType 'Number Card' +#: desk/doctype/number_card/number_card.json +msgctxt "Number Card" +msgid "Average" +msgstr "crwdns1144:0crwdne1144:0" + +#: public/js/frappe/ui/group_by/group_by.js:332 +msgid "Average of {0}" +msgstr "crwdns1146:0{0}crwdne1146:0" + +#: utils/password_strength.py:132 +msgid "Avoid dates and years that are associated with you." +msgstr "crwdns1148:0crwdne1148:0" + +#: utils/password_strength.py:126 +msgid "Avoid recent years." +msgstr "crwdns1150:0crwdne1150:0" + +#: utils/password_strength.py:119 +msgid "Avoid sequences like abc or 6543 as they are easy to guess" +msgstr "crwdns1152:0crwdne1152:0" + +#: utils/password_strength.py:126 +msgid "Avoid years that are associated with you." +msgstr "crwdns1154:0crwdne1154:0" + +#. Label of a Check field in DocType 'User Email' +#: core/doctype/user_email/user_email.json +msgctxt "User Email" +msgid "Awaiting Password" +msgstr "crwdns1156:0crwdne1156:0" + +#. Label of a Check field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Awaiting password" +msgstr "crwdns1158:0crwdne1158:0" + +#: public/js/frappe/widgets/onboarding_widget.js:200 +msgid "Awesome Work" +msgstr "crwdns1160:0crwdne1160:0" + +#: public/js/frappe/widgets/onboarding_widget.js:358 +msgid "Awesome, now try making an entry yourself" +msgstr "crwdns1162:0crwdne1162:0" + +#: public/js/frappe/utils/number_systems.js:9 +msgctxt "Number system" +msgid "B" +msgstr "crwdns1164:0crwdne1164:0" + +#. Option for a Select field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "B0" +msgstr "crwdns1166:0crwdne1166:0" + +#. Option for a Select field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "B1" +msgstr "crwdns1168:0crwdne1168:0" + +#. Option for a Select field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "B10" +msgstr "crwdns1170:0crwdne1170:0" + +#. Option for a Select field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "B2" +msgstr "crwdns1172:0crwdne1172:0" + +#. Option for a Select field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "B3" +msgstr "crwdns1174:0crwdne1174:0" + +#. Option for a Select field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "B4" +msgstr "crwdns1176:0crwdne1176:0" + +#. Option for a Select field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "B5" +msgstr "crwdns1178:0crwdne1178:0" + +#. Option for a Select field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "B6" +msgstr "crwdns1180:0crwdne1180:0" + +#. Option for a Select field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "B7" +msgstr "crwdns1182:0crwdne1182:0" + +#. Option for a Select field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "B8" +msgstr "crwdns1184:0crwdne1184:0" + +#. Option for a Select field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "B9" +msgstr "crwdns1186:0crwdne1186:0" + +#: public/js/frappe/views/communication.js:76 +msgid "BCC" +msgstr "crwdns1188:0crwdne1188:0" + +#. Label of a Code field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "BCC" +msgstr "crwdns1190:0crwdne1190:0" + +#. Label of a Code field in DocType 'Notification Recipient' +#: email/doctype/notification_recipient/notification_recipient.json +msgctxt "Notification Recipient" +msgid "BCC" +msgstr "crwdns1192:0crwdne1192:0" + +#: templates/pages/integrations/gcalendar-success.html:13 +msgid "Back to Desk" +msgstr "crwdns1194:0crwdne1194:0" + +#: www/404.html:20 +msgid "Back to Home" +msgstr "crwdns1196:0crwdne1196:0" + +#: www/login.html:181 www/login.html:212 +msgid "Back to Login" +msgstr "crwdns1198:0crwdne1198:0" + +#. Label of a Color field in DocType 'Social Link Settings' +#: website/doctype/social_link_settings/social_link_settings.json +msgctxt "Social Link Settings" +msgid "Background Color" +msgstr "crwdns1200:0crwdne1200:0" + +#. Label of a Link field in DocType 'Website Theme' +#: website/doctype/website_theme/website_theme.json +msgctxt "Website Theme" +msgid "Background Color" +msgstr "crwdns1202:0crwdne1202:0" + +#. Label of a Attach Image field in DocType 'Web Page Block' +#: website/doctype/web_page_block/web_page_block.json +msgctxt "Web Page Block" +msgid "Background Image" +msgstr "crwdns1204:0crwdne1204:0" + +#: public/js/frappe/ui/toolbar/toolbar.js:143 +msgid "Background Jobs" +msgstr "crwdns1206:0crwdne1206:0" + +#. Label of a Link in the Build Workspace +#: core/workspace/build/build.json +msgctxt "RQ Job" +msgid "Background Jobs" +msgstr "crwdns1208:0crwdne1208:0" + +#. Label of a Section Break field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Background Workers" +msgstr "crwdns1210:0crwdne1210:0" + +#: integrations/doctype/google_drive/google_drive.js:31 +msgid "Backing up to Google Drive." +msgstr "crwdns1212:0crwdne1212:0" + +#. Label of a Card Break in the Integrations Workspace +#: integrations/workspace/integrations/integrations.json +msgid "Backup" +msgstr "crwdns1214:0crwdne1214:0" + +#. Label of a Section Break field in DocType 'S3 Backup Settings' +#: integrations/doctype/s3_backup_settings/s3_backup_settings.json +msgctxt "S3 Backup Settings" +msgid "Backup Details" +msgstr "crwdns1216:0crwdne1216:0" + +#: desk/page/backups/backups.js:26 +msgid "Backup Encryption Key" +msgstr "crwdns1218:0crwdne1218:0" + +#. Label of a Check field in DocType 'S3 Backup Settings' +#: integrations/doctype/s3_backup_settings/s3_backup_settings.json +msgctxt "S3 Backup Settings" +msgid "Backup Files" +msgstr "crwdns1220:0crwdne1220:0" + +#. Label of a Data field in DocType 'Google Drive' +#: integrations/doctype/google_drive/google_drive.json +msgctxt "Google Drive" +msgid "Backup Folder ID" +msgstr "crwdns1222:0crwdne1222:0" + +#. Label of a Data field in DocType 'Google Drive' +#: integrations/doctype/google_drive/google_drive.json +msgctxt "Google Drive" +msgid "Backup Folder Name" +msgstr "crwdns1224:0crwdne1224:0" + +#. Label of a Select field in DocType 'Dropbox Settings' +#: integrations/doctype/dropbox_settings/dropbox_settings.json +msgctxt "Dropbox Settings" +msgid "Backup Frequency" +msgstr "crwdns1226:0crwdne1226:0" + +#. Label of a Select field in DocType 'S3 Backup Settings' +#: integrations/doctype/s3_backup_settings/s3_backup_settings.json +msgctxt "S3 Backup Settings" +msgid "Backup Frequency" +msgstr "crwdns1228:0crwdne1228:0" + +#: desk/page/backups/backups.py:99 +msgid "Backup job is already queued. You will receive an email with the download link" +msgstr "crwdns1230:0crwdne1230:0" + +#. Description of a Check field in DocType 'S3 Backup Settings' +#: integrations/doctype/s3_backup_settings/s3_backup_settings.json +msgctxt "S3 Backup Settings" +msgid "Backup public and private files along with the database." +msgstr "crwdns1232:0crwdne1232:0" + +#. Label of a Tab Break field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Backups" +msgstr "crwdns1234:0crwdne1234:0" + +#. Option for a Select field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Banker's Rounding" +msgstr "crwdns1236:0crwdne1236:0" + +#. Option for a Select field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Banker's Rounding (legacy)" +msgstr "crwdns1238:0crwdne1238:0" + +#. Label of a Section Break field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Banner" +msgstr "crwdns1240:0crwdne1240:0" + +#. Label of a Code field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Banner HTML" +msgstr "crwdns1242:0crwdne1242:0" + +#. Label of a Attach Image field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Banner Image" +msgstr "crwdns1244:0crwdne1244:0" + +#. Label of a Attach Image field in DocType 'Web Form' +#: website/doctype/web_form/web_form.json +msgctxt "Web Form" +msgid "Banner Image" +msgstr "crwdns1246:0crwdne1246:0" + +#. Description of a Code field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Banner is above the Top Menu Bar." +msgstr "crwdns1248:0crwdne1248:0" + +#. Option for a Select field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "Bar" +msgstr "crwdns1250:0crwdne1250:0" + +#. Option for a Select field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Barcode" +msgstr "crwdns1252:0crwdne1252:0" + +#. Option for a Select field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Barcode" +msgstr "crwdns1254:0crwdne1254:0" + +#. Option for a Select field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Barcode" +msgstr "crwdns1256:0crwdne1256:0" + +#. Label of a Data field in DocType 'LDAP Settings' +#: integrations/doctype/ldap_settings/ldap_settings.json +msgctxt "LDAP Settings" +msgid "Base Distinguished Name (DN)" +msgstr "crwdns1258:0crwdne1258:0" + +#. Label of a Data field in DocType 'Social Login Key' +#: integrations/doctype/social_login_key/social_login_key.json +msgctxt "Social Login Key" +msgid "Base URL" +msgstr "crwdns1260:0crwdne1260:0" + +#: printing/page/print/print.js:266 printing/page/print/print.js:320 +msgid "Based On" +msgstr "crwdns1262:0crwdne1262:0" + +#. Label of a Link field in DocType 'Language' +#: core/doctype/language/language.json +msgctxt "Language" +msgid "Based On" +msgstr "crwdns1264:0crwdne1264:0" + +#. Option for a Select field in DocType 'Assignment Rule' +#: automation/doctype/assignment_rule/assignment_rule.json +msgctxt "Assignment Rule" +msgid "Based on Field" +msgstr "crwdns1266:0crwdne1266:0" + +#. Label of a Link field in DocType 'Auto Email Report' +#: email/doctype/auto_email_report/auto_email_report.json +msgctxt "Auto Email Report" +msgid "Based on Permissions For User" +msgstr "crwdns1268:0crwdne1268:0" + +#. Option for a Select field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Basic" +msgstr "crwdns1270:0crwdne1270:0" + +#. Label of a Section Break field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Basic Info" +msgstr "crwdns1272:0crwdne1272:0" + +#. Option for a Select field in DocType 'Server Script' +#: core/doctype/server_script/server_script.json +msgctxt "Server Script" +msgid "Before Cancel" +msgstr "crwdns1274:0crwdne1274:0" + +#. Option for a Select field in DocType 'Server Script' +#: core/doctype/server_script/server_script.json +msgctxt "Server Script" +msgid "Before Delete" +msgstr "crwdns1276:0crwdne1276:0" + +#. Option for a Select field in DocType 'Server Script' +#: core/doctype/server_script/server_script.json +msgctxt "Server Script" +msgid "Before Insert" +msgstr "crwdns1278:0crwdne1278:0" + +#. Option for a Select field in DocType 'Server Script' +#: core/doctype/server_script/server_script.json +msgctxt "Server Script" +msgid "Before Save" +msgstr "crwdns1280:0crwdne1280:0" + +#. Option for a Select field in DocType 'Server Script' +#: core/doctype/server_script/server_script.json +msgctxt "Server Script" +msgid "Before Save (Submitted Document)" +msgstr "crwdns1282:0crwdne1282:0" + +#. Option for a Select field in DocType 'Server Script' +#: core/doctype/server_script/server_script.json +msgctxt "Server Script" +msgid "Before Submit" +msgstr "crwdns1284:0crwdne1284:0" + +#. Option for a Select field in DocType 'Server Script' +#: core/doctype/server_script/server_script.json +msgctxt "Server Script" +msgid "Before Validate" +msgstr "crwdns1286:0crwdne1286:0" + +#. Option for a Select field in DocType 'Help Article' +#: website/doctype/help_article/help_article.json +msgctxt "Help Article" +msgid "Beginner" +msgstr "crwdns1288:0crwdne1288:0" + +#: public/js/frappe/form/link_selector.js:29 +msgid "Beginning with" +msgstr "crwdns1290:0crwdne1290:0" + +#. Label of a Check field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Beta" +msgstr "crwdns1292:0crwdne1292:0" + +#: utils/password_strength.py:75 +msgid "Better add a few more letters or another word" +msgstr "crwdns1294:0crwdne1294:0" + +#: public/js/frappe/ui/filters/filter.js:27 +msgid "Between" +msgstr "crwdns1296:0crwdne1296:0" + +#. Option for a Select field in DocType 'Address' +#: contacts/doctype/address/address.json +msgctxt "Address" +msgid "Billing" +msgstr "crwdns1298:0crwdne1298:0" + +#. Label of a Small Text field in DocType 'About Us Team Member' +#: website/doctype/about_us_team_member/about_us_team_member.json +msgctxt "About Us Team Member" +msgid "Bio" +msgstr "crwdns1300:0crwdne1300:0" + +#. Label of a Small Text field in DocType 'Blogger' +#: website/doctype/blogger/blogger.json +msgctxt "Blogger" +msgid "Bio" +msgstr "crwdns1302:0crwdne1302:0" + +#. Label of a Small Text field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Bio" +msgstr "crwdns1304:0crwdne1304:0" + +#. Label of a Date field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Birth Date" +msgstr "crwdns1306:0crwdne1306:0" + +#: public/js/frappe/data_import/data_exporter.js:41 +msgid "Blank Template" +msgstr "crwdns1308:0crwdne1308:0" + +#. Name of a DocType +#: core/doctype/block_module/block_module.json +msgid "Block Module" +msgstr "crwdns1310:0crwdne1310:0" + +#. Label of a Table field in DocType 'Module Profile' +#: core/doctype/module_profile/module_profile.json +msgctxt "Module Profile" +msgid "Block Modules" +msgstr "crwdns1312:0crwdne1312:0" + +#. Label of a Table field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Block Modules" +msgstr "crwdns1314:0crwdne1314:0" + +#. Label of a Check field in DocType 'Desktop Icon' +#: desk/doctype/desktop_icon/desktop_icon.json +msgctxt "Desktop Icon" +msgid "Blocked" +msgstr "crwdns1316:0crwdne1316:0" + +#. Label of a Card Break in the Website Workspace +#: website/doctype/blog_post/blog_post.py:239 +#: website/doctype/blog_post/templates/blog_post.html:13 +#: website/doctype/blog_post/templates/blog_post_list.html:2 +#: website/doctype/blog_post/templates/blog_post_list.html:11 +#: website/workspace/website/website.json +msgid "Blog" +msgstr "crwdns1318:0crwdne1318:0" + +#. Name of a DocType +#: website/doctype/blog_category/blog_category.json +msgid "Blog Category" +msgstr "crwdns1320:0crwdne1320:0" + +#. Label of a Link in the Website Workspace +#: website/workspace/website/website.json +msgctxt "Blog Category" +msgid "Blog Category" +msgstr "crwdns1322:0crwdne1322:0" + +#. Label of a Link field in DocType 'Blog Post' +#: website/doctype/blog_post/blog_post.json +msgctxt "Blog Post" +msgid "Blog Category" +msgstr "crwdns1324:0crwdne1324:0" + +#. Label of a Small Text field in DocType 'Blog Post' +#: website/doctype/blog_post/blog_post.json +msgctxt "Blog Post" +msgid "Blog Intro" +msgstr "crwdns1326:0crwdne1326:0" + +#. Label of a Small Text field in DocType 'Blog Settings' +#: website/doctype/blog_settings/blog_settings.json +msgctxt "Blog Settings" +msgid "Blog Introduction" +msgstr "crwdns1328:0crwdne1328:0" + +#. Name of a DocType +#: website/doctype/blog_post/blog_post.json +msgid "Blog Post" +msgstr "crwdns1330:0crwdne1330:0" + +#. Linked DocType in Blog Category's connections +#: website/doctype/blog_category/blog_category.json +msgctxt "Blog Category" +msgid "Blog Post" +msgstr "crwdns1332:0crwdne1332:0" + +#. Label of a Link in the Website Workspace +#. Label of a shortcut in the Website Workspace +#: website/workspace/website/website.json +msgctxt "Blog Post" +msgid "Blog Post" +msgstr "crwdns1334:0crwdne1334:0" + +#. Linked DocType in Blogger's connections +#: website/doctype/blogger/blogger.json +msgctxt "Blogger" +msgid "Blog Post" +msgstr "crwdns1336:0crwdne1336:0" + +#. Name of a DocType +#: website/doctype/blog_settings/blog_settings.json +msgid "Blog Settings" +msgstr "crwdns1338:0crwdne1338:0" + +#. Label of a Data field in DocType 'Blog Settings' +#: website/doctype/blog_settings/blog_settings.json +msgctxt "Blog Settings" +msgid "Blog Title" +msgstr "crwdns1340:0crwdne1340:0" + +#. Name of a role +#. Name of a DocType +#: website/doctype/blog_category/blog_category.json +#: website/doctype/blog_post/blog_post.json +#: website/doctype/blog_settings/blog_settings.json +#: website/doctype/blogger/blogger.json +msgid "Blogger" +msgstr "crwdns1342:0crwdne1342:0" + +#. Label of a Link field in DocType 'Blog Post' +#: website/doctype/blog_post/blog_post.json +msgctxt "Blog Post" +msgid "Blogger" +msgstr "crwdns1344:0crwdne1344:0" + +#. Label of a Link in the Website Workspace +#. Label of a shortcut in the Website Workspace +#: website/workspace/website/website.json +msgctxt "Blogger" +msgid "Blogger" +msgstr "crwdns1346:0crwdne1346:0" + +#. Linked DocType in User's connections +#: core/doctype/user/user.json +msgctxt "User" +msgid "Blogger" +msgstr "crwdns1348:0crwdne1348:0" + +#. Subtitle of the Module Onboarding 'Website' +#: website/module_onboarding/website/website.json +msgid "Blogs, Website View Tracking, and more." +msgstr "crwdns1350:0crwdne1350:0" + +#. Option for a Select field in DocType 'DocType State' +#: core/doctype/doctype_state/doctype_state.json +msgctxt "DocType State" +msgid "Blue" +msgstr "crwdns1352:0crwdne1352:0" + +#. Option for a Select field in DocType 'Kanban Board Column' +#: desk/doctype/kanban_board_column/kanban_board_column.json +msgctxt "Kanban Board Column" +msgid "Blue" +msgstr "crwdns1354:0crwdne1354:0" + +#. Label of a Check field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Bold" +msgstr "crwdns1356:0crwdne1356:0" + +#. Label of a Check field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Bold" +msgstr "crwdns1358:0crwdne1358:0" + +#. Label of a Check field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Bold" +msgstr "crwdns1360:0crwdne1360:0" + +#. Option for a Select field in DocType 'Comment' +#: core/doctype/comment/comment.json +msgctxt "Comment" +msgid "Bot" +msgstr "crwdns1362:0crwdne1362:0" + +#: printing/page/print_format_builder/print_format_builder.js:126 +msgid "Both DocType and Name required" +msgstr "crwdns1364:0crwdne1364:0" + +#. Option for a Select field in DocType 'Form Tour Step' +#: desk/doctype/form_tour_step/form_tour_step.json +msgctxt "Form Tour Step" +msgid "Bottom" +msgstr "crwdns1366:0crwdne1366:0" + +#. Option for a Select field in DocType 'Form Tour Step' +#: desk/doctype/form_tour_step/form_tour_step.json +msgctxt "Form Tour Step" +msgid "Bottom Center" +msgstr "crwdns1368:0crwdne1368:0" + +#. Option for a Select field in DocType 'Print Format' +#: printing/doctype/print_format/print_format.json +msgctxt "Print Format" +msgid "Bottom Center" +msgstr "crwdns1370:0crwdne1370:0" + +#. Option for a Select field in DocType 'Print Format' +#: printing/doctype/print_format/print_format.json +msgctxt "Print Format" +msgid "Bottom Left" +msgstr "crwdns1372:0crwdne1372:0" + +#. Option for a Select field in DocType 'Form Tour Step' +#: desk/doctype/form_tour_step/form_tour_step.json +msgctxt "Form Tour Step" +msgid "Bottom Right" +msgstr "crwdns1374:0crwdne1374:0" + +#. Option for a Select field in DocType 'Print Format' +#: printing/doctype/print_format/print_format.json +msgctxt "Print Format" +msgid "Bottom Right" +msgstr "crwdns1376:0crwdne1376:0" + +#. Option for a Select field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Bounced" +msgstr "crwdns1378:0crwdne1378:0" + +#. Label of a Section Break field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Brand" +msgstr "crwdns1380:0crwdne1380:0" + +#. Label of a Code field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Brand HTML" +msgstr "crwdns1382:0crwdne1382:0" + +#. Label of a Attach Image field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Brand Image" +msgstr "crwdns1384:0crwdne1384:0" + +#. Label of a Attach Image field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Brand Logo" +msgstr "crwdns1386:0crwdne1386:0" + +#. Description of a Code field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Brand is what appears on the top-left of the toolbar. If it is an image, make sure it\n" +"has a transparent background and use the <img /> tag. Keep size as 200px x 30px" +msgstr "crwdns1388:0crwdne1388:0" + +#. Label of a Code field in DocType 'Web Form' +#: website/doctype/web_form/web_form.json +msgctxt "Web Form" +msgid "Breadcrumbs" +msgstr "crwdns1390:0crwdne1390:0" + +#. Label of a Code field in DocType 'Web Page' +#: website/doctype/web_page/web_page.json +msgctxt "Web Page" +msgid "Breadcrumbs" +msgstr "crwdns1392:0crwdne1392:0" + +#: website/doctype/blog_post/templates/blog_post_list.html:18 +#: website/doctype/blog_post/templates/blog_post_list.html:21 +msgid "Browse by category" +msgstr "crwdns1394:0crwdne1394:0" + +#. Label of a Check field in DocType 'Blog Settings' +#: website/doctype/blog_settings/blog_settings.json +msgctxt "Blog Settings" +msgid "Browse by category" +msgstr "crwdns1396:0crwdne1396:0" + +#: website/report/website_analytics/website_analytics.js:36 +msgid "Browser" +msgstr "crwdns1398:0crwdne1398:0" + +#. Label of a Data field in DocType 'Web Page View' +#: website/doctype/web_page_view/web_page_view.json +msgctxt "Web Page View" +msgid "Browser" +msgstr "crwdns1400:0crwdne1400:0" + +#. Label of a Data field in DocType 'Web Page View' +#: website/doctype/web_page_view/web_page_view.json +msgctxt "Web Page View" +msgid "Browser Version" +msgstr "crwdns1402:0crwdne1402:0" + +#: public/js/frappe/desk.js:19 +msgid "Browser not supported" +msgstr "crwdns1404:0crwdne1404:0" + +#. Label of a Section Break field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Brute Force Security" +msgstr "crwdns1406:0crwdne1406:0" + +#. Label of a Data field in DocType 'S3 Backup Settings' +#: integrations/doctype/s3_backup_settings/s3_backup_settings.json +msgctxt "S3 Backup Settings" +msgid "Bucket Name" +msgstr "crwdns1408:0crwdne1408:0" + +#: integrations/doctype/s3_backup_settings/s3_backup_settings.py:66 +msgid "Bucket {0} not found." +msgstr "crwdns1410:0{0}crwdne1410:0" + +#. Name of a Workspace +#: core/workspace/build/build.json +msgid "Build" +msgstr "crwdns1412:0crwdne1412:0" + +#: workflow/doctype/workflow/workflow_list.js:18 +msgid "Build {0}" +msgstr "crwdns1414:0{0}crwdne1414:0" + +#. Label of a Check field in DocType 'Role' +#: core/doctype/role/role.json +msgctxt "Role" +msgid "Bulk Actions" +msgstr "crwdns1416:0crwdne1416:0" + +#: core/doctype/user_permission/user_permission_list.js:142 +msgid "Bulk Delete" +msgstr "crwdns1418:0crwdne1418:0" + +#: public/js/frappe/list/bulk_operations.js:256 +msgid "Bulk Edit" +msgstr "crwdns1420:0crwdne1420:0" + +#: public/js/frappe/form/grid.js:1151 +msgid "Bulk Edit {0}" +msgstr "crwdns1422:0{0}crwdne1422:0" + +#. Name of a DocType +#: desk/doctype/bulk_update/bulk_update.json +msgid "Bulk Update" +msgstr "crwdns1424:0crwdne1424:0" + +#. Label of a Link in the Tools Workspace +#: automation/workspace/tools/tools.json +msgctxt "Bulk Update" +msgid "Bulk Update" +msgstr "crwdns1426:0crwdne1426:0" + +#: model/workflow.py:253 +msgid "Bulk approval only support up to 500 documents." +msgstr "crwdns1428:0crwdne1428:0" + +#: desk/doctype/bulk_update/bulk_update.py:57 +msgid "Bulk operation is enqueued in background." +msgstr "crwdns1430:0crwdne1430:0" + +#: desk/doctype/bulk_update/bulk_update.py:70 +msgid "Bulk operations only support up to 500 documents." +msgstr "crwdns1432:0crwdne1432:0" + +#: model/workflow.py:243 +msgid "Bulk {0} is enqueued in background." +msgstr "crwdns1434:0{0}crwdne1434:0" + +#. Option for a Select field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Button" +msgstr "crwdns1436:0crwdne1436:0" + +#. Option for a Select field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Button" +msgstr "crwdns1438:0crwdne1438:0" + +#. Option for a Select field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Button" +msgstr "crwdns1440:0crwdne1440:0" + +#. Label of a Check field in DocType 'Website Theme' +#: website/doctype/website_theme/website_theme.json +msgctxt "Website Theme" +msgid "Button Gradients" +msgstr "crwdns1442:0crwdne1442:0" + +#. Label of a Check field in DocType 'Website Theme' +#: website/doctype/website_theme/website_theme.json +msgctxt "Website Theme" +msgid "Button Rounded Corners" +msgstr "crwdns1444:0crwdne1444:0" + +#. Label of a Check field in DocType 'Website Theme' +#: website/doctype/website_theme/website_theme.json +msgctxt "Website Theme" +msgid "Button Shadows" +msgstr "crwdns1446:0crwdne1446:0" + +#. Option for a Select field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "By \"Naming Series\" field" +msgstr "crwdns1448:0crwdne1448:0" + +#. Option for a Select field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "By \"Naming Series\" field" +msgstr "crwdns1450:0crwdne1450:0" + +#: website/doctype/web_page/web_page.js:111 +#: 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 "crwdns1452:0crwdne1452:0" + +#. Description of a Check field in DocType 'S3 Backup Settings' +#: integrations/doctype/s3_backup_settings/s3_backup_settings.json +msgctxt "S3 Backup Settings" +msgid "By default, emails are only sent for failed backups." +msgstr "crwdns1454:0crwdne1454:0" + +#. Option for a Select field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "By fieldname" +msgstr "crwdns1456:0crwdne1456:0" + +#. Option for a Select field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "By fieldname" +msgstr "crwdns1458:0crwdne1458:0" + +#. Option for a Select field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "By script" +msgstr "crwdns1460:0crwdne1460:0" + +#. Option for a Select field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "By script" +msgstr "crwdns1462:0crwdne1462:0" + +#. Label of a Check field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Bypass Restricted IP Address Check If Two Factor Auth Enabled" +msgstr "crwdns1464:0crwdne1464:0" + +#. Label of a Check field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Bypass Two Factor Auth for users who login from restricted IP Address" +msgstr "crwdns1466:0crwdne1466:0" + +#. Label of a Check field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Bypass restricted IP Address check If Two Factor Auth Enabled" +msgstr "crwdns1468:0crwdne1468:0" + +#. Option for a Select field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "C5E" +msgstr "crwdns1470:0crwdne1470:0" + +#: templates/print_formats/standard_macros.html:212 +msgid "CANCELLED" +msgstr "crwdns1472:0crwdne1472:0" + +#: public/js/frappe/views/communication.js:71 +msgid "CC" +msgstr "crwdns1474:0crwdne1474:0" + +#. Label of a Code field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "CC" +msgstr "crwdns1476:0crwdne1476:0" + +#. Label of a Code field in DocType 'Notification Recipient' +#: email/doctype/notification_recipient/notification_recipient.json +msgctxt "Notification Recipient" +msgid "CC" +msgstr "crwdns1478:0crwdne1478:0" + +#. Label of a Data field in DocType 'Recorder' +#: core/doctype/recorder/recorder.json +msgctxt "Recorder" +msgid "CMD" +msgstr "crwdns1480:0crwdne1480:0" + +#. Label of a Section Break field in DocType 'Custom HTML Block' +#: desk/doctype/custom_html_block/custom_html_block.json +msgctxt "Custom HTML Block" +msgid "CSS" +msgstr "crwdns1482:0crwdne1482:0" + +#. Label of a Code field in DocType 'Print Style' +#: printing/doctype/print_style/print_style.json +msgctxt "Print Style" +msgid "CSS" +msgstr "crwdns1484:0crwdne1484:0" + +#. Label of a Code field in DocType 'Web Page' +#: website/doctype/web_page/web_page.json +msgctxt "Web Page" +msgid "CSS" +msgstr "crwdns1486:0crwdne1486:0" + +#. Label of a Small Text field in DocType 'Web Page Block' +#: website/doctype/web_page_block/web_page_block.json +msgctxt "Web Page Block" +msgid "CSS Class" +msgstr "crwdns1488:0crwdne1488:0" + +#. Description of a Data field in DocType 'Form Tour Step' +#: desk/doctype/form_tour_step/form_tour_step.json +msgctxt "Form Tour Step" +msgid "CSS selector for the element you want to highlight." +msgstr "crwdns1490:0crwdne1490:0" + +#. Option for a Select field in DocType 'Auto Email Report' +#: email/doctype/auto_email_report/auto_email_report.json +msgctxt "Auto Email Report" +msgid "CSV" +msgstr "crwdns1492:0crwdne1492:0" + +#. Option for a Select field in DocType 'Data Export' +#: core/doctype/data_export/data_export.json +msgctxt "Data Export" +msgid "CSV" +msgstr "crwdns1494:0crwdne1494:0" + +#. Label of a Data field in DocType 'Blog Settings' +#: website/doctype/blog_settings/blog_settings.json +msgctxt "Blog Settings" +msgid "CTA Label" +msgstr "crwdns1496:0crwdne1496:0" + +#. Label of a Data field in DocType 'Blog Settings' +#: website/doctype/blog_settings/blog_settings.json +msgctxt "Blog Settings" +msgid "CTA URL" +msgstr "crwdns1498:0crwdne1498:0" + +#: sessions.py:31 +msgid "Cache Cleared" +msgstr "crwdns1500:0crwdne1500:0" + +#: public/js/frappe/ui/toolbar/awesome_bar.js:181 +msgid "Calculate" +msgstr "crwdns1502:0crwdne1502:0" + +#. Label of a Link in the Tools Workspace +#: automation/workspace/tools/tools.json +msgctxt "Event" +msgid "Calendar" +msgstr "crwdns1504:0crwdne1504:0" + +#. Option for a Select field in DocType 'Form Tour' +#: desk/doctype/form_tour/form_tour.json +msgctxt "Form Tour" +msgid "Calendar" +msgstr "crwdns1506:0crwdne1506:0" + +#. Option for a Select field in DocType 'Workspace Shortcut' +#: desk/doctype/workspace_shortcut/workspace_shortcut.json +msgctxt "Workspace Shortcut" +msgid "Calendar" +msgstr "crwdns1508:0crwdne1508:0" + +#. Label of a Data field in DocType 'Google Calendar' +#: integrations/doctype/google_calendar/google_calendar.json +msgctxt "Google Calendar" +msgid "Calendar Name" +msgstr "crwdns1510:0crwdne1510:0" + +#. Name of a DocType +#: desk/doctype/calendar_view/calendar_view.json +msgid "Calendar View" +msgstr "crwdns1512:0crwdne1512:0" + +#. Linked DocType in DocType's connections +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Calendar View" +msgstr "crwdns1514:0crwdne1514:0" + +#: contacts/doctype/contact/contact.js:50 +msgid "Call" +msgstr "crwdns1516:0crwdne1516:0" + +#. Option for a Select field in DocType 'Event' +#: desk/doctype/event/event.json +msgctxt "Event" +msgid "Call" +msgstr "crwdns1518:0crwdne1518:0" + +#. Label of a Data field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Call To Action" +msgstr "crwdns1520:0crwdne1520:0" + +#. Label of a Data field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Call To Action URL" +msgstr "crwdns1522:0crwdne1522:0" + +#. Label of a Section Break field in DocType 'Blog Settings' +#: website/doctype/blog_settings/blog_settings.json +msgctxt "Blog Settings" +msgid "Call to Action" +msgstr "crwdns1524:0crwdne1524:0" + +#. Label of a Small Text field in DocType 'Onboarding Step' +#: desk/doctype/onboarding_step/onboarding_step.json +msgctxt "Onboarding Step" +msgid "Callback Message" +msgstr "crwdns1526:0crwdne1526:0" + +#. Label of a Data field in DocType 'Onboarding Step' +#: desk/doctype/onboarding_step/onboarding_step.json +msgctxt "Onboarding Step" +msgid "Callback Title" +msgstr "crwdns1528:0crwdne1528:0" + +#: public/js/frappe/ui/capture.js:326 +msgid "Camera" +msgstr "crwdns1530:0crwdne1530:0" + +#: public/js/frappe/utils/utils.js:1711 +#: website/report/website_analytics/website_analytics.js:39 +msgid "Campaign" +msgstr "crwdns1532:0crwdne1532:0" + +#. Label of a Link field in DocType 'Newsletter' +#: email/doctype/newsletter/newsletter.json +msgctxt "Newsletter" +msgid "Campaign" +msgstr "crwdns1534:0crwdne1534:0" + +#. Label of a Data field in DocType 'Web Page View' +#: website/doctype/web_page_view/web_page_view.json +msgctxt "Web Page View" +msgid "Campaign" +msgstr "crwdns1536:0crwdne1536:0" + +#. Label of a Small Text field in DocType 'Marketing Campaign' +#: website/doctype/marketing_campaign/marketing_campaign.json +msgctxt "Marketing Campaign" +msgid "Campaign Description (Optional)" +msgstr "crwdns1538:0crwdne1538:0" + +#: custom/doctype/custom_field/custom_field.py:360 +msgid "Can not rename as column {0} is already present on DocType." +msgstr "crwdns1540:0{0}crwdne1540:0" + +#: core/doctype/doctype/doctype.py:1114 +msgid "Can only change to/from Autoincrement naming rule when there is no data in the doctype" +msgstr "crwdns1542:0crwdne1542:0" + +#. Description of a Link field in DocType 'User Type' +#: core/doctype/user_type/user_type.json +msgctxt "User Type" +msgid "Can only list down the document types which has been linked to the User document type." +msgstr "crwdns1544:0crwdne1544:0" + +#: model/rename_doc.py:366 +msgid "Can't rename {0} to {1} because {0} doesn't exist." +msgstr "crwdns1546:0{0}crwdnd1546:0{1}crwdnd1546:0{0}crwdne1546:0" + +#: core/doctype/doctype/doctype_list.js:113 +#: public/js/frappe/form/reminders.js:54 +msgid "Cancel" +msgstr "crwdns1548:0crwdne1548:0" + +#: public/js/frappe/list/list_view.js:1889 +msgctxt "Button in list view actions menu" +msgid "Cancel" +msgstr "crwdns1550:0crwdne1550:0" + +#. Label of a Check field in DocType 'Custom DocPerm' +#: core/doctype/custom_docperm/custom_docperm.json +msgctxt "Custom DocPerm" +msgid "Cancel" +msgstr "crwdns1552:0crwdne1552:0" + +#. Label of a Check field in DocType 'DocPerm' +#: core/doctype/docperm/docperm.json +msgctxt "DocPerm" +msgid "Cancel" +msgstr "crwdns1554:0crwdne1554:0" + +#. Option for a Select field in DocType 'Energy Point Rule' +#: social/doctype/energy_point_rule/energy_point_rule.json +msgctxt "Energy Point Rule" +msgid "Cancel" +msgstr "crwdns1556:0crwdne1556:0" + +#. Option for a Select field in DocType 'Notification' +#: email/doctype/notification/notification.json +msgctxt "Notification" +msgid "Cancel" +msgstr "crwdns1558:0crwdne1558:0" + +#: public/js/frappe/ui/messages.js:68 +msgctxt "Secondary button in warning dialog" +msgid "Cancel" +msgstr "crwdns1560:0crwdne1560:0" + +#. Label of a Check field in DocType 'User Document Type' +#: core/doctype/user_document_type/user_document_type.json +msgctxt "User Document Type" +msgid "Cancel" +msgstr "crwdns1562:0crwdne1562:0" + +#: public/js/frappe/form/form.js:998 +msgid "Cancel All" +msgstr "crwdns1564:0crwdne1564:0" + +#: public/js/frappe/form/form.js:985 +msgid "Cancel All Documents" +msgstr "crwdns1566:0crwdne1566:0" + +#: email/doctype/newsletter/newsletter.js:132 +msgid "Cancel Scheduling" +msgstr "crwdns1568:0crwdne1568:0" + +#: public/js/frappe/list/list_view.js:1894 +msgctxt "Title of confirmation dialog" +msgid "Cancel {0} documents?" +msgstr "crwdns1570:0{0}crwdne1570:0" + +#: desk/form/save.py:59 public/js/frappe/model/indicator.js:78 +#: public/js/frappe/ui/filters/filter.js:495 +msgid "Cancelled" +msgstr "crwdns1572:0crwdne1572:0" + +#. Option for a Select field in DocType 'Comment' +#: core/doctype/comment/comment.json +msgctxt "Comment" +msgid "Cancelled" +msgstr "crwdns1574:0crwdne1574:0" + +#. Option for a Select field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Cancelled" +msgstr "crwdns1576:0crwdne1576:0" + +#. Option for a Select field in DocType 'Event' +#: desk/doctype/event/event.json +msgctxt "Event" +msgid "Cancelled" +msgstr "crwdns1578:0crwdne1578:0" + +#. Option for a Select field in DocType 'Integration Request' +#: integrations/doctype/integration_request/integration_request.json +msgctxt "Integration Request" +msgid "Cancelled" +msgstr "crwdns1580:0crwdne1580:0" + +#. Option for a Select field in DocType 'ToDo' +#: desk/doctype/todo/todo.json +msgctxt "ToDo" +msgid "Cancelled" +msgstr "crwdns1582:0crwdne1582:0" + +#: core/doctype/deleted_document/deleted_document.py:51 +msgid "Cancelled Document restored as Draft" +msgstr "crwdns1584:0crwdne1584:0" + +#: public/js/frappe/form/save.js:13 +msgctxt "Freeze message while cancelling a document" +msgid "Cancelling" +msgstr "crwdns1586:0crwdne1586:0" + +#: desk/form/linked_with.py:379 +msgid "Cancelling documents" +msgstr "crwdns1588:0crwdne1588:0" + +#: desk/doctype/bulk_update/bulk_update.py:94 +msgid "Cancelling {0}" +msgstr "crwdns1590:0{0}crwdne1590:0" + +#: core/doctype/prepared_report/prepared_report.py:244 +msgid "Cannot Download Report due to insufficient permissions" +msgstr "crwdns1592:0crwdne1592:0" + +#: client.py:461 +msgid "Cannot Fetch Values" +msgstr "crwdns1594:0crwdne1594:0" + +#: core/page/permission_manager/permission_manager.py:150 +msgid "Cannot Remove" +msgstr "crwdns1596:0crwdne1596:0" + +#: model/base_document.py:1034 +msgid "Cannot Update After Submit" +msgstr "crwdns1598:0crwdne1598:0" + +#: core/doctype/file/file.py:574 +msgid "Cannot access file path {0}" +msgstr "crwdns1600:0{0}crwdne1600:0" + +#: public/js/workflow_builder/utils.js:183 +msgid "Cannot cancel before submitting while transitioning from {0} State to {1} State" +msgstr "crwdns1602:0{0}crwdnd1602:0{1}crwdne1602:0" + +#: workflow/doctype/workflow/workflow.py:112 +msgid "Cannot cancel before submitting. See Transition {0}" +msgstr "crwdns1604:0{0}crwdne1604:0" + +#: public/js/frappe/list/bulk_operations.js:229 +msgid "Cannot cancel {0}." +msgstr "crwdns1606:0{0}crwdne1606:0" + +#: model/document.py:838 +msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)" +msgstr "crwdns1608:0crwdne1608:0" + +#: model/document.py:852 +msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)" +msgstr "crwdns1610:0crwdne1610:0" + +#: public/js/workflow_builder/utils.js:170 +msgid "Cannot change state of Cancelled Document ({0} State)" +msgstr "crwdns1612:0{0}crwdne1612:0" + +#: workflow/doctype/workflow/workflow.py:101 +msgid "Cannot change state of Cancelled Document. Transition row {0}" +msgstr "crwdns1614:0{0}crwdne1614:0" + +#: core/doctype/doctype/doctype.py:1104 +msgid "Cannot change to/from autoincrement autoname in Customize Form" +msgstr "crwdns1616:0crwdne1616:0" + +#: core/doctype/communication/communication.py:193 +msgid "Cannot create a {0} against a child document: {1}" +msgstr "crwdns1618:0{0}crwdnd1618:0{1}crwdne1618:0" + +#: desk/doctype/workspace/workspace.py:250 +msgid "Cannot create private workspace of other users" +msgstr "crwdns1620:0crwdne1620:0" + +#: core/doctype/file/file.py:151 +msgid "Cannot delete Home and Attachments folders" +msgstr "crwdns1622:0crwdne1622:0" + +#: model/delete_doc.py:367 +msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}" +msgstr "crwdns1624:0{0}crwdnd1624:0{1}crwdnd1624:0{2}crwdnd1624:0{3}crwdnd1624:0{4}crwdne1624:0" + +#: desk/doctype/workspace/workspace.py:417 +msgid "Cannot delete private workspace of other users" +msgstr "crwdns1626:0crwdne1626:0" + +#: desk/doctype/workspace/workspace.py:410 +msgid "Cannot delete public workspace without Workspace Manager role" +msgstr "crwdns1628:0crwdne1628:0" + +#: custom/doctype/customize_form/customize_form.js:313 +msgid "Cannot delete standard action. You can hide it if you want" +msgstr "crwdns1630:0crwdne1630:0" + +#: custom/doctype/customize_form/customize_form.js:328 +msgid "Cannot delete standard document state." +msgstr "crwdns1632:0crwdne1632:0" + +#: custom/doctype/customize_form/customize_form.js:276 +msgid "Cannot delete standard field {0}. You can hide it instead." +msgstr "crwdns1634:0{0}crwdne1634:0" + +#: custom/doctype/customize_form/customize_form.js:298 +msgid "Cannot delete standard link. You can hide it if you want" +msgstr "crwdns1636:0crwdne1636:0" + +#: custom/doctype/customize_form/customize_form.js:268 +msgid "Cannot delete system generated field {0}. You can hide it instead." +msgstr "crwdns1638:0{0}crwdne1638:0" + +#: public/js/frappe/list/bulk_operations.js:171 +msgid "Cannot delete {0}" +msgstr "crwdns1640:0{0}crwdne1640:0" + +#: utils/nestedset.py:302 +msgid "Cannot delete {0} as it has child nodes" +msgstr "crwdns1642:0{0}crwdne1642:0" + +#: desk/doctype/dashboard/dashboard.py:49 +msgid "Cannot edit Standard Dashboards" +msgstr "crwdns1644:0crwdne1644:0" + +#: email/doctype/notification/notification.py:120 +msgid "Cannot edit Standard Notification. To edit, please disable this and duplicate it" +msgstr "crwdns1646:0crwdne1646:0" + +#: desk/doctype/dashboard_chart/dashboard_chart.py:388 +msgid "Cannot edit Standard charts" +msgstr "crwdns1648:0crwdne1648:0" + +#: core/doctype/report/report.py:68 +msgid "Cannot edit a standard report. Please duplicate and create a new report" +msgstr "crwdns1650:0crwdne1650:0" + +#: model/document.py:858 +msgid "Cannot edit cancelled document" +msgstr "crwdns1652:0crwdne1652:0" + +#: desk/doctype/dashboard_chart/dashboard_chart.js:378 +msgid "Cannot edit filters for standard charts" +msgstr "crwdns1654:0crwdne1654:0" + +#: client.py:166 +msgid "Cannot edit standard fields" +msgstr "crwdns1656:0crwdne1656:0" + +#: automation/doctype/auto_repeat/auto_repeat.py:124 +msgid "Cannot enable {0} for a non-submittable doctype" +msgstr "crwdns1658:0{0}crwdne1658:0" + +#: core/doctype/file/file.py:249 +msgid "Cannot find file {} on disk" +msgstr "crwdns1660:0crwdne1660:0" + +#: core/doctype/file/file.py:520 +msgid "Cannot get file contents of a Folder" +msgstr "crwdns1662:0crwdne1662:0" + +#: printing/page/print/print.js:817 +msgid "Cannot have multiple printers mapped to a single print format." +msgstr "crwdns1664:0crwdne1664:0" + +#: model/document.py:926 +msgid "Cannot link cancelled document: {0}" +msgstr "crwdns1666:0{0}crwdne1666:0" + +#: model/mapper.py:184 +msgid "Cannot map because following condition fails:" +msgstr "crwdns1668:0crwdne1668:0" + +#: core/doctype/data_import/importer.py:924 +msgid "Cannot match column {0} with any field" +msgstr "crwdns1670:0{0}crwdne1670:0" + +#: public/js/frappe/form/grid_row.js:172 +msgid "Cannot move row" +msgstr "crwdns1672:0crwdne1672:0" + +#: public/js/frappe/views/reports/report_view.js:865 +msgid "Cannot remove ID field" +msgstr "crwdns1674:0crwdne1674:0" + +#: email/doctype/notification/notification.py:136 +msgid "Cannot set Notification on Document Type {0}" +msgstr "crwdns1676:0{0}crwdne1676:0" + +#: core/doctype/docshare/docshare.py:69 +msgid "Cannot share {0} with submit permission as the doctype {1} is not submittable" +msgstr "crwdns1678:0{0}crwdnd1678:0{1}crwdne1678:0" + +#: public/js/frappe/list/bulk_operations.js:226 +msgid "Cannot submit {0}." +msgstr "crwdns1680:0{0}crwdne1680:0" + +#: desk/doctype/workspace/workspace.py:351 +msgid "Cannot update private workspace of other users" +msgstr "crwdns1682:0crwdne1682:0" + +#: desk/doctype/bulk_update/bulk_update.js:26 +#: public/js/frappe/list/bulk_operations.js:301 +msgid "Cannot update {0}" +msgstr "crwdns1684:0{0}crwdne1684:0" + +#: model/db_query.py:1126 +msgid "Cannot use sub-query in order by" +msgstr "crwdns1686:0crwdne1686:0" + +#: model/db_query.py:1144 +msgid "Cannot use {0} in order/group by" +msgstr "crwdns1688:0{0}crwdne1688:0" + +#: public/js/frappe/list/bulk_operations.js:232 +msgid "Cannot {0} {1}." +msgstr "crwdns1690:0{0}crwdnd1690:0{1}crwdne1690:0" + +#: utils/password_strength.py:185 +msgid "Capitalization doesn't help very much." +msgstr "crwdns1692:0crwdne1692:0" + +#: public/js/frappe/ui/capture.js:286 +msgid "Capture" +msgstr "crwdns1694:0crwdne1694:0" + +#. Label of a Link field in DocType 'Number Card Link' +#: desk/doctype/number_card_link/number_card_link.json +msgctxt "Number Card Link" +msgid "Card" +msgstr "crwdns1696:0crwdne1696:0" + +#. Option for a Select field in DocType 'Workspace Link' +#: desk/doctype/workspace_link/workspace_link.json +msgctxt "Workspace Link" +msgid "Card Break" +msgstr "crwdns1698:0crwdne1698:0" + +#: public/js/frappe/views/reports/query_report.js:261 +msgid "Card Label" +msgstr "crwdns1700:0crwdne1700:0" + +#: public/js/frappe/widgets/widget_dialog.js:227 +msgid "Card Links" +msgstr "crwdns1702:0crwdne1702:0" + +#. Label of a Table field in DocType 'Dashboard' +#: desk/doctype/dashboard/dashboard.json +msgctxt "Dashboard" +msgid "Cards" +msgstr "crwdns1704:0crwdne1704:0" + +#: public/js/frappe/views/interaction.js:72 +msgid "Category" +msgstr "crwdns1706:0crwdne1706:0" + +#. Label of a Data field in DocType 'Desktop Icon' +#: desk/doctype/desktop_icon/desktop_icon.json +msgctxt "Desktop Icon" +msgid "Category" +msgstr "crwdns1708:0crwdne1708:0" + +#. Label of a Link field in DocType 'Help Article' +#: website/doctype/help_article/help_article.json +msgctxt "Help Article" +msgid "Category" +msgstr "crwdns1710:0crwdne1710:0" + +#. Label of a Text field in DocType 'Help Category' +#: website/doctype/help_category/help_category.json +msgctxt "Help Category" +msgid "Category Description" +msgstr "crwdns1712:0crwdne1712:0" + +#. Label of a Data field in DocType 'Help Category' +#: website/doctype/help_category/help_category.json +msgctxt "Help Category" +msgid "Category Name" +msgstr "crwdns1714:0crwdne1714:0" + +#: utils/data.py:1491 +msgid "Cent" +msgstr "crwdns1716:0crwdne1716:0" + +#. Option for a Select field in DocType 'Letter Head' +#: printing/doctype/letter_head/letter_head.json +msgctxt "Letter Head" +msgid "Center" +msgstr "crwdns1718:0crwdne1718:0" + +#. Option for a Select field in DocType 'Web Page' +#: website/doctype/web_page/web_page.json +msgctxt "Web Page" +msgid "Center" +msgstr "crwdns1720:0crwdne1720:0" + +#: core/report/transaction_log_report/transaction_log_report.py:82 +msgid "Chain Integrity" +msgstr "crwdns1722:0crwdne1722:0" + +#. Label of a Small Text field in DocType 'Transaction Log' +#: core/doctype/transaction_log/transaction_log.json +msgctxt "Transaction Log" +msgid "Chaining Hash" +msgstr "crwdns1724:0crwdne1724:0" + +#: tests/test_translate.py:119 +msgid "Change" +msgstr "crwdns1726:0crwdne1726:0" + +#: tests/test_translate.py:120 +msgctxt "Coins" +msgid "Change" +msgstr "crwdns1728:0crwdne1728:0" + +#. Label of a Data field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Change Label (via Custom Translation)" +msgstr "crwdns1730:0crwdne1730:0" + +#. Label of a Section Break field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Change Password" +msgstr "crwdns1732:0crwdne1732:0" + +#: public/js/print_format_builder/print_format_builder.bundle.js:27 +msgid "Change Print Format" +msgstr "crwdns1734:0crwdne1734:0" + +#: desk/page/user_profile/user_profile_controller.js:51 +#: desk/page/user_profile/user_profile_controller.js:59 +msgid "Change User" +msgstr "crwdns1736:0crwdne1736:0" + +#. Description of a Section Break field in DocType 'Document Naming Settings' +#: core/doctype/document_naming_settings/document_naming_settings.json +msgctxt "Document Naming Settings" +msgid "Change the starting / current sequence number of an existing series.
\n\n" +"Warning: Incorrectly updating counters can prevent documents from getting created. " +msgstr "crwdns1738:0crwdne1738:0" + +#: email/doctype/email_domain/email_domain.js:5 +msgid "Changing any setting will reflect on all the email accounts associated with this domain." +msgstr "crwdns1740:0crwdne1740:0" + +#: core/doctype/system_settings/system_settings.js:62 +msgid "Changing rounding method on site with data can result in unexpected behaviour." +msgstr "crwdns1742:0crwdne1742:0" + +#. Label of a Select field in DocType 'Notification' +#: email/doctype/notification/notification.json +msgctxt "Notification" +msgid "Channel" +msgstr "crwdns1744:0crwdne1744:0" + +#. Label of a Link field in DocType 'Dashboard Chart Link' +#: desk/doctype/dashboard_chart_link/dashboard_chart_link.json +msgctxt "Dashboard Chart Link" +msgid "Chart" +msgstr "crwdns1746:0crwdne1746:0" + +#. Label of a Code field in DocType 'Dashboard Settings' +#: desk/doctype/dashboard_settings/dashboard_settings.json +msgctxt "Dashboard Settings" +msgid "Chart Configuration" +msgstr "crwdns1748:0crwdne1748:0" + +#. Label of a Data field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "Chart Name" +msgstr "crwdns1750:0crwdne1750:0" + +#. Label of a Link field in DocType 'Workspace Chart' +#: desk/doctype/workspace_chart/workspace_chart.json +msgctxt "Workspace Chart" +msgid "Chart Name" +msgstr "crwdns1752:0crwdne1752:0" + +#. Label of a Code field in DocType 'Dashboard' +#: desk/doctype/dashboard/dashboard.json +msgctxt "Dashboard" +msgid "Chart Options" +msgstr "crwdns1754:0crwdne1754:0" + +#. Label of a Section Break field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "Chart Options" +msgstr "crwdns1756:0crwdne1756:0" + +#. Label of a Link field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "Chart Source" +msgstr "crwdns1758:0crwdne1758:0" + +#: public/js/frappe/views/reports/report_view.js:479 +msgid "Chart Type" +msgstr "crwdns1760:0crwdne1760:0" + +#. Label of a Select field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "Chart Type" +msgstr "crwdns1762:0crwdne1762:0" + +#. Label of a Table field in DocType 'Dashboard' +#: desk/doctype/dashboard/dashboard.json +msgctxt "Dashboard" +msgid "Charts" +msgstr "crwdns1764:0crwdne1764:0" + +#. Label of a Table field in DocType 'Workspace' +#: desk/doctype/workspace/workspace.json +msgctxt "Workspace" +msgid "Charts" +msgstr "crwdns1766:0crwdne1766:0" + +#. Option for a Select field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Chat" +msgstr "crwdns1768:0crwdne1768:0" + +#. Option for a Select field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Check" +msgstr "crwdns1770:0crwdne1770:0" + +#. Option for a Select field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Check" +msgstr "crwdns1772:0crwdne1772:0" + +#. Option for a Select field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Check" +msgstr "crwdns1774:0crwdne1774:0" + +#. Option for a Select field in DocType 'Report Column' +#: core/doctype/report_column/report_column.json +msgctxt "Report Column" +msgid "Check" +msgstr "crwdns1776:0crwdne1776:0" + +#. Option for a Select field in DocType 'Report Filter' +#: core/doctype/report_filter/report_filter.json +msgctxt "Report Filter" +msgid "Check" +msgstr "crwdns1778:0crwdne1778:0" + +#. Option for a Select field in DocType 'Web Form Field' +#: website/doctype/web_form_field/web_form_field.json +msgctxt "Web Form Field" +msgid "Check" +msgstr "crwdns1780:0crwdne1780:0" + +#. Option for a Select field in DocType 'Web Template Field' +#: website/doctype/web_template_field/web_template_field.json +msgctxt "Web Template Field" +msgid "Check" +msgstr "crwdns1782:0crwdne1782:0" + +#: integrations/doctype/webhook/webhook.py:95 +msgid "Check Request URL" +msgstr "crwdns1784:0crwdne1784:0" + +#: email/doctype/newsletter/newsletter.js:18 +msgid "Check broken links" +msgstr "crwdns1786:0crwdne1786:0" + +#: automation/doctype/auto_repeat/auto_repeat.py:442 +msgid "Check the Error Log for more information: {0}" +msgstr "crwdns1788:0{0}crwdne1788:0" + +#: 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 "crwdns1790:0crwdne1790:0" + +#. Description of a Check field in DocType 'Document Naming Settings' +#: core/doctype/document_naming_settings/document_naming_settings.json +msgctxt "Document Naming Settings" +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 "crwdns1792:0crwdne1792:0" + +#: email/doctype/newsletter/newsletter.js:20 +msgid "Checking broken links..." +msgstr "crwdns1794:0crwdne1794:0" + +#: public/js/frappe/desk.js:214 +msgid "Checking one moment" +msgstr "crwdns1796:0crwdne1796:0" + +#: website/doctype/website_settings/website_settings.js:140 +msgid "Checking this will enable tracking page views for blogs, web pages, etc." +msgstr "crwdns1798:0crwdne1798:0" + +#. Description of a Check field in DocType 'Workspace' +#: desk/doctype/workspace/workspace.json +msgctxt "Workspace" +msgid "Checking this will hide custom doctypes and reports cards in Links section" +msgstr "crwdns1800:0crwdne1800:0" + +#: 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 "crwdns1802:0crwdne1802:0" + +#: 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 "crwdns1804:0crwdne1804:0" + +#. Label of a Data field in DocType 'Transaction Log' +#: core/doctype/transaction_log/transaction_log.json +msgctxt "Transaction Log" +msgid "Checksum Version" +msgstr "crwdns1806:0crwdne1806:0" + +#: www/list.py:85 +msgid "Child DocTypes are not allowed" +msgstr "crwdns1808:0crwdne1808:0" + +#. Label of a Data field in DocType 'Form Tour Step' +#: desk/doctype/form_tour_step/form_tour_step.json +msgctxt "Form Tour Step" +msgid "Child Doctype" +msgstr "crwdns1810:0crwdne1810:0" + +#: core/doctype/doctype/doctype.py:1588 +msgid "Child Table {0} for field {1}" +msgstr "crwdns1812:0{0}crwdnd1812:0{1}crwdne1812:0" + +#: core/doctype/doctype/doctype_list.js:37 +msgid "Child Tables are shown as a Grid in other DocTypes" +msgstr "crwdns1814:0crwdne1814:0" + +#. Description of a Check field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Child Tables are shown as a Grid in other DocTypes" +msgstr "crwdns1816:0crwdne1816:0" + +#: public/js/frappe/widgets/widget_dialog.js:614 +msgid "Choose Existing Card or create New Card" +msgstr "crwdns1818:0crwdne1818:0" + +#: public/js/frappe/views/workspace/workspace.js:1385 +msgid "Choose a block or continue typing" +msgstr "crwdns1820:0crwdne1820:0" + +#: public/js/frappe/form/controls/color.js:5 +msgid "Choose a color" +msgstr "crwdns1822:0crwdne1822:0" + +#: public/js/frappe/form/controls/icon.js:5 +msgid "Choose an icon" +msgstr "crwdns1824:0crwdne1824:0" + +#. Description of a Select field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Choose authentication method to be used by all users" +msgstr "crwdns1826:0crwdne1826:0" + +#. Label of a Data field in DocType 'Contact Us Settings' +#: website/doctype/contact_us_settings/contact_us_settings.json +msgctxt "Contact Us Settings" +msgid "City" +msgstr "crwdns1828:0crwdne1828:0" + +#. Label of a Data field in DocType 'Address' +#: contacts/doctype/address/address.json +msgctxt "Address" +msgid "City/Town" +msgstr "crwdns1830:0crwdne1830:0" + +#: core/doctype/recorder/recorder_list.js:12 +msgid "Clear" +msgstr "crwdns1832:0crwdne1832:0" + +#: public/js/frappe/views/communication.js:321 +msgid "Clear & Add Template" +msgstr "crwdns1834:0crwdne1834:0" + +#: public/js/frappe/views/communication.js:98 +msgid "Clear & Add template" +msgstr "crwdns1836:0crwdne1836:0" + +#: public/js/frappe/ui/keyboard.js:275 +msgid "Clear Cache and Reload" +msgstr "crwdns1838:0crwdne1838:0" + +#: core/doctype/error_log/error_log_list.js:12 +msgid "Clear Error Logs" +msgstr "crwdns1840:0crwdne1840:0" + +#. Label of a Int field in DocType 'Logs To Clear' +#: core/doctype/logs_to_clear/logs_to_clear.json +msgctxt "Logs To Clear" +msgid "Clear Logs After (days)" +msgstr "crwdns1842:0crwdne1842:0" + +#: core/doctype/user_permission/user_permission_list.js:144 +msgid "Clear User Permissions" +msgstr "crwdns1844:0crwdne1844:0" + +#: public/js/frappe/views/communication.js:322 +msgid "Clear the email message and add the template" +msgstr "crwdns1846:0crwdne1846:0" + +#: website/doctype/web_page/web_page.py:214 +msgid "Clearing end date, as it cannot be in the past for published pages." +msgstr "crwdns1848:0crwdne1848:0" + +#: website/doctype/web_form/templates/web_form.html:144 +msgid "Click here" +msgstr "crwdns1850:0crwdne1850:0" + +#: email/doctype/newsletter/newsletter.py:335 +msgid "Click here to verify" +msgstr "crwdns1852:0crwdne1852:0" + +#: integrations/doctype/google_drive/google_drive.js:46 +msgid "Click on Authorize Google Drive Access to authorize Google Drive Access." +msgstr "crwdns1854:0crwdne1854:0" + +#: templates/emails/login_with_email_link.html:19 +msgid "Click on the button to log in to {0}" +msgstr "crwdns1856:0{0}crwdne1856:0" + +#: templates/emails/data_deletion_approval.html:2 +msgid "Click on the link below to approve the request" +msgstr "crwdns1858:0crwdne1858:0" + +#: templates/emails/new_user.html:7 +msgid "Click on the link below to complete your registration and set a new password" +msgstr "crwdns1860:0crwdne1860:0" + +#: templates/emails/download_data.html:3 +msgid "Click on the link below to download your data" +msgstr "crwdns1862:0crwdne1862:0" + +#: templates/emails/delete_data_confirmation.html:4 +msgid "Click on the link below to verify your request" +msgstr "crwdns1864:0crwdne1864:0" + +#: integrations/doctype/google_calendar/google_calendar.py:101 +#: integrations/doctype/google_contacts/google_contacts.py:40 +#: integrations/doctype/google_drive/google_drive.py:52 +#: website/doctype/website_settings/website_settings.py:161 +msgid "Click on {0} to generate Refresh Token." +msgstr "crwdns1866:0{0}crwdne1866:0" + +#: email/doctype/auto_email_report/auto_email_report.js:96 +msgid "Click table to edit" +msgstr "crwdns1868:0crwdne1868:0" + +#. Option for a Select field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Clicked" +msgstr "crwdns1870:0crwdne1870:0" + +#. Label of a Link field in DocType 'OAuth Authorization Code' +#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +msgctxt "OAuth Authorization Code" +msgid "Client" +msgstr "crwdns1872:0crwdne1872:0" + +#. Label of a Link field in DocType 'OAuth Bearer Token' +#: integrations/doctype/oauth_bearer_token/oauth_bearer_token.json +msgctxt "OAuth Bearer Token" +msgid "Client" +msgstr "crwdns1874:0crwdne1874:0" + +#. Label of a Section Break field in DocType 'Report' +#: core/doctype/report/report.json +msgctxt "Report" +msgid "Client Code" +msgstr "crwdns1876:0crwdne1876:0" + +#. Label of a Section Break field in DocType 'Connected App' +#: integrations/doctype/connected_app/connected_app.json +msgctxt "Connected App" +msgid "Client Credentials" +msgstr "crwdns1878:0crwdne1878:0" + +#. Label of a Section Break field in DocType 'Social Login Key' +#: integrations/doctype/social_login_key/social_login_key.json +msgctxt "Social Login Key" +msgid "Client Credentials" +msgstr "crwdns1880:0crwdne1880:0" + +#. Label of a Data field in DocType 'Google Settings' +#: integrations/doctype/google_settings/google_settings.json +msgctxt "Google Settings" +msgid "Client ID" +msgstr "crwdns1882:0crwdne1882:0" + +#. Label of a Data field in DocType 'Social Login Key' +#: integrations/doctype/social_login_key/social_login_key.json +msgctxt "Social Login Key" +msgid "Client ID" +msgstr "crwdns1884:0crwdne1884:0" + +#. Label of a Data field in DocType 'Connected App' +#: integrations/doctype/connected_app/connected_app.json +msgctxt "Connected App" +msgid "Client Id" +msgstr "crwdns1886:0crwdne1886:0" + +#. Label of a Section Break field in DocType 'Social Login Key' +#: integrations/doctype/social_login_key/social_login_key.json +msgctxt "Social Login Key" +msgid "Client Information" +msgstr "crwdns1888:0crwdne1888:0" + +#. Name of a DocType +#: custom/doctype/client_script/client_script.json +#: website/doctype/web_page/web_page.js:103 +msgid "Client Script" +msgstr "crwdns1890:0crwdne1890:0" + +#. Label of a Link in the Build Workspace +#. Label of a shortcut in the Build Workspace +#: core/workspace/build/build.json +msgctxt "Client Script" +msgid "Client Script" +msgstr "crwdns1892:0crwdne1892:0" + +#. Linked DocType in DocType's connections +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Client Script" +msgstr "crwdns1894:0crwdne1894:0" + +#. Label of a Code field in DocType 'DocType Layout' +#: custom/doctype/doctype_layout/doctype_layout.json +msgctxt "DocType Layout" +msgid "Client Script" +msgstr "crwdns1896:0crwdne1896:0" + +#. Linked DocType in Module Def's connections +#: core/doctype/module_def/module_def.json +msgctxt "Module Def" +msgid "Client Script" +msgstr "crwdns1898:0crwdne1898:0" + +#. Label of a Code field in DocType 'Web Form' +#: website/doctype/web_form/web_form.json +msgctxt "Web Form" +msgid "Client Script" +msgstr "crwdns1900:0crwdne1900:0" + +#. Label of a Password field in DocType 'Connected App' +#: integrations/doctype/connected_app/connected_app.json +msgctxt "Connected App" +msgid "Client Secret" +msgstr "crwdns1902:0crwdne1902:0" + +#. Label of a Password field in DocType 'Google Settings' +#: integrations/doctype/google_settings/google_settings.json +msgctxt "Google Settings" +msgid "Client Secret" +msgstr "crwdns1904:0crwdne1904:0" + +#. Label of a Password field in DocType 'Social Login Key' +#: integrations/doctype/social_login_key/social_login_key.json +msgctxt "Social Login Key" +msgid "Client Secret" +msgstr "crwdns1906:0crwdne1906:0" + +#. Label of a Section Break field in DocType 'Social Login Key' +#: integrations/doctype/social_login_key/social_login_key.json +msgctxt "Social Login Key" +msgid "Client URLs" +msgstr "crwdns1908:0crwdne1908:0" + +#: core/doctype/communication/communication.js:39 desk/doctype/todo/todo.js:23 +#: public/js/frappe/ui/messages.js:245 +msgid "Close" +msgstr "crwdns1910:0crwdne1910:0" + +#. Label of a Code field in DocType 'Assignment Rule' +#: automation/doctype/assignment_rule/assignment_rule.json +msgctxt "Assignment Rule" +msgid "Close Condition" +msgstr "crwdns1912:0crwdne1912:0" + +#. Option for a Select field in DocType 'Activity Log' +#: core/doctype/activity_log/activity_log.json +msgctxt "Activity Log" +msgid "Closed" +msgstr "crwdns1914:0crwdne1914:0" + +#. Option for a Select field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Closed" +msgstr "crwdns1916:0crwdne1916:0" + +#. Option for a Select field in DocType 'Event' +#: desk/doctype/event/event.json +msgctxt "Event" +msgid "Closed" +msgstr "crwdns1918:0crwdne1918:0" + +#. Option for a Select field in DocType 'ToDo' +#: desk/doctype/todo/todo.json +msgctxt "ToDo" +msgid "Closed" +msgstr "crwdns1920:0crwdne1920:0" + +#: templates/discussions/comment_box.html:25 +msgid "Cmd+Enter to add comment" +msgstr "crwdns1922:0crwdne1922:0" + +#. Label of a Data field in DocType 'Country' +#: geo/doctype/country/country.json +msgctxt "Country" +msgid "Code" +msgstr "crwdns1924:0crwdne1924:0" + +#. Option for a Select field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Code" +msgstr "crwdns1926:0crwdne1926:0" + +#. Option for a Select field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Code" +msgstr "crwdns1928:0crwdne1928:0" + +#. Option for a Select field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Code" +msgstr "crwdns1930:0crwdne1930:0" + +#. Option for a Select field in DocType 'OAuth Client' +#: integrations/doctype/oauth_client/oauth_client.json +msgctxt "OAuth Client" +msgid "Code" +msgstr "crwdns1932:0crwdne1932:0" + +#. Label of a Data field in DocType 'OAuth Authorization Code' +#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +msgctxt "OAuth Authorization Code" +msgid "Code Challenge" +msgstr "crwdns1934:0crwdne1934:0" + +#. Label of a Select field in DocType 'OAuth Authorization Code' +#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +msgctxt "OAuth Authorization Code" +msgid "Code challenge method" +msgstr "crwdns1936:0crwdne1936:0" + +#: public/js/frappe/form/form_tour.js:268 +#: public/js/frappe/widgets/base_widget.js:157 +msgid "Collapse" +msgstr "crwdns1938:0crwdne1938:0" + +#: public/js/frappe/form/controls/code.js:146 +msgctxt "Shrink code field." +msgid "Collapse" +msgstr "crwdns1940:0crwdne1940:0" + +#: public/js/frappe/views/treeview.js:121 +msgid "Collapse All" +msgstr "crwdns1942:0crwdne1942:0" + +#. Label of a Check field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Collapsible" +msgstr "crwdns1944:0crwdne1944:0" + +#. Label of a Check field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Collapsible" +msgstr "crwdns1946:0crwdne1946:0" + +#. Label of a Check field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Collapsible" +msgstr "crwdns1948:0crwdne1948:0" + +#. Label of a Code field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Collapsible Depends On" +msgstr "crwdns1950:0crwdne1950:0" + +#. Label of a Code field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Collapsible Depends On" +msgstr "crwdns1952:0crwdne1952:0" + +#. Label of a Code field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Collapsible Depends On (JS)" +msgstr "crwdns1954:0crwdne1954:0" + +#. Name of a DocType +#: public/js/frappe/views/reports/query_report.js:1140 +#: public/js/frappe/widgets/widget_dialog.js:505 +#: public/js/frappe/widgets/widget_dialog.js:657 +#: website/doctype/color/color.json +msgid "Color" +msgstr "crwdns1956:0crwdne1956:0" + +#. Label of a Color field in DocType 'Color' +#: website/doctype/color/color.json +msgctxt "Color" +msgid "Color" +msgstr "crwdns1958:0crwdne1958:0" + +#. Option for a Select field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Color" +msgstr "crwdns1960:0crwdne1960:0" + +#. Option for a Select field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Color" +msgstr "crwdns1962:0crwdne1962:0" + +#. Label of a Color field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "Color" +msgstr "crwdns1964:0crwdne1964:0" + +#. Label of a Color field in DocType 'Dashboard Chart Field' +#: desk/doctype/dashboard_chart_field/dashboard_chart_field.json +msgctxt "Dashboard Chart Field" +msgid "Color" +msgstr "crwdns1966:0crwdne1966:0" + +#. Label of a Data field in DocType 'Desktop Icon' +#: desk/doctype/desktop_icon/desktop_icon.json +msgctxt "Desktop Icon" +msgid "Color" +msgstr "crwdns1968:0crwdne1968:0" + +#. Option for a Select field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Color" +msgstr "crwdns1970:0crwdne1970:0" + +#. Label of a Data field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Color" +msgstr "crwdns1972:0crwdne1972:0" + +#. Label of a Select field in DocType 'DocType State' +#: core/doctype/doctype_state/doctype_state.json +msgctxt "DocType State" +msgid "Color" +msgstr "crwdns1974:0crwdne1974:0" + +#. Label of a Color field in DocType 'Event' +#: desk/doctype/event/event.json +msgctxt "Event" +msgid "Color" +msgstr "crwdns1976:0crwdne1976:0" + +#. Label of a Color field in DocType 'Number Card' +#: desk/doctype/number_card/number_card.json +msgctxt "Number Card" +msgid "Color" +msgstr "crwdns1978:0crwdne1978:0" + +#. Label of a Color field in DocType 'Social Link Settings' +#: website/doctype/social_link_settings/social_link_settings.json +msgctxt "Social Link Settings" +msgid "Color" +msgstr "crwdns1980:0crwdne1980:0" + +#. Label of a Color field in DocType 'ToDo' +#: desk/doctype/todo/todo.json +msgctxt "ToDo" +msgid "Color" +msgstr "crwdns1982:0crwdne1982:0" + +#. Option for a Select field in DocType 'Web Form Field' +#: website/doctype/web_form_field/web_form_field.json +msgctxt "Web Form Field" +msgid "Color" +msgstr "crwdns1984:0crwdne1984:0" + +#. Label of a Color field in DocType 'Workspace Shortcut' +#: desk/doctype/workspace_shortcut/workspace_shortcut.json +msgctxt "Workspace Shortcut" +msgid "Color" +msgstr "crwdns1986:0crwdne1986:0" + +#: desk/doctype/kanban_board/kanban_board.py:85 +msgid "Column {0} already exist." +msgstr "crwdns1988:0{0}crwdne1988:0" + +#. Option for a Select field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Column Break" +msgstr "crwdns1990:0crwdne1990:0" + +#. Option for a Select field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Column Break" +msgstr "crwdns1992:0crwdne1992:0" + +#. Option for a Select field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Column Break" +msgstr "crwdns1994:0crwdne1994:0" + +#. Option for a Select field in DocType 'Web Form Field' +#: website/doctype/web_form_field/web_form_field.json +msgctxt "Web Form Field" +msgid "Column Break" +msgstr "crwdns1996:0crwdne1996:0" + +#. Option for a Select field in DocType 'Web Template Field' +#: website/doctype/web_template_field/web_template_field.json +msgctxt "Web Template Field" +msgid "Column Break" +msgstr "crwdns1998:0crwdne1998:0" + +#: core/doctype/data_export/exporter.py:140 +msgid "Column Labels:" +msgstr "crwdns2000:0crwdne2000:0" + +#: core/doctype/data_export/exporter.py:25 +msgid "Column Name" +msgstr "crwdns2002:0crwdne2002:0" + +#. Label of a Data field in DocType 'Kanban Board Column' +#: desk/doctype/kanban_board_column/kanban_board_column.json +msgctxt "Kanban Board Column" +msgid "Column Name" +msgstr "crwdns2004:0crwdne2004:0" + +#: desk/doctype/kanban_board/kanban_board.py:44 +msgid "Column Name cannot be empty" +msgstr "crwdns2006:0crwdne2006:0" + +#: public/js/frappe/form/grid_row.js:593 +msgid "Column width cannot be zero." +msgstr "crwdns2008:0crwdne2008:0" + +#. Label of a Int field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Columns" +msgstr "crwdns2010:0crwdne2010:0" + +#. Label of a Int field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Columns" +msgstr "crwdns2012:0crwdne2012:0" + +#. Label of a Int field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Columns" +msgstr "crwdns2014:0crwdne2014:0" + +#. Label of a Table field in DocType 'Kanban Board' +#: desk/doctype/kanban_board/kanban_board.json +msgctxt "Kanban Board" +msgid "Columns" +msgstr "crwdns2016:0crwdne2016:0" + +#. Label of a Section Break field in DocType 'Report' +#. Label of a Table field in DocType 'Report' +#: core/doctype/report/report.json +msgctxt "Report" +msgid "Columns" +msgstr "crwdns2018:0crwdne2018:0" + +#. Label of a HTML Editor field in DocType 'Access Log' +#: core/doctype/access_log/access_log.json +msgctxt "Access Log" +msgid "Columns / Fields" +msgstr "crwdns2020:0crwdne2020:0" + +#: public/js/frappe/views/kanban/kanban_view.js:394 +msgid "Columns based on" +msgstr "crwdns2022:0crwdne2022:0" + +#: integrations/doctype/oauth_client/oauth_client.py:43 +msgid "Combination of Grant Type ({0}) and Response Type ({1}) not allowed" +msgstr "crwdns2024:0{0}crwdnd2024:0{1}crwdne2024:0" + +#. Option for a Select field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "Comm10E" +msgstr "crwdns2026:0crwdne2026:0" + +#. Name of a DocType +#: core/doctype/comment/comment.json +#: public/js/frappe/form/sidebar/assign_to.js:210 +#: templates/includes/comments/comments.html:34 +msgid "Comment" +msgstr "crwdns2028:0crwdne2028:0" + +#. Option for a Select field in DocType 'Comment' +#: core/doctype/comment/comment.json +msgctxt "Comment" +msgid "Comment" +msgstr "crwdns2030:0crwdne2030:0" + +#. Option for a Select field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Comment" +msgstr "crwdns2032:0crwdne2032:0" + +#. Label of a Data field in DocType 'Comment' +#: core/doctype/comment/comment.json +msgctxt "Comment" +msgid "Comment By" +msgstr "crwdns2034:0crwdne2034:0" + +#. Label of a Data field in DocType 'Comment' +#: core/doctype/comment/comment.json +msgctxt "Comment" +msgid "Comment Email" +msgstr "crwdns2036:0crwdne2036:0" + +#. Label of a Select field in DocType 'Comment' +#: core/doctype/comment/comment.json +msgctxt "Comment" +msgid "Comment Type" +msgstr "crwdns2038:0crwdne2038:0" + +#. Label of a Select field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Comment Type" +msgstr "crwdns2040:0crwdne2040:0" + +#: desk/form/utils.py:58 +msgid "Comment can only be edited by the owner" +msgstr "crwdns2042:0crwdne2042:0" + +#. Label of a Int field in DocType 'Blog Settings' +#: website/doctype/blog_settings/blog_settings.json +msgctxt "Blog Settings" +msgid "Comment limit" +msgstr "crwdns2044:0crwdne2044:0" + +#. Description of a Int field in DocType 'Blog Settings' +#: website/doctype/blog_settings/blog_settings.json +msgctxt "Blog Settings" +msgid "Comment limit per hour" +msgstr "crwdns2046:0crwdne2046:0" + +#: model/__init__.py:150 model/meta.py:53 public/js/frappe/model/meta.js:206 +#: public/js/frappe/model/model.js:125 +#: website/doctype/web_form/templates/web_form.html:119 +msgid "Comments" +msgstr "crwdns2048:0crwdne2048:0" + +#. Description of a Data field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Comments and Communications will be associated with this linked document" +msgstr "crwdns2050:0crwdne2050:0" + +#: templates/includes/comments/comments.py:38 +msgid "Comments cannot have links or email addresses" +msgstr "crwdns2052:0crwdne2052:0" + +#. Option for a Select field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Commercial Rounding" +msgstr "crwdns2054:0crwdne2054:0" + +#. Label of a Check field in DocType 'System Console' +#: desk/doctype/system_console/system_console.json +msgctxt "System Console" +msgid "Commit" +msgstr "crwdns2056:0crwdne2056:0" + +#. Label of a Check field in DocType 'Console Log' +#: desk/doctype/console_log/console_log.json +msgctxt "Console Log" +msgid "Committed" +msgstr "crwdns2058:0crwdne2058:0" + +#: utils/password_strength.py:180 +msgid "Common names and surnames are easy to guess." +msgstr "crwdns2060:0crwdne2060:0" + +#. Name of a DocType +#: core/doctype/communication/communication.json +msgid "Communication" +msgstr "crwdns2062:0crwdne2062:0" + +#. Option for a Select field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Communication" +msgstr "crwdns2064:0crwdne2064:0" + +#. Label of a Data field in DocType 'Email Flag Queue' +#: email/doctype/email_flag_queue/email_flag_queue.json +msgctxt "Email Flag Queue" +msgid "Communication" +msgstr "crwdns2066:0crwdne2066:0" + +#. Label of a Link field in DocType 'Email Queue' +#: email/doctype/email_queue/email_queue.json +msgctxt "Email Queue" +msgid "Communication" +msgstr "crwdns2068:0crwdne2068:0" + +#. Linked DocType in User's connections +#: core/doctype/user/user.json +msgctxt "User" +msgid "Communication" +msgstr "crwdns2070:0crwdne2070:0" + +#. Name of a DocType +#: core/doctype/communication_link/communication_link.json +msgid "Communication Link" +msgstr "crwdns2072:0crwdne2072:0" + +#. Label of a Link in the Build Workspace +#: core/workspace/build/build.json +msgctxt "Communication" +msgid "Communication Logs" +msgstr "crwdns2074:0crwdne2074:0" + +#. Label of a Select field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Communication Type" +msgstr "crwdns2076:0crwdne2076:0" + +#: desk/page/leaderboard/leaderboard.js:112 +msgid "Company" +msgstr "crwdns2078:0crwdne2078:0" + +#. Name of a DocType +#: website/doctype/company_history/company_history.json www/about.html:29 +msgid "Company History" +msgstr "crwdns2080:0crwdne2080:0" + +#. Label of a Text Editor field in DocType 'About Us Settings' +#: website/doctype/about_us_settings/about_us_settings.json +msgctxt "About Us Settings" +msgid "Company Introduction" +msgstr "crwdns2082:0crwdne2082:0" + +#. Label of a Data field in DocType 'Contact' +#: contacts/doctype/contact/contact.json +msgctxt "Contact" +msgid "Company Name" +msgstr "crwdns2084:0crwdne2084:0" + +#: core/doctype/server_script/server_script.js:14 +#: custom/doctype/client_script/client_script.js:54 +#: public/js/frappe/utils/diffview.js:27 +msgid "Compare Versions" +msgstr "crwdns2086:0crwdne2086:0" + +#: core/doctype/server_script/server_script.py:134 +msgid "Compilation warning" +msgstr "crwdns2088:0crwdne2088:0" + +#: website/doctype/website_theme/website_theme.py:125 +msgid "Compiled Successfully" +msgstr "crwdns2090:0crwdne2090:0" + +#: www/complete_signup.html:21 +msgid "Complete" +msgstr "crwdns2092:0crwdne2092:0" + +#. Option for a Select field in DocType 'Scheduled Job Log' +#: core/doctype/scheduled_job_log/scheduled_job_log.json +msgctxt "Scheduled Job Log" +msgid "Complete" +msgstr "crwdns2094:0crwdne2094:0" + +#: public/js/frappe/form/sidebar/assign_to.js:176 +msgid "Complete By" +msgstr "crwdns2096:0crwdne2096:0" + +#: core/doctype/user/user.py:438 templates/emails/new_user.html:10 +msgid "Complete Registration" +msgstr "crwdns2098:0crwdne2098:0" + +#: utils/goal.py:117 +msgid "Completed" +msgstr "crwdns2100:0crwdne2100:0" + +#. Option for a Select field in DocType 'Auto Repeat' +#: automation/doctype/auto_repeat/auto_repeat.json +msgctxt "Auto Repeat" +msgid "Completed" +msgstr "crwdns2102:0crwdne2102:0" + +#. Option for a Select field in DocType 'Event' +#: desk/doctype/event/event.json +msgctxt "Event" +msgid "Completed" +msgstr "crwdns2104:0crwdne2104:0" + +#. Option for a Select field in DocType 'Integration Request' +#: integrations/doctype/integration_request/integration_request.json +msgctxt "Integration Request" +msgid "Completed" +msgstr "crwdns2106:0crwdne2106:0" + +#. Option for a Select field in DocType 'Prepared Report' +#: core/doctype/prepared_report/prepared_report.json +msgctxt "Prepared Report" +msgid "Completed" +msgstr "crwdns2108:0crwdne2108:0" + +#. Option for a Select field in DocType 'Workflow Action' +#: workflow/doctype/workflow_action/workflow_action.json +msgctxt "Workflow Action" +msgid "Completed" +msgstr "crwdns2110:0crwdne2110:0" + +#. Label of a Link field in DocType 'Workflow Action' +#: workflow/doctype/workflow_action/workflow_action.json +msgctxt "Workflow Action" +msgid "Completed By Role" +msgstr "crwdns2112:0crwdne2112:0" + +#. Label of a Link field in DocType 'Workflow Action' +#: workflow/doctype/workflow_action/workflow_action.json +msgctxt "Workflow Action" +msgid "Completed By User" +msgstr "crwdns2114:0crwdne2114:0" + +#. Option for a Select field in DocType 'Web Template' +#: website/doctype/web_template/web_template.json +msgctxt "Web Template" +msgid "Component" +msgstr "crwdns2116:0crwdne2116:0" + +#: public/js/frappe/views/inbox/inbox_view.js:184 +msgid "Compose Email" +msgstr "crwdns2118:0crwdne2118:0" + +#. Label of a Small Text field in DocType 'Bulk Update' +#: desk/doctype/bulk_update/bulk_update.json +msgctxt "Bulk Update" +msgid "Condition" +msgstr "crwdns2120:0crwdne2120:0" + +#. Label of a Select field in DocType 'Document Naming Rule Condition' +#: core/doctype/document_naming_rule_condition/document_naming_rule_condition.json +msgctxt "Document Naming Rule Condition" +msgid "Condition" +msgstr "crwdns2122:0crwdne2122:0" + +#. Label of a Code field in DocType 'Energy Point Rule' +#: social/doctype/energy_point_rule/energy_point_rule.json +msgctxt "Energy Point Rule" +msgid "Condition" +msgstr "crwdns2124:0crwdne2124:0" + +#. Label of a Code field in DocType 'Notification' +#: email/doctype/notification/notification.json +msgctxt "Notification" +msgid "Condition" +msgstr "crwdns2126:0crwdne2126:0" + +#. Label of a Data field in DocType 'Notification Recipient' +#: email/doctype/notification_recipient/notification_recipient.json +msgctxt "Notification Recipient" +msgid "Condition" +msgstr "crwdns2128:0crwdne2128:0" + +#. Label of a Small Text field in DocType 'Webhook' +#: integrations/doctype/webhook/webhook.json +msgctxt "Webhook" +msgid "Condition" +msgstr "crwdns2130:0crwdne2130:0" + +#. Label of a Code field in DocType 'Workflow Transition' +#: workflow/doctype/workflow_transition/workflow_transition.json +msgctxt "Workflow Transition" +msgid "Condition" +msgstr "crwdns2132:0crwdne2132:0" + +#. Label of a HTML field in DocType 'Web Form' +#: website/doctype/web_form/web_form.json +msgctxt "Web Form" +msgid "Condition Description" +msgstr "crwdns2134:0crwdne2134:0" + +#. Label of a JSON field in DocType 'Web Form' +#: website/doctype/web_form/web_form.json +msgctxt "Web Form" +msgid "Condition JSON" +msgstr "crwdns2136:0crwdne2136:0" + +#. Label of a Table field in DocType 'Document Naming Rule' +#: core/doctype/document_naming_rule/document_naming_rule.json +msgctxt "Document Naming Rule" +msgid "Conditions" +msgstr "crwdns2138:0crwdne2138:0" + +#. Label of a Section Break field in DocType 'Workflow Transition' +#: workflow/doctype/workflow_transition/workflow_transition.json +msgctxt "Workflow Transition" +msgid "Conditions" +msgstr "crwdns2140:0crwdne2140:0" + +#. Label of a Section Break field in DocType 'Social Login Key' +#: integrations/doctype/social_login_key/social_login_key.json +msgctxt "Social Login Key" +msgid "Configuration" +msgstr "crwdns2142:0crwdne2142:0" + +#: public/js/frappe/views/reports/report_view.js:461 +msgid "Configure Chart" +msgstr "crwdns2144:0crwdne2144:0" + +#: public/js/frappe/form/grid_row.js:381 +msgid "Configure Columns" +msgstr "crwdns2146:0crwdne2146:0" + +#. Description of a Section Break field in DocType 'Document Naming Settings' +#: core/doctype/document_naming_settings/document_naming_settings.json +msgctxt "Document Naming Settings" +msgid "Configure how amended documents will be named.
\n\n" +"Default behaviour is to follow an amend counter which adds a number to the end of the original name indicating the amended version.
\n\n" +"Default Naming will make the amended document to behave same as new documents." +msgstr "crwdns2148:0crwdne2148:0" + +#: www/update-password.html:30 +msgid "Confirm" +msgstr "crwdns2150:0crwdne2150:0" + +#: public/js/frappe/ui/messages.js:31 +msgctxt "Title of confirmation dialog" +msgid "Confirm" +msgstr "crwdns2152:0crwdne2152:0" + +#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:92 +#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:100 +msgid "Confirm Deletion of Account" +msgstr "crwdns2154:0crwdne2154:0" + +#: core/doctype/user/user.js:173 +msgid "Confirm New Password" +msgstr "crwdns2156:0crwdne2156:0" + +#: www/update-password.html:24 +msgid "Confirm Password" +msgstr "crwdns2158:0crwdne2158:0" + +#: templates/emails/data_deletion_approval.html:6 +#: templates/emails/delete_data_confirmation.html:7 +msgid "Confirm Request" +msgstr "crwdns2160:0crwdne2160:0" + +#: email/doctype/newsletter/newsletter.py:330 +msgid "Confirm Your Email" +msgstr "crwdns2162:0crwdne2162:0" + +#. Label of a Link field in DocType 'Email Group' +#: email/doctype/email_group/email_group.json +msgctxt "Email Group" +msgid "Confirmation Email Template" +msgstr "crwdns2164:0crwdne2164:0" + +#: email/doctype/newsletter/newsletter.py:381 +#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:394 +msgid "Confirmed" +msgstr "crwdns2166:0crwdne2166:0" + +#: public/js/frappe/widgets/onboarding_widget.js:530 +msgid "Congratulations on completing the module setup. If you want to learn more you can refer to the documentation here." +msgstr "crwdns2168:0{0}crwdne2168:0" + +#: integrations/doctype/connected_app/connected_app.js:25 +msgid "Connect to {}" +msgstr "crwdns2170:0crwdne2170:0" + +#. Name of a DocType +#: integrations/doctype/connected_app/connected_app.json +msgid "Connected App" +msgstr "crwdns2172:0crwdne2172:0" + +#. Label of a Link field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Connected App" +msgstr "crwdns2174:0crwdne2174:0" + +#. Label of a Link field in DocType 'Token Cache' +#: integrations/doctype/token_cache/token_cache.json +msgctxt "Token Cache" +msgid "Connected App" +msgstr "crwdns2176:0crwdne2176:0" + +#. Label of a Link field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Connected User" +msgstr "crwdns2178:0crwdne2178:0" + +#: public/js/frappe/form/print_utils.js:95 +#: public/js/frappe/form/print_utils.js:119 +msgid "Connected to QZ Tray!" +msgstr "crwdns2180:0crwdne2180:0" + +#: public/js/frappe/request.js:34 +msgid "Connection Lost" +msgstr "crwdns2182:0crwdne2182:0" + +#: templates/pages/integrations/gcalendar-success.html:3 +msgid "Connection Success" +msgstr "crwdns2184:0crwdne2184:0" + +#: public/js/frappe/dom.js:433 +msgid "Connection lost. Some features might not work." +msgstr "crwdns2186:0crwdne2186:0" + +#: public/js/frappe/form/dashboard.js:54 +msgid "Connections" +msgstr "crwdns2188:0crwdne2188:0" + +#. Label of a Tab Break field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Connections" +msgstr "crwdns2190:0crwdne2190:0" + +#. Label of a Tab Break field in DocType 'Module Def' +#: core/doctype/module_def/module_def.json +msgctxt "Module Def" +msgid "Connections" +msgstr "crwdns2192:0crwdne2192:0" + +#. Label of a Tab Break field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Connections" +msgstr "crwdns2194:0crwdne2194:0" + +#. Label of a Code field in DocType 'System Console' +#: desk/doctype/system_console/system_console.json +msgctxt "System Console" +msgid "Console" +msgstr "crwdns2196:0crwdne2196:0" + +#. Name of a DocType +#: desk/doctype/console_log/console_log.json +msgid "Console Log" +msgstr "crwdns2198:0crwdne2198:0" + +#. Label of a Section Break field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Constraints" +msgstr "crwdns2200:0crwdne2200:0" + +#. Name of a DocType +#: contacts/doctype/contact/contact.json +#: core/doctype/communication/communication.js:113 +msgid "Contact" +msgstr "crwdns2202:0crwdne2202:0" + +#. Linked DocType in User's connections +#: core/doctype/user/user.json +msgctxt "User" +msgid "Contact" +msgstr "crwdns2204:0crwdne2204:0" + +#. Label of a Section Break field in DocType 'Contact' +#: contacts/doctype/contact/contact.json +msgctxt "Contact" +msgid "Contact Details" +msgstr "crwdns2206:0crwdne2206:0" + +#. Name of a DocType +#: contacts/doctype/contact_email/contact_email.json +msgid "Contact Email" +msgstr "crwdns2208:0crwdne2208:0" + +#. Label of a Table field in DocType 'Contact' +#: contacts/doctype/contact/contact.json +msgctxt "Contact" +msgid "Contact Numbers" +msgstr "crwdns2210:0crwdne2210:0" + +#. Name of a DocType +#: contacts/doctype/contact_phone/contact_phone.json +msgid "Contact Phone" +msgstr "crwdns2212:0crwdne2212:0" + +#: integrations/doctype/google_contacts/google_contacts.py:288 +msgid "Contact Synced with Google Contacts." +msgstr "crwdns2214:0crwdne2214:0" + +#. Name of a DocType +#: website/doctype/contact_us_settings/contact_us_settings.json +msgid "Contact Us Settings" +msgstr "crwdns2216:0crwdne2216:0" + +#. Label of a Link in the Website Workspace +#: website/workspace/website/website.json +msgctxt "Contact Us Settings" +msgid "Contact Us Settings" +msgstr "crwdns2218:0crwdne2218:0" + +#. Description of a Small Text field in DocType 'Contact Us Settings' +#: website/doctype/contact_us_settings/contact_us_settings.json +msgctxt "Contact Us Settings" +msgid "Contact options, like \"Sales Query, Support Query\" etc each on a new line or separated by commas." +msgstr "crwdns2220:0crwdne2220:0" + +#. Label of a Text Editor field in DocType 'Blog Post' +#: website/doctype/blog_post/blog_post.json +msgctxt "Blog Post" +msgid "Content" +msgstr "crwdns2222:0crwdne2222:0" + +#. Label of a HTML Editor field in DocType 'Comment' +#: core/doctype/comment/comment.json +msgctxt "Comment" +msgid "Content" +msgstr "crwdns2224:0crwdne2224:0" + +#. Label of a Text Editor field in DocType 'Help Article' +#: website/doctype/help_article/help_article.json +msgctxt "Help Article" +msgid "Content" +msgstr "crwdns2226:0crwdne2226:0" + +#. Label of a Section Break field in DocType 'Newsletter' +#: email/doctype/newsletter/newsletter.json +msgctxt "Newsletter" +msgid "Content" +msgstr "crwdns2228:0crwdne2228:0" + +#. Label of a Text Editor field in DocType 'Note' +#: desk/doctype/note/note.json +msgctxt "Note" +msgid "Content" +msgstr "crwdns2230:0crwdne2230:0" + +#. Label of a Tab Break field in DocType 'Web Page' +#. Label of a Section Break field in DocType 'Web Page' +#: website/doctype/web_page/web_page.json +msgctxt "Web Page" +msgid "Content" +msgstr "crwdns2232:0crwdne2232:0" + +#. Label of a Long Text field in DocType 'Workspace' +#: desk/doctype/workspace/workspace.json +msgctxt "Workspace" +msgid "Content" +msgstr "crwdns2234:0crwdne2234:0" + +#. Label of a HTML Editor field in DocType 'Blog Post' +#: website/doctype/blog_post/blog_post.json +msgctxt "Blog Post" +msgid "Content (HTML)" +msgstr "crwdns2236:0crwdne2236:0" + +#. Label of a Markdown Editor field in DocType 'Blog Post' +#: website/doctype/blog_post/blog_post.json +msgctxt "Blog Post" +msgid "Content (Markdown)" +msgstr "crwdns2238:0crwdne2238:0" + +#. Label of a Data field in DocType 'File' +#: core/doctype/file/file.json +msgctxt "File" +msgid "Content Hash" +msgstr "crwdns2240:0crwdne2240:0" + +#. Label of a Select field in DocType 'Blog Post' +#: website/doctype/blog_post/blog_post.json +msgctxt "Blog Post" +msgid "Content Type" +msgstr "crwdns2242:0crwdne2242:0" + +#. Label of a Select field in DocType 'Newsletter' +#: email/doctype/newsletter/newsletter.json +msgctxt "Newsletter" +msgid "Content Type" +msgstr "crwdns2244:0crwdne2244:0" + +#. Label of a Select field in DocType 'Web Page' +#: website/doctype/web_page/web_page.json +msgctxt "Web Page" +msgid "Content Type" +msgstr "crwdns2246:0crwdne2246:0" + +#: desk/doctype/workspace/workspace.py:79 +msgid "Content data shoud be a list" +msgstr "crwdns2248:0crwdne2248:0" + +#: website/doctype/web_page/web_page.js:91 +msgid "Content type for building the page" +msgstr "crwdns2250:0crwdne2250:0" + +#. Label of a Data field in DocType 'Translation' +#: core/doctype/translation/translation.json +msgctxt "Translation" +msgid "Context" +msgstr "crwdns2252:0crwdne2252:0" + +#. Label of a Section Break field in DocType 'Web Page' +#: website/doctype/web_page/web_page.json +msgctxt "Web Page" +msgid "Context" +msgstr "crwdns2254:0crwdne2254:0" + +#. Label of a Code field in DocType 'Web Page' +#: website/doctype/web_page/web_page.json +msgctxt "Web Page" +msgid "Context Script" +msgstr "crwdns2256:0crwdne2256:0" + +#: public/js/frappe/widgets/onboarding_widget.js:209 +#: public/js/frappe/widgets/onboarding_widget.js:237 +#: public/js/frappe/widgets/onboarding_widget.js:277 +#: public/js/frappe/widgets/onboarding_widget.js:317 +#: public/js/frappe/widgets/onboarding_widget.js:366 +#: public/js/frappe/widgets/onboarding_widget.js:388 +#: public/js/frappe/widgets/onboarding_widget.js:428 +msgid "Continue" +msgstr "crwdns2258:0crwdne2258:0" + +#. Label of a Check field in DocType 'Translation' +#: core/doctype/translation/translation.json +msgctxt "Translation" +msgid "Contributed" +msgstr "crwdns2260:0crwdne2260:0" + +#. Label of a Data field in DocType 'Translation' +#: core/doctype/translation/translation.json +msgctxt "Translation" +msgid "Contribution Document Name" +msgstr "crwdns2262:0crwdne2262:0" + +#. Label of a Select field in DocType 'Translation' +#: core/doctype/translation/translation.json +msgctxt "Translation" +msgid "Contribution Status" +msgstr "crwdns2264:0crwdne2264:0" + +#. Description of a Select field in DocType 'Social Login Key' +#: integrations/doctype/social_login_key/social_login_key.json +msgctxt "Social Login Key" +msgid "Controls whether new users can sign up using this Social Login Key. If unset, Website Settings is respected. " +msgstr "crwdns2266:0crwdne2266:0" + +#: public/js/frappe/utils/utils.js:1030 +msgid "Copied to clipboard." +msgstr "crwdns2268:0crwdne2268:0" + +#: public/js/frappe/request.js:615 +msgid "Copy error to clipboard" +msgstr "crwdns2270:0crwdne2270:0" + +#: public/js/frappe/form/toolbar.js:388 +msgid "Copy to Clipboard" +msgstr "crwdns2272:0crwdne2272:0" + +#. Label of a Data field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Copyright" +msgstr "crwdns2274:0crwdne2274:0" + +#: custom/doctype/customize_form/customize_form.py:118 +msgid "Core DocTypes cannot be customized." +msgstr "crwdns2276:0crwdne2276:0" + +#: desk/doctype/global_search_settings/global_search_settings.py:35 +msgid "Core Modules {0} cannot be searched in Global Search." +msgstr "crwdns2278:0{0}crwdne2278:0" + +#: email/smtp.py:77 +msgid "Could not connect to outgoing email server" +msgstr "crwdns2280:0crwdne2280:0" + +#: model/document.py:922 +msgid "Could not find {0}" +msgstr "crwdns2282:0{0}crwdne2282:0" + +#: core/doctype/data_import/importer.py:886 +msgid "Could not map column {0} to field {1}" +msgstr "crwdns2284:0{0}crwdnd2284:0{1}crwdne2284:0" + +#: public/js/frappe/web_form/web_form.js:355 +msgid "Couldn't save, please check the data you have entered" +msgstr "crwdns2286:0crwdne2286:0" + +#: public/js/frappe/ui/group_by/group_by.js:19 +#: public/js/frappe/ui/group_by/group_by.js:318 +msgid "Count" +msgstr "crwdns2288:0crwdne2288:0" + +#. Option for a Select field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "Count" +msgstr "crwdns2290:0crwdne2290:0" + +#. Option for a Select field in DocType 'Number Card' +#: desk/doctype/number_card/number_card.json +msgctxt "Number Card" +msgid "Count" +msgstr "crwdns2292:0crwdne2292:0" + +#: public/js/frappe/widgets/widget_dialog.js:499 +msgid "Count Customizations" +msgstr "crwdns2294:0crwdne2294:0" + +#: public/js/frappe/widgets/widget_dialog.js:484 +msgid "Count Filter" +msgstr "crwdns2296:0crwdne2296:0" + +#. Label of a Section Break field in DocType 'Workspace Shortcut' +#. Label of a Code field in DocType 'Workspace Shortcut' +#: desk/doctype/workspace_shortcut/workspace_shortcut.json +msgctxt "Workspace Shortcut" +msgid "Count Filter" +msgstr "crwdns2298:0crwdne2298:0" + +#. Label of a Int field in DocType 'Document Naming Rule' +#: core/doctype/document_naming_rule/document_naming_rule.json +msgctxt "Document Naming Rule" +msgid "Counter" +msgstr "crwdns2300:0crwdne2300:0" + +#. Name of a DocType +#: geo/doctype/country/country.json +msgid "Country" +msgstr "crwdns2302:0crwdne2302:0" + +#. Label of a Link field in DocType 'Address' +#: contacts/doctype/address/address.json +msgctxt "Address" +msgid "Country" +msgstr "crwdns2304:0crwdne2304:0" + +#. Label of a Link field in DocType 'Address Template' +#: contacts/doctype/address_template/address_template.json +msgctxt "Address Template" +msgid "Country" +msgstr "crwdns2306:0crwdne2306:0" + +#. Label of a Data field in DocType 'Contact Us Settings' +#: website/doctype/contact_us_settings/contact_us_settings.json +msgctxt "Contact Us Settings" +msgid "Country" +msgstr "crwdns2308:0crwdne2308:0" + +#. Label of a Link field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Country" +msgstr "crwdns2310:0crwdne2310:0" + +#: utils/__init__.py:116 +msgid "Country Code Required" +msgstr "crwdns2312:0crwdne2312:0" + +#. Label of a Data field in DocType 'Country' +#: geo/doctype/country/country.json +msgctxt "Country" +msgid "Country Name" +msgstr "crwdns2314:0crwdne2314:0" + +#. Label of a Data field in DocType 'Address' +#: contacts/doctype/address/address.json +msgctxt "Address" +msgid "County" +msgstr "crwdns2316:0crwdne2316:0" + +#: public/js/frappe/utils/number_systems.js:23 +#: public/js/frappe/utils/number_systems.js:45 +msgctxt "Number system" +msgid "Cr" +msgstr "crwdns2318:0crwdne2318:0" + +#: core/doctype/communication/communication.js:117 +#: desk/doctype/dashboard_chart_source/dashboard_chart_source.js:15 +#: printing/page/print_format_builder_beta/print_format_builder_beta.js:46 +#: public/js/frappe/form/reminders.js:49 +#: public/js/frappe/views/file/file_view.js:112 +#: public/js/frappe/views/interaction.js:18 +#: public/js/frappe/views/reports/query_report.js:1172 +#: public/js/frappe/views/workspace/workspace.js:1217 +#: workflow/page/workflow_builder/workflow_builder.js:46 +msgid "Create" +msgstr "crwdns2320:0crwdne2320:0" + +#. Label of a Check field in DocType 'Custom DocPerm' +#: core/doctype/custom_docperm/custom_docperm.json +msgctxt "Custom DocPerm" +msgid "Create" +msgstr "crwdns2322:0crwdne2322:0" + +#. Label of a Check field in DocType 'DocPerm' +#: core/doctype/docperm/docperm.json +msgctxt "DocPerm" +msgid "Create" +msgstr "crwdns2324:0crwdne2324:0" + +#. Label of a Check field in DocType 'User Document Type' +#: core/doctype/user_document_type/user_document_type.json +msgctxt "User Document Type" +msgid "Create" +msgstr "crwdns2326:0crwdne2326:0" + +#: core/doctype/doctype/doctype_list.js:85 +msgid "Create & Continue" +msgstr "crwdns2328:0crwdne2328:0" + +#. Title of an Onboarding Step +#: website/onboarding_step/create_blogger/create_blogger.json +msgid "Create Blogger" +msgstr "crwdns2330:0crwdne2330:0" + +#: public/js/frappe/views/reports/query_report.js:186 +#: public/js/frappe/views/reports/query_report.js:231 +msgid "Create Card" +msgstr "crwdns2332:0crwdne2332:0" + +#: public/js/frappe/views/reports/query_report.js:284 +#: public/js/frappe/views/reports/query_report.js:1099 +msgid "Create Chart" +msgstr "crwdns2334:0crwdne2334:0" + +#. Label of a Check field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Create Contacts from Incoming Emails" +msgstr "crwdns2336:0crwdne2336:0" + +#. Title of an Onboarding Step +#: custom/onboarding_step/custom_field/custom_field.json +msgid "Create Custom Fields" +msgstr "crwdns2338:0crwdne2338:0" + +#: public/js/frappe/views/workspace/workspace.js:925 +msgid "Create Duplicate" +msgstr "crwdns2340:0crwdne2340:0" + +#. Option for a Select field in DocType 'Onboarding Step' +#: desk/doctype/onboarding_step/onboarding_step.json +msgctxt "Onboarding Step" +msgid "Create Entry" +msgstr "crwdns2342:0crwdne2342:0" + +#. Label of a Check field in DocType 'Scheduled Job Type' +#: core/doctype/scheduled_job_type/scheduled_job_type.json +msgctxt "Scheduled Job Type" +msgid "Create Log" +msgstr "crwdns2344:0crwdne2344:0" + +#: printing/page/print_format_builder_beta/print_format_builder_beta.js:41 +#: public/js/frappe/views/treeview.js:361 +#: workflow/page/workflow_builder/workflow_builder.js:41 +msgid "Create New" +msgstr "crwdns2346:0crwdne2346:0" + +#: core/doctype/doctype/doctype_list.js:83 +msgid "Create New DocType" +msgstr "crwdns2348:0crwdne2348:0" + +#: public/js/frappe/list/list_view_select.js:204 +msgid "Create New Kanban Board" +msgstr "crwdns2350:0crwdne2350:0" + +#: core/doctype/user/user.js:251 +msgid "Create User Email" +msgstr "crwdns2352:0crwdne2352:0" + +#: public/js/frappe/views/workspace/workspace.js:465 +msgid "Create Workspace" +msgstr "crwdns2354:0crwdne2354:0" + +#: public/js/frappe/form/reminders.js:9 +msgid "Create a Reminder" +msgstr "crwdns2356:0crwdne2356:0" + +#: public/js/frappe/ui/toolbar/search_utils.js:521 +msgid "Create a new ..." +msgstr "crwdns2358:0crwdne2358:0" + +#: public/js/frappe/ui/toolbar/awesome_bar.js:156 +msgid "Create a new record" +msgstr "crwdns2360:0crwdne2360:0" + +#: public/js/frappe/form/controls/link.js:291 +#: public/js/frappe/form/controls/link.js:293 +#: public/js/frappe/form/link_selector.js:139 +#: public/js/frappe/list/list_view.js:470 +msgid "Create a new {0}" +msgstr "crwdns2362:0{0}crwdne2362:0" + +#: www/login.html:142 +msgid "Create a {0} Account" +msgstr "crwdns2364:0{0}crwdne2364:0" + +#: printing/page/print_format_builder_beta/print_format_builder_beta.js:34 +msgid "Create or Edit Print Format" +msgstr "crwdns2366:0crwdne2366:0" + +#: workflow/page/workflow_builder/workflow_builder.js:34 +msgid "Create or Edit Workflow" +msgstr "crwdns2368:0crwdne2368:0" + +#: public/js/frappe/list/list_view.js:473 +msgid "Create your first {0}" +msgstr "crwdns2370:0{0}crwdne2370:0" + +#: workflow/doctype/workflow/workflow.js:16 +msgid "Create your workflow visually using the Workflow Builder." +msgstr "crwdns2372:0crwdne2372:0" + +#. Option for a Select field in DocType 'Comment' +#: core/doctype/comment/comment.json +msgctxt "Comment" +msgid "Created" +msgstr "crwdns2374:0crwdne2374:0" + +#. Option for a Select field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Created" +msgstr "crwdns2376:0crwdne2376:0" + +#. Label of a Datetime field in DocType 'Submission Queue' +#: core/doctype/submission_queue/submission_queue.json +msgctxt "Submission Queue" +msgid "Created At" +msgstr "crwdns2378:0crwdne2378:0" + +#: model/__init__.py:138 model/meta.py:50 +#: public/js/frappe/list/list_sidebar_group_by.js:73 +#: public/js/frappe/model/meta.js:203 public/js/frappe/model/model.js:113 +msgid "Created By" +msgstr "crwdns2380:0crwdne2380:0" + +#: workflow/doctype/workflow/workflow.py:65 +msgid "Created Custom Field {0} in {1}" +msgstr "crwdns2382:0{0}crwdnd2382:0{1}crwdne2382:0" + +#: desk/doctype/dashboard_chart/dashboard_chart.js:241 model/__init__.py:140 +#: model/meta.py:45 public/js/frappe/model/meta.js:198 +#: public/js/frappe/model/model.js:115 +#: public/js/frappe/views/dashboard/dashboard_view.js:478 +msgid "Created On" +msgstr "crwdns2384:0crwdne2384:0" + +#: public/js/frappe/desk.js:497 public/js/frappe/views/treeview.js:376 +msgid "Creating {0}" +msgstr "crwdns2386:0{0}crwdne2386:0" + +#. Option for a Select field in DocType 'Energy Point Log' +#: social/doctype/energy_point_log/energy_point_log.json +msgctxt "Energy Point Log" +msgid "Criticism" +msgstr "crwdns2388:0crwdne2388:0" + +#: public/js/frappe/form/sidebar/review.js:66 +msgid "Criticize" +msgstr "crwdns2390:0crwdne2390:0" + +#. Option for a Select field in DocType 'Scheduled Job Type' +#: core/doctype/scheduled_job_type/scheduled_job_type.json +msgctxt "Scheduled Job Type" +msgid "Cron" +msgstr "crwdns2392:0crwdne2392:0" + +#. Option for a Select field in DocType 'Server Script' +#: core/doctype/server_script/server_script.json +msgctxt "Server Script" +msgid "Cron" +msgstr "crwdns2394:0crwdne2394:0" + +#. Label of a Data field in DocType 'Scheduled Job Type' +#: core/doctype/scheduled_job_type/scheduled_job_type.json +msgctxt "Scheduled Job Type" +msgid "Cron Format" +msgstr "crwdns2396:0crwdne2396:0" + +#. Label of a Data field in DocType 'Server Script' +#: core/doctype/server_script/server_script.json +msgctxt "Server Script" +msgid "Cron Format" +msgstr "crwdns2398:0crwdne2398:0" + +#: templates/includes/comments/comments.html:32 +msgid "Ctrl+Enter to add comment" +msgstr "crwdns2400:0crwdne2400:0" + +#. Name of a DocType +#: desk/page/setup_wizard/setup_wizard.js:403 +#: geo/doctype/currency/currency.json +msgid "Currency" +msgstr "crwdns2402:0crwdne2402:0" + +#. Option for a Select field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Currency" +msgstr "crwdns2404:0crwdne2404:0" + +#. Option for a Select field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Currency" +msgstr "crwdns2406:0crwdne2406:0" + +#. Option for a Select field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Currency" +msgstr "crwdns2408:0crwdne2408:0" + +#. Option for a Select field in DocType 'Report Column' +#: core/doctype/report_column/report_column.json +msgctxt "Report Column" +msgid "Currency" +msgstr "crwdns2410:0crwdne2410:0" + +#. Option for a Select field in DocType 'Report Filter' +#: core/doctype/report_filter/report_filter.json +msgctxt "Report Filter" +msgid "Currency" +msgstr "crwdns2412:0crwdne2412:0" + +#. Option for a Select field in DocType 'Web Form Field' +#: website/doctype/web_form_field/web_form_field.json +msgctxt "Web Form Field" +msgid "Currency" +msgstr "crwdns2414:0crwdne2414:0" + +#. Label of a Data field in DocType 'Currency' +#: geo/doctype/currency/currency.json +msgctxt "Currency" +msgid "Currency Name" +msgstr "crwdns2416:0crwdne2416:0" + +#. Label of a Select field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Currency Precision" +msgstr "crwdns2418:0crwdne2418:0" + +#. Option for a Select field in DocType 'Address' +#: contacts/doctype/address/address.json +msgctxt "Address" +msgid "Current" +msgstr "crwdns2420:0crwdne2420:0" + +#. Label of a Link field in DocType 'RQ Worker' +#: core/doctype/rq_worker/rq_worker.json +msgctxt "RQ Worker" +msgid "Current Job ID" +msgstr "crwdns2422:0crwdne2422:0" + +#. Label of a Int field in DocType 'Document Naming Settings' +#: core/doctype/document_naming_settings/document_naming_settings.json +msgctxt "Document Naming Settings" +msgid "Current Value" +msgstr "crwdns2424:0crwdne2424:0" + +#: public/js/frappe/form/form_viewers.js:5 +msgid "Currently Viewing" +msgstr "crwdns2426:0crwdne2426:0" + +#: public/js/frappe/form/sidebar/review.js:77 +msgid "Currently you have {0} review points" +msgstr "crwdns2428:0{0}crwdne2428:0" + +#: core/doctype/user_type/user_type_list.js:7 +#: public/js/frappe/form/reminders.js:20 +msgid "Custom" +msgstr "crwdns2430:0crwdne2430:0" + +#. Option for a Select field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "Custom" +msgstr "crwdns2432:0crwdne2432:0" + +#. Label of a Check field in DocType 'Desktop Icon' +#: desk/doctype/desktop_icon/desktop_icon.json +msgctxt "Desktop Icon" +msgid "Custom" +msgstr "crwdns2434:0crwdne2434:0" + +#. Label of a Check field in DocType 'DocType Action' +#: core/doctype/doctype_action/doctype_action.json +msgctxt "DocType Action" +msgid "Custom" +msgstr "crwdns2436:0crwdne2436:0" + +#. Label of a Check field in DocType 'DocType Link' +#: core/doctype/doctype_link/doctype_link.json +msgctxt "DocType Link" +msgid "Custom" +msgstr "crwdns2438:0crwdne2438:0" + +#. Label of a Check field in DocType 'DocType State' +#: core/doctype/doctype_state/doctype_state.json +msgctxt "DocType State" +msgid "Custom" +msgstr "crwdns2440:0crwdne2440:0" + +#. Option for a Select field in DocType 'Energy Point Rule' +#: social/doctype/energy_point_rule/energy_point_rule.json +msgctxt "Energy Point Rule" +msgid "Custom" +msgstr "crwdns2442:0crwdne2442:0" + +#. Option for a Select field in DocType 'LDAP Settings' +#: integrations/doctype/ldap_settings/ldap_settings.json +msgctxt "LDAP Settings" +msgid "Custom" +msgstr "crwdns2444:0crwdne2444:0" + +#. Label of a Check field in DocType 'Module Def' +#: core/doctype/module_def/module_def.json +msgctxt "Module Def" +msgid "Custom" +msgstr "crwdns2446:0crwdne2446:0" + +#. Option for a Select field in DocType 'Notification' +#: email/doctype/notification/notification.json +msgctxt "Notification" +msgid "Custom" +msgstr "crwdns2448:0crwdne2448:0" + +#. Option for a Select field in DocType 'Number Card' +#: desk/doctype/number_card/number_card.json +msgctxt "Number Card" +msgid "Custom" +msgstr "crwdns2450:0crwdne2450:0" + +#. Option for a Select field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "Custom" +msgstr "crwdns2452:0crwdne2452:0" + +#. Option for a Select field in DocType 'Social Login Key' +#: integrations/doctype/social_login_key/social_login_key.json +msgctxt "Social Login Key" +msgid "Custom" +msgstr "crwdns2454:0crwdne2454:0" + +#. Label of a Check field in DocType 'Social Login Key' +#: integrations/doctype/social_login_key/social_login_key.json +msgctxt "Social Login Key" +msgid "Custom Base URL" +msgstr "crwdns2456:0crwdne2456:0" + +#. Label of a Link field in DocType 'Workspace Custom Block' +#: desk/doctype/workspace_custom_block/workspace_custom_block.json +msgctxt "Workspace Custom Block" +msgid "Custom Block Name" +msgstr "crwdns2458:0crwdne2458:0" + +#. Label of a Tab Break field in DocType 'Workspace' +#. Label of a Table field in DocType 'Workspace' +#: desk/doctype/workspace/workspace.json +msgctxt "Workspace" +msgid "Custom Blocks" +msgstr "crwdns2460:0crwdne2460:0" + +#. Label of a Code field in DocType 'Print Format' +#: printing/doctype/print_format/print_format.json +msgctxt "Print Format" +msgid "Custom CSS" +msgstr "crwdns2462:0crwdne2462:0" + +#. Label of a Code field in DocType 'Web Form' +#: website/doctype/web_form/web_form.json +msgctxt "Web Form" +msgid "Custom CSS" +msgstr "crwdns2464:0crwdne2464:0" + +#. Label of a Section Break field in DocType 'Number Card' +#: desk/doctype/number_card/number_card.json +msgctxt "Number Card" +msgid "Custom Configuration" +msgstr "crwdns2466:0crwdne2466:0" + +#. Name of a DocType +#: core/doctype/custom_docperm/custom_docperm.json +msgid "Custom DocPerm" +msgstr "crwdns2468:0crwdne2468:0" + +#. Title of an Onboarding Step +#: custom/onboarding_step/custom_doctype/custom_doctype.json +msgid "Custom Document Types" +msgstr "crwdns2470:0crwdne2470:0" + +#. Label of a Table field in DocType 'User Type' +#: core/doctype/user_type/user_type.json +msgctxt "User Type" +msgid "Custom Document Types (Select Permission)" +msgstr "crwdns2472:0crwdne2472:0" + +#: core/doctype/user_type/user_type.py:104 +msgid "Custom Document Types Limit Exceeded" +msgstr "crwdns2474:0crwdne2474:0" + +#: desk/desktop.py:480 +msgid "Custom Documents" +msgstr "crwdns2476:0crwdne2476:0" + +#. Name of a DocType +#: custom/doctype/custom_field/custom_field.json +msgid "Custom Field" +msgstr "crwdns2478:0crwdne2478:0" + +#. Label of a Link in the Build Workspace +#: core/workspace/build/build.json +msgctxt "Custom Field" +msgid "Custom Field" +msgstr "crwdns2480:0crwdne2480:0" + +#. Linked DocType in DocType's connections +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Custom Field" +msgstr "crwdns2482:0crwdne2482:0" + +#. Linked DocType in Module Def's connections +#: core/doctype/module_def/module_def.json +msgctxt "Module Def" +msgid "Custom Field" +msgstr "crwdns2484:0crwdne2484:0" + +#: custom/doctype/custom_field/custom_field.py:216 +msgid "Custom Field {0} is created by the Administrator and can only be deleted through the Administrator account." +msgstr "crwdns2486:0{0}crwdne2486:0" + +#. Subtitle of the Module Onboarding 'Customization' +#: custom/module_onboarding/customization/customization.json +msgid "Custom Field, Custom Doctype, Naming Series, Role Permission, Workflow, Print Formats, Reports" +msgstr "crwdns2488:0crwdne2488:0" + +#: custom/doctype/custom_field/custom_field.py:260 +msgid "Custom Fields can only be added to a standard DocType." +msgstr "crwdns2490:0crwdne2490:0" + +#: custom/doctype/custom_field/custom_field.py:257 +msgid "Custom Fields cannot be added to core DocTypes." +msgstr "crwdns2492:0crwdne2492:0" + +#. Label of a Section Break field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Custom Footer" +msgstr "crwdns2494:0crwdne2494:0" + +#. Label of a Check field in DocType 'Print Format' +#: printing/doctype/print_format/print_format.json +msgctxt "Print Format" +msgid "Custom Format" +msgstr "crwdns2496:0crwdne2496:0" + +#. Label of a Data field in DocType 'LDAP Settings' +#: integrations/doctype/ldap_settings/ldap_settings.json +msgctxt "LDAP Settings" +msgid "Custom Group Search" +msgstr "crwdns2498:0crwdne2498:0" + +#: integrations/doctype/ldap_settings/ldap_settings.py:119 +msgid "Custom Group Search if filled needs to contain the user placeholder {0}, eg uid={0},ou=users,dc=example,dc=com" +msgstr "crwdns2500:0{0}crwdnd2500:0{0}crwdne2500:0" + +#: printing/page/print_format_builder/print_format_builder.js:190 +#: printing/page/print_format_builder/print_format_builder.js:720 +msgid "Custom HTML" +msgstr "crwdns2502:0crwdne2502:0" + +#. Name of a DocType +#: desk/doctype/custom_html_block/custom_html_block.json +msgid "Custom HTML Block" +msgstr "crwdns2504:0crwdne2504:0" + +#. Label of a HTML field in DocType 'Print Format' +#: printing/doctype/print_format/print_format.json +msgctxt "Print Format" +msgid "Custom HTML Help" +msgstr "crwdns2506:0crwdne2506:0" + +#: integrations/doctype/ldap_settings/ldap_settings.py:111 +msgid "Custom LDAP Directoy Selected, please ensure 'LDAP Group Member attribute' and 'Group Object Class' are entered" +msgstr "crwdns2508:0crwdne2508:0" + +#. Label of a Data field in DocType 'Web Form Field' +#: website/doctype/web_form_field/web_form_field.json +msgctxt "Web Form Field" +msgid "Custom Label" +msgstr "crwdns2510:0crwdne2510:0" + +#. Label of a Data field in DocType 'Web Form List Column' +#: website/doctype/web_form_list_column/web_form_list_column.json +msgctxt "Web Form List Column" +msgid "Custom Label" +msgstr "crwdns2512:0crwdne2512:0" + +#. Label of a Table field in DocType 'Portal Settings' +#: website/doctype/portal_settings/portal_settings.json +msgctxt "Portal Settings" +msgid "Custom Menu Items" +msgstr "crwdns2514:0crwdne2514:0" + +#. Label of a Code field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "Custom Options" +msgstr "crwdns2516:0crwdne2516:0" + +#. Label of a Code field in DocType 'Website Theme' +#: website/doctype/website_theme/website_theme.json +msgctxt "Website Theme" +msgid "Custom Overrides" +msgstr "crwdns2518:0crwdne2518:0" + +#. Option for a Select field in DocType 'Report' +#: core/doctype/report/report.json +msgctxt "Report" +msgid "Custom Report" +msgstr "crwdns2520:0crwdne2520:0" + +#: desk/desktop.py:481 +msgid "Custom Reports" +msgstr "crwdns2522:0crwdne2522:0" + +#. Name of a DocType +#: core/doctype/custom_role/custom_role.json +msgid "Custom Role" +msgstr "crwdns2524:0crwdne2524:0" + +#. Label of a Code field in DocType 'Website Theme' +#: website/doctype/website_theme/website_theme.json +msgctxt "Website Theme" +msgid "Custom SCSS" +msgstr "crwdns2526:0crwdne2526:0" + +#. Label of a Section Break field in DocType 'Portal Settings' +#: website/doctype/portal_settings/portal_settings.json +msgctxt "Portal Settings" +msgid "Custom Sidebar Menu" +msgstr "crwdns2528:0crwdne2528:0" + +#. Label of a Link in the Build Workspace +#: core/workspace/build/build.json +msgctxt "Translation" +msgid "Custom Translation" +msgstr "crwdns2530:0crwdne2530:0" + +#: core/doctype/doctype/doctype_list.js:65 +msgid "Custom?" +msgstr "crwdns2532:0crwdne2532:0" + +#. Label of a Check field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Custom?" +msgstr "crwdns2534:0crwdne2534:0" + +#. Label of a Check field in DocType 'Website Theme' +#: website/doctype/website_theme/website_theme.json +msgctxt "Website Theme" +msgid "Custom?" +msgstr "crwdns2536:0crwdne2536:0" + +#. Label of a Card Break in the Build Workspace +#. Title of the Module Onboarding 'Customization' +#: core/workspace/build/build.json +#: custom/module_onboarding/customization/customization.json +msgid "Customization" +msgstr "crwdns2538:0crwdne2538:0" + +#. Group in DocType's connections +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Customization" +msgstr "crwdns2540:0crwdne2540:0" + +#. Group in Module Def's connections +#: core/doctype/module_def/module_def.json +msgctxt "Module Def" +msgid "Customization" +msgstr "crwdns2542:0crwdne2542:0" + +#. Label of a Tab Break field in DocType 'Web Form' +#: website/doctype/web_form/web_form.json +msgctxt "Web Form" +msgid "Customization" +msgstr "crwdns2544:0crwdne2544:0" + +#. Success message of the Module Onboarding 'Customization' +#: custom/module_onboarding/customization/customization.json +msgid "Customization onboarding is all done!" +msgstr "crwdns2546:0crwdne2546:0" + +#: public/js/frappe/views/workspace/workspace.js:511 +msgid "Customizations Discarded" +msgstr "crwdns2548:0crwdne2548:0" + +#: custom/doctype/customize_form/customize_form.js:397 +msgid "Customizations Reset" +msgstr "crwdns2550:0crwdne2550:0" + +#: modules/utils.py:95 +msgid "Customizations for {0} exported to:
{1}" +msgstr "crwdns2552:0{0}crwdnd2552:0{1}crwdne2552:0" + +#: printing/page/print/print.js:171 public/js/frappe/form/toolbar.js:527 +msgid "Customize" +msgstr "crwdns2554:0crwdne2554:0" + +#: public/js/frappe/list/list_view.js:1664 +msgctxt "Button in list view menu" +msgid "Customize" +msgstr "crwdns2556:0crwdne2556:0" + +#: custom/doctype/customize_form/customize_form.js:89 +msgid "Customize Child Table" +msgstr "crwdns2558:0crwdne2558:0" + +#: public/js/frappe/views/dashboard/dashboard_view.js:37 +msgid "Customize Dashboard" +msgstr "crwdns2560:0crwdne2560:0" + +#. Name of a DocType +#: custom/doctype/customize_form/customize_form.json +#: public/js/frappe/views/kanban/kanban_view.js:340 +msgid "Customize Form" +msgstr "crwdns2562:0crwdne2562:0" + +#. Label of a Link in the Build Workspace +#. Label of a shortcut in the Build Workspace +#: core/workspace/build/build.json +msgctxt "Customize Form" +msgid "Customize Form" +msgstr "crwdns2564:0crwdne2564:0" + +#: custom/doctype/customize_form/customize_form.js:100 +msgid "Customize Form - {0}" +msgstr "crwdns2566:0{0}crwdne2566:0" + +#. Name of a DocType +#: custom/doctype/customize_form_field/customize_form_field.json +msgid "Customize Form Field" +msgstr "crwdns2568:0crwdne2568:0" + +#. Title of an Onboarding Step +#: custom/onboarding_step/print_format/print_format.json +msgid "Customize Print Formats" +msgstr "crwdns2570:0crwdne2570:0" + +#: public/js/frappe/views/file/file_view.js:144 +msgid "Cut" +msgstr "crwdns2572:0crwdne2572:0" + +#. Option for a Select field in DocType 'DocType State' +#: core/doctype/doctype_state/doctype_state.json +msgctxt "DocType State" +msgid "Cyan" +msgstr "crwdns2574:0crwdne2574:0" + +#. Option for a Select field in DocType 'Kanban Board Column' +#: desk/doctype/kanban_board_column/kanban_board_column.json +msgctxt "Kanban Board Column" +msgid "Cyan" +msgstr "crwdns2576:0crwdne2576:0" + +#. Option for a Select field in DocType 'Recorder' +#: core/doctype/recorder/recorder.json +msgctxt "Recorder" +msgid "DELETE" +msgstr "crwdns2578:0crwdne2578:0" + +#. Option for a Select field in DocType 'Webhook' +#: integrations/doctype/webhook/webhook.json +msgctxt "Webhook" +msgid "DELETE" +msgstr "crwdns2580:0crwdne2580:0" + +#. Option for a Select field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "DESC" +msgstr "crwdns2582:0crwdne2582:0" + +#. Option for a Select field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "DESC" +msgstr "crwdns2584:0crwdne2584:0" + +#. Option for a Select field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "DLE" +msgstr "crwdns2586:0crwdne2586:0" + +#: templates/print_formats/standard_macros.html:207 +msgid "DRAFT" +msgstr "crwdns2588:0crwdne2588:0" + +#: public/js/frappe/utils/common.js:398 +#: website/report/website_analytics/website_analytics.js:23 +msgid "Daily" +msgstr "crwdns2590:0crwdne2590:0" + +#. Option for a Select field in DocType 'Auto Email Report' +#: email/doctype/auto_email_report/auto_email_report.json +msgctxt "Auto Email Report" +msgid "Daily" +msgstr "crwdns2592:0crwdne2592:0" + +#. Option for a Select field in DocType 'Auto Repeat' +#: automation/doctype/auto_repeat/auto_repeat.json +msgctxt "Auto Repeat" +msgid "Daily" +msgstr "crwdns2594:0crwdne2594:0" + +#. Option for a Select field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "Daily" +msgstr "crwdns2596:0crwdne2596:0" + +#. Option for a Select field in DocType 'Dropbox Settings' +#: integrations/doctype/dropbox_settings/dropbox_settings.json +msgctxt "Dropbox Settings" +msgid "Daily" +msgstr "crwdns2598:0crwdne2598:0" + +#. Option for a Select field in DocType 'Energy Point Settings' +#: social/doctype/energy_point_settings/energy_point_settings.json +msgctxt "Energy Point Settings" +msgid "Daily" +msgstr "crwdns2600:0crwdne2600:0" + +#. Option for a Select field in DocType 'Event' +#: desk/doctype/event/event.json +msgctxt "Event" +msgid "Daily" +msgstr "crwdns2602:0crwdne2602:0" + +#. Option for a Select field in DocType 'Google Drive' +#: integrations/doctype/google_drive/google_drive.json +msgctxt "Google Drive" +msgid "Daily" +msgstr "crwdns2604:0crwdne2604:0" + +#. Option for a Select field in DocType 'Number Card' +#: desk/doctype/number_card/number_card.json +msgctxt "Number Card" +msgid "Daily" +msgstr "crwdns2606:0crwdne2606:0" + +#. Option for a Select field in DocType 'S3 Backup Settings' +#: integrations/doctype/s3_backup_settings/s3_backup_settings.json +msgctxt "S3 Backup Settings" +msgid "Daily" +msgstr "crwdns2608:0crwdne2608:0" + +#. Option for a Select field in DocType 'Scheduled Job Type' +#: core/doctype/scheduled_job_type/scheduled_job_type.json +msgctxt "Scheduled Job Type" +msgid "Daily" +msgstr "crwdns2610:0crwdne2610:0" + +#. Option for a Select field in DocType 'Server Script' +#: core/doctype/server_script/server_script.json +msgctxt "Server Script" +msgid "Daily" +msgstr "crwdns2612:0crwdne2612:0" + +#. Option for a Select field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Daily" +msgstr "crwdns2614:0crwdne2614:0" + +#: templates/emails/upcoming_events.html:8 +msgid "Daily Event Digest is sent for Calendar Events where reminders are set." +msgstr "crwdns2616:0crwdne2616:0" + +#: desk/doctype/event/event.py:93 +msgid "Daily Events should finish on the Same Day." +msgstr "crwdns2618:0crwdne2618:0" + +#. Option for a Select field in DocType 'Scheduled Job Type' +#: core/doctype/scheduled_job_type/scheduled_job_type.json +msgctxt "Scheduled Job Type" +msgid "Daily Long" +msgstr "crwdns2620:0crwdne2620:0" + +#. Option for a Select field in DocType 'Server Script' +#: core/doctype/server_script/server_script.json +msgctxt "Server Script" +msgid "Daily Long" +msgstr "crwdns2622:0crwdne2622:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "Danger" +msgstr "crwdns2624:0crwdne2624:0" + +#. Option for a Select field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Dark" +msgstr "crwdns2626:0crwdne2626:0" + +#. Label of a Link field in DocType 'Website Theme' +#: website/doctype/website_theme/website_theme.json +msgctxt "Website Theme" +msgid "Dark Color" +msgstr "crwdns2628:0crwdne2628:0" + +#: public/js/frappe/ui/theme_switcher.js:65 +msgid "Dark Theme" +msgstr "crwdns2630:0crwdne2630:0" + +#. Name of a DocType +#: core/page/dashboard_view/dashboard_view.js:10 +#: desk/doctype/dashboard/dashboard.json +#: public/js/frappe/ui/toolbar/search_utils.js:546 +msgid "Dashboard" +msgstr "crwdns2632:0crwdne2632:0" + +#. Label of a Link in the Build Workspace +#: core/workspace/build/build.json +msgctxt "Dashboard" +msgid "Dashboard" +msgstr "crwdns2634:0crwdne2634:0" + +#. Option for a Select field in DocType 'Form Tour' +#: desk/doctype/form_tour/form_tour.json +msgctxt "Form Tour" +msgid "Dashboard" +msgstr "crwdns2636:0crwdne2636:0" + +#. Label of a Check field in DocType 'Role' +#: core/doctype/role/role.json +msgctxt "Role" +msgid "Dashboard" +msgstr "crwdns2638:0crwdne2638:0" + +#. Option for a Select field in DocType 'Workspace Shortcut' +#: desk/doctype/workspace_shortcut/workspace_shortcut.json +msgctxt "Workspace Shortcut" +msgid "Dashboard" +msgstr "crwdns2640:0crwdne2640:0" + +#. Name of a DocType +#: desk/doctype/dashboard_chart/dashboard_chart.json +#: desk/doctype/dashboard_chart_source/dashboard_chart_source.js:8 +msgid "Dashboard Chart" +msgstr "crwdns2642:0crwdne2642:0" + +#. Label of a Link in the Build Workspace +#: core/workspace/build/build.json +msgctxt "Dashboard Chart" +msgid "Dashboard Chart" +msgstr "crwdns2644:0crwdne2644:0" + +#. Name of a DocType +#: desk/doctype/dashboard_chart_field/dashboard_chart_field.json +msgid "Dashboard Chart Field" +msgstr "crwdns2646:0crwdne2646:0" + +#. Name of a DocType +#: desk/doctype/dashboard_chart_link/dashboard_chart_link.json +msgid "Dashboard Chart Link" +msgstr "crwdns2648:0crwdne2648:0" + +#. Name of a DocType +#: desk/doctype/dashboard_chart_source/dashboard_chart_source.json +msgid "Dashboard Chart Source" +msgstr "crwdns2650:0crwdne2650:0" + +#. Name of a role +#: desk/doctype/dashboard/dashboard.json +#: desk/doctype/dashboard_chart/dashboard_chart.json +#: desk/doctype/number_card/number_card.json +msgid "Dashboard Manager" +msgstr "crwdns2652:0crwdne2652:0" + +#. Label of a Data field in DocType 'Dashboard' +#: desk/doctype/dashboard/dashboard.json +msgctxt "Dashboard" +msgid "Dashboard Name" +msgstr "crwdns2654:0crwdne2654:0" + +#. Name of a DocType +#: desk/doctype/dashboard_settings/dashboard_settings.json +msgid "Dashboard Settings" +msgstr "crwdns2656:0crwdne2656:0" + +#. Label of a Tab Break field in DocType 'Workspace' +#: desk/doctype/workspace/workspace.json +msgctxt "Workspace" +msgid "Dashboards" +msgstr "crwdns2658:0crwdne2658:0" + +#. Label of a Card Break in the Tools Workspace +#: automation/workspace/tools/tools.json +msgid "Data" +msgstr "crwdns2660:0crwdne2660:0" + +#. Option for a Select field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Data" +msgstr "crwdns2662:0crwdne2662:0" + +#. Option for a Select field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Data" +msgstr "crwdns2664:0crwdne2664:0" + +#. Label of a Code field in DocType 'Deleted Document' +#: core/doctype/deleted_document/deleted_document.json +msgctxt "Deleted Document" +msgid "Data" +msgstr "crwdns2666:0crwdne2666:0" + +#. Option for a Select field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Data" +msgstr "crwdns2668:0crwdne2668:0" + +#. Option for a Select field in DocType 'Report Column' +#: core/doctype/report_column/report_column.json +msgctxt "Report Column" +msgid "Data" +msgstr "crwdns2670:0crwdne2670:0" + +#. Option for a Select field in DocType 'Report Filter' +#: core/doctype/report_filter/report_filter.json +msgctxt "Report Filter" +msgid "Data" +msgstr "crwdns2672:0crwdne2672:0" + +#. Label of a Long Text field in DocType 'Transaction Log' +#: core/doctype/transaction_log/transaction_log.json +msgctxt "Transaction Log" +msgid "Data" +msgstr "crwdns2674:0crwdne2674:0" + +#. Label of a Code field in DocType 'Version' +#: core/doctype/version/version.json +msgctxt "Version" +msgid "Data" +msgstr "crwdns2676:0crwdne2676:0" + +#. Option for a Select field in DocType 'Web Form Field' +#: website/doctype/web_form_field/web_form_field.json +msgctxt "Web Form Field" +msgid "Data" +msgstr "crwdns2678:0crwdne2678:0" + +#. Option for a Select field in DocType 'Web Template Field' +#: website/doctype/web_template_field/web_template_field.json +msgctxt "Web Template Field" +msgid "Data" +msgstr "crwdns2680:0crwdne2680:0" + +#. Label of a Table field in DocType 'Webhook' +#: integrations/doctype/webhook/webhook.json +msgctxt "Webhook" +msgid "Data" +msgstr "crwdns2682:0crwdne2682:0" + +#. Label of a Code field in DocType 'Webhook Request Log' +#: integrations/doctype/webhook_request_log/webhook_request_log.json +msgctxt "Webhook Request Log" +msgid "Data" +msgstr "crwdns2684:0crwdne2684:0" + +#: public/js/frappe/form/controls/data.js:58 +msgid "Data Clipped" +msgstr "crwdns2686:0crwdne2686:0" + +#. Name of a DocType +#: core/doctype/data_export/data_export.json +msgid "Data Export" +msgstr "crwdns2688:0crwdne2688:0" + +#. Name of a DocType +#: core/doctype/data_import/data_import.json +msgid "Data Import" +msgstr "crwdns2690:0crwdne2690:0" + +#. Label of a Link field in DocType 'Data Import Log' +#: core/doctype/data_import_log/data_import_log.json +msgctxt "Data Import Log" +msgid "Data Import" +msgstr "crwdns2692:0crwdne2692:0" + +#. Name of a DocType +#: core/doctype/data_import_log/data_import_log.json +msgid "Data Import Log" +msgstr "crwdns2694:0crwdne2694:0" + +#: core/doctype/data_export/exporter.py:174 +msgid "Data Import Template" +msgstr "crwdns2696:0crwdne2696:0" + +#: custom/doctype/customize_form/customize_form.py:614 +msgid "Data Too Long" +msgstr "crwdns2698:0crwdne2698:0" + +#: model/base_document.py:703 +msgid "Data missing in table" +msgstr "crwdns2700:0crwdne2700:0" + +#. Label of a Select field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Database Engine" +msgstr "crwdns2702:0crwdne2702:0" + +#. Label of a Section Break field in DocType 'System Console' +#: desk/doctype/system_console/system_console.json +msgctxt "System Console" +msgid "Database Processes" +msgstr "crwdns2704:0crwdne2704:0" + +#: public/js/frappe/doctype/index.js:38 +msgid "Database Row Size Utilization" +msgstr "crwdns2706:0crwdne2706:0" + +#. Name of a report +#: core/report/database_storage_usage_by_tables/database_storage_usage_by_tables.json +msgid "Database Storage Usage By Tables" +msgstr "crwdns2708:0crwdne2708:0" + +#: custom/doctype/customize_form/customize_form.py:244 +msgid "Database Table Row Size Limit" +msgstr "crwdns2710:0crwdne2710:0" + +#: public/js/frappe/doctype/index.js:40 +msgid "Database Table Row Size Utilization: {0}%, this limits number of fields you can add." +msgstr "crwdns2712:0{0}crwdne2712:0" + +#: desk/report/todo/todo.py:38 email/doctype/newsletter/newsletter.js:109 +#: public/js/frappe/views/interaction.js:80 +msgid "Date" +msgstr "crwdns2714:0crwdne2714:0" + +#. Label of a Datetime field in DocType 'Activity Log' +#: core/doctype/activity_log/activity_log.json +msgctxt "Activity Log" +msgid "Date" +msgstr "crwdns2716:0crwdne2716:0" + +#. Label of a Datetime field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Date" +msgstr "crwdns2718:0crwdne2718:0" + +#. Option for a Select field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Date" +msgstr "crwdns2720:0crwdne2720:0" + +#. Option for a Select field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Date" +msgstr "crwdns2722:0crwdne2722:0" + +#. Option for a Select field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Date" +msgstr "crwdns2724:0crwdne2724:0" + +#. Option for a Select field in DocType 'Report Column' +#: core/doctype/report_column/report_column.json +msgctxt "Report Column" +msgid "Date" +msgstr "crwdns2726:0crwdne2726:0" + +#. Option for a Select field in DocType 'Report Filter' +#: core/doctype/report_filter/report_filter.json +msgctxt "Report Filter" +msgid "Date" +msgstr "crwdns2728:0crwdne2728:0" + +#. Option for a Select field in DocType 'Web Form Field' +#: website/doctype/web_form_field/web_form_field.json +msgctxt "Web Form Field" +msgid "Date" +msgstr "crwdns2730:0crwdne2730:0" + +#. Label of a Data field in DocType 'Country' +#: geo/doctype/country/country.json +msgctxt "Country" +msgid "Date Format" +msgstr "crwdns2732:0crwdne2732:0" + +#. Label of a Select field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Date Format" +msgstr "crwdns2734:0crwdne2734:0" + +#: desk/page/leaderboard/leaderboard.js:165 +msgid "Date Range" +msgstr "crwdns2736:0crwdne2736:0" + +#. Label of a Section Break field in DocType 'Audit Trail' +#: core/doctype/audit_trail/audit_trail.json +msgctxt "Audit Trail" +msgid "Date Range" +msgstr "crwdns2738:0crwdne2738:0" + +#. Label of a Section Break field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Date and Number Format" +msgstr "crwdns2740:0crwdne2740:0" + +#: public/js/frappe/form/controls/date.js:163 +msgid "Date {0} must be in format: {1}" +msgstr "crwdns2742:0{0}crwdnd2742:0{1}crwdne2742:0" + +#: utils/password_strength.py:131 +msgid "Dates are often easy to guess." +msgstr "crwdns2744:0crwdne2744:0" + +#. Option for a Select field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Datetime" +msgstr "crwdns2746:0crwdne2746:0" + +#. Option for a Select field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Datetime" +msgstr "crwdns2748:0crwdne2748:0" + +#. Option for a Select field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Datetime" +msgstr "crwdns2750:0crwdne2750:0" + +#. Option for a Select field in DocType 'Report Column' +#: core/doctype/report_column/report_column.json +msgctxt "Report Column" +msgid "Datetime" +msgstr "crwdns2752:0crwdne2752:0" + +#. Option for a Select field in DocType 'Report Filter' +#: core/doctype/report_filter/report_filter.json +msgctxt "Report Filter" +msgid "Datetime" +msgstr "crwdns2754:0crwdne2754:0" + +#. Option for a Select field in DocType 'Web Form Field' +#: website/doctype/web_form_field/web_form_field.json +msgctxt "Web Form Field" +msgid "Datetime" +msgstr "crwdns2756:0crwdne2756:0" + +#: public/js/frappe/views/calendar/calendar.js:270 +msgid "Day" +msgstr "crwdns2758:0crwdne2758:0" + +#. Label of a Select field in DocType 'Assignment Rule Day' +#: automation/doctype/assignment_rule_day/assignment_rule_day.json +msgctxt "Assignment Rule Day" +msgid "Day" +msgstr "crwdns2760:0crwdne2760:0" + +#. Label of a Select field in DocType 'Auto Repeat Day' +#: automation/doctype/auto_repeat_day/auto_repeat_day.json +msgctxt "Auto Repeat Day" +msgid "Day" +msgstr "crwdns2762:0crwdne2762:0" + +#. Label of a Select field in DocType 'Auto Email Report' +#: email/doctype/auto_email_report/auto_email_report.json +msgctxt "Auto Email Report" +msgid "Day of Week" +msgstr "crwdns2764:0crwdne2764:0" + +#. Option for a Select field in DocType 'Notification' +#: email/doctype/notification/notification.json +msgctxt "Notification" +msgid "Days After" +msgstr "crwdns2766:0crwdne2766:0" + +#. Option for a Select field in DocType 'Notification' +#: email/doctype/notification/notification.json +msgctxt "Notification" +msgid "Days Before" +msgstr "crwdns2768:0crwdne2768:0" + +#. Label of a Int field in DocType 'Notification' +#: email/doctype/notification/notification.json +msgctxt "Notification" +msgid "Days Before or After" +msgstr "crwdns2770:0crwdne2770:0" + +#: public/js/frappe/request.js:249 +msgid "Deadlock Occurred" +msgstr "crwdns2772:0crwdne2772:0" + +#: templates/emails/password_reset.html:1 +msgid "Dear" +msgstr "crwdns2774:0crwdne2774:0" + +#: templates/emails/administrator_logged_in.html:1 +msgid "Dear System Manager," +msgstr "crwdns2776:0crwdne2776:0" + +#: templates/emails/account_deletion_notification.html:1 +#: templates/emails/delete_data_confirmation.html:1 +msgid "Dear User," +msgstr "crwdns2778:0crwdne2778:0" + +#: templates/emails/download_data.html:1 +msgid "Dear {0}" +msgstr "crwdns2780:0{0}crwdne2780:0" + +#. Label of a Code field in DocType 'Scheduled Job Log' +#: core/doctype/scheduled_job_log/scheduled_job_log.json +msgctxt "Scheduled Job Log" +msgid "Debug Log" +msgstr "crwdns2782:0crwdne2782:0" + +#. Label of a Small Text field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Default" +msgstr "crwdns2784:0crwdne2784:0" + +#. Label of a Small Text field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Default" +msgstr "crwdns2786:0crwdne2786:0" + +#. Option for a Select field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "Default" +msgstr "crwdns2788:0crwdne2788:0" + +#. Label of a Small Text field in DocType 'Report Filter' +#: core/doctype/report_filter/report_filter.json +msgctxt "Report Filter" +msgid "Default" +msgstr "crwdns2790:0crwdne2790:0" + +#. Label of a Data field in DocType 'Web Form Field' +#: website/doctype/web_form_field/web_form_field.json +msgctxt "Web Form Field" +msgid "Default" +msgstr "crwdns2792:0crwdne2792:0" + +#. Label of a Small Text field in DocType 'Web Template Field' +#: website/doctype/web_template_field/web_template_field.json +msgctxt "Web Template Field" +msgid "Default" +msgstr "crwdns2794:0crwdne2794:0" + +#: contacts/doctype/address_template/address_template.py:40 +msgid "Default Address Template cannot be deleted" +msgstr "crwdns2796:0crwdne2796:0" + +#. Label of a Select field in DocType 'Document Naming Settings' +#: core/doctype/document_naming_settings/document_naming_settings.json +msgctxt "Document Naming Settings" +msgid "Default Amendment Naming" +msgstr "crwdns2798:0crwdne2798:0" + +#. Label of a Link field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Default Email Template" +msgstr "crwdns2800:0crwdne2800:0" + +#. Label of a Link field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Default Email Template" +msgstr "crwdns2802:0crwdne2802:0" + +#: email/doctype/email_account/email_account_list.js:13 +msgid "Default Inbox" +msgstr "crwdns2804:0crwdne2804:0" + +#: email/doctype/email_account/email_account.py:194 +msgid "Default Incoming" +msgstr "crwdns2806:0crwdne2806:0" + +#. Label of a Check field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Default Incoming" +msgstr "crwdns2808:0crwdne2808:0" + +#. Label of a Check field in DocType 'Letter Head' +#: printing/doctype/letter_head/letter_head.json +msgctxt "Letter Head" +msgid "Default Letter Head" +msgstr "crwdns2810:0crwdne2810:0" + +#. Option for a Select field in DocType 'Amended Document Naming Settings' +#: core/doctype/amended_document_naming_settings/amended_document_naming_settings.json +msgctxt "Amended Document Naming Settings" +msgid "Default Naming" +msgstr "crwdns2812:0crwdne2812:0" + +#. Option for a Select field in DocType 'Document Naming Settings' +#: core/doctype/document_naming_settings/document_naming_settings.json +msgctxt "Document Naming Settings" +msgid "Default Naming" +msgstr "crwdns2814:0crwdne2814:0" + +#: email/doctype/email_account/email_account.py:201 +msgid "Default Outgoing" +msgstr "crwdns2816:0crwdne2816:0" + +#. Label of a Check field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Default Outgoing" +msgstr "crwdns2818:0crwdne2818:0" + +#. Label of a Data field in DocType 'Portal Settings' +#: website/doctype/portal_settings/portal_settings.json +msgctxt "Portal Settings" +msgid "Default Portal Home" +msgstr "crwdns2820:0crwdne2820:0" + +#. Label of a Link field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Default Print Format" +msgstr "crwdns2822:0crwdne2822:0" + +#. Label of a Data field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Default Print Format" +msgstr "crwdns2824:0crwdne2824:0" + +#. Label of a Link field in DocType 'Print Format' +#: printing/doctype/print_format/print_format.json +msgctxt "Print Format" +msgid "Default Print Language" +msgstr "crwdns2826:0crwdne2826:0" + +#. Label of a Data field in DocType 'OAuth Client' +#: integrations/doctype/oauth_client/oauth_client.json +msgctxt "OAuth Client" +msgid "Default Redirect URI" +msgstr "crwdns2828:0crwdne2828:0" + +#. Label of a Link field in DocType 'Portal Settings' +#: website/doctype/portal_settings/portal_settings.json +msgctxt "Portal Settings" +msgid "Default Role at Time of Signup" +msgstr "crwdns2830:0crwdne2830:0" + +#: email/doctype/email_account/email_account_list.js:16 +msgid "Default Sending" +msgstr "crwdns2832:0crwdne2832:0" + +#: email/doctype/email_account/email_account_list.js:7 +msgid "Default Sending and Inbox" +msgstr "crwdns2834:0crwdne2834:0" + +#. Label of a Data field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Default Sort Field" +msgstr "crwdns2836:0crwdne2836:0" + +#. Label of a Select field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Default Sort Order" +msgstr "crwdns2838:0crwdne2838:0" + +#. Label of a Data field in DocType 'Print Format Field Template' +#: printing/doctype/print_format_field_template/print_format_field_template.json +msgctxt "Print Format Field Template" +msgid "Default Template For Field" +msgstr "crwdns2840:0crwdne2840:0" + +#: website/doctype/website_theme/website_theme.js:28 +msgid "Default Theme" +msgstr "crwdns2842:0crwdne2842:0" + +#. Label of a Link field in DocType 'LDAP Settings' +#: integrations/doctype/ldap_settings/ldap_settings.json +msgctxt "LDAP Settings" +msgid "Default User Role" +msgstr "crwdns2844:0crwdne2844:0" + +#. Label of a Link field in DocType 'LDAP Settings' +#: integrations/doctype/ldap_settings/ldap_settings.json +msgctxt "LDAP Settings" +msgid "Default User Type" +msgstr "crwdns2846:0crwdne2846:0" + +#. Label of a Text field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Default Value" +msgstr "crwdns2848:0crwdne2848:0" + +#. Label of a Data field in DocType 'Property Setter' +#: custom/doctype/property_setter/property_setter.json +msgctxt "Property Setter" +msgid "Default Value" +msgstr "crwdns2850:0crwdne2850:0" + +#. Label of a Select field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Default View" +msgstr "crwdns2852:0crwdne2852:0" + +#. Label of a Select field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Default View" +msgstr "crwdns2854:0crwdne2854:0" + +#: core/doctype/doctype/doctype.py:1327 +msgid "Default for 'Check' type of field {0} must be either '0' or '1'" +msgstr "crwdns2856:0{0}crwdne2856:0" + +#: core/doctype/doctype/doctype.py:1340 +msgid "Default value for {0} must be in the list of options." +msgstr "crwdns2858:0{0}crwdne2858:0" + +#: core/doctype/session_default_settings/session_default_settings.py:37 +msgid "Default {0}" +msgstr "crwdns2860:0{0}crwdne2860:0" + +#. Description of a Data field in DocType 'Contact Us Settings' +#: website/doctype/contact_us_settings/contact_us_settings.json +msgctxt "Contact Us Settings" +msgid "Default: \"Contact Us\"" +msgstr "crwdns2862:0crwdne2862:0" + +#. Name of a DocType +#: core/doctype/defaultvalue/defaultvalue.json +msgid "DefaultValue" +msgstr "crwdns2864:0crwdne2864:0" + +#. Label of a Section Break field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Defaults" +msgstr "crwdns2866:0crwdne2866:0" + +#. Label of a Section Break field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Defaults" +msgstr "crwdns2868:0crwdne2868:0" + +#: email/doctype/email_account/email_account.py:207 +msgid "Defaults Updated" +msgstr "crwdns2870:0crwdne2870:0" + +#. Option for a Select field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Delayed" +msgstr "crwdns2872:0crwdne2872:0" + +#: core/doctype/user_permission/user_permission_list.js:189 +#: public/js/frappe/form/toolbar.js:423 +#: public/js/frappe/views/reports/report_view.js:1645 +#: public/js/frappe/views/treeview.js:313 +#: public/js/frappe/views/workspace/workspace.js:823 +#: templates/discussions/reply_card.html:35 +msgid "Delete" +msgstr "crwdns2874:0crwdne2874:0" + +#: public/js/frappe/list/list_view.js:1857 +msgctxt "Button in list view actions menu" +msgid "Delete" +msgstr "crwdns2876:0crwdne2876:0" + +#. Label of a Check field in DocType 'Custom DocPerm' +#: core/doctype/custom_docperm/custom_docperm.json +msgctxt "Custom DocPerm" +msgid "Delete" +msgstr "crwdns2878:0crwdne2878:0" + +#. Label of a Check field in DocType 'DocPerm' +#: core/doctype/docperm/docperm.json +msgctxt "DocPerm" +msgid "Delete" +msgstr "crwdns2880:0crwdne2880:0" + +#. Label of a Check field in DocType 'User Document Type' +#: core/doctype/user_document_type/user_document_type.json +msgctxt "User Document Type" +msgid "Delete" +msgstr "crwdns2882:0crwdne2882:0" + +#: www/me.html:75 +msgid "Delete Account" +msgstr "crwdns2884:0crwdne2884:0" + +#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.js:10 +msgid "Delete Data" +msgstr "crwdns2886:0crwdne2886:0" + +#: public/js/frappe/views/kanban/kanban_view.js:103 +msgid "Delete Kanban Board" +msgstr "crwdns2888:0crwdne2888:0" + +#: public/js/frappe/views/workspace/workspace.js:824 +msgid "Delete Workspace" +msgstr "crwdns2890:0crwdne2890:0" + +#: public/js/frappe/form/footer/form_timeline.js:696 +msgid "Delete comment?" +msgstr "crwdns2892:0crwdne2892:0" + +#: email/doctype/email_unsubscribe/email_unsubscribe.py:30 +msgid "Delete this record to allow sending to this email address" +msgstr "crwdns2894:0crwdne2894:0" + +#: public/js/frappe/list/list_view.js:1862 +msgctxt "Title of confirmation dialog" +msgid "Delete {0} item permanently?" +msgstr "crwdns2896:0{0}crwdne2896:0" + +#: public/js/frappe/list/list_view.js:1868 +msgctxt "Title of confirmation dialog" +msgid "Delete {0} items permanently?" +msgstr "crwdns2898:0{0}crwdne2898:0" + +#. Option for a Select field in DocType 'Comment' +#: core/doctype/comment/comment.json +msgctxt "Comment" +msgid "Deleted" +msgstr "crwdns2900:0crwdne2900:0" + +#. Option for a Select field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Deleted" +msgstr "crwdns2902:0crwdne2902:0" + +#. Option for a Select field in DocType 'Personal Data Deletion Request' +#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +msgctxt "Personal Data Deletion Request" +msgid "Deleted" +msgstr "crwdns2904:0crwdne2904:0" + +#. Option for a Select field in DocType 'Personal Data Deletion Step' +#: website/doctype/personal_data_deletion_step/personal_data_deletion_step.json +msgctxt "Personal Data Deletion Step" +msgid "Deleted" +msgstr "crwdns2906:0crwdne2906:0" + +#. Label of a Data field in DocType 'Deleted Document' +#: core/doctype/deleted_document/deleted_document.json +msgctxt "Deleted Document" +msgid "Deleted DocType" +msgstr "crwdns2908:0crwdne2908:0" + +#. Name of a DocType +#: core/doctype/deleted_document/deleted_document.json +msgid "Deleted Document" +msgstr "crwdns2910:0crwdne2910:0" + +#. Label of a Link in the Tools Workspace +#: automation/workspace/tools/tools.json +msgctxt "Deleted Document" +msgid "Deleted Documents" +msgstr "crwdns2912:0crwdne2912:0" + +#. Label of a Data field in DocType 'Deleted Document' +#: core/doctype/deleted_document/deleted_document.json +msgctxt "Deleted Document" +msgid "Deleted Name" +msgstr "crwdns2914:0crwdne2914:0" + +#: desk/reportview.py:488 +msgid "Deleting {0}" +msgstr "crwdns2916:0{0}crwdne2916:0" + +#: public/js/frappe/list/bulk_operations.js:158 +msgid "Deleting {0} records..." +msgstr "crwdns2918:0{0}crwdne2918:0" + +#: public/js/frappe/model/model.js:706 +msgid "Deleting {0}..." +msgstr "crwdns2920:0{0}crwdne2920:0" + +#. Label of a Table field in DocType 'Personal Data Deletion Request' +#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +msgctxt "Personal Data Deletion Request" +msgid "Deletion Steps " +msgstr "crwdns2922:0crwdne2922:0" + +#: core/doctype/page/page.py:108 +msgid "Deletion of this document is only permitted in developer mode." +msgstr "crwdns2924:0crwdne2924:0" + +#: public/js/frappe/views/reports/report_utils.js:276 +msgid "Delimiter must be a single character" +msgstr "crwdns2926:0crwdne2926:0" + +#. Label of a Select field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Delivery Status" +msgstr "crwdns2928:0crwdne2928:0" + +#: templates/includes/oauth_confirmation.html:14 +msgid "Deny" +msgstr "crwdns2930:0crwdne2930:0" + +#. Option for a Select field in DocType 'Social Login Key' +#: integrations/doctype/social_login_key/social_login_key.json +msgctxt "Social Login Key" +msgid "Deny" +msgstr "crwdns2932:0crwdne2932:0" + +#. Label of a Data field in DocType 'Contact' +#: contacts/doctype/contact/contact.json +msgctxt "Contact" +msgid "Department" +msgstr "crwdns2934:0crwdne2934:0" + +#. Label of a Data field in DocType 'Workspace Link' +#: desk/doctype/workspace_link/workspace_link.json +msgctxt "Workspace Link" +msgid "Dependencies" +msgstr "crwdns2936:0crwdne2936:0" + +#. Label of a Code field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Depends On" +msgstr "crwdns2938:0crwdne2938:0" + +#. Label of a Code field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Depends On" +msgstr "crwdns2940:0crwdne2940:0" + +#: public/js/frappe/ui/filters/filter.js:32 +msgid "Descendants Of" +msgstr "crwdns2942:0crwdne2942:0" + +#: public/js/frappe/ui/filters/filter.js:33 +msgid "Descendants Of (inclusive)" +msgstr "crwdns2944:0crwdne2944:0" + +#: desk/report/todo/todo.py:39 public/js/frappe/form/reminders.js:44 +msgid "Description" +msgstr "crwdns2946:0crwdne2946:0" + +#. Label of a Small Text field in DocType 'Assignment Rule' +#: automation/doctype/assignment_rule/assignment_rule.json +msgctxt "Assignment Rule" +msgid "Description" +msgstr "crwdns2948:0crwdne2948:0" + +#. Label of a Small Text field in DocType 'Blog Category' +#: website/doctype/blog_category/blog_category.json +msgctxt "Blog Category" +msgid "Description" +msgstr "crwdns2950:0crwdne2950:0" + +#. Label of a Text field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Description" +msgstr "crwdns2952:0crwdne2952:0" + +#. Label of a Small Text field in DocType 'Desktop Icon' +#: desk/doctype/desktop_icon/desktop_icon.json +msgctxt "Desktop Icon" +msgid "Description" +msgstr "crwdns2954:0crwdne2954:0" + +#. Label of a Small Text field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Description" +msgstr "crwdns2956:0crwdne2956:0" + +#. Label of a Small Text field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Description" +msgstr "crwdns2958:0crwdne2958:0" + +#. Label of a Text Editor field in DocType 'Event' +#: desk/doctype/event/event.json +msgctxt "Event" +msgid "Description" +msgstr "crwdns2960:0crwdne2960:0" + +#. Label of a HTML Editor field in DocType 'Form Tour Step' +#: desk/doctype/form_tour_step/form_tour_step.json +msgctxt "Form Tour Step" +msgid "Description" +msgstr "crwdns2962:0crwdne2962:0" + +#. Label of a Section Break field in DocType 'Onboarding Step' +#. Label of a Markdown Editor field in DocType 'Onboarding Step' +#: desk/doctype/onboarding_step/onboarding_step.json +msgctxt "Onboarding Step" +msgid "Description" +msgstr "crwdns2964:0crwdne2964:0" + +#. Label of a Small Text field in DocType 'Print Heading' +#: printing/doctype/print_heading/print_heading.json +msgctxt "Print Heading" +msgid "Description" +msgstr "crwdns2966:0crwdne2966:0" + +#. Label of a Small Text field in DocType 'Reminder' +#: automation/doctype/reminder/reminder.json +msgctxt "Reminder" +msgid "Description" +msgstr "crwdns2968:0crwdne2968:0" + +#. Label of a Small Text field in DocType 'Tag' +#: desk/doctype/tag/tag.json +msgctxt "Tag" +msgid "Description" +msgstr "crwdns2970:0crwdne2970:0" + +#. Label of a Text Editor field in DocType 'ToDo' +#: desk/doctype/todo/todo.json +msgctxt "ToDo" +msgid "Description" +msgstr "crwdns2972:0crwdne2972:0" + +#. Label of a Text field in DocType 'Web Form Field' +#: website/doctype/web_form_field/web_form_field.json +msgctxt "Web Form Field" +msgid "Description" +msgstr "crwdns2974:0crwdne2974:0" + +#. Label of a Small Text field in DocType 'Web Page' +#: website/doctype/web_page/web_page.json +msgctxt "Web Page" +msgid "Description" +msgstr "crwdns2976:0crwdne2976:0" + +#. Label of a Text field in DocType 'Website Slideshow Item' +#: website/doctype/website_slideshow_item/website_slideshow_item.json +msgctxt "Website Slideshow Item" +msgid "Description" +msgstr "crwdns2978:0crwdne2978:0" + +#. Description of a Small Text field in DocType 'Blog Post' +#: website/doctype/blog_post/blog_post.json +msgctxt "Blog Post" +msgid "Description for listing page, in plain text, only a couple of lines. (max 200 characters)" +msgstr "crwdns2980:0crwdne2980:0" + +#. Description of a Section Break field in DocType 'Onboarding Step' +#: desk/doctype/onboarding_step/onboarding_step.json +msgctxt "Onboarding Step" +msgid "Description to inform the user about any action that is going to be performed" +msgstr "crwdns2982:0crwdne2982:0" + +#. Label of a Data field in DocType 'Contact' +#: contacts/doctype/contact/contact.json +msgctxt "Contact" +msgid "Designation" +msgstr "crwdns2984:0crwdne2984:0" + +#. Label of a Check field in DocType 'Role' +#: core/doctype/role/role.json +msgctxt "Role" +msgid "Desk Access" +msgstr "crwdns2986:0crwdne2986:0" + +#. Label of a Section Break field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Desk Settings" +msgstr "crwdns2988:0crwdne2988:0" + +#. Label of a Select field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Desk Theme" +msgstr "crwdns2990:0crwdne2990:0" + +#. Name of a role +#: automation/doctype/reminder/reminder.json core/doctype/report/report.json +#: core/doctype/submission_queue/submission_queue.json +#: core/doctype/user_group/user_group.json +#: custom/doctype/doctype_layout/doctype_layout.json +#: desk/doctype/calendar_view/calendar_view.json +#: desk/doctype/custom_html_block/custom_html_block.json +#: desk/doctype/dashboard/dashboard.json +#: desk/doctype/dashboard_chart/dashboard_chart.json +#: desk/doctype/dashboard_settings/dashboard_settings.json +#: desk/doctype/form_tour/form_tour.json +#: desk/doctype/kanban_board/kanban_board.json +#: desk/doctype/list_filter/list_filter.json +#: desk/doctype/module_onboarding/module_onboarding.json +#: desk/doctype/note/note.json desk/doctype/number_card/number_card.json +#: desk/doctype/onboarding_step/onboarding_step.json +#: email/doctype/document_follow/document_follow.json +#: email/doctype/email_template/email_template.json +#: integrations/doctype/google_calendar/google_calendar.json +#: integrations/doctype/google_contacts/google_contacts.json +#: printing/doctype/letter_head/letter_head.json +#: printing/doctype/network_printer_settings/network_printer_settings.json +#: printing/doctype/print_format/print_format.json +#: social/doctype/energy_point_log/energy_point_log.json +#: website/doctype/marketing_campaign/marketing_campaign.json +#: workflow/doctype/workflow_action/workflow_action.json +#: workflow/doctype/workflow_state/workflow_state.json +msgid "Desk User" +msgstr "crwdns2992:0crwdne2992:0" + +#. Name of a DocType +#: desk/doctype/desktop_icon/desktop_icon.json +msgid "Desktop Icon" +msgstr "crwdns2994:0crwdne2994:0" + +#: desk/doctype/desktop_icon/desktop_icon.py:230 +msgid "Desktop Icon already exists" +msgstr "crwdns2996:0crwdne2996:0" + +#: public/js/form_builder/store.js:254 public/js/form_builder/utils.js:38 +#: public/js/frappe/form/layout.js:135 public/js/frappe/views/treeview.js:276 +msgid "Details" +msgstr "crwdns2998:0crwdne2998:0" + +#. Label of a Tab Break field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Details" +msgstr "crwdns3000:0crwdne3000:0" + +#. Label of a Section Break field in DocType 'Event' +#: desk/doctype/event/event.json +msgctxt "Event" +msgid "Details" +msgstr "crwdns3002:0crwdne3002:0" + +#. Label of a Code field in DocType 'Scheduled Job Log' +#: core/doctype/scheduled_job_log/scheduled_job_log.json +msgctxt "Scheduled Job Log" +msgid "Details" +msgstr "crwdns3004:0crwdne3004:0" + +#: core/page/permission_manager/permission_manager.js:477 +msgid "Did not add" +msgstr "crwdns3006:0crwdne3006:0" + +#: core/page/permission_manager/permission_manager.js:378 +msgid "Did not remove" +msgstr "crwdns3008:0crwdne3008:0" + +#: public/js/frappe/utils/diffview.js:56 +msgid "Diff" +msgstr "crwdns3010:0crwdne3010:0" + +#. Description of a Section Break field in DocType 'Workflow' +#: workflow/doctype/workflow/workflow.json +msgctxt "Workflow" +msgid "Different \"States\" this document can exist in. Like \"Open\", \"Pending Approval\" etc." +msgstr "crwdns3012:0crwdne3012:0" + +#. Label of a Int field in DocType 'Document Naming Rule' +#: core/doctype/document_naming_rule/document_naming_rule.json +msgctxt "Document Naming Rule" +msgid "Digits" +msgstr "crwdns3014:0crwdne3014:0" + +#. Label of a Select field in DocType 'LDAP Settings' +#: integrations/doctype/ldap_settings/ldap_settings.json +msgctxt "LDAP Settings" +msgid "Directory Server" +msgstr "crwdns3016:0crwdne3016:0" + +#. Label of a Check field in DocType 'List View Settings' +#: desk/doctype/list_view_settings/list_view_settings.json +msgctxt "List View Settings" +msgid "Disable Auto Refresh" +msgstr "crwdns3018:0crwdne3018:0" + +#. Label of a Check field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Disable Change Log Notification" +msgstr "crwdns3020:0crwdne3020:0" + +#. Label of a Check field in DocType 'List View Settings' +#: desk/doctype/list_view_settings/list_view_settings.json +msgctxt "List View Settings" +msgid "Disable Comment Count" +msgstr "crwdns3022:0crwdne3022:0" + +#. Label of a Check field in DocType 'Blog Post' +#: website/doctype/blog_post/blog_post.json +msgctxt "Blog Post" +msgid "Disable Comments" +msgstr "crwdns3024:0crwdne3024:0" + +#. Label of a Check field in DocType 'List View Settings' +#: desk/doctype/list_view_settings/list_view_settings.json +msgctxt "List View Settings" +msgid "Disable Count" +msgstr "crwdns3026:0crwdne3026:0" + +#. Label of a Check field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Disable Document Sharing" +msgstr "crwdns3028:0crwdne3028:0" + +#. Label of a Check field in DocType 'Blog Post' +#: website/doctype/blog_post/blog_post.json +msgctxt "Blog Post" +msgid "Disable Likes" +msgstr "crwdns3030:0crwdne3030:0" + +#: core/doctype/report/report.js:36 +msgid "Disable Report" +msgstr "crwdns3032:0crwdne3032:0" + +#. Label of a Check field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Disable SMTP server authentication" +msgstr "crwdns3034:0crwdne3034:0" + +#. Label of a Check field in DocType 'List View Settings' +#: desk/doctype/list_view_settings/list_view_settings.json +msgctxt "List View Settings" +msgid "Disable Sidebar Stats" +msgstr "crwdns3036:0crwdne3036:0" + +#: website/doctype/website_settings/website_settings.js:146 +msgid "Disable Signup for your site" +msgstr "crwdns3038:0crwdne3038:0" + +#. Label of a Check field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Disable Standard Email Footer" +msgstr "crwdns3040:0crwdne3040:0" + +#. Label of a Check field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Disable System Update Notification" +msgstr "crwdns3042:0crwdne3042:0" + +#. Label of a Check field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Disable Username/Password Login" +msgstr "crwdns3044:0crwdne3044:0" + +#. Label of a Check field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Disable signups" +msgstr "crwdns3046:0crwdne3046:0" + +#: core/doctype/user/user_list.js:14 public/js/frappe/model/indicator.js:108 +#: public/js/frappe/model/indicator.js:115 +msgid "Disabled" +msgstr "crwdns3048:0crwdne3048:0" + +#. Label of a Check field in DocType 'Address' +#: contacts/doctype/address/address.json +msgctxt "Address" +msgid "Disabled" +msgstr "crwdns3050:0crwdne3050:0" + +#. Label of a Check field in DocType 'Assignment Rule' +#: automation/doctype/assignment_rule/assignment_rule.json +msgctxt "Assignment Rule" +msgid "Disabled" +msgstr "crwdns3052:0crwdne3052:0" + +#. Label of a Check field in DocType 'Auto Repeat' +#. Option for a Select field in DocType 'Auto Repeat' +#: automation/doctype/auto_repeat/auto_repeat.json +msgctxt "Auto Repeat" +msgid "Disabled" +msgstr "crwdns3054:0crwdne3054:0" + +#. Label of a Check field in DocType 'Blogger' +#: website/doctype/blogger/blogger.json +msgctxt "Blogger" +msgid "Disabled" +msgstr "crwdns3056:0crwdne3056:0" + +#. Label of a Check field in DocType 'Document Naming Rule' +#: core/doctype/document_naming_rule/document_naming_rule.json +msgctxt "Document Naming Rule" +msgid "Disabled" +msgstr "crwdns3058:0crwdne3058:0" + +#. Label of a Check field in DocType 'Letter Head' +#: printing/doctype/letter_head/letter_head.json +msgctxt "Letter Head" +msgid "Disabled" +msgstr "crwdns3060:0crwdne3060:0" + +#. Label of a Check field in DocType 'Milestone Tracker' +#: automation/doctype/milestone_tracker/milestone_tracker.json +msgctxt "Milestone Tracker" +msgid "Disabled" +msgstr "crwdns3062:0crwdne3062:0" + +#. Label of a Check field in DocType 'Print Format' +#: printing/doctype/print_format/print_format.json +msgctxt "Print Format" +msgid "Disabled" +msgstr "crwdns3064:0crwdne3064:0" + +#. Label of a Check field in DocType 'Print Style' +#: printing/doctype/print_style/print_style.json +msgctxt "Print Style" +msgid "Disabled" +msgstr "crwdns3066:0crwdne3066:0" + +#. Label of a Check field in DocType 'Report' +#: core/doctype/report/report.json +msgctxt "Report" +msgid "Disabled" +msgstr "crwdns3068:0crwdne3068:0" + +#. Label of a Check field in DocType 'Role' +#: core/doctype/role/role.json +msgctxt "Role" +msgid "Disabled" +msgstr "crwdns3070:0crwdne3070:0" + +#. Label of a Check field in DocType 'Server Script' +#: core/doctype/server_script/server_script.json +msgctxt "Server Script" +msgid "Disabled" +msgstr "crwdns3072:0crwdne3072:0" + +#: email/doctype/email_account/email_account.js:237 +msgid "Disabled Auto Reply" +msgstr "crwdns3074:0crwdne3074:0" + +#: public/js/frappe/views/communication.js:30 +#: public/js/frappe/views/dashboard/dashboard_view.js:70 +#: public/js/frappe/views/workspace/workspace.js:502 +#: public/js/frappe/web_form/web_form.js:187 +#: website/doctype/web_form/templates/web_form.html:41 +msgid "Discard" +msgstr "crwdns3076:0crwdne3076:0" + +#: public/js/frappe/web_form/web_form.js:184 +msgid "Discard?" +msgstr "crwdns3078:0crwdne3078:0" + +#. Name of a DocType +#: website/doctype/discussion_reply/discussion_reply.json +msgid "Discussion Reply" +msgstr "crwdns3080:0crwdne3080:0" + +#. Name of a DocType +#: website/doctype/discussion_topic/discussion_topic.json +msgid "Discussion Topic" +msgstr "crwdns3082:0crwdne3082:0" + +#: templates/discussions/reply_card.html:16 +msgid "Dismiss" +msgstr "crwdns3084:0crwdne3084:0" + +#. Label of a Section Break field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Display" +msgstr "crwdns3086:0crwdne3086:0" + +#. Label of a Section Break field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Display" +msgstr "crwdns3088:0crwdne3088:0" + +#. Label of a Code field in DocType 'Web Form Field' +#: website/doctype/web_form_field/web_form_field.json +msgctxt "Web Form Field" +msgid "Display Depends On" +msgstr "crwdns3090:0crwdne3090:0" + +#. Label of a Code field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Display Depends On (JS)" +msgstr "crwdns3092:0crwdne3092:0" + +#. Label of a Check field in DocType 'LDAP Settings' +#: integrations/doctype/ldap_settings/ldap_settings.json +msgctxt "LDAP Settings" +msgid "Do Not Create New User " +msgstr "crwdns3094:0crwdne3094:0" + +#. Description of a Check field in DocType 'LDAP Settings' +#: integrations/doctype/ldap_settings/ldap_settings.json +msgctxt "LDAP Settings" +msgid "Do not create new user if user with email does not exist in the system" +msgstr "crwdns3096:0crwdne3096:0" + +#: public/js/frappe/form/grid.js:1156 +msgid "Do not edit headers which are preset in the template" +msgstr "crwdns3098:0crwdne3098:0" + +#: integrations/doctype/s3_backup_settings/s3_backup_settings.py:64 +msgid "Do not have permission to access bucket {0}." +msgstr "crwdns3100:0{0}crwdne3100:0" + +#: core/doctype/system_settings/system_settings.js:66 +msgid "Do you still want to proceed?" +msgstr "crwdns3102:0crwdne3102:0" + +#: public/js/frappe/form/form.js:977 +msgid "Do you want to cancel all linked documents?" +msgstr "crwdns3104:0crwdne3104:0" + +#. Label of a Select field in DocType 'Webhook' +#: integrations/doctype/webhook/webhook.json +msgctxt "Webhook" +msgid "Doc Event" +msgstr "crwdns3106:0crwdne3106:0" + +#. Label of a Section Break field in DocType 'Webhook' +#: integrations/doctype/webhook/webhook.json +msgctxt "Webhook" +msgid "Doc Events" +msgstr "crwdns3108:0crwdne3108:0" + +#. Label of a Select field in DocType 'Workflow Document State' +#: workflow/doctype/workflow_document_state/workflow_document_state.json +msgctxt "Workflow Document State" +msgid "Doc Status" +msgstr "crwdns3110:0crwdne3110:0" + +#. Name of a DocType +#: core/doctype/docfield/docfield.json +msgid "DocField" +msgstr "crwdns3112:0crwdne3112:0" + +#. Option for a Select field in DocType 'Property Setter' +#: custom/doctype/property_setter/property_setter.json +msgctxt "Property Setter" +msgid "DocField" +msgstr "crwdns3114:0crwdne3114:0" + +#. Name of a DocType +#: core/doctype/docperm/docperm.json +msgid "DocPerm" +msgstr "crwdns3116:0crwdne3116:0" + +#. Name of a DocType +#: core/doctype/docshare/docshare.json +msgid "DocShare" +msgstr "crwdns3118:0crwdne3118:0" + +#: 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 "crwdns3120:0{0}crwdne3120:0" + +#. Name of a DocType +#: core/doctype/data_export/exporter.py:26 core/doctype/doctype/doctype.json +#: core/report/permitted_documents_for_user/permitted_documents_for_user.js:15 +#: website/doctype/website_slideshow/website_slideshow.js:18 +msgid "DocType" +msgstr "crwdns3122:0crwdne3122:0" + +#. Label of a Link field in DocType 'Amended Document Naming Settings' +#: core/doctype/amended_document_naming_settings/amended_document_naming_settings.json +msgctxt "Amended Document Naming Settings" +msgid "DocType" +msgstr "crwdns3124:0crwdne3124:0" + +#. Label of a Link field in DocType 'Audit Trail' +#: core/doctype/audit_trail/audit_trail.json +msgctxt "Audit Trail" +msgid "DocType" +msgstr "crwdns3126:0crwdne3126:0" + +#. Label of a Link field in DocType 'Client Script' +#: custom/doctype/client_script/client_script.json +msgctxt "Client Script" +msgid "DocType" +msgstr "crwdns3128:0crwdne3128:0" + +#. Label of a Link field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "DocType" +msgstr "crwdns3130:0crwdne3130:0" + +#. Label of a Link in the Build Workspace +#. Label of a shortcut in the Build Workspace +#: core/workspace/build/build.json +msgctxt "DocType" +msgid "DocType" +msgstr "crwdns3132:0crwdne3132:0" + +#. Group in Module Def's connections +#. Linked DocType in Module Def's connections +#: core/doctype/module_def/module_def.json +msgctxt "Module Def" +msgid "DocType" +msgstr "crwdns3134:0crwdne3134:0" + +#. Label of a Link field in DocType 'Permission Debugger' +#: core/doctype/permission_debugger/permission_debugger.json +msgctxt "Permission Debugger" +msgid "DocType" +msgstr "crwdns3136:0crwdne3136:0" + +#. Label of a Link field in DocType 'Print Format' +#: printing/doctype/print_format/print_format.json +msgctxt "Print Format" +msgid "DocType" +msgstr "crwdns3138:0crwdne3138:0" + +#. Option for a Select field in DocType 'Property Setter' +#. Label of a Link field in DocType 'Property Setter' +#: custom/doctype/property_setter/property_setter.json +msgctxt "Property Setter" +msgid "DocType" +msgstr "crwdns3140:0crwdne3140:0" + +#. Label of a Link field in DocType 'Version' +#: core/doctype/version/version.json +msgctxt "Version" +msgid "DocType" +msgstr "crwdns3142:0crwdne3142:0" + +#. Label of a Link field in DocType 'Webhook' +#: integrations/doctype/webhook/webhook.json +msgctxt "Webhook" +msgid "DocType" +msgstr "crwdns3144:0crwdne3144:0" + +#. Option for a Select field in DocType 'Workspace Link' +#: desk/doctype/workspace_link/workspace_link.json +msgctxt "Workspace Link" +msgid "DocType" +msgstr "crwdns3146:0crwdne3146:0" + +#. Label of a Link field in DocType 'Workspace Quick List' +#: desk/doctype/workspace_quick_list/workspace_quick_list.json +msgctxt "Workspace Quick List" +msgid "DocType" +msgstr "crwdns3148:0crwdne3148:0" + +#. Option for a Select field in DocType 'Workspace Shortcut' +#: desk/doctype/workspace_shortcut/workspace_shortcut.json +msgctxt "Workspace Shortcut" +msgid "DocType" +msgstr "crwdns3150:0crwdne3150:0" + +#: core/doctype/doctype/doctype.py:1528 +msgid "DocType {0} provided for the field {1} must have atleast one Link field" +msgstr "crwdns3152:0{0}crwdnd3152:0{1}crwdne3152:0" + +#. Name of a DocType +#: core/doctype/doctype_action/doctype_action.json +msgid "DocType Action" +msgstr "crwdns3154:0crwdne3154:0" + +#. Option for a Select field in DocType 'Property Setter' +#: custom/doctype/property_setter/property_setter.json +msgctxt "Property Setter" +msgid "DocType Action" +msgstr "crwdns3156:0crwdne3156:0" + +#. Option for a Select field in DocType 'Server Script' +#. Label of a Select field in DocType 'Server Script' +#: core/doctype/server_script/server_script.json +msgctxt "Server Script" +msgid "DocType Event" +msgstr "crwdns3158:0crwdne3158:0" + +#. Name of a DocType +#: custom/doctype/doctype_layout/doctype_layout.json +msgid "DocType Layout" +msgstr "crwdns3160:0crwdne3160:0" + +#. Name of a DocType +#: custom/doctype/doctype_layout_field/doctype_layout_field.json +msgid "DocType Layout Field" +msgstr "crwdns3162:0crwdne3162:0" + +#. Name of a DocType +#: core/doctype/doctype_link/doctype_link.json +msgid "DocType Link" +msgstr "crwdns3164:0crwdne3164:0" + +#. Option for a Select field in DocType 'Property Setter' +#: custom/doctype/property_setter/property_setter.json +msgctxt "Property Setter" +msgid "DocType Link" +msgstr "crwdns3166:0crwdne3166:0" + +#: core/doctype/doctype/doctype_list.js:10 +msgid "DocType Name" +msgstr "crwdns3168:0crwdne3168:0" + +#. Name of a DocType +#: core/doctype/doctype_state/doctype_state.json +msgid "DocType State" +msgstr "crwdns3170:0crwdne3170:0" + +#. Option for a Select field in DocType 'Property Setter' +#: custom/doctype/property_setter/property_setter.json +msgctxt "Property Setter" +msgid "DocType State" +msgstr "crwdns3172:0crwdne3172:0" + +#. Label of a Select field in DocType 'Workspace Shortcut' +#: desk/doctype/workspace_shortcut/workspace_shortcut.json +msgctxt "Workspace Shortcut" +msgid "DocType View" +msgstr "crwdns3174:0crwdne3174:0" + +#: core/doctype/doctype/doctype.py:646 +msgid "DocType can not be merged" +msgstr "crwdns3176:0crwdne3176:0" + +#: core/doctype/doctype/doctype.py:640 +msgid "DocType can only be renamed by Administrator" +msgstr "crwdns3178:0crwdne3178:0" + +#: integrations/doctype/webhook/webhook.py:79 +msgid "DocType must be Submittable for the selected Doc Event" +msgstr "crwdns3180:0crwdne3180:0" + +#: client.py:421 +msgid "DocType must be a string" +msgstr "crwdns3182:0crwdne3182:0" + +#: public/js/form_builder/store.js:149 +msgid "DocType must have atleast one field" +msgstr "crwdns3184:0crwdne3184:0" + +#: core/doctype/log_settings/log_settings.py:57 +msgid "DocType not supported by Log Settings." +msgstr "crwdns3186:0crwdne3186:0" + +#. Description of a Link field in DocType 'Workflow' +#: workflow/doctype/workflow/workflow.json +msgctxt "Workflow" +msgid "DocType on which this Workflow is applicable." +msgstr "crwdns3188:0crwdne3188:0" + +#: public/js/frappe/views/kanban/kanban_settings.js:4 +msgid "DocType required" +msgstr "crwdns3190:0crwdne3190:0" + +#: modules/utils.py:161 +msgid "DocType {0} does not exist." +msgstr "crwdns3192:0{0}crwdne3192:0" + +#: modules/utils.py:224 +msgid "DocType {} not found" +msgstr "crwdns3194:0crwdne3194:0" + +#: core/doctype/doctype/doctype.py:1009 +msgid "DocType's name should not start or end with whitespace" +msgstr "crwdns3196:0crwdne3196:0" + +#: core/doctype/doctype/doctype.js:70 +msgid "DocTypes can not be modified, please use {0} instead" +msgstr "crwdns3198:0{0}crwdne3198:0" + +#: public/js/frappe/widgets/widget_dialog.js:645 +msgid "Doctype" +msgstr "crwdns3200:0crwdne3200:0" + +#. Label of a Link field in DocType 'Document Follow' +#: email/doctype/document_follow/document_follow.json +msgctxt "Document Follow" +msgid "Doctype" +msgstr "crwdns3202:0crwdne3202:0" + +#: core/doctype/doctype/doctype.py:1004 +msgid "Doctype name is limited to {0} characters ({1})" +msgstr "crwdns3204:0{0}crwdnd3204:0{1}crwdne3204:0" + +#: public/js/frappe/list/bulk_operations.js:3 +msgid "Doctype required" +msgstr "crwdns3206:0crwdne3206:0" + +#: public/js/frappe/views/workspace/workspace.js:1303 +msgid "Doctype with same route already exist. Please choose different title." +msgstr "crwdns3208:0crwdne3208:0" + +#. Label of a Dynamic Link field in DocType 'Audit Trail' +#: core/doctype/audit_trail/audit_trail.json +msgctxt "Audit Trail" +msgid "Document" +msgstr "crwdns3210:0crwdne3210:0" + +#. Option for a Select field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Document" +msgstr "crwdns3212:0crwdne3212:0" + +#. Label of a Data field in DocType 'Milestone' +#: automation/doctype/milestone/milestone.json +msgctxt "Milestone" +msgid "Document" +msgstr "crwdns3214:0crwdne3214:0" + +#. Label of a Link field in DocType 'Notification Subscribed Document' +#: desk/doctype/notification_subscribed_document/notification_subscribed_document.json +msgctxt "Notification Subscribed Document" +msgid "Document" +msgstr "crwdns3216:0crwdne3216:0" + +#. Label of a Dynamic Link field in DocType 'Permission Debugger' +#: core/doctype/permission_debugger/permission_debugger.json +msgctxt "Permission Debugger" +msgid "Document" +msgstr "crwdns3218:0crwdne3218:0" + +#. Label of a Section Break field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Document Actions" +msgstr "crwdns3220:0crwdne3220:0" + +#. Name of a DocType +#: email/doctype/document_follow/document_follow.json +msgid "Document Follow" +msgstr "crwdns3222:0crwdne3222:0" + +#. Label of a Section Break field in DocType 'User' +#. Linked DocType in User's connections +#: core/doctype/user/user.json +msgctxt "User" +msgid "Document Follow" +msgstr "crwdns3224:0crwdne3224:0" + +#: desk/form/document_follow.py:84 +msgid "Document Follow Notification" +msgstr "crwdns3226:0crwdne3226:0" + +#. Label of a Data field in DocType 'Notification Log' +#: desk/doctype/notification_log/notification_log.json +msgctxt "Notification Log" +msgid "Document Link" +msgstr "crwdns3228:0crwdne3228:0" + +#. Label of a Section Break field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Document Linking" +msgstr "crwdns3230:0crwdne3230:0" + +#. Label of a Section Break field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Document Links" +msgstr "crwdns3232:0crwdne3232:0" + +#: core/doctype/doctype/doctype.py:1162 +msgid "Document Links Row #{0}: Could not find field {1} in {2} DocType" +msgstr "crwdns3234:0#{0}crwdnd3234:0{1}crwdnd3234:0{2}crwdne3234:0" + +#: core/doctype/doctype/doctype.py:1182 +msgid "Document Links Row #{0}: Invalid doctype or fieldname." +msgstr "crwdns3236:0#{0}crwdne3236:0" + +#: core/doctype/doctype/doctype.py:1145 +msgid "Document Links Row #{0}: Parent DocType is mandatory for internal links" +msgstr "crwdns3238:0#{0}crwdne3238:0" + +#: core/doctype/doctype/doctype.py:1151 +msgid "Document Links Row #{0}: Table Fieldname is mandatory for internal links" +msgstr "crwdns3240:0#{0}crwdne3240:0" + +#: core/doctype/user_permission/user_permission_list.js:36 +#: public/js/frappe/form/form_tour.js:58 +msgid "Document Name" +msgstr "crwdns3242:0crwdne3242:0" + +#. Label of a Dynamic Link field in DocType 'DocShare' +#: core/doctype/docshare/docshare.json +msgctxt "DocShare" +msgid "Document Name" +msgstr "crwdns3244:0crwdne3244:0" + +#. Label of a Dynamic Link field in DocType 'Document Follow' +#: email/doctype/document_follow/document_follow.json +msgctxt "Document Follow" +msgid "Document Name" +msgstr "crwdns3246:0crwdne3246:0" + +#. Label of a Dynamic Link field in DocType 'Reminder' +#: automation/doctype/reminder/reminder.json +msgctxt "Reminder" +msgid "Document Name" +msgstr "crwdns3248:0crwdne3248:0" + +#. Label of a Dynamic Link field in DocType 'Tag Link' +#: desk/doctype/tag_link/tag_link.json +msgctxt "Tag Link" +msgid "Document Name" +msgstr "crwdns3250:0crwdne3250:0" + +#. Label of a Data field in DocType 'Transaction Log' +#: core/doctype/transaction_log/transaction_log.json +msgctxt "Transaction Log" +msgid "Document Name" +msgstr "crwdns3252:0crwdne3252:0" + +#. Label of a Data field in DocType 'Version' +#: core/doctype/version/version.json +msgctxt "Version" +msgid "Document Name" +msgstr "crwdns3254:0crwdne3254:0" + +#: client.py:424 +msgid "Document Name must be a string" +msgstr "crwdns3256:0crwdne3256:0" + +#. Name of a DocType +#: core/doctype/document_naming_rule/document_naming_rule.json +msgid "Document Naming Rule" +msgstr "crwdns3258:0crwdne3258:0" + +#. Name of a DocType +#: core/doctype/document_naming_rule_condition/document_naming_rule_condition.json +msgid "Document Naming Rule Condition" +msgstr "crwdns3260:0crwdne3260:0" + +#. Name of a DocType +#: core/doctype/document_naming_settings/document_naming_settings.json +msgid "Document Naming Settings" +msgstr "crwdns3262:0crwdne3262:0" + +#: model/document.py:1519 +msgid "Document Queued" +msgstr "crwdns3264:0crwdne3264:0" + +#: core/doctype/deleted_document/deleted_document_list.js:38 +msgid "Document Restoration Summary" +msgstr "crwdns3266:0crwdne3266:0" + +#: core/doctype/deleted_document/deleted_document.py:67 +msgid "Document Restored" +msgstr "crwdns3268:0crwdne3268:0" + +#: public/js/frappe/widgets/onboarding_widget.js:359 +#: public/js/frappe/widgets/onboarding_widget.js:401 +#: public/js/frappe/widgets/onboarding_widget.js:420 +#: public/js/frappe/widgets/onboarding_widget.js:439 +msgid "Document Saved" +msgstr "crwdns3270:0crwdne3270:0" + +#. Label of a Check field in DocType 'Notification Settings' +#: desk/doctype/notification_settings/notification_settings.json +msgctxt "Notification Settings" +msgid "Document Share" +msgstr "crwdns3272:0crwdne3272:0" + +#. Name of a DocType +#: core/doctype/document_share_key/document_share_key.json +msgid "Document Share Key" +msgstr "crwdns3274:0crwdne3274:0" + +#. Label of a Int field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Document Share Key Expiry (in Days)" +msgstr "crwdns3276:0crwdne3276:0" + +#. Name of a report +#. Label of a Link in the Users Workspace +#: core/report/document_share_report/document_share_report.json +#: core/workspace/users/users.json +msgid "Document Share Report" +msgstr "crwdns3278:0crwdne3278:0" + +#. Label of a Section Break field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Document States" +msgstr "crwdns3280:0crwdne3280:0" + +#. Label of a Section Break field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Document States" +msgstr "crwdns3282:0crwdne3282:0" + +#. Label of a Table field in DocType 'Workflow' +#: workflow/doctype/workflow/workflow.json +msgctxt "Workflow" +msgid "Document States" +msgstr "crwdns3284:0crwdne3284:0" + +#: model/__init__.py:152 model/meta.py:46 public/js/frappe/model/meta.js:199 +#: public/js/frappe/model/model.js:127 +msgid "Document Status" +msgstr "crwdns3286:0crwdne3286:0" + +#. Label of a Link field in DocType 'Tag Link' +#: desk/doctype/tag_link/tag_link.json +msgctxt "Tag Link" +msgid "Document Tag" +msgstr "crwdns3288:0crwdne3288:0" + +#. Label of a Data field in DocType 'Tag Link' +#: desk/doctype/tag_link/tag_link.json +msgctxt "Tag Link" +msgid "Document Title" +msgstr "crwdns3290:0crwdne3290:0" + +#: core/doctype/user_permission/user_permission_list.js:26 +#: core/page/permission_manager/permission_manager.js:49 +#: core/page/permission_manager/permission_manager.js:211 +#: core/page/permission_manager/permission_manager.js:432 +msgid "Document Type" +msgstr "crwdns3292:0crwdne3292:0" + +#. Label of a Link field in DocType 'Assignment Rule' +#: automation/doctype/assignment_rule/assignment_rule.json +msgctxt "Assignment Rule" +msgid "Document Type" +msgstr "crwdns3294:0crwdne3294:0" + +#. Label of a Link field in DocType 'Bulk Update' +#: desk/doctype/bulk_update/bulk_update.json +msgctxt "Bulk Update" +msgid "Document Type" +msgstr "crwdns3296:0crwdne3296:0" + +#. Label of a Link field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "Document Type" +msgstr "crwdns3298:0crwdne3298:0" + +#. Label of a Link field in DocType 'Data Import' +#: core/doctype/data_import/data_import.json +msgctxt "Data Import" +msgid "Document Type" +msgstr "crwdns3300:0crwdne3300:0" + +#. Label of a Link field in DocType 'DocShare' +#: core/doctype/docshare/docshare.json +msgctxt "DocShare" +msgid "Document Type" +msgstr "crwdns3302:0crwdne3302:0" + +#. Label of a Link field in DocType 'DocType Layout' +#: custom/doctype/doctype_layout/doctype_layout.json +msgctxt "DocType Layout" +msgid "Document Type" +msgstr "crwdns3304:0crwdne3304:0" + +#. Label of a Link field in DocType 'Document Naming Rule' +#: core/doctype/document_naming_rule/document_naming_rule.json +msgctxt "Document Naming Rule" +msgid "Document Type" +msgstr "crwdns3306:0crwdne3306:0" + +#. Label of a Link field in DocType 'Global Search DocType' +#: desk/doctype/global_search_doctype/global_search_doctype.json +msgctxt "Global Search DocType" +msgid "Document Type" +msgstr "crwdns3308:0crwdne3308:0" + +#. Label of a Link field in DocType 'Milestone' +#: automation/doctype/milestone/milestone.json +msgctxt "Milestone" +msgid "Document Type" +msgstr "crwdns3310:0crwdne3310:0" + +#. Label of a Link field in DocType 'Notification' +#: email/doctype/notification/notification.json +msgctxt "Notification" +msgid "Document Type" +msgstr "crwdns3312:0crwdne3312:0" + +#. Label of a Link field in DocType 'Notification Log' +#: desk/doctype/notification_log/notification_log.json +msgctxt "Notification Log" +msgid "Document Type" +msgstr "crwdns3314:0crwdne3314:0" + +#. Label of a Link field in DocType 'Number Card' +#. Option for a Select field in DocType 'Number Card' +#: desk/doctype/number_card/number_card.json +msgctxt "Number Card" +msgid "Document Type" +msgstr "crwdns3316:0crwdne3316:0" + +#. Label of a Data field in DocType 'Personal Data Deletion Step' +#: website/doctype/personal_data_deletion_step/personal_data_deletion_step.json +msgctxt "Personal Data Deletion Step" +msgid "Document Type" +msgstr "crwdns3318:0crwdne3318:0" + +#. Label of a Link field in DocType 'Print Format Field Template' +#: printing/doctype/print_format_field_template/print_format_field_template.json +msgctxt "Print Format Field Template" +msgid "Document Type" +msgstr "crwdns3320:0crwdne3320:0" + +#. Label of a Link field in DocType 'Reminder' +#: automation/doctype/reminder/reminder.json +msgctxt "Reminder" +msgid "Document Type" +msgstr "crwdns3322:0crwdne3322:0" + +#. Label of a Link field in DocType 'Session Default' +#: core/doctype/session_default/session_default.json +msgctxt "Session Default" +msgid "Document Type" +msgstr "crwdns3324:0crwdne3324:0" + +#. Label of a Link field in DocType 'Tag Link' +#: desk/doctype/tag_link/tag_link.json +msgctxt "Tag Link" +msgid "Document Type" +msgstr "crwdns3326:0crwdne3326:0" + +#. Label of a Link field in DocType 'User Document Type' +#: core/doctype/user_document_type/user_document_type.json +msgctxt "User Document Type" +msgid "Document Type" +msgstr "crwdns3328:0crwdne3328:0" + +#. Label of a Link field in DocType 'User Select Document Type' +#: core/doctype/user_select_document_type/user_select_document_type.json +msgctxt "User Select Document Type" +msgid "Document Type" +msgstr "crwdns3330:0crwdne3330:0" + +#. Label of a Link field in DocType 'Workflow' +#: workflow/doctype/workflow/workflow.json +msgctxt "Workflow" +msgid "Document Type" +msgstr "crwdns3332:0crwdne3332:0" + +#: desk/doctype/number_card/number_card.py:55 +msgid "Document Type and Function are required to create a number card" +msgstr "crwdns3334:0crwdne3334:0" + +#: permissions.py:146 +msgid "Document Type is not importable" +msgstr "crwdns3336:0crwdne3336:0" + +#: permissions.py:142 +msgid "Document Type is not submittable" +msgstr "crwdns3338:0crwdne3338:0" + +#. Label of a Link field in DocType 'Milestone Tracker' +#: automation/doctype/milestone_tracker/milestone_tracker.json +msgctxt "Milestone Tracker" +msgid "Document Type to Track" +msgstr "crwdns3340:0crwdne3340:0" + +#: desk/doctype/global_search_settings/global_search_settings.py:39 +msgid "Document Type {0} has been repeated." +msgstr "crwdns3342:0{0}crwdne3342:0" + +#. Label of a Table field in DocType 'User Type' +#: core/doctype/user_type/user_type.json +msgctxt "User Type" +msgid "Document Types" +msgstr "crwdns3344:0crwdne3344:0" + +#. Label of a Table field in DocType 'User Type' +#: core/doctype/user_type/user_type.json +msgctxt "User Type" +msgid "Document Types (Select Permissions Only)" +msgstr "crwdns3346:0crwdne3346:0" + +#. Label of a Section Break field in DocType 'User Type' +#: core/doctype/user_type/user_type.json +msgctxt "User Type" +msgid "Document Types and Permissions" +msgstr "crwdns3348:0crwdne3348:0" + +#: core/doctype/submission_queue/submission_queue.py:162 +msgid "Document Unlocked" +msgstr "crwdns3350:0crwdne3350:0" + +#: public/js/frappe/list/list_view.js:1054 +msgid "Document has been cancelled" +msgstr "crwdns3352:0crwdne3352:0" + +#: public/js/frappe/list/list_view.js:1053 +msgid "Document has been submitted" +msgstr "crwdns3354:0crwdne3354:0" + +#: public/js/frappe/list/list_view.js:1052 +msgid "Document is in draft state" +msgstr "crwdns3356:0crwdne3356:0" + +#: core/doctype/communication/communication.js:182 +msgid "Document not Relinked" +msgstr "crwdns3358:0crwdne3358:0" + +#: model/rename_doc.py:229 public/js/frappe/form/toolbar.js:145 +msgid "Document renamed from {0} to {1}" +msgstr "crwdns3360:0{0}crwdnd3360:0{1}crwdne3360:0" + +#: public/js/frappe/form/toolbar.js:154 +msgid "Document renaming from {0} to {1} has been queued" +msgstr "crwdns3362:0{0}crwdnd3362:0{1}crwdne3362:0" + +#: desk/doctype/dashboard_chart/dashboard_chart.py:397 +msgid "Document type is required to create a dashboard chart" +msgstr "crwdns3364:0crwdne3364:0" + +#: core/doctype/deleted_document/deleted_document.py:44 +msgid "Document {0} Already Restored" +msgstr "crwdns3366:0{0}crwdne3366:0" + +#: workflow/doctype/workflow_action/workflow_action.py:203 +msgid "Document {0} has been set to state {1} by {2}" +msgstr "crwdns3368:0{0}crwdnd3368:0{1}crwdnd3368:0{2}crwdne3368:0" + +#: client.py:443 +msgid "Document {0} {1} does not exist" +msgstr "crwdns3370:0{0}crwdnd3370:0{1}crwdne3370:0" + +#. Label of a Data field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Documentation Link" +msgstr "crwdns3372:0crwdne3372:0" + +#. Label of a Data field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Documentation URL" +msgstr "crwdns3374:0crwdne3374:0" + +#. Label of a Data field in DocType 'Module Onboarding' +#: desk/doctype/module_onboarding/module_onboarding.json +msgctxt "Module Onboarding" +msgid "Documentation URL" +msgstr "crwdns3376:0crwdne3376:0" + +#: core/doctype/deleted_document/deleted_document_list.js:25 +msgid "Documents restored successfully" +msgstr "crwdns3378:0crwdne3378:0" + +#: core/doctype/deleted_document/deleted_document_list.js:33 +msgid "Documents that failed to restore" +msgstr "crwdns3380:0crwdne3380:0" + +#: core/doctype/deleted_document/deleted_document_list.js:29 +msgid "Documents that were already restored" +msgstr "crwdns3382:0crwdne3382:0" + +#. Name of a DocType +#: core/doctype/domain/domain.json +msgid "Domain" +msgstr "crwdns3384:0crwdne3384:0" + +#. Label of a Data field in DocType 'Domain' +#: core/doctype/domain/domain.json +msgctxt "Domain" +msgid "Domain" +msgstr "crwdns3386:0crwdne3386:0" + +#. Label of a Link field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Domain" +msgstr "crwdns3388:0crwdne3388:0" + +#. Label of a Link field in DocType 'Has Domain' +#: core/doctype/has_domain/has_domain.json +msgctxt "Has Domain" +msgid "Domain" +msgstr "crwdns3390:0crwdne3390:0" + +#. Label of a Data field in DocType 'Email Domain' +#: email/doctype/email_domain/email_domain.json +msgctxt "Email Domain" +msgid "Domain Name" +msgstr "crwdns3392:0crwdne3392:0" + +#. Name of a DocType +#: core/doctype/domain_settings/domain_settings.json +msgid "Domain Settings" +msgstr "crwdns3394:0crwdne3394:0" + +#. Label of a HTML field in DocType 'Domain Settings' +#: core/doctype/domain_settings/domain_settings.json +msgctxt "Domain Settings" +msgid "Domains HTML" +msgstr "crwdns3396:0crwdne3396:0" + +#. Description of a Check field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Don't HTML Encode HTML tags like <script> or just characters like < or >, as they could be intentionally used in this field" +msgstr "crwdns3398:0crwdne3398:0" + +#: public/js/frappe/data_import/import_preview.js:268 +msgid "Don't Import" +msgstr "crwdns3400:0crwdne3400:0" + +#. Label of a Check field in DocType 'Workflow' +#: workflow/doctype/workflow/workflow.json +msgctxt "Workflow" +msgid "Don't Override Status" +msgstr "crwdns3402:0crwdne3402:0" + +#. Label of a Check field in DocType 'Workflow Document State' +#: workflow/doctype/workflow_document_state/workflow_document_state.json +msgctxt "Workflow Document State" +msgid "Don't Override Status" +msgstr "crwdns3404:0crwdne3404:0" + +#. Label of a Check field in DocType 'Data Import' +#: core/doctype/data_import/data_import.json +msgctxt "Data Import" +msgid "Don't Send Emails" +msgstr "crwdns3406:0crwdne3406:0" + +#. Description of a Check field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Don't encode HTML tags like <script> or just characters like < or >, as they could be intentionally used in this field" +msgstr "crwdns3408:0crwdne3408:0" + +#. Description of a Check field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Don't encode HTML tags like <script> or just characters like < or >, as they could be intentionally used in this field" +msgstr "crwdns3410:0crwdne3410:0" + +#: www/login.html:119 www/login.html:135 www/update-password.html:34 +msgid "Don't have an account?" +msgstr "crwdns3412:0crwdne3412:0" + +#: public/js/frappe/ui/messages.js:233 +#: public/js/onboarding_tours/onboarding_tours.js:17 +msgid "Done" +msgstr "crwdns3414:0crwdne3414:0" + +#. Option for a Select field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "Donut" +msgstr "crwdns3416:0crwdne3416:0" + +#: core/doctype/file/file.js:5 +#: email/doctype/auto_email_report/auto_email_report.js:8 +msgid "Download" +msgstr "crwdns3418:0crwdne3418:0" + +#: public/js/frappe/views/reports/report_utils.js:229 +msgctxt "Export report" +msgid "Download" +msgstr "crwdns3420:0crwdne3420:0" + +#. Label of a Link in the Tools Workspace +#: automation/workspace/tools/tools.json desk/page/backups/backups.js:4 +msgid "Download Backups" +msgstr "crwdns3422:0crwdne3422:0" + +#: templates/emails/download_data.html:6 +msgid "Download Data" +msgstr "crwdns3424:0crwdne3424:0" + +#: desk/page/backups/backups.js:12 +msgid "Download Files Backup" +msgstr "crwdns3426:0crwdne3426:0" + +#: templates/emails/download_data.html:9 +msgid "Download Link" +msgstr "crwdns3428:0crwdne3428:0" + +#: public/js/frappe/views/reports/query_report.js:764 +msgid "Download Report" +msgstr "crwdns3430:0crwdne3430:0" + +#. Label of a Button field in DocType 'Data Import' +#: core/doctype/data_import/data_import.json +msgctxt "Data Import" +msgid "Download Template" +msgstr "crwdns3432:0crwdne3432:0" + +#: website/doctype/personal_data_download_request/personal_data_download_request.py:60 +#: website/doctype/personal_data_download_request/personal_data_download_request.py:68 +#: website/doctype/personal_data_download_request/test_personal_data_download_request.py:50 +msgid "Download Your Data" +msgstr "crwdns3434:0crwdne3434:0" + +#: public/js/frappe/model/indicator.js:73 +#: public/js/frappe/ui/filters/filter.js:493 +msgid "Draft" +msgstr "crwdns3436:0crwdne3436:0" + +#: public/js/frappe/views/workspace/blocks/header.js:46 +#: public/js/frappe/views/workspace/blocks/paragraph.js:136 +#: public/js/frappe/views/workspace/blocks/spacer.js:44 +#: public/js/frappe/views/workspace/workspace.js:565 +#: public/js/frappe/widgets/base_widget.js:33 +msgid "Drag" +msgstr "crwdns3438:0crwdne3438:0" + +#. Label of a Password field in DocType 'Dropbox Settings' +#: integrations/doctype/dropbox_settings/dropbox_settings.json +msgctxt "Dropbox Settings" +msgid "Dropbox Access Token" +msgstr "crwdns3440:0crwdne3440:0" + +#. Label of a Password field in DocType 'Dropbox Settings' +#: integrations/doctype/dropbox_settings/dropbox_settings.json +msgctxt "Dropbox Settings" +msgid "Dropbox Refresh Token" +msgstr "crwdns3442:0crwdne3442:0" + +#. Name of a DocType +#: integrations/doctype/dropbox_settings/dropbox_settings.json +msgid "Dropbox Settings" +msgstr "crwdns3444:0crwdne3444:0" + +#. Label of a Link in the Integrations Workspace +#: integrations/workspace/integrations/integrations.json +msgctxt "Dropbox Settings" +msgid "Dropbox Settings" +msgstr "crwdns3446:0crwdne3446:0" + +#: integrations/doctype/dropbox_settings/dropbox_settings.py:348 +msgid "Dropbox Setup" +msgstr "crwdns3448:0crwdne3448:0" + +#. Label of a Section Break field in DocType 'Navbar Settings' +#: core/doctype/navbar_settings/navbar_settings.json +msgctxt "Navbar Settings" +msgid "Dropdowns" +msgstr "crwdns3450:0crwdne3450:0" + +#. Label of a Date field in DocType 'ToDo' +#: desk/doctype/todo/todo.json +msgctxt "ToDo" +msgid "Due Date" +msgstr "crwdns3452:0crwdne3452:0" + +#. Label of a Select field in DocType 'Assignment Rule' +#: automation/doctype/assignment_rule/assignment_rule.json +msgctxt "Assignment Rule" +msgid "Due Date Based On" +msgstr "crwdns3454:0crwdne3454:0" + +#: public/js/frappe/form/toolbar.js:377 +#: public/js/frappe/views/workspace/workspace.js:808 +#: public/js/frappe/views/workspace/workspace.js:975 +msgid "Duplicate" +msgstr "crwdns3456:0crwdne3456:0" + +#: printing/doctype/print_format_field_template/print_format_field_template.py:52 +msgid "Duplicate Entry" +msgstr "crwdns3458:0crwdne3458:0" + +#: public/js/frappe/list/list_filter.js:137 +msgid "Duplicate Filter Name" +msgstr "crwdns3460:0crwdne3460:0" + +#: model/base_document.py:563 model/rename_doc.py:112 +msgid "Duplicate Name" +msgstr "crwdns3462:0crwdne3462:0" + +#: public/js/frappe/views/workspace/workspace.js:547 +#: public/js/frappe/views/workspace/workspace.js:809 +msgid "Duplicate Workspace" +msgstr "crwdns3464:0crwdne3464:0" + +#: public/js/frappe/form/form.js:208 +msgid "Duplicate current row" +msgstr "crwdns3466:0crwdne3466:0" + +#: public/js/frappe/views/workspace/workspace.js:990 +msgid "Duplicate of {0} named as {1} is created successfully" +msgstr "crwdns3468:0{0}crwdnd3468:0{1}crwdne3468:0" + +#. Option for a Select field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Duration" +msgstr "crwdns3470:0crwdne3470:0" + +#. Option for a Select field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Duration" +msgstr "crwdns3472:0crwdne3472:0" + +#. Option for a Select field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Duration" +msgstr "crwdns3474:0crwdne3474:0" + +#. Label of a Float field in DocType 'Recorder' +#: core/doctype/recorder/recorder.json +msgctxt "Recorder" +msgid "Duration" +msgstr "crwdns3476:0crwdne3476:0" + +#. Label of a Float field in DocType 'Recorder Query' +#: core/doctype/recorder_query/recorder_query.json +msgctxt "Recorder Query" +msgid "Duration" +msgstr "crwdns3478:0crwdne3478:0" + +#. Option for a Select field in DocType 'Report Column' +#: core/doctype/report_column/report_column.json +msgctxt "Report Column" +msgid "Duration" +msgstr "crwdns3480:0crwdne3480:0" + +#. Option for a Select field in DocType 'Web Form Field' +#: website/doctype/web_form_field/web_form_field.json +msgctxt "Web Form Field" +msgid "Duration" +msgstr "crwdns3482:0crwdne3482:0" + +#. Label of a Section Break field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "Dynamic Filters" +msgstr "crwdns3484:0crwdne3484:0" + +#. Label of a Code field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "Dynamic Filters JSON" +msgstr "crwdns3486:0crwdne3486:0" + +#. Label of a Code field in DocType 'Number Card' +#: desk/doctype/number_card/number_card.json +msgctxt "Number Card" +msgid "Dynamic Filters JSON" +msgstr "crwdns3488:0crwdne3488:0" + +#. Label of a Section Break field in DocType 'Number Card' +#: desk/doctype/number_card/number_card.json +msgctxt "Number Card" +msgid "Dynamic Filters Section" +msgstr "crwdns3490:0crwdne3490:0" + +#. Name of a DocType +#: core/doctype/dynamic_link/dynamic_link.json +msgid "Dynamic Link" +msgstr "crwdns3492:0crwdne3492:0" + +#. Option for a Select field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Dynamic Link" +msgstr "crwdns3494:0crwdne3494:0" + +#. Option for a Select field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Dynamic Link" +msgstr "crwdns3496:0crwdne3496:0" + +#. Option for a Select field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Dynamic Link" +msgstr "crwdns3498:0crwdne3498:0" + +#. Option for a Select field in DocType 'Report Column' +#: core/doctype/report_column/report_column.json +msgctxt "Report Column" +msgid "Dynamic Link" +msgstr "crwdns3500:0crwdne3500:0" + +#. Option for a Select field in DocType 'Report Filter' +#: core/doctype/report_filter/report_filter.json +msgctxt "Report Filter" +msgid "Dynamic Link" +msgstr "crwdns3502:0crwdne3502:0" + +#. Label of a Section Break field in DocType 'Auto Email Report' +#: email/doctype/auto_email_report/auto_email_report.json +msgctxt "Auto Email Report" +msgid "Dynamic Report Filters" +msgstr "crwdns3504:0crwdne3504:0" + +#. Label of a Check field in DocType 'Web Page' +#: website/doctype/web_page/web_page.json +msgctxt "Web Page" +msgid "Dynamic Route" +msgstr "crwdns3506:0crwdne3506:0" + +#. Label of a Check field in DocType 'Web Page' +#: website/doctype/web_page/web_page.json +msgctxt "Web Page" +msgid "Dynamic Template" +msgstr "crwdns3508:0crwdne3508:0" + +#. Description of the Onboarding Step 'Setup Naming Series' +#: custom/onboarding_step/naming_series/naming_series.json +msgid "Each document created in ERPNext can have a unique ID generated for it, using a prefix defined for it. Though each document has some prefix pre-configured, you can further customize it using tools like Naming Series Tool and Document Naming Rule.\n" +msgstr "crwdns3510:0crwdne3510:0" + +#: core/page/dashboard_view/dashboard_view.js:169 +#: printing/page/print_format_builder_beta/print_format_builder_beta.js:46 +#: printing/page/print_format_builder_beta/print_format_builder_beta.js:85 +#: public/js/frappe/form/controls/markdown_editor.js:31 +#: public/js/frappe/form/footer/form_timeline.js:638 +#: public/js/frappe/form/toolbar.js:672 +#: public/js/frappe/views/reports/query_report.js:809 +#: public/js/frappe/views/reports/query_report.js:1617 +#: public/js/frappe/views/workspace/workspace.js:448 +#: public/js/frappe/views/workspace/workspace.js:802 +#: public/js/frappe/widgets/base_widget.js:64 +#: public/js/frappe/widgets/chart_widget.js:298 +#: public/js/frappe/widgets/number_card_widget.js:314 +#: templates/discussions/reply_card.html:29 +#: workflow/page/workflow_builder/workflow_builder.js:46 +#: workflow/page/workflow_builder/workflow_builder.js:84 +msgid "Edit" +msgstr "crwdns3512:0crwdne3512:0" + +#: public/js/frappe/list/list_view.js:1943 +msgctxt "Button in list view actions menu" +msgid "Edit" +msgstr "crwdns3514:0crwdne3514:0" + +#. Option for a Select field in DocType 'Comment' +#: core/doctype/comment/comment.json +msgctxt "Comment" +msgid "Edit" +msgstr "crwdns3516:0crwdne3516:0" + +#: templates/emails/auto_email_report.html:63 +msgid "Edit Auto Email Report Settings" +msgstr "crwdns3518:0crwdne3518:0" + +#: printing/page/print_format_builder/print_format_builder.js:719 +msgid "Edit Custom HTML" +msgstr "crwdns3520:0crwdne3520:0" + +#: public/js/frappe/form/toolbar.js:546 +msgid "Edit DocType" +msgstr "crwdns3522:0crwdne3522:0" + +#: public/js/frappe/list/list_view.js:1691 +msgctxt "Button in list view menu" +msgid "Edit DocType" +msgstr "crwdns3524:0crwdne3524:0" + +#: printing/page/print_format_builder_beta/print_format_builder_beta.js:42 +#: workflow/page/workflow_builder/workflow_builder.js:42 +msgid "Edit Existing" +msgstr "crwdns3526:0crwdne3526:0" + +#: printing/doctype/print_format/print_format.js:28 +msgid "Edit Format" +msgstr "crwdns3528:0crwdne3528:0" + +#: public/js/frappe/form/quick_entry.js:275 +msgid "Edit Full Form" +msgstr "crwdns3530:0crwdne3530:0" + +#: printing/page/print_format_builder/print_format_builder.js:602 +msgid "Edit Heading" +msgstr "crwdns3532:0crwdne3532:0" + +#: public/js/print_format_builder/print_format_builder.bundle.js:24 +msgid "Edit Print Format" +msgstr "crwdns3534:0crwdne3534:0" + +#: desk/page/user_profile/user_profile_controller.js:273 www/me.html:27 +msgid "Edit Profile" +msgstr "crwdns3536:0crwdne3536:0" + +#: printing/page/print_format_builder/print_format_builder.js:173 +msgid "Edit Properties" +msgstr "crwdns3538:0crwdne3538:0" + +#: website/doctype/web_form/templates/web_form.html:20 +msgid "Edit Response" +msgstr "crwdns3540:0crwdne3540:0" + +#: public/js/frappe/utils/web_template.js:5 +msgid "Edit Values" +msgstr "crwdns3542:0crwdne3542:0" + +#. Label of a Button field in DocType 'Web Page Block' +#: website/doctype/web_page_block/web_page_block.json +msgctxt "Web Page Block" +msgid "Edit Values" +msgstr "crwdns3544:0crwdne3544:0" + +#. Label of a Button field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Edit Values" +msgstr "crwdns3546:0crwdne3546:0" + +#: public/js/frappe/views/workspace/workspace.js:803 +msgid "Edit Workspace" +msgstr "crwdns3548:0crwdne3548:0" + +#: desk/doctype/note/note.js:11 +msgid "Edit mode" +msgstr "crwdns3550:0crwdne3550:0" + +#: printing/page/print_format_builder/print_format_builder.js:713 +msgid "Edit to add content" +msgstr "crwdns3552:0crwdne3552:0" + +#: workflow/doctype/workflow/workflow.js:18 +msgid "Edit your workflow visually using the Workflow Builder." +msgstr "crwdns3554:0crwdne3554:0" + +#: public/js/frappe/views/reports/report_view.js:652 +msgid "Edit {0}" +msgstr "crwdns3556:0{0}crwdne3556:0" + +#: core/doctype/doctype/doctype_list.js:41 +msgid "Editable Grid" +msgstr "crwdns3558:0crwdne3558:0" + +#. Label of a Check field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Editable Grid" +msgstr "crwdns3560:0crwdne3560:0" + +#. Label of a Check field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Editable Grid" +msgstr "crwdns3562:0crwdne3562:0" + +#: public/js/print_format_builder/print_format_builder.bundle.js:14 +#: public/js/workflow_builder/workflow_builder.bundle.js:20 +msgid "Editing {0}" +msgstr "crwdns3564:0{0}crwdne3564:0" + +#. Description of a Small Text field in DocType 'SMS Settings' +#: core/doctype/sms_settings/sms_settings.json +msgctxt "SMS Settings" +msgid "Eg. smsgateway.com/api/send_sms.cgi" +msgstr "crwdns3566:0crwdne3566:0" + +#: rate_limiter.py:139 +msgid "Either key or IP flag is required." +msgstr "crwdns3568:0crwdne3568:0" + +#. Label of a Data field in DocType 'Form Tour Step' +#: desk/doctype/form_tour_step/form_tour_step.json +msgctxt "Form Tour Step" +msgid "Element Selector" +msgstr "crwdns3570:0crwdne3570:0" + +#. Label of a Card Break in the Tools Workspace +#: automation/workspace/tools/tools.json +#: core/doctype/success_action/success_action.js:57 +#: email/doctype/newsletter/newsletter.js:156 +#: public/js/frappe/form/success_action.js:85 +#: public/js/frappe/form/toolbar.js:341 +#: templates/includes/comments/comments.html:25 templates/signup.html:9 +#: www/login.html:7 www/login.py:93 +msgid "Email" +msgstr "crwdns3572:0crwdne3572:0" + +#. Option for a Select field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Email" +msgstr "crwdns3574:0crwdne3574:0" + +#. Label of a Check field in DocType 'Custom DocPerm' +#: core/doctype/custom_docperm/custom_docperm.json +msgctxt "Custom DocPerm" +msgid "Email" +msgstr "crwdns3576:0crwdne3576:0" + +#. Label of a Check field in DocType 'DocPerm' +#: core/doctype/docperm/docperm.json +msgctxt "DocPerm" +msgid "Email" +msgstr "crwdns3578:0crwdne3578:0" + +#. Label of a Data field in DocType 'Email Group Member' +#: email/doctype/email_group_member/email_group_member.json +msgctxt "Email Group Member" +msgid "Email" +msgstr "crwdns3580:0crwdne3580:0" + +#. Label of a Data field in DocType 'Email Unsubscribe' +#: email/doctype/email_unsubscribe/email_unsubscribe.json +msgctxt "Email Unsubscribe" +msgid "Email" +msgstr "crwdns3582:0crwdne3582:0" + +#. Label of a Data field in DocType 'Event Participants' +#: desk/doctype/event_participants/event_participants.json +msgctxt "Event Participants" +msgid "Email" +msgstr "crwdns3584:0crwdne3584:0" + +#. Option for a Select field in DocType 'Notification' +#: email/doctype/notification/notification.json +msgctxt "Notification" +msgid "Email" +msgstr "crwdns3586:0crwdne3586:0" + +#. Label of a Data field in DocType 'Personal Data Deletion Request' +#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +msgctxt "Personal Data Deletion Request" +msgid "Email" +msgstr "crwdns3588:0crwdne3588:0" + +#. Option for a Select field in DocType 'System Settings' +#. Label of a Tab Break field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Email" +msgstr "crwdns3590:0crwdne3590:0" + +#. Label of a Data field in DocType 'User' +#. Label of a Section Break field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Email" +msgstr "crwdns3592:0crwdne3592:0" + +#. Name of a DocType +#: core/doctype/communication/communication.js:199 +#: email/doctype/email_account/email_account.json +msgid "Email Account" +msgstr "crwdns3594:0crwdne3594:0" + +#. Label of a Link field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Email Account" +msgstr "crwdns3596:0crwdne3596:0" + +#. Label of a Link in the Tools Workspace +#: automation/workspace/tools/tools.json +msgctxt "Email Account" +msgid "Email Account" +msgstr "crwdns3598:0crwdne3598:0" + +#. Linked DocType in Email Domain's connections +#: email/doctype/email_domain/email_domain.json +msgctxt "Email Domain" +msgid "Email Account" +msgstr "crwdns3600:0crwdne3600:0" + +#. Label of a Data field in DocType 'Email Flag Queue' +#: email/doctype/email_flag_queue/email_flag_queue.json +msgctxt "Email Flag Queue" +msgid "Email Account" +msgstr "crwdns3602:0crwdne3602:0" + +#. Label of a Link field in DocType 'Email Queue' +#: email/doctype/email_queue/email_queue.json +msgctxt "Email Queue" +msgid "Email Account" +msgstr "crwdns3604:0crwdne3604:0" + +#. Label of a Link field in DocType 'Unhandled Email' +#: email/doctype/unhandled_email/unhandled_email.json +msgctxt "Unhandled Email" +msgid "Email Account" +msgstr "crwdns3606:0crwdne3606:0" + +#. Label of a Link field in DocType 'User Email' +#: core/doctype/user_email/user_email.json +msgctxt "User Email" +msgid "Email Account" +msgstr "crwdns3608:0crwdne3608:0" + +#: email/doctype/email_account/email_account.py:298 +msgid "Email Account Disabled." +msgstr "crwdns3610:0crwdne3610:0" + +#. Label of a Data field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Email Account Name" +msgstr "crwdns3612:0crwdne3612:0" + +#: core/doctype/user/user.py:697 +msgid "Email Account added multiple times" +msgstr "crwdns3614:0crwdne3614:0" + +#: email/smtp.py:42 +msgid "Email Account not setup. Please create a new Email Account from Settings > Email Account" +msgstr "crwdns3616:0crwdne3616:0" + +#: desk/page/setup_wizard/setup_wizard.js:470 www/complete_signup.html:11 +#: www/login.html:164 www/login.html:196 +msgid "Email Address" +msgstr "crwdns3618:0crwdne3618:0" + +#. Label of a Data field in DocType 'Address' +#: contacts/doctype/address/address.json +msgctxt "Address" +msgid "Email Address" +msgstr "crwdns3620:0crwdne3620:0" + +#. Label of a Data field in DocType 'Contact' +#: contacts/doctype/contact/contact.json +msgctxt "Contact" +msgid "Email Address" +msgstr "crwdns3622:0crwdne3622:0" + +#. Label of a Data field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Email Address" +msgstr "crwdns3624:0crwdne3624:0" + +#. Label of a Data field in DocType 'Google Contacts' +#: integrations/doctype/google_contacts/google_contacts.json +msgctxt "Google Contacts" +msgid "Email Address" +msgstr "crwdns3626:0crwdne3626:0" + +#. Description of a Data field in DocType 'Google Contacts' +#: integrations/doctype/google_contacts/google_contacts.json +msgctxt "Google Contacts" +msgid "Email Address whose Google Contacts are to be synced." +msgstr "crwdns3628:0crwdne3628:0" + +#: email/doctype/email_group/email_group.js:43 +msgid "Email Addresses" +msgstr "crwdns3630:0crwdne3630:0" + +#. Description of a Small Text field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Email Addresses" +msgstr "crwdns3632:0crwdne3632:0" + +#. Name of a DocType +#: email/doctype/email_domain/email_domain.json +msgid "Email Domain" +msgstr "crwdns3634:0crwdne3634:0" + +#. Label of a Link in the Tools Workspace +#: automation/workspace/tools/tools.json +msgctxt "Email Domain" +msgid "Email Domain" +msgstr "crwdns3636:0crwdne3636:0" + +#. Name of a DocType +#: email/doctype/email_flag_queue/email_flag_queue.json +msgid "Email Flag Queue" +msgstr "crwdns3638:0crwdne3638:0" + +#. Label of a Small Text field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Email Footer Address" +msgstr "crwdns3640:0crwdne3640:0" + +#. Name of a DocType +#: email/doctype/email_group/email_group.json +msgid "Email Group" +msgstr "crwdns3642:0crwdne3642:0" + +#. Label of a Link in the Tools Workspace +#: automation/workspace/tools/tools.json +msgctxt "Email Group" +msgid "Email Group" +msgstr "crwdns3644:0crwdne3644:0" + +#. Label of a Link field in DocType 'Email Group Member' +#: email/doctype/email_group_member/email_group_member.json +msgctxt "Email Group Member" +msgid "Email Group" +msgstr "crwdns3646:0crwdne3646:0" + +#. Label of a Link field in DocType 'Newsletter Email Group' +#: email/doctype/newsletter_email_group/newsletter_email_group.json +msgctxt "Newsletter Email Group" +msgid "Email Group" +msgstr "crwdns3648:0crwdne3648:0" + +#. Name of a DocType +#: email/doctype/email_group_member/email_group_member.json +msgid "Email Group Member" +msgstr "crwdns3650:0crwdne3650:0" + +#. Linked DocType in Email Group's connections +#: email/doctype/email_group/email_group.json +msgctxt "Email Group" +msgid "Email Group Member" +msgstr "crwdns3652:0crwdne3652:0" + +#. Label of a Data field in DocType 'Contact Email' +#: contacts/doctype/contact_email/contact_email.json +msgctxt "Contact Email" +msgid "Email ID" +msgstr "crwdns3654:0crwdne3654:0" + +#. Label of a Data field in DocType 'Email Rule' +#: email/doctype/email_rule/email_rule.json +msgctxt "Email Rule" +msgid "Email ID" +msgstr "crwdns3656:0crwdne3656:0" + +#. Label of a Data field in DocType 'User Email' +#: core/doctype/user_email/user_email.json +msgctxt "User Email" +msgid "Email ID" +msgstr "crwdns3658:0crwdne3658:0" + +#. Label of a Table field in DocType 'Contact' +#: contacts/doctype/contact/contact.json +msgctxt "Contact" +msgid "Email IDs" +msgstr "crwdns3660:0crwdne3660:0" + +#. Label of a Data field in DocType 'Contact Us Settings' +#: website/doctype/contact_us_settings/contact_us_settings.json +msgctxt "Contact Us Settings" +msgid "Email Id" +msgstr "crwdns3662:0crwdne3662:0" + +#. Label of a Section Break field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Email Inbox" +msgstr "crwdns3664:0crwdne3664:0" + +#. Name of a DocType +#: email/doctype/email_queue/email_queue.json +msgid "Email Queue" +msgstr "crwdns3666:0crwdne3666:0" + +#. Name of a DocType +#: email/doctype/email_queue_recipient/email_queue_recipient.json +msgid "Email Queue Recipient" +msgstr "crwdns3668:0crwdne3668:0" + +#: email/queue.py:163 +msgid "Email Queue flushing aborted due to too many failures." +msgstr "crwdns3670:0crwdne3670:0" + +#. Label of a HTML field in DocType 'Email Template' +#: email/doctype/email_template/email_template.json +msgctxt "Email Template" +msgid "Email Reply Help" +msgstr "crwdns3672:0crwdne3672:0" + +#. Label of a Int field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Email Retry Limit" +msgstr "crwdns3674:0crwdne3674:0" + +#. Name of a DocType +#: email/doctype/email_rule/email_rule.json +msgid "Email Rule" +msgstr "crwdns3676:0crwdne3676:0" + +#. Label of a Check field in DocType 'Blog Post' +#: website/doctype/blog_post/blog_post.json +msgctxt "Blog Post" +msgid "Email Sent" +msgstr "crwdns3678:0crwdne3678:0" + +#. Label of a Check field in DocType 'Newsletter' +#: email/doctype/newsletter/newsletter.json +msgctxt "Newsletter" +msgid "Email Sent" +msgstr "crwdns3680:0crwdne3680:0" + +#. Label of a Datetime field in DocType 'Newsletter' +#: email/doctype/newsletter/newsletter.json +msgctxt "Newsletter" +msgid "Email Sent At" +msgstr "crwdns3682:0crwdne3682:0" + +#. Label of a Section Break field in DocType 'Auto Email Report' +#: email/doctype/auto_email_report/auto_email_report.json +msgctxt "Auto Email Report" +msgid "Email Settings" +msgstr "crwdns3684:0crwdne3684:0" + +#. Label of a Section Break field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Email Settings" +msgstr "crwdns3686:0crwdne3686:0" + +#. Label of a Section Break field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Email Settings" +msgstr "crwdns3688:0crwdne3688:0" + +#. Label of a Section Break field in DocType 'Notification Settings' +#: desk/doctype/notification_settings/notification_settings.json +msgctxt "Notification Settings" +msgid "Email Settings" +msgstr "crwdns3690:0crwdne3690:0" + +#. Label of a Small Text field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Email Signature" +msgstr "crwdns3692:0crwdne3692:0" + +#. Label of a Select field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Email Status" +msgstr "crwdns3694:0crwdne3694:0" + +#. Label of a Select field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Email Sync Option" +msgstr "crwdns3696:0crwdne3696:0" + +#. Name of a DocType +#: email/doctype/email_template/email_template.json +#: public/js/frappe/views/communication.js:91 +msgid "Email Template" +msgstr "crwdns3698:0crwdne3698:0" + +#. Label of a Link field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Email Template" +msgstr "crwdns3700:0crwdne3700:0" + +#. Label of a Link in the Tools Workspace +#: automation/workspace/tools/tools.json +msgctxt "Email Template" +msgid "Email Template" +msgstr "crwdns3702:0crwdne3702:0" + +#. Label of a Check field in DocType 'Notification Settings' +#: desk/doctype/notification_settings/notification_settings.json +msgctxt "Notification Settings" +msgid "Email Threads on Assigned Document" +msgstr "crwdns3704:0crwdne3704:0" + +#. Label of a Small Text field in DocType 'Auto Email Report' +#: email/doctype/auto_email_report/auto_email_report.json +msgctxt "Auto Email Report" +msgid "Email To" +msgstr "crwdns3706:0crwdne3706:0" + +#. Name of a DocType +#: email/doctype/email_unsubscribe/email_unsubscribe.json +msgid "Email Unsubscribe" +msgstr "crwdns3708:0crwdne3708:0" + +#: core/doctype/communication/communication.js:342 +msgid "Email has been marked as spam" +msgstr "crwdns3710:0crwdne3710:0" + +#: core/doctype/communication/communication.js:355 +msgid "Email has been moved to trash" +msgstr "crwdns3712:0crwdne3712:0" + +#: public/js/frappe/views/communication.js:703 +msgid "Email not sent to {0} (unsubscribed / disabled)" +msgstr "crwdns3714:0{0}crwdne3714:0" + +#: utils/oauth.py:163 +msgid "Email not verified with {0}" +msgstr "crwdns3716:0{0}crwdne3716:0" + +#: email/queue.py:141 +msgid "Emails are muted" +msgstr "crwdns3718:0crwdne3718:0" + +#. Description of a Check field in DocType 'Workflow' +#: workflow/doctype/workflow/workflow.json +msgctxt "Workflow" +msgid "Emails will be sent with next possible workflow actions" +msgstr "crwdns3720:0crwdne3720:0" + +#. Label of a Check field in DocType 'Google Calendar' +#: integrations/doctype/google_calendar/google_calendar.json +msgctxt "Google Calendar" +msgid "Enable" +msgstr "crwdns3722:0crwdne3722:0" + +#. Label of a Check field in DocType 'Google Contacts' +#: integrations/doctype/google_contacts/google_contacts.json +msgctxt "Google Contacts" +msgid "Enable" +msgstr "crwdns3724:0crwdne3724:0" + +#. Label of a Check field in DocType 'Google Drive' +#: integrations/doctype/google_drive/google_drive.json +msgctxt "Google Drive" +msgid "Enable" +msgstr "crwdns3726:0crwdne3726:0" + +#. Label of a Check field in DocType 'Google Settings' +#: integrations/doctype/google_settings/google_settings.json +msgctxt "Google Settings" +msgid "Enable" +msgstr "crwdns3728:0crwdne3728:0" + +#: automation/doctype/auto_repeat/auto_repeat.py:116 +msgid "Enable Allow Auto Repeat for the doctype {0} in Customize Form" +msgstr "crwdns3730:0{0}crwdne3730:0" + +#. Label of a Check field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Enable Auto Reply" +msgstr "crwdns3732:0crwdne3732:0" + +#. Label of a Check field in DocType 'S3 Backup Settings' +#: integrations/doctype/s3_backup_settings/s3_backup_settings.json +msgctxt "S3 Backup Settings" +msgid "Enable Automatic Backup" +msgstr "crwdns3734:0crwdne3734:0" + +#. Label of a Check field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Enable Automatic Linking in Documents" +msgstr "crwdns3736:0crwdne3736:0" + +#. Label of a Check field in DocType 'Web Page' +#: website/doctype/web_page/web_page.json +msgctxt "Web Page" +msgid "Enable Comments" +msgstr "crwdns3738:0crwdne3738:0" + +#. Label of a Check field in DocType 'Blog Post' +#: website/doctype/blog_post/blog_post.json +msgctxt "Blog Post" +msgid "Enable Email Notification" +msgstr "crwdns3740:0crwdne3740:0" + +#. Label of a Check field in DocType 'Notification Settings' +#: desk/doctype/notification_settings/notification_settings.json +msgctxt "Notification Settings" +msgid "Enable Email Notifications" +msgstr "crwdns3742:0crwdne3742:0" + +#: integrations/doctype/google_calendar/google_calendar.py:89 +#: integrations/doctype/google_contacts/google_contacts.py:35 +#: website/doctype/website_settings/website_settings.py:129 +msgid "Enable Google API in Google Settings." +msgstr "crwdns3744:0crwdne3744:0" + +#. Label of a Check field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Enable Google indexing" +msgstr "crwdns3746:0crwdne3746:0" + +#: email/doctype/email_account/email_account.py:194 +msgid "Enable Incoming" +msgstr "crwdns3748:0crwdne3748:0" + +#. Label of a Check field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Enable Incoming" +msgstr "crwdns3750:0crwdne3750:0" + +#. Label of a Check field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Enable Onboarding" +msgstr "crwdns3752:0crwdne3752:0" + +#: email/doctype/email_account/email_account.py:201 +msgid "Enable Outgoing" +msgstr "crwdns3754:0crwdne3754:0" + +#. Label of a Check field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Enable Outgoing" +msgstr "crwdns3756:0crwdne3756:0" + +#. Label of a Check field in DocType 'User Email' +#: core/doctype/user_email/user_email.json +msgctxt "User Email" +msgid "Enable Outgoing" +msgstr "crwdns3758:0crwdne3758:0" + +#. Label of a Check field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Enable Password Policy" +msgstr "crwdns3760:0crwdne3760:0" + +#. Label of a Check field in DocType 'Role Permission for Page and Report' +#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json +msgctxt "Role Permission for Page and Report" +msgid "Enable Prepared Report" +msgstr "crwdns3762:0crwdne3762:0" + +#. Label of a Check field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "Enable Print Server" +msgstr "crwdns3764:0crwdne3764:0" + +#. Label of a Check field in DocType 'Server Script' +#: core/doctype/server_script/server_script.json +msgctxt "Server Script" +msgid "Enable Rate Limit" +msgstr "crwdns3766:0crwdne3766:0" + +#. Label of a Check field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "Enable Raw Printing" +msgstr "crwdns3768:0crwdne3768:0" + +#: core/doctype/report/report.js:36 +msgid "Enable Report" +msgstr "crwdns3770:0crwdne3770:0" + +#. Label of a Check field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Enable Scheduled Jobs" +msgstr "crwdns3772:0crwdne3772:0" + +#: core/doctype/rq_job/rq_job_list.js:23 +msgid "Enable Scheduler" +msgstr "crwdns3774:0crwdne3774:0" + +#. Label of a Check field in DocType 'Webhook' +#: integrations/doctype/webhook/webhook.json +msgctxt "Webhook" +msgid "Enable Security" +msgstr "crwdns3776:0crwdne3776:0" + +#. Label of a Check field in DocType 'Social Login Key' +#: integrations/doctype/social_login_key/social_login_key.json +msgctxt "Social Login Key" +msgid "Enable Social Login" +msgstr "crwdns3778:0crwdne3778:0" + +#. Label of a Check field in DocType 'Blog Settings' +#: website/doctype/blog_settings/blog_settings.json +msgctxt "Blog Settings" +msgid "Enable Social Sharing" +msgstr "crwdns3780:0crwdne3780:0" + +#: website/doctype/website_settings/website_settings.js:139 +msgid "Enable Tracking Page Views" +msgstr "crwdns3782:0crwdne3782:0" + +#: twofactor.py:456 +msgid "Enable Two Factor Auth" +msgstr "crwdns3784:0crwdne3784:0" + +#. Label of a Check field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Enable Two Factor Auth" +msgstr "crwdns3786:0crwdne3786:0" + +#. Title of an Onboarding Step +#: website/onboarding_step/enable_website_tracking/enable_website_tracking.json +msgid "Enable Website Tracking" +msgstr "crwdns3788:0crwdne3788:0" + +#: printing/doctype/print_format_field_template/print_format_field_template.py:27 +msgid "Enable developer mode to create a standard Print Template" +msgstr "crwdns3790:0crwdne3790:0" + +#: website/doctype/web_template/web_template.py:33 +msgid "Enable developer mode to create a standard Web Template" +msgstr "crwdns3792:0crwdne3792:0" + +#. Description of a Check field in DocType 'Blog Post' +#: website/doctype/blog_post/blog_post.json +msgctxt "Blog Post" +msgid "Enable email notification for any comment or likes received on your Blog Post." +msgstr "crwdns3794:0crwdne3794:0" + +#. Description of a Check field in DocType 'Form Tour Step' +#: desk/doctype/form_tour_step/form_tour_step.json +msgctxt "Form Tour Step" +msgid "Enable if on click\n" +"opens modal." +msgstr "crwdns3796:0crwdne3796:0" + +#. Label of a Check field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Enable in-app website tracking" +msgstr "crwdns3798:0crwdne3798:0" + +#: public/js/frappe/model/indicator.js:106 +#: public/js/frappe/model/indicator.js:117 +msgid "Enabled" +msgstr "crwdns3800:0crwdne3800:0" + +#. Label of a Check field in DocType 'Auto Email Report' +#: email/doctype/auto_email_report/auto_email_report.json +msgctxt "Auto Email Report" +msgid "Enabled" +msgstr "crwdns3802:0crwdne3802:0" + +#. Label of a Check field in DocType 'Client Script' +#: custom/doctype/client_script/client_script.json +msgctxt "Client Script" +msgid "Enabled" +msgstr "crwdns3804:0crwdne3804:0" + +#. Label of a Check field in DocType 'Currency' +#: geo/doctype/currency/currency.json +msgctxt "Currency" +msgid "Enabled" +msgstr "crwdns3806:0crwdne3806:0" + +#. Label of a Check field in DocType 'Dropbox Settings' +#: integrations/doctype/dropbox_settings/dropbox_settings.json +msgctxt "Dropbox Settings" +msgid "Enabled" +msgstr "crwdns3808:0crwdne3808:0" + +#. Label of a Check field in DocType 'Energy Point Rule' +#: social/doctype/energy_point_rule/energy_point_rule.json +msgctxt "Energy Point Rule" +msgid "Enabled" +msgstr "crwdns3810:0crwdne3810:0" + +#. Label of a Check field in DocType 'Energy Point Settings' +#: social/doctype/energy_point_settings/energy_point_settings.json +msgctxt "Energy Point Settings" +msgid "Enabled" +msgstr "crwdns3812:0crwdne3812:0" + +#. Label of a Check field in DocType 'LDAP Settings' +#: integrations/doctype/ldap_settings/ldap_settings.json +msgctxt "LDAP Settings" +msgid "Enabled" +msgstr "crwdns3814:0crwdne3814:0" + +#. Label of a Check field in DocType 'Language' +#: core/doctype/language/language.json +msgctxt "Language" +msgid "Enabled" +msgstr "crwdns3816:0crwdne3816:0" + +#. Label of a Check field in DocType 'Notification' +#: email/doctype/notification/notification.json +msgctxt "Notification" +msgid "Enabled" +msgstr "crwdns3818:0crwdne3818:0" + +#. Label of a Check field in DocType 'Notification Settings' +#: desk/doctype/notification_settings/notification_settings.json +msgctxt "Notification Settings" +msgid "Enabled" +msgstr "crwdns3820:0crwdne3820:0" + +#. Label of a Check field in DocType 'Portal Menu Item' +#: website/doctype/portal_menu_item/portal_menu_item.json +msgctxt "Portal Menu Item" +msgid "Enabled" +msgstr "crwdns3822:0crwdne3822:0" + +#. Label of a Check field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Enabled" +msgstr "crwdns3824:0crwdne3824:0" + +#. Label of a Check field in DocType 'Webhook' +#: integrations/doctype/webhook/webhook.json +msgctxt "Webhook" +msgid "Enabled" +msgstr "crwdns3826:0crwdne3826:0" + +#: core/doctype/rq_job/rq_job_list.js:29 +msgid "Enabled Scheduler" +msgstr "crwdns3828:0crwdne3828:0" + +#: email/doctype/email_account/email_account.py:896 +msgid "Enabled email inbox for user {0}" +msgstr "crwdns3830:0{0}crwdne3830:0" + +#: core/doctype/server_script/server_script.py:262 +msgid "Enabled scheduled execution for script {0}" +msgstr "crwdns3832:0{0}crwdne3832:0" + +#. Description of a Check field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Enables Calendar and Gantt views." +msgstr "crwdns3834:0crwdne3834:0" + +#. Description of a Check field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Enables Calendar and Gantt views." +msgstr "crwdns3836:0crwdne3836:0" + +#: email/doctype/email_account/email_account.js:232 +msgid "Enabling auto reply on an incoming email account will send automated replies to all the synchronized emails. Do you wish to continue?" +msgstr "crwdns3838:0crwdne3838:0" + +#. Description of a Check field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Enabling this will submit documents in background" +msgstr "crwdns3840:0crwdne3840:0" + +#. Description of a Check field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Enabling this will submit documents in background" +msgstr "crwdns3842:0crwdne3842:0" + +#. Label of a Check field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Encrypt Backups" +msgstr "crwdns3844:0crwdne3844:0" + +#: utils/password.py:184 +msgid "Encryption key is in invalid format!" +msgstr "crwdns3846:0crwdne3846:0" + +#: utils/password.py:198 +msgid "Encryption key is invalid! Please check site_config.json" +msgstr "crwdns3848:0crwdne3848:0" + +#: public/js/frappe/utils/common.js:416 +msgid "End Date" +msgstr "crwdns3850:0crwdne3850:0" + +#. Label of a Date field in DocType 'Audit Trail' +#: core/doctype/audit_trail/audit_trail.json +msgctxt "Audit Trail" +msgid "End Date" +msgstr "crwdns3852:0crwdne3852:0" + +#. Label of a Date field in DocType 'Auto Repeat' +#: automation/doctype/auto_repeat/auto_repeat.json +msgctxt "Auto Repeat" +msgid "End Date" +msgstr "crwdns3854:0crwdne3854:0" + +#. Label of a Datetime field in DocType 'Web Page' +#: website/doctype/web_page/web_page.json +msgctxt "Web Page" +msgid "End Date" +msgstr "crwdns3856:0crwdne3856:0" + +#. Label of a Select field in DocType 'Calendar View' +#: desk/doctype/calendar_view/calendar_view.json +msgctxt "Calendar View" +msgid "End Date Field" +msgstr "crwdns3858:0crwdne3858:0" + +#: website/doctype/web_page/web_page.py:207 +msgid "End Date cannot be before Start Date!" +msgstr "crwdns3860:0crwdne3860:0" + +#. Label of a Datetime field in DocType 'RQ Job' +#: core/doctype/rq_job/rq_job.json +msgctxt "RQ Job" +msgid "Ended At" +msgstr "crwdns3862:0crwdne3862:0" + +#. Label of a Datetime field in DocType 'Submission Queue' +#: core/doctype/submission_queue/submission_queue.json +msgctxt "Submission Queue" +msgid "Ended At" +msgstr "crwdns3864:0crwdne3864:0" + +#. Label of a Data field in DocType 'S3 Backup Settings' +#: integrations/doctype/s3_backup_settings/s3_backup_settings.json +msgctxt "S3 Backup Settings" +msgid "Endpoint URL" +msgstr "crwdns3866:0crwdne3866:0" + +#. Label of a Section Break field in DocType 'Connected App' +#: integrations/doctype/connected_app/connected_app.json +msgctxt "Connected App" +msgid "Endpoints" +msgstr "crwdns3868:0crwdne3868:0" + +#. Label of a Datetime field in DocType 'Event' +#: desk/doctype/event/event.json +msgctxt "Event" +msgid "Ends on" +msgstr "crwdns3870:0crwdne3870:0" + +#. Option for a Select field in DocType 'Notification Log' +#: desk/doctype/notification_log/notification_log.json +msgctxt "Notification Log" +msgid "Energy Point" +msgstr "crwdns3872:0crwdne3872:0" + +#. Name of a DocType +#: social/doctype/energy_point_log/energy_point_log.json +msgid "Energy Point Log" +msgstr "crwdns3874:0crwdne3874:0" + +#. Linked DocType in User's connections +#: core/doctype/user/user.json +msgctxt "User" +msgid "Energy Point Log" +msgstr "crwdns3876:0crwdne3876:0" + +#. Name of a DocType +#: social/doctype/energy_point_rule/energy_point_rule.json +msgid "Energy Point Rule" +msgstr "crwdns3878:0crwdne3878:0" + +#. Linked DocType in DocType's connections +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Energy Point Rule" +msgstr "crwdns3880:0crwdne3880:0" + +#. Name of a DocType +#: social/doctype/energy_point_settings/energy_point_settings.json +msgid "Energy Point Settings" +msgstr "crwdns3882:0crwdne3882:0" + +#: desk/doctype/notification_log/notification_log.py:159 +msgid "Energy Point Update on {0}" +msgstr "crwdns3884:0{0}crwdne3884:0" + +#: templates/emails/energy_points_summary.html:39 +msgid "Energy Points" +msgstr "crwdns3886:0crwdne3886:0" + +#. Label of a Check field in DocType 'Notification Settings' +#: desk/doctype/notification_settings/notification_settings.json +msgctxt "Notification Settings" +msgid "Energy Points" +msgstr "crwdns3888:0crwdne3888:0" + +#. Label of a Data field in DocType 'Submission Queue' +#: core/doctype/submission_queue/submission_queue.json +msgctxt "Submission Queue" +msgid "Enqueued By" +msgstr "crwdns3890:0crwdne3890:0" + +#: integrations/doctype/ldap_settings/ldap_settings.py:105 +msgid "Ensure the user and group search paths are correct." +msgstr "crwdns3892:0crwdne3892:0" + +#: integrations/doctype/google_calendar/google_calendar.py:92 +msgid "Enter Client Id and Client Secret in Google Settings." +msgstr "crwdns3894:0crwdne3894:0" + +#: public/js/frappe/views/communication.js:659 +msgid "Enter Email Recipient(s)" +msgstr "crwdns3896:0crwdne3896:0" + +#. Label of a Link field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Enter Form Type" +msgstr "crwdns3898:0crwdne3898:0" + +#: public/js/frappe/ui/messages.js:94 +msgctxt "Title of prompt dialog" +msgid "Enter Value" +msgstr "crwdns3900:0crwdne3900:0" + +#: public/js/frappe/form/form_tour.js:56 +msgid "Enter a name for this {0}" +msgstr "crwdns3902:0{0}crwdne3902:0" + +#. Description of a Table field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +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 "crwdns3904:0crwdne3904:0" + +#: public/js/frappe/views/file/file_view.js:111 +msgid "Enter folder name" +msgstr "crwdns3906:0crwdne3906:0" + +#. Description of a Table field in DocType 'SMS Settings' +#: core/doctype/sms_settings/sms_settings.json +msgctxt "SMS Settings" +msgid "Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)" +msgstr "crwdns3908:0crwdne3908:0" + +#. Description of a Data field in DocType 'SMS Settings' +#: core/doctype/sms_settings/sms_settings.json +msgctxt "SMS Settings" +msgid "Enter url parameter for message" +msgstr "crwdns3910:0crwdne3910:0" + +#. Description of a Data field in DocType 'SMS Settings' +#: core/doctype/sms_settings/sms_settings.json +msgctxt "SMS Settings" +msgid "Enter url parameter for receiver nos" +msgstr "crwdns3912:0crwdne3912:0" + +#: public/js/frappe/ui/messages.js:334 +msgid "Enter your password" +msgstr "crwdns3914:0crwdne3914:0" + +#: contacts/report/addresses_and_contacts/addresses_and_contacts.js:22 +msgid "Entity Name" +msgstr "crwdns3916:0crwdne3916:0" + +#: contacts/report/addresses_and_contacts/addresses_and_contacts.js:9 +msgid "Entity Type" +msgstr "crwdns3918:0crwdne3918:0" + +#: public/js/frappe/ui/filters/filter.js:16 +msgid "Equals" +msgstr "crwdns3920:0crwdne3920:0" + +#: desk/page/backups/backups.js:35 model/base_document.py:703 +#: model/base_document.py:708 public/js/frappe/ui/messages.js:22 +msgid "Error" +msgstr "crwdns3922:0crwdne3922:0" + +#. Option for a Select field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Error" +msgstr "crwdns3924:0crwdne3924:0" + +#. Option for a Select field in DocType 'Data Import' +#: core/doctype/data_import/data_import.json +msgctxt "Data Import" +msgid "Error" +msgstr "crwdns3926:0crwdne3926:0" + +#. Option for a Select field in DocType 'Email Queue' +#. Label of a Code field in DocType 'Email Queue' +#: email/doctype/email_queue/email_queue.json +msgctxt "Email Queue" +msgid "Error" +msgstr "crwdns3928:0crwdne3928:0" + +#. Label of a Code field in DocType 'Email Queue Recipient' +#: email/doctype/email_queue_recipient/email_queue_recipient.json +msgctxt "Email Queue Recipient" +msgid "Error" +msgstr "crwdns3930:0crwdne3930:0" + +#. Label of a Code field in DocType 'Error Log' +#: core/doctype/error_log/error_log.json +msgctxt "Error Log" +msgid "Error" +msgstr "crwdns3932:0crwdne3932:0" + +#. Label of a Code field in DocType 'Integration Request' +#: integrations/doctype/integration_request/integration_request.json +msgctxt "Integration Request" +msgid "Error" +msgstr "crwdns3934:0crwdne3934:0" + +#. Option for a Select field in DocType 'Prepared Report' +#: core/doctype/prepared_report/prepared_report.json +msgctxt "Prepared Report" +msgid "Error" +msgstr "crwdns3936:0crwdne3936:0" + +#: public/js/frappe/web_form/web_form.js:240 +msgctxt "Title of error message in web form" +msgid "Error" +msgstr "crwdns3938:0crwdne3938:0" + +#. Label of a Text field in DocType 'Webhook Request Log' +#: integrations/doctype/webhook_request_log/webhook_request_log.json +msgctxt "Webhook Request Log" +msgid "Error" +msgstr "crwdns3940:0crwdne3940:0" + +#: www/error.html:34 +msgid "Error Code: {0}" +msgstr "crwdns3942:0{0}crwdne3942:0" + +#. Name of a DocType +#: core/doctype/error_log/error_log.json +msgid "Error Log" +msgstr "crwdns3944:0crwdne3944:0" + +#. Label of a Link in the Build Workspace +#: core/workspace/build/build.json +msgctxt "Error Log" +msgid "Error Logs" +msgstr "crwdns3946:0crwdne3946:0" + +#. Label of a Text field in DocType 'Prepared Report' +#: core/doctype/prepared_report/prepared_report.json +msgctxt "Prepared Report" +msgid "Error Message" +msgstr "crwdns3948:0crwdne3948:0" + +#: public/js/frappe/form/print_utils.js:126 +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 "crwdns3950:0crwdne3950:0" + +#: email/doctype/email_domain/email_domain.py:32 +msgid "Error connecting via IMAP/POP3: {e}" +msgstr "crwdns3952:0{e}crwdne3952:0" + +#: email/doctype/email_domain/email_domain.py:33 +msgid "Error connecting via SMTP: {e}" +msgstr "crwdns3954:0{e}crwdne3954:0" + +#: email/doctype/email_domain/email_domain.py:98 +msgid "Error has occurred in {0}" +msgstr "crwdns3956:0{0}crwdne3956:0" + +#: public/js/frappe/form/script_manager.js:187 +msgid "Error in Client Script" +msgstr "crwdns3958:0crwdne3958:0" + +#: public/js/frappe/form/script_manager.js:241 +msgid "Error in Client Script." +msgstr "crwdns3960:0crwdne3960:0" + +#: email/doctype/notification/notification.py:391 +#: email/doctype/notification/notification.py:507 +#: email/doctype/notification/notification.py:513 +msgid "Error in Notification" +msgstr "crwdns3962:0crwdne3962:0" + +#: utils/pdf.py:48 +msgid "Error in print format on line {0}: {1}" +msgstr "crwdns3964:0{0}crwdnd3964:0{1}crwdne3964:0" + +#: email/doctype/email_account/email_account.py:586 +msgid "Error while connecting to email account {0}" +msgstr "crwdns3966:0{0}crwdne3966:0" + +#: email/doctype/notification/notification.py:504 +msgid "Error while evaluating Notification {0}. Please fix your template." +msgstr "crwdns3968:0{0}crwdne3968:0" + +#: model/document.py:808 +msgid "Error: Document has been modified after you have opened it" +msgstr "crwdns3970:0crwdne3970:0" + +#: model/base_document.py:716 +msgid "Error: Value missing for {0}: {1}" +msgstr "crwdns3972:0{0}crwdnd3972:0{1}crwdne3972:0" + +#. Name of a DocType +#: desk/doctype/event/event.json +msgid "Event" +msgstr "crwdns3974:0crwdne3974:0" + +#. Option for a Select field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Event" +msgstr "crwdns3976:0crwdne3976:0" + +#. Option for a Select field in DocType 'Event' +#: desk/doctype/event/event.json +msgctxt "Event" +msgid "Event" +msgstr "crwdns3978:0crwdne3978:0" + +#. Label of a Select field in DocType 'Event' +#: desk/doctype/event/event.json +msgctxt "Event" +msgid "Event Category" +msgstr "crwdns3980:0crwdne3980:0" + +#. Label of a Select field in DocType 'Server Script' +#: core/doctype/server_script/server_script.json +msgctxt "Server Script" +msgid "Event Frequency" +msgstr "crwdns3982:0crwdne3982:0" + +#. Name of a DocType +#: desk/doctype/event_participants/event_participants.json +msgid "Event Participants" +msgstr "crwdns3984:0crwdne3984:0" + +#. Label of a Table field in DocType 'Event' +#: desk/doctype/event/event.json +msgctxt "Event" +msgid "Event Participants" +msgstr "crwdns3986:0crwdne3986:0" + +#. Label of a Check field in DocType 'Notification Settings' +#: desk/doctype/notification_settings/notification_settings.json +msgctxt "Notification Settings" +msgid "Event Reminders" +msgstr "crwdns3988:0crwdne3988:0" + +#: integrations/doctype/google_calendar/google_calendar.py:455 +#: integrations/doctype/google_calendar/google_calendar.py:539 +msgid "Event Synced with Google Calendar." +msgstr "crwdns3990:0crwdne3990:0" + +#. Label of a Select field in DocType 'Event' +#: desk/doctype/event/event.json +msgctxt "Event" +msgid "Event Type" +msgstr "crwdns3992:0crwdne3992:0" + +#. Label of a Data field in DocType 'Recorder' +#: core/doctype/recorder/recorder.json +msgctxt "Recorder" +msgid "Event Type" +msgstr "crwdns3994:0crwdne3994:0" + +#: desk/doctype/event/event.py:263 +msgid "Events in Today's Calendar" +msgstr "crwdns3996:0crwdne3996:0" + +#. Description of the Onboarding Step 'Create Custom Fields' +#: custom/onboarding_step/custom_field/custom_field.json +msgid "Every form in ERPNext has a standard set of fields. If you need to capture some information, but there is no standard Field available for it, you can insert Custom Field for it.\n\n" +"Once custom fields are added, you can use them for reports and analytics charts as well.\n" +msgstr "crwdns3998:0crwdne3998:0" + +#. Label of a Check field in DocType 'DocShare' +#: core/doctype/docshare/docshare.json +msgctxt "DocShare" +msgid "Everyone" +msgstr "crwdns4000:0crwdne4000:0" + +#. Description of a Code field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "Ex: \"colors\": [\"#d1d8dd\", \"#ff5858\"]" +msgstr "crwdns4002:0crwdne4002:0" + +#. Label of a Int field in DocType 'Recorder Query' +#: core/doctype/recorder_query/recorder_query.json +msgctxt "Recorder Query" +msgid "Exact Copies" +msgstr "crwdns4004:0crwdne4004:0" + +#. Label of a HTML field in DocType 'Workflow Transition' +#: workflow/doctype/workflow_transition/workflow_transition.json +msgctxt "Workflow Transition" +msgid "Example" +msgstr "crwdns4006:0crwdne4006:0" + +#. Description of a Data field in DocType 'Portal Settings' +#: website/doctype/portal_settings/portal_settings.json +msgctxt "Portal Settings" +msgid "Example: \"/desk\"" +msgstr "crwdns4008:0crwdne4008:0" + +#. Description of a Data field in DocType 'Onboarding Step' +#: desk/doctype/onboarding_step/onboarding_step.json +msgctxt "Onboarding Step" +msgid "Example: #Tree/Account" +msgstr "crwdns4010:0crwdne4010:0" + +#. Description of a Int field in DocType 'Document Naming Rule' +#: core/doctype/document_naming_rule/document_naming_rule.json +msgctxt "Document Naming Rule" +msgid "Example: 00001" +msgstr "crwdns4012:0crwdne4012:0" + +#. Description of a Data field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Example: Setting this to 24:00 will log out a user if they are not active for 24:00 hours." +msgstr "crwdns4014:0crwdne4014:0" + +#. Description of a Small Text field in DocType 'Assignment Rule' +#: automation/doctype/assignment_rule/assignment_rule.json +msgctxt "Assignment Rule" +msgid "Example: {{ subject }}" +msgstr "crwdns4016:0{{ subject }}crwdne4016:0" + +#. Option for a Select field in DocType 'Data Export' +#: core/doctype/data_export/data_export.json +msgctxt "Data Export" +msgid "Excel" +msgstr "crwdns4018:0crwdne4018:0" + +#: public/js/frappe/form/controls/password.js:91 +msgid "Excellent" +msgstr "crwdns4020:0crwdne4020:0" + +#. Label of a Text field in DocType 'Data Import Log' +#: core/doctype/data_import_log/data_import_log.json +msgctxt "Data Import Log" +msgid "Exception" +msgstr "crwdns4022:0crwdne4022:0" + +#. Label of a Code field in DocType 'RQ Job' +#: core/doctype/rq_job/rq_job.json +msgctxt "RQ Job" +msgid "Exception" +msgstr "crwdns4024:0crwdne4024:0" + +#. Label of a Long Text field in DocType 'Submission Queue' +#: core/doctype/submission_queue/submission_queue.json +msgctxt "Submission Queue" +msgid "Exception" +msgstr "crwdns4026:0crwdne4026:0" + +#: desk/doctype/system_console/system_console.js:17 +#: desk/doctype/system_console/system_console.js:22 +msgid "Execute" +msgstr "crwdns4028:0crwdne4028:0" + +#. Label of a Section Break field in DocType 'System Console' +#: desk/doctype/system_console/system_console.json +msgctxt "System Console" +msgid "Execute" +msgstr "crwdns4030:0crwdne4030:0" + +#: desk/doctype/system_console/system_console.js:10 +msgid "Execute Console script" +msgstr "crwdns4032:0crwdne4032:0" + +#: desk/doctype/system_console/system_console.js:18 +msgid "Executing..." +msgstr "crwdns4034:0crwdne4034:0" + +#: public/js/frappe/views/reports/query_report.js:1961 +msgid "Execution Time: {0} sec" +msgstr "crwdns4036:0{0}crwdne4036:0" + +#. Option for a Select field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "Executive" +msgstr "crwdns4038:0crwdne4038:0" + +#: public/js/frappe/widgets/base_widget.js:157 +msgid "Expand" +msgstr "crwdns4040:0crwdne4040:0" + +#: public/js/frappe/form/controls/code.js:147 +msgctxt "Enlarge code field." +msgid "Expand" +msgstr "crwdns4042:0crwdne4042:0" + +#: public/js/frappe/views/treeview.js:125 +msgid "Expand All" +msgstr "crwdns4044:0crwdne4044:0" + +#. Option for a Select field in DocType 'Help Article' +#: website/doctype/help_article/help_article.json +msgctxt "Help Article" +msgid "Expert" +msgstr "crwdns4046:0crwdne4046:0" + +#. Label of a Datetime field in DocType 'OAuth Authorization Code' +#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +msgctxt "OAuth Authorization Code" +msgid "Expiration time" +msgstr "crwdns4048:0crwdne4048:0" + +#. Label of a Datetime field in DocType 'OAuth Bearer Token' +#: integrations/doctype/oauth_bearer_token/oauth_bearer_token.json +msgctxt "OAuth Bearer Token" +msgid "Expiration time" +msgstr "crwdns4050:0crwdne4050:0" + +#. Label of a Date field in DocType 'Note' +#: desk/doctype/note/note.json +msgctxt "Note" +msgid "Expire Notification On" +msgstr "crwdns4052:0crwdne4052:0" + +#. Option for a Select field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Expired" +msgstr "crwdns4054:0crwdne4054:0" + +#. Label of a Int field in DocType 'OAuth Bearer Token' +#: integrations/doctype/oauth_bearer_token/oauth_bearer_token.json +msgctxt "OAuth Bearer Token" +msgid "Expires In" +msgstr "crwdns4056:0crwdne4056:0" + +#. Label of a Int field in DocType 'Token Cache' +#: integrations/doctype/token_cache/token_cache.json +msgctxt "Token Cache" +msgid "Expires In" +msgstr "crwdns4058:0crwdne4058:0" + +#. Label of a Date field in DocType 'Document Share Key' +#: core/doctype/document_share_key/document_share_key.json +msgctxt "Document Share Key" +msgid "Expires On" +msgstr "crwdns4060:0crwdne4060:0" + +#. Label of a Int field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Expiry time of QR Code Image Page" +msgstr "crwdns4062:0crwdne4062:0" + +#: core/doctype/recorder/recorder_list.js:42 +#: public/js/frappe/data_import/data_exporter.js:88 +#: public/js/frappe/data_import/data_exporter.js:239 +#: public/js/frappe/views/reports/query_report.js:1652 +#: public/js/frappe/views/reports/report_view.js:1552 +msgid "Export" +msgstr "crwdns4064:0crwdne4064:0" + +#: public/js/frappe/list/list_view.js:1965 +msgctxt "Button in list view actions menu" +msgid "Export" +msgstr "crwdns4066:0crwdne4066:0" + +#. Label of a Check field in DocType 'Custom DocPerm' +#: core/doctype/custom_docperm/custom_docperm.json +msgctxt "Custom DocPerm" +msgid "Export" +msgstr "crwdns4068:0crwdne4068:0" + +#. Label of a Check field in DocType 'DocPerm' +#: core/doctype/docperm/docperm.json +msgctxt "DocPerm" +msgid "Export" +msgstr "crwdns4070:0crwdne4070:0" + +#: public/js/frappe/data_import/data_exporter.js:241 +msgid "Export 1 record" +msgstr "crwdns4072:0crwdne4072:0" + +#: public/js/frappe/views/reports/report_view.js:1563 +msgid "Export All {0} rows?" +msgstr "crwdns4074:0{0}crwdne4074:0" + +#: custom/doctype/customize_form/customize_form.js:220 +msgid "Export Custom Permissions" +msgstr "crwdns4076:0crwdne4076:0" + +#: custom/doctype/customize_form/customize_form.js:200 +msgid "Export Customizations" +msgstr "crwdns4078:0crwdne4078:0" + +#: public/js/frappe/data_import/data_exporter.js:14 +msgid "Export Data" +msgstr "crwdns4080:0crwdne4080:0" + +#. Label of a Link in the Tools Workspace +#: automation/workspace/tools/tools.json +msgctxt "Data Export" +msgid "Export Data" +msgstr "crwdns4082:0crwdne4082:0" + +#: core/doctype/data_import/data_import.js:86 +#: public/js/frappe/data_import/import_preview.js:195 +msgid "Export Errored Rows" +msgstr "crwdns4084:0crwdne4084:0" + +#. Label of a Data field in DocType 'Access Log' +#: core/doctype/access_log/access_log.json +msgctxt "Access Log" +msgid "Export From" +msgstr "crwdns4086:0crwdne4086:0" + +#: core/doctype/data_import/data_import.js:535 +msgid "Export Import Log" +msgstr "crwdns4088:0crwdne4088:0" + +#: public/js/frappe/views/reports/report_utils.js:227 +msgctxt "Export report" +msgid "Export Report: {0}" +msgstr "crwdns4090:0{0}crwdne4090:0" + +#: public/js/frappe/data_import/data_exporter.js:26 +msgid "Export Type" +msgstr "crwdns4092:0crwdne4092:0" + +#: public/js/frappe/views/file/file_view.js:154 +msgid "Export as zip" +msgstr "crwdns4094:0crwdne4094:0" + +#: public/js/frappe/utils/tools.js:11 +msgid "Export not allowed. You need {0} role to export." +msgstr "crwdns4096:0{0}crwdne4096:0" + +#. Description of a Check field in DocType 'Data Export' +#: core/doctype/data_export/data_export.json +msgctxt "Data Export" +msgid "Export the data without any header notes and column descriptions" +msgstr "crwdns4098:0crwdne4098:0" + +#. Label of a Check field in DocType 'Data Export' +#: core/doctype/data_export/data_export.json +msgctxt "Data Export" +msgid "Export without main header" +msgstr "crwdns4100:0crwdne4100:0" + +#: public/js/frappe/data_import/data_exporter.js:243 +msgid "Export {0} records" +msgstr "crwdns4102:0{0}crwdne4102:0" + +#. Label of a Data field in DocType 'Email Queue' +#: email/doctype/email_queue/email_queue.json +msgctxt "Email Queue" +msgid "Expose Recipients" +msgstr "crwdns4104:0crwdne4104:0" + +#. Option for a Select field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Expression" +msgstr "crwdns4106:0crwdne4106:0" + +#. Option for a Select field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Expression" +msgstr "crwdns4108:0crwdne4108:0" + +#. Option for a Select field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Expression (old style)" +msgstr "crwdns4110:0crwdne4110:0" + +#. Option for a Select field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Expression (old style)" +msgstr "crwdns4112:0crwdne4112:0" + +#. Description of a Data field in DocType 'Notification Recipient' +#: email/doctype/notification_recipient/notification_recipient.json +msgctxt "Notification Recipient" +msgid "Expression, Optional" +msgstr "crwdns4114:0crwdne4114:0" + +#. Label of a Section Break field in DocType 'Connected App' +#: integrations/doctype/connected_app/connected_app.json +msgctxt "Connected App" +msgid "Extra Parameters" +msgstr "crwdns4116:0crwdne4116:0" + +#. Option for a Select field in DocType 'Social Login Key' +#: integrations/doctype/social_login_key/social_login_key.json +msgctxt "Social Login Key" +msgid "Facebook" +msgstr "crwdns4118:0crwdne4118:0" + +#. Option for a Select field in DocType 'Activity Log' +#: core/doctype/activity_log/activity_log.json +msgctxt "Activity Log" +msgid "Failed" +msgstr "crwdns4120:0crwdne4120:0" + +#. Option for a Select field in DocType 'Integration Request' +#: integrations/doctype/integration_request/integration_request.json +msgctxt "Integration Request" +msgid "Failed" +msgstr "crwdns4122:0crwdne4122:0" + +#. Option for a Select field in DocType 'Scheduled Job Log' +#: core/doctype/scheduled_job_log/scheduled_job_log.json +msgctxt "Scheduled Job Log" +msgid "Failed" +msgstr "crwdns4124:0crwdne4124:0" + +#. Option for a Select field in DocType 'Submission Queue' +#: core/doctype/submission_queue/submission_queue.json +msgctxt "Submission Queue" +msgid "Failed" +msgstr "crwdns4126:0crwdne4126:0" + +#. Label of a Int field in DocType 'RQ Worker' +#: core/doctype/rq_worker/rq_worker.json +msgctxt "RQ Worker" +msgid "Failed Job Count" +msgstr "crwdns4128:0crwdne4128:0" + +#: model/workflow.py:305 +msgid "Failed Transactions" +msgstr "crwdns4130:0crwdne4130:0" + +#: utils/synchronization.py:46 +msgid "Failed to aquire lock: {}. Lock may be held by another process." +msgstr "crwdns4132:0crwdne4132:0" + +#: integrations/doctype/ldap_settings/ldap_settings.py:360 +msgid "Failed to change password." +msgstr "crwdns4134:0crwdne4134:0" + +#: desk/page/setup_wizard/setup_wizard.js:220 +msgid "Failed to complete setup" +msgstr "crwdns4136:0crwdne4136:0" + +#: integrations/doctype/webhook/webhook.py:148 +msgid "Failed to compute request body: {}" +msgstr "crwdns4138:0crwdne4138:0" + +#: printing/doctype/network_printer_settings/network_printer_settings.py:45 +#: printing/doctype/network_printer_settings/network_printer_settings.py:47 +msgid "Failed to connect to server" +msgstr "crwdns4140:0crwdne4140:0" + +#: auth.py:649 +msgid "Failed to decode token, please provide a valid base64-encoded token." +msgstr "crwdns4142:0crwdne4142:0" + +#: core/doctype/rq_job/rq_job_list.js:33 +msgid "Failed to enable scheduler: {0}" +msgstr "crwdns4144:0{0}crwdne4144:0" + +#: integrations/doctype/webhook/webhook.py:136 +msgid "Failed to evaluate conditions: {}" +msgstr "crwdns4146:0crwdne4146:0" + +#: types/exporter.py:197 +msgid "Failed to export python type hints" +msgstr "crwdns4148:0crwdne4148:0" + +#: core/doctype/document_naming_settings/document_naming_settings.py:252 +msgid "Failed to generate names from the series" +msgstr "crwdns4150:0crwdne4150:0" + +#: core/doctype/document_naming_settings/document_naming_settings.js:75 +msgid "Failed to generate preview of series" +msgstr "crwdns4152:0crwdne4152:0" + +#: handler.py:76 +msgid "Failed to get method for command {0} with {1}" +msgstr "crwdns4154:0{0}crwdnd4154:0{1}crwdne4154:0" + +#: api/v2.py:48 +msgid "Failed to get method {0} with {1}" +msgstr "crwdns4156:0{0}crwdnd4156:0{1}crwdne4156:0" + +#: model/virtual_doctype.py:64 +msgid "Failed to import virtual doctype {}, is controller file present?" +msgstr "crwdns4158:0crwdne4158:0" + +#: utils/image.py:75 +msgid "Failed to optimize image: {0}" +msgstr "crwdns4160:0{0}crwdne4160:0" + +#: email/doctype/email_queue/email_queue.py:276 +msgid "Failed to send email with subject:" +msgstr "crwdns4162:0crwdne4162:0" + +#: desk/doctype/notification_log/notification_log.py:40 +msgid "Failed to send notification email" +msgstr "crwdns4164:0crwdne4164:0" + +#: desk/page/setup_wizard/setup_wizard.py:24 +msgid "Failed to update global settings" +msgstr "crwdns4166:0crwdne4166:0" + +#: core/doctype/data_import/data_import.js:470 +msgid "Failure" +msgstr "crwdns4168:0crwdne4168:0" + +#. Label of a Attach field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "FavIcon" +msgstr "crwdns4170:0crwdne4170:0" + +#. Label of a Data field in DocType 'Address' +#: contacts/doctype/address/address.json +msgctxt "Address" +msgid "Fax" +msgstr "crwdns4172:0crwdne4172:0" + +#: website/doctype/blog_post/templates/blog_post_row.html:19 +msgid "Featured" +msgstr "crwdns4174:0crwdne4174:0" + +#. Label of a Check field in DocType 'Blog Post' +#: website/doctype/blog_post/blog_post.json +msgctxt "Blog Post" +msgid "Featured" +msgstr "crwdns4176:0crwdne4176:0" + +#. Option for a Select field in DocType 'Communication' +#. Label of a Section Break field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Feedback" +msgstr "crwdns4178:0crwdne4178:0" + +#. Label of a Data field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Feedback Request" +msgstr "crwdns4180:0crwdne4180:0" + +#. Label of a Small Text field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Fetch From" +msgstr "crwdns4182:0crwdne4182:0" + +#. Label of a Small Text field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Fetch From" +msgstr "crwdns4184:0crwdne4184:0" + +#. Label of a Small Text field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Fetch From" +msgstr "crwdns4186:0crwdne4186:0" + +#: website/doctype/website_slideshow/website_slideshow.js:15 +msgid "Fetch Images" +msgstr "crwdns4188:0crwdne4188:0" + +#: website/doctype/website_slideshow/website_slideshow.js:13 +msgid "Fetch attached images from document" +msgstr "crwdns4190:0crwdne4190:0" + +#. Label of a Check field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Fetch on Save if Empty" +msgstr "crwdns4192:0crwdne4192:0" + +#. Label of a Check field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Fetch on Save if Empty" +msgstr "crwdns4194:0crwdne4194:0" + +#. Label of a Check field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Fetch on Save if Empty" +msgstr "crwdns4196:0crwdne4196:0" + +#: desk/doctype/global_search_settings/global_search_settings.py:60 +msgid "Fetching default Global Search documents." +msgstr "crwdns4198:0crwdne4198:0" + +#: desk/page/leaderboard/leaderboard.js:131 +#: public/js/frappe/list/bulk_operations.js:262 +#: public/js/frappe/views/reports/query_report.js:235 +#: public/js/frappe/views/reports/query_report.js:1706 +msgid "Field" +msgstr "crwdns4200:0crwdne4200:0" + +#. Label of a Select field in DocType 'Assignment Rule' +#: automation/doctype/assignment_rule/assignment_rule.json +msgctxt "Assignment Rule" +msgid "Field" +msgstr "crwdns4202:0crwdne4202:0" + +#. Label of a Select field in DocType 'Bulk Update' +#: desk/doctype/bulk_update/bulk_update.json +msgctxt "Bulk Update" +msgid "Field" +msgstr "crwdns4204:0crwdne4204:0" + +#. Label of a Select field in DocType 'Document Naming Rule Condition' +#: core/doctype/document_naming_rule_condition/document_naming_rule_condition.json +msgctxt "Document Naming Rule Condition" +msgid "Field" +msgstr "crwdns4206:0crwdne4206:0" + +#. Label of a Select field in DocType 'Number Card' +#: desk/doctype/number_card/number_card.json +msgctxt "Number Card" +msgid "Field" +msgstr "crwdns4208:0crwdne4208:0" + +#. Label of a Select field in DocType 'Onboarding Step' +#: desk/doctype/onboarding_step/onboarding_step.json +msgctxt "Onboarding Step" +msgid "Field" +msgstr "crwdns4210:0crwdne4210:0" + +#. Label of a Select field in DocType 'Web Form Field' +#: website/doctype/web_form_field/web_form_field.json +msgctxt "Web Form Field" +msgid "Field" +msgstr "crwdns4212:0crwdne4212:0" + +#. Label of a Select field in DocType 'Web Form List Column' +#: website/doctype/web_form_list_column/web_form_list_column.json +msgctxt "Web Form List Column" +msgid "Field" +msgstr "crwdns4214:0crwdne4214:0" + +#: core/doctype/doctype/doctype.py:419 +msgid "Field \"route\" is mandatory for Web Views" +msgstr "crwdns4216:0crwdne4216:0" + +#: core/doctype/doctype/doctype.py:1477 +msgid "Field \"title\" is mandatory if \"Website Search Field\" is set." +msgstr "crwdns4218:0crwdne4218:0" + +#: desk/doctype/bulk_update/bulk_update.js:17 +msgid "Field \"value\" is mandatory. Please specify value to be updated" +msgstr "crwdns4220:0crwdne4220:0" + +#. Label of a Text field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Field Description" +msgstr "crwdns4222:0crwdne4222:0" + +#: core/doctype/doctype/doctype.py:1040 +msgid "Field Missing" +msgstr "crwdns4224:0crwdne4224:0" + +#. Label of a Select field in DocType 'Kanban Board' +#: desk/doctype/kanban_board/kanban_board.json +msgctxt "Kanban Board" +msgid "Field Name" +msgstr "crwdns4226:0crwdne4226:0" + +#. Label of a Data field in DocType 'Property Setter' +#: custom/doctype/property_setter/property_setter.json +msgctxt "Property Setter" +msgid "Field Name" +msgstr "crwdns4228:0crwdne4228:0" + +#. Label of a Select field in DocType 'Energy Point Rule' +#: social/doctype/energy_point_rule/energy_point_rule.json +msgctxt "Energy Point Rule" +msgid "Field To Check" +msgstr "crwdns4230:0crwdne4230:0" + +#. Label of a Select field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Field Type" +msgstr "crwdns4232:0crwdne4232:0" + +#: desk/reportview.py:165 +msgid "Field not permitted in query" +msgstr "crwdns4234:0crwdne4234:0" + +#. Description of a Data field in DocType 'Workflow' +#: workflow/doctype/workflow/workflow.json +msgctxt "Workflow" +msgid "Field that represents the Workflow State of the transaction (if field is not present, a new hidden Custom Field will be created)" +msgstr "crwdns4236:0crwdne4236:0" + +#. Label of a Select field in DocType 'Milestone Tracker' +#: automation/doctype/milestone_tracker/milestone_tracker.json +msgctxt "Milestone Tracker" +msgid "Field to Track" +msgstr "crwdns4238:0crwdne4238:0" + +#: custom/doctype/property_setter/property_setter.py:50 +msgid "Field type cannot be changed for {0}" +msgstr "crwdns4240:0{0}crwdne4240:0" + +#: database/database.py:783 +msgid "Field {0} does not exist on {1}" +msgstr "crwdns4242:0{0}crwdnd4242:0{1}crwdne4242:0" + +#: desk/form/meta.py:203 +msgid "Field {0} is referring to non-existing doctype {1}." +msgstr "crwdns4244:0{0}crwdnd4244:0{1}crwdne4244:0" + +#: public/js/frappe/form/form.js:1708 +msgid "Field {0} not found." +msgstr "crwdns4246:0{0}crwdne4246:0" + +#: custom/doctype/custom_field/custom_field.js:119 +msgid "Fieldname" +msgstr "crwdns4248:0crwdne4248:0" + +#. Label of a Data field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Fieldname" +msgstr "crwdns4250:0crwdne4250:0" + +#. Label of a Select field in DocType 'DocType Layout Field' +#: custom/doctype/doctype_layout_field/doctype_layout_field.json +msgctxt "DocType Layout Field" +msgid "Fieldname" +msgstr "crwdns4252:0crwdne4252:0" + +#. Label of a Select field in DocType 'Form Tour Step' +#: desk/doctype/form_tour_step/form_tour_step.json +msgctxt "Form Tour Step" +msgid "Fieldname" +msgstr "crwdns4254:0crwdne4254:0" + +#. Label of a Data field in DocType 'Report Column' +#: core/doctype/report_column/report_column.json +msgctxt "Report Column" +msgid "Fieldname" +msgstr "crwdns4256:0crwdne4256:0" + +#. Label of a Data field in DocType 'Report Filter' +#: core/doctype/report_filter/report_filter.json +msgctxt "Report Filter" +msgid "Fieldname" +msgstr "crwdns4258:0crwdne4258:0" + +#. Label of a Data field in DocType 'Web Template Field' +#: website/doctype/web_template_field/web_template_field.json +msgctxt "Web Template Field" +msgid "Fieldname" +msgstr "crwdns4260:0crwdne4260:0" + +#. Label of a Select field in DocType 'Webhook Data' +#: integrations/doctype/webhook_data/webhook_data.json +msgctxt "Webhook Data" +msgid "Fieldname" +msgstr "crwdns4262:0crwdne4262:0" + +#: core/doctype/doctype/doctype.py:270 +msgid "Fieldname '{0}' conflicting with a {1} of the name {2} in {3}" +msgstr "crwdns4264:0{0}crwdnd4264:0{1}crwdnd4264:0{2}crwdnd4264:0{3}crwdne4264:0" + +#: core/doctype/doctype/doctype.py:1039 +msgid "Fieldname called {0} must exist to enable autonaming" +msgstr "crwdns4266:0{0}crwdne4266:0" + +#: database/schema.py:125 database/schema.py:359 +msgid "Fieldname is limited to 64 characters ({0})" +msgstr "crwdns4268:0{0}crwdne4268:0" + +#: custom/doctype/custom_field/custom_field.py:193 +msgid "Fieldname not set for Custom Field" +msgstr "crwdns4270:0crwdne4270:0" + +#: custom/doctype/custom_field/custom_field.js:107 +msgid "Fieldname which will be the DocType for this link field." +msgstr "crwdns4272:0crwdne4272:0" + +#: public/js/form_builder/store.js:170 +msgid "Fieldname {0} appears multiple times" +msgstr "crwdns4274:0{0}crwdne4274:0" + +#: database/schema.py:349 +msgid "Fieldname {0} cannot have special characters like {1}" +msgstr "crwdns4276:0{0}crwdnd4276:0{1}crwdne4276:0" + +#: core/doctype/doctype/doctype.py:1850 +msgid "Fieldname {0} conflicting with meta object" +msgstr "crwdns4278:0{0}crwdne4278:0" + +#: core/doctype/doctype/doctype.py:495 public/js/form_builder/utils.js:302 +msgid "Fieldname {0} is restricted" +msgstr "crwdns4280:0{0}crwdne4280:0" + +#. Label of a Section Break field in DocType 'Customize Form' +#. Label of a Table field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Fields" +msgstr "crwdns4282:0crwdne4282:0" + +#. Label of a Table field in DocType 'DocType' +#. Label of a Section Break field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Fields" +msgstr "crwdns4284:0crwdne4284:0" + +#. Label of a Table field in DocType 'DocType Layout' +#: custom/doctype/doctype_layout/doctype_layout.json +msgctxt "DocType Layout" +msgid "Fields" +msgstr "crwdns4286:0crwdne4286:0" + +#. Label of a Code field in DocType 'Kanban Board' +#: desk/doctype/kanban_board/kanban_board.json +msgctxt "Kanban Board" +msgid "Fields" +msgstr "crwdns4288:0crwdne4288:0" + +#. Label of a HTML field in DocType 'List View Settings' +#. Label of a Code field in DocType 'List View Settings' +#: desk/doctype/list_view_settings/list_view_settings.json +msgctxt "List View Settings" +msgid "Fields" +msgstr "crwdns4290:0crwdne4290:0" + +#. Label of a Small Text field in DocType 'Personal Data Deletion Step' +#: website/doctype/personal_data_deletion_step/personal_data_deletion_step.json +msgctxt "Personal Data Deletion Step" +msgid "Fields" +msgstr "crwdns4292:0crwdne4292:0" + +#. Label of a Table field in DocType 'Web Template' +#: website/doctype/web_template/web_template.json +msgctxt "Web Template" +msgid "Fields" +msgstr "crwdns4294:0crwdne4294:0" + +#. Label of a HTML field in DocType 'Data Export' +#: core/doctype/data_export/data_export.json +msgctxt "Data Export" +msgid "Fields Multicheck" +msgstr "crwdns4296:0crwdne4296:0" + +#: core/doctype/file/file.py:406 +msgid "Fields `file_name` or `file_url` must be set for File" +msgstr "crwdns4298:0crwdne4298:0" + +#. Description of a Data field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Fields separated by comma (,) will be included in the \"Search By\" list of Search dialog box" +msgstr "crwdns4300:0crwdne4300:0" + +#. Label of a Data field in DocType 'Form Tour Step' +#: desk/doctype/form_tour_step/form_tour_step.json +msgctxt "Form Tour Step" +msgid "Fieldtype" +msgstr "crwdns4302:0crwdne4302:0" + +#. Label of a Select field in DocType 'Report Column' +#: core/doctype/report_column/report_column.json +msgctxt "Report Column" +msgid "Fieldtype" +msgstr "crwdns4304:0crwdne4304:0" + +#. Label of a Select field in DocType 'Report Filter' +#: core/doctype/report_filter/report_filter.json +msgctxt "Report Filter" +msgid "Fieldtype" +msgstr "crwdns4306:0crwdne4306:0" + +#. Label of a Select field in DocType 'Web Form Field' +#: website/doctype/web_form_field/web_form_field.json +msgctxt "Web Form Field" +msgid "Fieldtype" +msgstr "crwdns4308:0crwdne4308:0" + +#. Label of a Data field in DocType 'Web Form List Column' +#: website/doctype/web_form_list_column/web_form_list_column.json +msgctxt "Web Form List Column" +msgid "Fieldtype" +msgstr "crwdns4310:0crwdne4310:0" + +#. Label of a Select field in DocType 'Web Template Field' +#: website/doctype/web_template_field/web_template_field.json +msgctxt "Web Template Field" +msgid "Fieldtype" +msgstr "crwdns4312:0crwdne4312:0" + +#: custom/doctype/custom_field/custom_field.py:189 +msgid "Fieldtype cannot be changed from {0} to {1}" +msgstr "crwdns4314:0{0}crwdnd4314:0{1}crwdne4314:0" + +#: custom/doctype/customize_form/customize_form.py:586 +msgid "Fieldtype cannot be changed from {0} to {1} in row {2}" +msgstr "crwdns4316:0{0}crwdnd4316:0{1}crwdnd4316:0{2}crwdne4316:0" + +#. Name of a DocType +#: core/doctype/file/file.json +msgid "File" +msgstr "crwdns4318:0crwdne4318:0" + +#. Label of a shortcut in the Tools Workspace +#: automation/workspace/tools/tools.json +msgctxt "File" +msgid "File" +msgstr "crwdns4320:0crwdne4320:0" + +#. Option for a Select field in DocType 'Form Tour' +#: desk/doctype/form_tour/form_tour.json +msgctxt "Form Tour" +msgid "File" +msgstr "crwdns4322:0crwdne4322:0" + +#: core/doctype/file/utils.py:126 +msgid "File '{0}' not found" +msgstr "crwdns4324:0{0}crwdne4324:0" + +#. Label of a Check field in DocType 'Dropbox Settings' +#: integrations/doctype/dropbox_settings/dropbox_settings.json +msgctxt "Dropbox Settings" +msgid "File Backup" +msgstr "crwdns4326:0crwdne4326:0" + +#. Label of a Check field in DocType 'Google Drive' +#: integrations/doctype/google_drive/google_drive.json +msgctxt "Google Drive" +msgid "File Backup" +msgstr "crwdns4328:0crwdne4328:0" + +#. Label of a Section Break field in DocType 'Access Log' +#: core/doctype/access_log/access_log.json +msgctxt "Access Log" +msgid "File Information" +msgstr "crwdns4330:0crwdne4330:0" + +#: public/js/frappe/views/file/file_view.js:74 +msgid "File Manager" +msgstr "crwdns4332:0crwdne4332:0" + +#. Label of a Data field in DocType 'File' +#: core/doctype/file/file.json +msgctxt "File" +msgid "File Name" +msgstr "crwdns4334:0crwdne4334:0" + +#. Label of a Int field in DocType 'File' +#: core/doctype/file/file.json +msgctxt "File" +msgid "File Size" +msgstr "crwdns4336:0crwdne4336:0" + +#: public/js/frappe/data_import/data_exporter.js:19 +msgid "File Type" +msgstr "crwdns4338:0crwdne4338:0" + +#. Label of a Data field in DocType 'Access Log' +#: core/doctype/access_log/access_log.json +msgctxt "Access Log" +msgid "File Type" +msgstr "crwdns4340:0crwdne4340:0" + +#. Label of a Select field in DocType 'Data Export' +#: core/doctype/data_export/data_export.json +msgctxt "Data Export" +msgid "File Type" +msgstr "crwdns4342:0crwdne4342:0" + +#. Label of a Data field in DocType 'File' +#: core/doctype/file/file.json +msgctxt "File" +msgid "File Type" +msgstr "crwdns4344:0crwdne4344:0" + +#. Label of a Code field in DocType 'File' +#: core/doctype/file/file.json +msgctxt "File" +msgid "File URL" +msgstr "crwdns4346:0crwdne4346:0" + +#: desk/page/backups/backups.py:109 +msgid "File backup is ready" +msgstr "crwdns4348:0crwdne4348:0" + +#: core/doctype/file/file.py:577 +msgid "File name cannot have {0}" +msgstr "crwdns4350:0{0}crwdne4350:0" + +#: utils/csvutils.py:26 +msgid "File not attached" +msgstr "crwdns4352:0crwdne4352:0" + +#: core/doctype/file/file.py:682 public/js/frappe/request.js:197 +#: utils/file_manager.py:221 +msgid "File size exceeded the maximum allowed size of {0} MB" +msgstr "crwdns4354:0{0}crwdne4354:0" + +#: public/js/frappe/request.js:195 +msgid "File too big" +msgstr "crwdns4356:0crwdne4356:0" + +#: core/doctype/file/file.py:373 +msgid "File type of {0} is not allowed" +msgstr "crwdns4358:0{0}crwdne4358:0" + +#: core/doctype/file/file.py:360 core/doctype/file/file.py:422 +msgid "File {0} does not exist" +msgstr "crwdns4360:0{0}crwdne4360:0" + +#. Label of a Link in the Tools Workspace +#: automation/workspace/tools/tools.json +msgctxt "File" +msgid "Files" +msgstr "crwdns4362:0crwdne4362:0" + +#. Label of a Tab Break field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Files" +msgstr "crwdns4364:0crwdne4364:0" + +#: email/doctype/auto_email_report/auto_email_report.js:90 +#: public/js/frappe/ui/filters/filter_list.js:132 +msgid "Filter" +msgstr "crwdns4366:0crwdne4366:0" + +#. Label of a Section Break field in DocType 'Auto Email Report' +#: email/doctype/auto_email_report/auto_email_report.json +msgctxt "Auto Email Report" +msgid "Filter Data" +msgstr "crwdns4368:0crwdne4368:0" + +#. Label of a HTML field in DocType 'Data Export' +#: core/doctype/data_export/data_export.json +msgctxt "Data Export" +msgid "Filter List" +msgstr "crwdns4370:0crwdne4370:0" + +#. Label of a Text field in DocType 'Auto Email Report' +#: email/doctype/auto_email_report/auto_email_report.json +msgctxt "Auto Email Report" +msgid "Filter Meta" +msgstr "crwdns4372:0crwdne4372:0" + +#: public/js/frappe/list/list_filter.js:33 +msgid "Filter Name" +msgstr "crwdns4374:0crwdne4374:0" + +#. Label of a Data field in DocType 'List Filter' +#: desk/doctype/list_filter/list_filter.json +msgctxt "List Filter" +msgid "Filter Name" +msgstr "crwdns4376:0crwdne4376:0" + +#. Label of a HTML field in DocType 'Prepared Report' +#: core/doctype/prepared_report/prepared_report.json +msgctxt "Prepared Report" +msgid "Filter Values" +msgstr "crwdns4378:0crwdne4378:0" + +#: utils/data.py:2021 +msgid "Filter must be a tuple or list (in a list)" +msgstr "crwdns4380:0crwdne4380:0" + +#: utils/data.py:2029 +msgid "Filter must have 4 values (doctype, fieldname, operator, value): {0}" +msgstr "crwdns4382:0{0}crwdne4382:0" + +#. Label of a Data field in DocType 'Personal Data Deletion Step' +#: website/doctype/personal_data_deletion_step/personal_data_deletion_step.json +msgctxt "Personal Data Deletion Step" +msgid "Filtered By" +msgstr "crwdns4384:0crwdne4384:0" + +#: public/js/frappe/data_import/data_exporter.js:33 +msgid "Filtered Records" +msgstr "crwdns4386:0crwdne4386:0" + +#: website/doctype/blog_post/blog_post.py:262 +#: website/doctype/help_article/help_article.py:91 www/list.py:45 +msgid "Filtered by \"{0}\"" +msgstr "crwdns4388:0{0}crwdne4388:0" + +#. Label of a Code field in DocType 'Access Log' +#: core/doctype/access_log/access_log.json +msgctxt "Access Log" +msgid "Filters" +msgstr "crwdns4390:0crwdne4390:0" + +#. Label of a Text field in DocType 'Auto Email Report' +#: email/doctype/auto_email_report/auto_email_report.json +msgctxt "Auto Email Report" +msgid "Filters" +msgstr "crwdns4392:0crwdne4392:0" + +#. Label of a Section Break field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "Filters" +msgstr "crwdns4394:0crwdne4394:0" + +#. Label of a Code field in DocType 'Kanban Board' +#: desk/doctype/kanban_board/kanban_board.json +msgctxt "Kanban Board" +msgid "Filters" +msgstr "crwdns4396:0crwdne4396:0" + +#. Label of a Long Text field in DocType 'List Filter' +#: desk/doctype/list_filter/list_filter.json +msgctxt "List Filter" +msgid "Filters" +msgstr "crwdns4398:0crwdne4398:0" + +#. Label of a Section Break field in DocType 'Notification' +#: email/doctype/notification/notification.json +msgctxt "Notification" +msgid "Filters" +msgstr "crwdns4400:0crwdne4400:0" + +#. Label of a Section Break field in DocType 'Prepared Report' +#. Label of a Small Text field in DocType 'Prepared Report' +#: core/doctype/prepared_report/prepared_report.json +msgctxt "Prepared Report" +msgid "Filters" +msgstr "crwdns4402:0crwdne4402:0" + +#. Label of a Section Break field in DocType 'Report' +#. Label of a Table field in DocType 'Report' +#: core/doctype/report/report.json +msgctxt "Report" +msgid "Filters" +msgstr "crwdns4404:0crwdne4404:0" + +#: public/js/frappe/ui/filters/filter_list.js:131 +msgid "Filters {0}" +msgstr "crwdns4406:0{0}crwdne4406:0" + +#. Label of a Code field in DocType 'Number Card' +#: desk/doctype/number_card/number_card.json +msgctxt "Number Card" +msgid "Filters Configuration" +msgstr "crwdns4408:0crwdne4408:0" + +#. Label of a HTML field in DocType 'Auto Email Report' +#: email/doctype/auto_email_report/auto_email_report.json +msgctxt "Auto Email Report" +msgid "Filters Display" +msgstr "crwdns4410:0crwdne4410:0" + +#. Label of a Code field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "Filters JSON" +msgstr "crwdns4412:0crwdne4412:0" + +#. Label of a Code field in DocType 'Number Card' +#: desk/doctype/number_card/number_card.json +msgctxt "Number Card" +msgid "Filters JSON" +msgstr "crwdns4414:0crwdne4414:0" + +#. Label of a Section Break field in DocType 'Number Card' +#: desk/doctype/number_card/number_card.json +msgctxt "Number Card" +msgid "Filters Section" +msgstr "crwdns4416:0crwdne4416:0" + +#: public/js/frappe/form/controls/link.js:486 +msgid "Filters applied for {0}" +msgstr "crwdns4418:0{0}crwdne4418:0" + +#: public/js/frappe/views/kanban/kanban_view.js:186 +msgid "Filters saved" +msgstr "crwdns4420:0crwdne4420:0" + +#. Description of a Code field in DocType 'Report' +#: core/doctype/report/report.json +msgctxt "Report" +msgid "Filters will be accessible via filters.

Send output as result = [result], or for old style data = [columns], [result]" +msgstr "crwdns4422:0crwdne4422:0" + +#: public/js/frappe/ui/toolbar/search_utils.js:556 +msgid "Find '{0}' in ..." +msgstr "crwdns4424:0{0}crwdne4424:0" + +#: public/js/frappe/ui/toolbar/awesome_bar.js:325 +#: public/js/frappe/ui/toolbar/awesome_bar.js:326 +#: public/js/frappe/ui/toolbar/search_utils.js:125 +#: public/js/frappe/ui/toolbar/search_utils.js:128 +msgid "Find {0} in {1}" +msgstr "crwdns4426:0{0}crwdnd4426:0{1}crwdne4426:0" + +#. Option for a Select field in DocType 'Submission Queue' +#: core/doctype/submission_queue/submission_queue.json +msgctxt "Submission Queue" +msgid "Finished" +msgstr "crwdns4428:0crwdne4428:0" + +#. Label of a Datetime field in DocType 'Prepared Report' +#: core/doctype/prepared_report/prepared_report.json +msgctxt "Prepared Report" +msgid "Finished At" +msgstr "crwdns4430:0crwdne4430:0" + +#. Label of a Select field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "First Day of the Week" +msgstr "crwdns4432:0crwdne4432:0" + +#: www/complete_signup.html:15 +msgid "First Name" +msgstr "crwdns4434:0crwdne4434:0" + +#. Label of a Data field in DocType 'Contact' +#: contacts/doctype/contact/contact.json +msgctxt "Contact" +msgid "First Name" +msgstr "crwdns4436:0crwdne4436:0" + +#. Label of a Data field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "First Name" +msgstr "crwdns4438:0crwdne4438:0" + +#. Label of a Data field in DocType 'Success Action' +#: core/doctype/success_action/success_action.json +msgctxt "Success Action" +msgid "First Success Message" +msgstr "crwdns4440:0crwdne4440:0" + +#: core/report/transaction_log_report/transaction_log_report.py:49 +msgid "First Transaction" +msgstr "crwdns4442:0crwdne4442:0" + +#: core/doctype/data_export/exporter.py:185 +msgid "First data column must be blank." +msgstr "crwdns4444:0crwdne4444:0" + +#: website/doctype/website_slideshow/website_slideshow.js:7 +msgid "First set the name and save the record." +msgstr "crwdns4446:0crwdne4446:0" + +#. Label of a Data field in DocType 'Language' +#: core/doctype/language/language.json +msgctxt "Language" +msgid "Flag" +msgstr "crwdns4448:0crwdne4448:0" + +#. Option for a Select field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Float" +msgstr "crwdns4450:0crwdne4450:0" + +#. Option for a Select field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Float" +msgstr "crwdns4452:0crwdne4452:0" + +#. Option for a Select field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Float" +msgstr "crwdns4454:0crwdne4454:0" + +#. Option for a Select field in DocType 'Report Column' +#: core/doctype/report_column/report_column.json +msgctxt "Report Column" +msgid "Float" +msgstr "crwdns4456:0crwdne4456:0" + +#. Option for a Select field in DocType 'Report Filter' +#: core/doctype/report_filter/report_filter.json +msgctxt "Report Filter" +msgid "Float" +msgstr "crwdns4458:0crwdne4458:0" + +#. Option for a Select field in DocType 'Web Form Field' +#: website/doctype/web_form_field/web_form_field.json +msgctxt "Web Form Field" +msgid "Float" +msgstr "crwdns4460:0crwdne4460:0" + +#. Label of a Select field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Float Precision" +msgstr "crwdns4462:0crwdne4462:0" + +#. Option for a Select field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Fold" +msgstr "crwdns4464:0crwdne4464:0" + +#. Option for a Select field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Fold" +msgstr "crwdns4466:0crwdne4466:0" + +#. Option for a Select field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Fold" +msgstr "crwdns4468:0crwdne4468:0" + +#. Option for a Select field in DocType 'Report Column' +#: core/doctype/report_column/report_column.json +msgctxt "Report Column" +msgid "Fold" +msgstr "crwdns4470:0crwdne4470:0" + +#. Option for a Select field in DocType 'Report Filter' +#: core/doctype/report_filter/report_filter.json +msgctxt "Report Filter" +msgid "Fold" +msgstr "crwdns4472:0crwdne4472:0" + +#: core/doctype/doctype/doctype.py:1401 +msgid "Fold can not be at the end of the form" +msgstr "crwdns4474:0crwdne4474:0" + +#: core/doctype/doctype/doctype.py:1399 +msgid "Fold must come before a Section Break" +msgstr "crwdns4476:0crwdne4476:0" + +#. Label of a Link field in DocType 'File' +#: core/doctype/file/file.json +msgctxt "File" +msgid "Folder" +msgstr "crwdns4478:0crwdne4478:0" + +#. Label of a Data field in DocType 'IMAP Folder' +#: email/doctype/imap_folder/imap_folder.json +msgctxt "IMAP Folder" +msgid "Folder Name" +msgstr "crwdns4480:0crwdne4480:0" + +#: public/js/frappe/views/file/file_view.js:100 +msgid "Folder name should not include '/' (slash)" +msgstr "crwdns4482:0crwdne4482:0" + +#: core/doctype/file/file.py:466 +msgid "Folder {0} is not empty" +msgstr "crwdns4484:0{0}crwdne4484:0" + +#. Option for a Select field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "Folio" +msgstr "crwdns4486:0crwdne4486:0" + +#: public/js/frappe/form/sidebar/form_sidebar.js:232 +msgid "Follow" +msgstr "crwdns4488:0crwdne4488:0" + +#: email/doctype/auto_email_report/auto_email_report.py:124 +msgid "Following Report Filters have missing values:" +msgstr "crwdns4490:0crwdne4490:0" + +#: website/doctype/web_form/web_form.py:107 +msgid "Following fields are missing:" +msgstr "crwdns4492:0crwdne4492:0" + +#: public/js/frappe/ui/field_group.js:133 +msgid "Following fields have invalid values:" +msgstr "crwdns4494:0crwdne4494:0" + +#: public/js/frappe/widgets/widget_dialog.js:314 +msgid "Following fields have missing values" +msgstr "crwdns4496:0crwdne4496:0" + +#: public/js/frappe/ui/field_group.js:120 +msgid "Following fields have missing values:" +msgstr "crwdns4498:0crwdne4498:0" + +#: email/doctype/newsletter/newsletter.js:30 +msgid "Following links are broken in the email content: {0}" +msgstr "crwdns4500:0{0}crwdne4500:0" + +#. Label of a Select field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "Font" +msgstr "crwdns4502:0crwdne4502:0" + +#. Label of a Data field in DocType 'Website Theme' +#: website/doctype/website_theme/website_theme.json +msgctxt "Website Theme" +msgid "Font Properties" +msgstr "crwdns4504:0crwdne4504:0" + +#. Label of a Int field in DocType 'Print Format' +#: printing/doctype/print_format/print_format.json +msgctxt "Print Format" +msgid "Font Size" +msgstr "crwdns4506:0crwdne4506:0" + +#. Label of a Float field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "Font Size" +msgstr "crwdns4508:0crwdne4508:0" + +#. Label of a Data field in DocType 'Website Theme' +#: website/doctype/website_theme/website_theme.json +msgctxt "Website Theme" +msgid "Font Size" +msgstr "crwdns4510:0crwdne4510:0" + +#. Label of a Section Break field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "Fonts" +msgstr "crwdns4512:0crwdne4512:0" + +#. Label of a Text Editor field in DocType 'About Us Settings' +#: website/doctype/about_us_settings/about_us_settings.json +msgctxt "About Us Settings" +msgid "Footer" +msgstr "crwdns4514:0crwdne4514:0" + +#. Label of a Section Break field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Footer" +msgstr "crwdns4516:0crwdne4516:0" + +#. Label of a Section Break field in DocType 'Letter Head' +#: printing/doctype/letter_head/letter_head.json +msgctxt "Letter Head" +msgid "Footer" +msgstr "crwdns4518:0crwdne4518:0" + +#. Option for a Select field in DocType 'Web Template' +#: website/doctype/web_template/web_template.json +msgctxt "Web Template" +msgid "Footer" +msgstr "crwdns4520:0crwdne4520:0" + +#. Label of a Tab Break field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Footer" +msgstr "crwdns4522:0crwdne4522:0" + +#. Label of a Small Text field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Footer \"Powered By\"" +msgstr "crwdns4524:0crwdne4524:0" + +#. Label of a Select field in DocType 'Letter Head' +#: printing/doctype/letter_head/letter_head.json +msgctxt "Letter Head" +msgid "Footer Based On" +msgstr "crwdns4526:0crwdne4526:0" + +#. Label of a Text Editor field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Footer Content" +msgstr "crwdns4528:0crwdne4528:0" + +#. Label of a Section Break field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Footer Details" +msgstr "crwdns4530:0crwdne4530:0" + +#. Label of a HTML Editor field in DocType 'Letter Head' +#: printing/doctype/letter_head/letter_head.json +msgctxt "Letter Head" +msgid "Footer HTML" +msgstr "crwdns4532:0crwdne4532:0" + +#: printing/doctype/letter_head/letter_head.py:72 +msgid "Footer HTML set from attachment {0}" +msgstr "crwdns4534:0{0}crwdne4534:0" + +#. Label of a Section Break field in DocType 'Letter Head' +#: printing/doctype/letter_head/letter_head.json +msgctxt "Letter Head" +msgid "Footer Image" +msgstr "crwdns4536:0crwdne4536:0" + +#. Label of a Section Break field in DocType 'Website Settings' +#. Label of a Table field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Footer Items" +msgstr "crwdns4538:0crwdne4538:0" + +#. Label of a Attach Image field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Footer Logo" +msgstr "crwdns4540:0crwdne4540:0" + +#. Label of a Link field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Footer Template" +msgstr "crwdns4542:0crwdne4542:0" + +#. Label of a Code field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Footer Template Values" +msgstr "crwdns4544:0crwdne4544:0" + +#: printing/page/print/print.js:116 +msgid "Footer might not be visible as {0} option is disabled
" +msgstr "crwdns4546:0{0}crwdne4546:0" + +#. Description of a HTML Editor field in DocType 'Letter Head' +#: printing/doctype/letter_head/letter_head.json +msgctxt "Letter Head" +msgid "Footer will display correctly only in PDF" +msgstr "crwdns4548:0crwdne4548:0" + +#. Description of a Data field in DocType 'Property Setter' +#: custom/doctype/property_setter/property_setter.json +msgctxt "Property Setter" +msgid "For DocType Link / DocType Action" +msgstr "crwdns4550:0crwdne4550:0" + +#. Label of a Select field in DocType 'Energy Point Rule' +#: social/doctype/energy_point_rule/energy_point_rule.json +msgctxt "Energy Point Rule" +msgid "For Document Event" +msgstr "crwdns4552:0crwdne4552:0" + +#: core/doctype/user_permission/user_permission_list.js:155 +msgid "For Document Type" +msgstr "crwdns4554:0crwdne4554:0" + +#: public/js/frappe/widgets/widget_dialog.js:529 +msgid "For Example: {} Open" +msgstr "crwdns4556:0crwdne4556:0" + +#. Description of a Small Text field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "For Links, enter the DocType as range.\n" +"For Select, enter list of Options, each on a new line." +msgstr "crwdns4558:0crwdne4558:0" + +#. Description of a Small Text field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "For Links, enter the DocType as range.\n" +"For Select, enter list of Options, each on a new line." +msgstr "crwdns4560:0crwdne4560:0" + +#: core/doctype/user_permission/user_permission_list.js:10 +#: core/doctype/user_permission/user_permission_list.js:148 +msgid "For User" +msgstr "crwdns4562:0crwdne4562:0" + +#. Label of a Link field in DocType 'List Filter' +#: desk/doctype/list_filter/list_filter.json +msgctxt "List Filter" +msgid "For User" +msgstr "crwdns4564:0crwdne4564:0" + +#. Label of a Link field in DocType 'Notification Log' +#: desk/doctype/notification_log/notification_log.json +msgctxt "Notification Log" +msgid "For User" +msgstr "crwdns4566:0crwdne4566:0" + +#. Label of a Data field in DocType 'Workspace' +#: desk/doctype/workspace/workspace.json +msgctxt "Workspace" +msgid "For User" +msgstr "crwdns4568:0crwdne4568:0" + +#. Label of a Dynamic Link field in DocType 'User Permission' +#: core/doctype/user_permission/user_permission.json +msgctxt "User Permission" +msgid "For Value" +msgstr "crwdns4570:0crwdne4570:0" + +#: public/js/frappe/views/reports/query_report.js:1958 +#: public/js/frappe/views/reports/report_view.js:96 +msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)." +msgstr "crwdns4572:0crwdne4572:0" + +#: printing/page/print_format_builder/print_format_builder.js:744 +msgid "For example: If you want to include the document ID, use {0}" +msgstr "crwdns4574:0{0}crwdne4574:0" + +#. Description of a Data field in DocType 'Workspace Shortcut' +#: desk/doctype/workspace_shortcut/workspace_shortcut.json +msgctxt "Workspace Shortcut" +msgid "For example: {} Open" +msgstr "crwdns4576:0crwdne4576:0" + +#. Description of a Code field in DocType 'Web Form' +#: website/doctype/web_form/web_form.json +msgctxt "Web Form" +msgid "For help see Client Script API and Examples" +msgstr "crwdns4578:0crwdne4578:0" + +#. Description of a Check field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "For more information, click here." +msgstr "crwdns4580:0crwdne4580:0" + +#: integrations/doctype/google_settings/google_settings.js:7 +msgid "For more information, {0}." +msgstr "crwdns4582:0{0}crwdne4582:0" + +#. Description of a Small Text field in DocType 'Auto Email Report' +#: email/doctype/auto_email_report/auto_email_report.json +msgctxt "Auto Email Report" +msgid "For multiple addresses, enter the address on different line. e.g. test@test.com ⏎ test1@test.com" +msgstr "crwdns4584:0crwdne4584:0" + +#: core/doctype/data_export/exporter.py:199 +msgid "For updating, you can update only selective columns." +msgstr "crwdns4586:0crwdne4586:0" + +#: core/doctype/doctype/doctype.py:1692 +msgid "For {0} at level {1} in {2} in row {3}" +msgstr "crwdns4588:0{0}crwdnd4588:0{1}crwdnd4588:0{2}crwdnd4588:0{3}crwdne4588:0" + +#. Option for a Select field in DocType 'OAuth Provider Settings' +#: integrations/doctype/oauth_provider_settings/oauth_provider_settings.json +msgctxt "OAuth Provider Settings" +msgid "Force" +msgstr "crwdns4590:0crwdne4590:0" + +#. Label of a Check field in DocType 'Package Import' +#: core/doctype/package_import/package_import.json +msgctxt "Package Import" +msgid "Force" +msgstr "crwdns4592:0crwdne4592:0" + +#. Label of a Check field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Force Re-route to Default View" +msgstr "crwdns4594:0crwdne4594:0" + +#. Label of a Check field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Force Re-route to Default View" +msgstr "crwdns4596:0crwdne4596:0" + +#. Label of a Check field in DocType 'Desktop Icon' +#: desk/doctype/desktop_icon/desktop_icon.json +msgctxt "Desktop Icon" +msgid "Force Show" +msgstr "crwdns4598:0crwdne4598:0" + +#: core/doctype/rq_job/rq_job.js:13 +msgid "Force Stop job" +msgstr "crwdns4600:0crwdne4600:0" + +#. Label of a Int field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Force User to Reset Password" +msgstr "crwdns4602:0crwdne4602:0" + +#. Label of a Check field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Force Web Capture Mode for Uploads" +msgstr "crwdns4604:0crwdne4604:0" + +#: www/login.html:35 +msgid "Forgot Password?" +msgstr "crwdns4606:0crwdne4606:0" + +#: printing/page/print/print.js:83 +msgid "Form" +msgstr "crwdns4608:0crwdne4608:0" + +#. Option for a Select field in DocType 'Client Script' +#: custom/doctype/client_script/client_script.json +msgctxt "Client Script" +msgid "Form" +msgstr "crwdns4610:0crwdne4610:0" + +#. Label of a Tab Break field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Form" +msgstr "crwdns4612:0crwdne4612:0" + +#. Label of a Tab Break field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Form" +msgstr "crwdns4614:0crwdne4614:0" + +#. Option for a Select field in DocType 'Form Tour' +#: desk/doctype/form_tour/form_tour.json +msgctxt "Form Tour" +msgid "Form" +msgstr "crwdns4616:0crwdne4616:0" + +#. Label of a Tab Break field in DocType 'Web Form' +#: website/doctype/web_form/web_form.json +msgctxt "Web Form" +msgid "Form" +msgstr "crwdns4618:0crwdne4618:0" + +#. Label of a HTML field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Form Builder" +msgstr "crwdns4620:0crwdne4620:0" + +#. Label of a HTML field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Form Builder" +msgstr "crwdns4622:0crwdne4622:0" + +#. Label of a Code field in DocType 'Recorder' +#: core/doctype/recorder/recorder.json +msgctxt "Recorder" +msgid "Form Dict" +msgstr "crwdns4624:0crwdne4624:0" + +#. Label of a Section Break field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Form Settings" +msgstr "crwdns4626:0crwdne4626:0" + +#. Label of a Section Break field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Form Settings" +msgstr "crwdns4628:0crwdne4628:0" + +#. Label of a Section Break field in DocType 'Role' +#: core/doctype/role/role.json +msgctxt "Role" +msgid "Form Settings" +msgstr "crwdns4630:0crwdne4630:0" + +#. Name of a DocType +#: desk/doctype/form_tour/form_tour.json +msgid "Form Tour" +msgstr "crwdns4632:0crwdne4632:0" + +#. Label of a Link field in DocType 'Onboarding Step' +#: desk/doctype/onboarding_step/onboarding_step.json +msgctxt "Onboarding Step" +msgid "Form Tour" +msgstr "crwdns4634:0crwdne4634:0" + +#. Name of a DocType +#: desk/doctype/form_tour_step/form_tour_step.json +msgid "Form Tour Step" +msgstr "crwdns4636:0crwdne4636:0" + +#. Option for a Select field in DocType 'Webhook' +#: integrations/doctype/webhook/webhook.json +msgctxt "Webhook" +msgid "Form URL-Encoded" +msgstr "crwdns4638:0crwdne4638:0" + +#: public/js/frappe/widgets/widget_dialog.js:528 +msgid "Format" +msgstr "crwdns4640:0crwdne4640:0" + +#. Label of a Select field in DocType 'Auto Email Report' +#: email/doctype/auto_email_report/auto_email_report.json +msgctxt "Auto Email Report" +msgid "Format" +msgstr "crwdns4642:0crwdne4642:0" + +#. Label of a Data field in DocType 'Workspace Shortcut' +#: desk/doctype/workspace_shortcut/workspace_shortcut.json +msgctxt "Workspace Shortcut" +msgid "Format" +msgstr "crwdns4644:0crwdne4644:0" + +#. Label of a Code field in DocType 'Print Format' +#: printing/doctype/print_format/print_format.json +msgctxt "Print Format" +msgid "Format Data" +msgstr "crwdns4646:0crwdne4646:0" + +#: core/doctype/communication/communication.js:70 +msgid "Forward" +msgstr "crwdns4648:0crwdne4648:0" + +#. Label of a Data field in DocType 'Contact Us Settings' +#: website/doctype/contact_us_settings/contact_us_settings.json +msgctxt "Contact Us Settings" +msgid "Forward To Email Address" +msgstr "crwdns4650:0crwdne4650:0" + +#. Label of a Data field in DocType 'Currency' +#: geo/doctype/currency/currency.json +msgctxt "Currency" +msgid "Fraction" +msgstr "crwdns4652:0crwdne4652:0" + +#. Label of a Int field in DocType 'Currency' +#: geo/doctype/currency/currency.json +msgctxt "Currency" +msgid "Fraction Units" +msgstr "crwdns4654:0crwdne4654:0" + +#: www/login.html:61 www/login.html:142 www/login.py:44 www/login.py:134 +msgid "Frappe" +msgstr "crwdns4656:0crwdne4656:0" + +#. Option for a Select field in DocType 'Social Login Key' +#: integrations/doctype/social_login_key/social_login_key.json +msgctxt "Social Login Key" +msgid "Frappe" +msgstr "crwdns4658:0crwdne4658:0" + +#: public/js/frappe/ui/toolbar/about.js:4 +msgid "Frappe Framework" +msgstr "crwdns4660:0crwdne4660:0" + +#: public/js/frappe/ui/theme_switcher.js:59 +msgid "Frappe Light" +msgstr "crwdns4662:0crwdne4662:0" + +#. Label of a standard help item +#. Type: Action +#: hooks.py +msgid "Frappe Support" +msgstr "crwdns4664:0crwdne4664:0" + +#: public/js/frappe/utils/common.js:395 +msgid "Frequency" +msgstr "crwdns4666:0crwdne4666:0" + +#. Label of a Select field in DocType 'Auto Email Report' +#: email/doctype/auto_email_report/auto_email_report.json +msgctxt "Auto Email Report" +msgid "Frequency" +msgstr "crwdns4668:0crwdne4668:0" + +#. Label of a Select field in DocType 'Auto Repeat' +#: automation/doctype/auto_repeat/auto_repeat.json +msgctxt "Auto Repeat" +msgid "Frequency" +msgstr "crwdns4670:0crwdne4670:0" + +#. Label of a Select field in DocType 'Google Drive' +#: integrations/doctype/google_drive/google_drive.json +msgctxt "Google Drive" +msgid "Frequency" +msgstr "crwdns4672:0crwdne4672:0" + +#. Label of a Select field in DocType 'Scheduled Job Type' +#: core/doctype/scheduled_job_type/scheduled_job_type.json +msgctxt "Scheduled Job Type" +msgid "Frequency" +msgstr "crwdns4674:0crwdne4674:0" + +#. Label of a Select field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Frequency" +msgstr "crwdns4676:0crwdne4676:0" + +#. Option for a Select field in DocType 'Assignment Rule Day' +#: automation/doctype/assignment_rule_day/assignment_rule_day.json +msgctxt "Assignment Rule Day" +msgid "Friday" +msgstr "crwdns4678:0crwdne4678:0" + +#. Option for a Select field in DocType 'Auto Email Report' +#: email/doctype/auto_email_report/auto_email_report.json +msgctxt "Auto Email Report" +msgid "Friday" +msgstr "crwdns4680:0crwdne4680:0" + +#. Option for a Select field in DocType 'Auto Repeat Day' +#: automation/doctype/auto_repeat_day/auto_repeat_day.json +msgctxt "Auto Repeat Day" +msgid "Friday" +msgstr "crwdns4682:0crwdne4682:0" + +#. Label of a Check field in DocType 'Event' +#: desk/doctype/event/event.json +msgctxt "Event" +msgid "Friday" +msgstr "crwdns4684:0crwdne4684:0" + +#. Option for a Select field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Friday" +msgstr "crwdns4686:0crwdne4686:0" + +#: public/js/frappe/views/communication.js:170 +#: public/js/frappe/views/inbox/inbox_view.js:70 +msgid "From" +msgstr "crwdns4688:0crwdne4688:0" + +#. Label of a Data field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "From" +msgstr "crwdns4690:0crwdne4690:0" + +#. Label of a Section Break field in DocType 'Newsletter' +#: email/doctype/newsletter/newsletter.json +msgctxt "Newsletter" +msgid "From" +msgstr "crwdns4692:0crwdne4692:0" + +#: website/report/website_analytics/website_analytics.js:8 +msgid "From Date" +msgstr "crwdns4694:0crwdne4694:0" + +#. Label of a Date field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "From Date" +msgstr "crwdns4696:0crwdne4696:0" + +#. Label of a Select field in DocType 'Auto Email Report' +#: email/doctype/auto_email_report/auto_email_report.json +msgctxt "Auto Email Report" +msgid "From Date Field" +msgstr "crwdns4698:0crwdne4698:0" + +#: public/js/frappe/views/reports/query_report.js:1672 +msgid "From Document Type" +msgstr "crwdns4700:0crwdne4700:0" + +#. Label of a Data field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "From Full Name" +msgstr "crwdns4702:0crwdne4702:0" + +#. Label of a Link field in DocType 'Notification Log' +#: desk/doctype/notification_log/notification_log.json +msgctxt "Notification Log" +msgid "From User" +msgstr "crwdns4704:0crwdne4704:0" + +#: public/js/frappe/utils/diffview.js:30 +msgid "From version" +msgstr "crwdns4706:0crwdne4706:0" + +#. Option for a Select field in DocType 'Dashboard Chart Link' +#: desk/doctype/dashboard_chart_link/dashboard_chart_link.json +msgctxt "Dashboard Chart Link" +msgid "Full" +msgstr "crwdns4708:0crwdne4708:0" + +#: desk/page/setup_wizard/setup_wizard.js:464 templates/signup.html:4 +msgid "Full Name" +msgstr "crwdns4710:0crwdne4710:0" + +#. Label of a Data field in DocType 'About Us Team Member' +#: website/doctype/about_us_team_member/about_us_team_member.json +msgctxt "About Us Team Member" +msgid "Full Name" +msgstr "crwdns4712:0crwdne4712:0" + +#. Label of a Data field in DocType 'Activity Log' +#: core/doctype/activity_log/activity_log.json +msgctxt "Activity Log" +msgid "Full Name" +msgstr "crwdns4714:0crwdne4714:0" + +#. Label of a Data field in DocType 'Blogger' +#: website/doctype/blogger/blogger.json +msgctxt "Blogger" +msgid "Full Name" +msgstr "crwdns4716:0crwdne4716:0" + +#. Label of a Data field in DocType 'Contact' +#: contacts/doctype/contact/contact.json +msgctxt "Contact" +msgid "Full Name" +msgstr "crwdns4718:0crwdne4718:0" + +#. Label of a Data field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Full Name" +msgstr "crwdns4720:0crwdne4720:0" + +#: printing/page/print/print.js:67 +msgid "Full Page" +msgstr "crwdns4722:0crwdne4722:0" + +#. Label of a Check field in DocType 'Web Page' +#: website/doctype/web_page/web_page.json +msgctxt "Web Page" +msgid "Full Width" +msgstr "crwdns4724:0crwdne4724:0" + +#: public/js/frappe/views/reports/query_report.js:245 +#: public/js/frappe/widgets/widget_dialog.js:666 +msgid "Function" +msgstr "crwdns4726:0crwdne4726:0" + +#. Label of a Select field in DocType 'Number Card' +#: desk/doctype/number_card/number_card.json +msgctxt "Number Card" +msgid "Function" +msgstr "crwdns4728:0crwdne4728:0" + +#: public/js/frappe/widgets/widget_dialog.js:673 +msgid "Function Based On" +msgstr "crwdns4730:0crwdne4730:0" + +#: __init__.py:818 +msgid "Function {0} is not whitelisted." +msgstr "crwdns4732:0{0}crwdne4732:0" + +#: public/js/frappe/views/treeview.js:402 +msgid "Further nodes can be only created under 'Group' type nodes" +msgstr "crwdns4734:0crwdne4734:0" + +#: core/doctype/communication/communication.js:291 +msgid "Fw: {0}" +msgstr "crwdns4736:0{0}crwdne4736:0" + +#. Option for a Select field in DocType 'Recorder' +#: core/doctype/recorder/recorder.json +msgctxt "Recorder" +msgid "GET" +msgstr "crwdns4738:0crwdne4738:0" + +#. Option for a Select field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "GMail" +msgstr "crwdns4740:0crwdne4740:0" + +#. Option for a Select field in DocType 'Package' +#: core/doctype/package/package.json +msgctxt "Package" +msgid "GNU Affero General Public License" +msgstr "crwdns4742:0crwdne4742:0" + +#. Option for a Select field in DocType 'Package' +#: core/doctype/package/package.json +msgctxt "Package" +msgid "GNU General Public License" +msgstr "crwdns4744:0crwdne4744:0" + +#: public/js/frappe/views/gantt/gantt_view.js:10 +msgid "Gantt" +msgstr "crwdns4746:0crwdne4746:0" + +#. Option for a Select field in DocType 'Form Tour' +#: desk/doctype/form_tour/form_tour.json +msgctxt "Form Tour" +msgid "Gantt" +msgstr "crwdns4748:0crwdne4748:0" + +#. Name of a DocType +#: contacts/doctype/gender/gender.json +msgid "Gender" +msgstr "crwdns4750:0crwdne4750:0" + +#. Label of a Link field in DocType 'Contact' +#: contacts/doctype/contact/contact.json +msgctxt "Contact" +msgid "Gender" +msgstr "crwdns4752:0crwdne4752:0" + +#. Label of a Data field in DocType 'Gender' +#: contacts/doctype/gender/gender.json +msgctxt "Gender" +msgid "Gender" +msgstr "crwdns4754:0crwdne4754:0" + +#. Label of a Link field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Gender" +msgstr "crwdns4756:0crwdne4756:0" + +#. Title of an Onboarding Step +#: custom/onboarding_step/report_builder/report_builder.json +msgid "Generate Custom Reports" +msgstr "crwdns4758:0crwdne4758:0" + +#. Label of a Button field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Generate Keys" +msgstr "crwdns4760:0crwdne4760:0" + +#: public/js/frappe/views/reports/query_report.js:803 +msgid "Generate New Report" +msgstr "crwdns4762:0crwdne4762:0" + +#: public/js/frappe/ui/toolbar/awesome_bar.js:366 +msgid "Generate Random Password" +msgstr "crwdns4764:0crwdne4764:0" + +#: public/js/frappe/ui/toolbar/toolbar.js:137 +#: public/js/frappe/utils/utils.js:1750 +msgid "Generate Tracking URL" +msgstr "crwdns4766:0crwdne4766:0" + +#. Option for a Select field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Geolocation" +msgstr "crwdns4768:0crwdne4768:0" + +#. Option for a Select field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Geolocation" +msgstr "crwdns4770:0crwdne4770:0" + +#. Option for a Select field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Geolocation" +msgstr "crwdns4772:0crwdne4772:0" + +#: email/doctype/notification/notification.js:170 +msgid "Get Alerts for Today" +msgstr "crwdns4774:0crwdne4774:0" + +#: desk/page/backups/backups.js:19 +msgid "Get Backup Encryption Key" +msgstr "crwdns4776:0crwdne4776:0" + +#. Label of a Button field in DocType 'Auto Repeat' +#: automation/doctype/auto_repeat/auto_repeat.json +msgctxt "Auto Repeat" +msgid "Get Contacts" +msgstr "crwdns4778:0crwdne4778:0" + +#: website/doctype/web_form/web_form.js:84 +msgid "Get Fields" +msgstr "crwdns4780:0crwdne4780:0" + +#: public/js/frappe/form/multi_select_dialog.js:85 +msgid "Get Items" +msgstr "crwdns4782:0crwdne4782:0" + +#: integrations/doctype/connected_app/connected_app.js:6 +msgid "Get OpenID Configuration" +msgstr "crwdns4784:0crwdne4784:0" + +#: www/printview.html:22 +msgid "Get PDF" +msgstr "crwdns4786:0crwdne4786:0" + +#. Description of a Data field in DocType 'Document Naming Settings' +#: core/doctype/document_naming_settings/document_naming_settings.json +msgctxt "Document Naming Settings" +msgid "Get a preview of generated names with a series." +msgstr "crwdns4788:0crwdne4788:0" + +#. Description of a Check field in DocType 'Notification Settings' +#: desk/doctype/notification_settings/notification_settings.json +msgctxt "Notification Settings" +msgid "Get notified when an email is received on any of the documents assigned to you." +msgstr "crwdns4790:0crwdne4790:0" + +#. Description of a Attach Image field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Get your globally recognized avatar from Gravatar.com" +msgstr "crwdns4792:0crwdne4792:0" + +#. Label of a Data field in DocType 'Installed Application' +#: core/doctype/installed_application/installed_application.json +msgctxt "Installed Application" +msgid "Git Branch" +msgstr "crwdns4794:0crwdne4794:0" + +#. Option for a Select field in DocType 'Social Login Key' +#: integrations/doctype/social_login_key/social_login_key.json +msgctxt "Social Login Key" +msgid "GitHub" +msgstr "crwdns4796:0crwdne4796:0" + +#: social/doctype/energy_point_settings/energy_point_settings.js:7 +#: social/doctype/energy_point_settings/energy_point_settings.js:14 +msgid "Give Review Points" +msgstr "crwdns4798:0crwdne4798:0" + +#. Name of a DocType +#: desk/doctype/global_search_doctype/global_search_doctype.json +msgid "Global Search DocType" +msgstr "crwdns4800:0crwdne4800:0" + +#: desk/doctype/global_search_settings/global_search_settings.js:24 +msgid "Global Search Document Types Reset." +msgstr "crwdns4802:0crwdne4802:0" + +#. Name of a DocType +#: desk/doctype/global_search_settings/global_search_settings.json +msgid "Global Search Settings" +msgstr "crwdns4804:0crwdne4804:0" + +#: public/js/frappe/ui/keyboard.js:118 +msgid "Global Shortcuts" +msgstr "crwdns4806:0crwdne4806:0" + +#. Label of a Check field in DocType 'Email Unsubscribe' +#: email/doctype/email_unsubscribe/email_unsubscribe.json +msgctxt "Email Unsubscribe" +msgid "Global Unsubscribe" +msgstr "crwdns4808:0crwdne4808:0" + +#: desk/page/user_profile/user_profile_controller.js:68 +#: public/js/frappe/form/toolbar.js:767 +msgid "Go" +msgstr "crwdns4810:0crwdne4810:0" + +#: public/js/frappe/widgets/onboarding_widget.js:246 +#: public/js/frappe/widgets/onboarding_widget.js:326 +msgid "Go Back" +msgstr "crwdns4812:0crwdne4812:0" + +#: desk/doctype/notification_settings/notification_settings.js:17 +msgid "Go to Notification Settings List" +msgstr "crwdns4814:0crwdne4814:0" + +#. Option for a Select field in DocType 'Onboarding Step' +#: desk/doctype/onboarding_step/onboarding_step.json +msgctxt "Onboarding Step" +msgid "Go to Page" +msgstr "crwdns4816:0crwdne4816:0" + +#: public/js/workflow_builder/workflow_builder.bundle.js:41 +msgid "Go to Workflow" +msgstr "crwdns4818:0crwdne4818:0" + +#: desk/doctype/workspace/workspace.js:18 +msgid "Go to Workspace" +msgstr "crwdns4820:0crwdne4820:0" + +#: public/js/frappe/form/form.js:144 +msgid "Go to next record" +msgstr "crwdns4822:0crwdne4822:0" + +#: public/js/frappe/form/form.js:154 +msgid "Go to previous record" +msgstr "crwdns4824:0crwdne4824:0" + +#: integrations/doctype/slack_webhook_url/slack_webhook_url.py:52 +msgid "Go to the document" +msgstr "crwdns4826:0crwdne4826:0" + +#. Description of a Data field in DocType 'Web Form' +#: website/doctype/web_form/web_form.json +msgctxt "Web Form" +msgid "Go to this URL after completing the form" +msgstr "crwdns4828:0crwdne4828:0" + +#: core/doctype/doctype/doctype.js:54 +#: custom/doctype/client_script/client_script.js:10 +msgid "Go to {0}" +msgstr "crwdns4830:0{0}crwdne4830:0" + +#: core/doctype/data_import/data_import.js:92 +#: core/doctype/doctype/doctype.js:58 +#: custom/doctype/customize_form/customize_form.js:104 +#: custom/doctype/doctype_layout/doctype_layout.js:42 +#: workflow/doctype/workflow/workflow.js:44 +msgid "Go to {0} List" +msgstr "crwdns4832:0{0}crwdne4832:0" + +#: core/doctype/page/page.js:11 +msgid "Go to {0} Page" +msgstr "crwdns4834:0{0}crwdne4834:0" + +#: utils/goal.py:115 utils/goal.py:122 +msgid "Goal" +msgstr "crwdns4836:0crwdne4836:0" + +#. Option for a Select field in DocType 'Social Login Key' +#: integrations/doctype/social_login_key/social_login_key.json +msgctxt "Social Login Key" +msgid "Google" +msgstr "crwdns4838:0crwdne4838:0" + +#. Label of a Data field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Google Analytics ID" +msgstr "crwdns4840:0crwdne4840:0" + +#. Label of a Check field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Google Analytics anonymise IP" +msgstr "crwdns4842:0crwdne4842:0" + +#. Name of a DocType +#: integrations/doctype/google_calendar/google_calendar.json +msgid "Google Calendar" +msgstr "crwdns4844:0crwdne4844:0" + +#. Label of a Section Break field in DocType 'Event' +#. Label of a Link field in DocType 'Event' +#: desk/doctype/event/event.json +msgctxt "Event" +msgid "Google Calendar" +msgstr "crwdns4846:0crwdne4846:0" + +#. Label of a Section Break field in DocType 'Google Calendar' +#. Label of a Link in the Integrations Workspace +#: integrations/doctype/google_calendar/google_calendar.json +#: integrations/workspace/integrations/integrations.json +msgctxt "Google Calendar" +msgid "Google Calendar" +msgstr "crwdns4848:0crwdne4848:0" + +#: integrations/doctype/google_calendar/google_calendar.py:781 +msgid "Google Calendar - Contact / email not found. Did not add attendee for -
{0}" +msgstr "crwdns4850:0{0}crwdne4850:0" + +#: integrations/doctype/google_calendar/google_calendar.py:251 +msgid "Google Calendar - Could not create Calendar for {0}, error code {1}." +msgstr "crwdns4852:0{0}crwdnd4852:0{1}crwdne4852:0" + +#: integrations/doctype/google_calendar/google_calendar.py:575 +msgid "Google Calendar - Could not delete Event {0} from Google Calendar, error code {1}." +msgstr "crwdns4854:0{0}crwdnd4854:0{1}crwdne4854:0" + +#: integrations/doctype/google_calendar/google_calendar.py:288 +msgid "Google Calendar - Could not fetch event from Google Calendar, error code {0}." +msgstr "crwdns4856:0{0}crwdne4856:0" + +#: integrations/doctype/google_contacts/google_contacts.py:229 +msgid "Google Calendar - Could not insert contact in Google Contacts {0}, error code {1}." +msgstr "crwdns4858:0{0}crwdnd4858:0{1}crwdne4858:0" + +#: integrations/doctype/google_calendar/google_calendar.py:458 +msgid "Google Calendar - Could not insert event in Google Calendar {0}, error code {1}." +msgstr "crwdns4860:0{0}crwdnd4860:0{1}crwdne4860:0" + +#: integrations/doctype/google_calendar/google_calendar.py:542 +msgid "Google Calendar - Could not update Event {0} in Google Calendar, error code {1}." +msgstr "crwdns4862:0{0}crwdnd4862:0{1}crwdne4862:0" + +#. Label of a Data field in DocType 'Event' +#: desk/doctype/event/event.json +msgctxt "Event" +msgid "Google Calendar Event ID" +msgstr "crwdns4864:0crwdne4864:0" + +#. Label of a Data field in DocType 'Event' +#: desk/doctype/event/event.json +msgctxt "Event" +msgid "Google Calendar ID" +msgstr "crwdns4866:0crwdne4866:0" + +#. Label of a Data field in DocType 'Google Calendar' +#: integrations/doctype/google_calendar/google_calendar.json +msgctxt "Google Calendar" +msgid "Google Calendar ID" +msgstr "crwdns4868:0crwdne4868:0" + +#: integrations/doctype/google_calendar/google_calendar.py:166 +msgid "Google Calendar has been configured." +msgstr "crwdns4870:0crwdne4870:0" + +#. Name of a DocType +#: integrations/doctype/google_contacts/google_contacts.json +msgid "Google Contacts" +msgstr "crwdns4872:0crwdne4872:0" + +#. Label of a Section Break field in DocType 'Contact' +#. Label of a Link field in DocType 'Contact' +#: contacts/doctype/contact/contact.json +msgctxt "Contact" +msgid "Google Contacts" +msgstr "crwdns4874:0crwdne4874:0" + +#. Label of a Section Break field in DocType 'Google Contacts' +#. Label of a Link in the Integrations Workspace +#: integrations/doctype/google_contacts/google_contacts.json +#: integrations/workspace/integrations/integrations.json +msgctxt "Google Contacts" +msgid "Google Contacts" +msgstr "crwdns4876:0crwdne4876:0" + +#: integrations/doctype/google_contacts/google_contacts.py:136 +msgid "Google Contacts - Could not sync contacts from Google Contacts {0}, error code {1}." +msgstr "crwdns4878:0{0}crwdnd4878:0{1}crwdne4878:0" + +#: integrations/doctype/google_contacts/google_contacts.py:291 +msgid "Google Contacts - Could not update contact in Google Contacts {0}, error code {1}." +msgstr "crwdns4880:0{0}crwdnd4880:0{1}crwdne4880:0" + +#. Label of a Data field in DocType 'Contact' +#: contacts/doctype/contact/contact.json +msgctxt "Contact" +msgid "Google Contacts Id" +msgstr "crwdns4882:0crwdne4882:0" + +#. Name of a DocType +#: integrations/doctype/google_drive/google_drive.json +msgid "Google Drive" +msgstr "crwdns4884:0crwdne4884:0" + +#. Label of a Section Break field in DocType 'Google Drive' +#. Label of a Link in the Integrations Workspace +#: integrations/doctype/google_drive/google_drive.json +#: integrations/workspace/integrations/integrations.json +msgctxt "Google Drive" +msgid "Google Drive" +msgstr "crwdns4886:0crwdne4886:0" + +#: integrations/doctype/google_drive/google_drive.py:118 +msgid "Google Drive - Could not create folder in Google Drive - Error Code {0}" +msgstr "crwdns4888:0{0}crwdne4888:0" + +#: integrations/doctype/google_drive/google_drive.py:134 +msgid "Google Drive - Could not find folder in Google Drive - Error Code {0}" +msgstr "crwdns4890:0{0}crwdne4890:0" + +#: integrations/doctype/google_drive/google_drive.py:196 +msgid "Google Drive - Could not locate - {0}" +msgstr "crwdns4892:0{0}crwdne4892:0" + +#: integrations/doctype/google_drive/google_drive.py:207 +msgid "Google Drive Backup Successful." +msgstr "crwdns4894:0crwdne4894:0" + +#. Label of a Section Break field in DocType 'Google Settings' +#: integrations/doctype/google_settings/google_settings.json +msgctxt "Google Settings" +msgid "Google Drive Picker" +msgstr "crwdns4896:0crwdne4896:0" + +#. Label of a Check field in DocType 'Google Settings' +#: integrations/doctype/google_settings/google_settings.json +msgctxt "Google Settings" +msgid "Google Drive Picker Enabled" +msgstr "crwdns4898:0crwdne4898:0" + +#. Label of a Data field in DocType 'Print Format' +#: printing/doctype/print_format/print_format.json +msgctxt "Print Format" +msgid "Google Font" +msgstr "crwdns4900:0crwdne4900:0" + +#. Label of a Data field in DocType 'Website Theme' +#: website/doctype/website_theme/website_theme.json +msgctxt "Website Theme" +msgid "Google Font" +msgstr "crwdns4902:0crwdne4902:0" + +#. Label of a Data field in DocType 'Event' +#: desk/doctype/event/event.json +msgctxt "Event" +msgid "Google Meet Link" +msgstr "crwdns4904:0crwdne4904:0" + +#. Label of a Card Break in the Integrations Workspace +#: integrations/workspace/integrations/integrations.json +msgid "Google Services" +msgstr "crwdns4906:0crwdne4906:0" + +#. Name of a DocType +#: integrations/doctype/google_settings/google_settings.json +msgid "Google Settings" +msgstr "crwdns4908:0crwdne4908:0" + +#. Label of a Link in the Integrations Workspace +#: integrations/workspace/integrations/integrations.json +msgctxt "Google Settings" +msgid "Google Settings" +msgstr "crwdns4910:0crwdne4910:0" + +#: utils/csvutils.py:199 +msgid "Google Sheets URL is invalid or not publicly accessible." +msgstr "crwdns4912:0crwdne4912:0" + +#: utils/csvutils.py:204 +msgid "Google Sheets URL must end with \"gid={number}\". Copy and paste the URL from the browser address bar and try again." +msgstr "crwdns4914:0{number}crwdne4914:0" + +#. Label of a HTML field in DocType 'Blog Post' +#: website/doctype/blog_post/blog_post.json +msgctxt "Blog Post" +msgid "Google Snippet Preview" +msgstr "crwdns4916:0crwdne4916:0" + +#. Label of a Select field in DocType 'OAuth Client' +#: integrations/doctype/oauth_client/oauth_client.json +msgctxt "OAuth Client" +msgid "Grant Type" +msgstr "crwdns4918:0crwdne4918:0" + +#: public/js/frappe/form/dashboard.js:34 +msgid "Graph" +msgstr "crwdns4920:0crwdne4920:0" + +#. Option for a Select field in DocType 'DocType State' +#: core/doctype/doctype_state/doctype_state.json +msgctxt "DocType State" +msgid "Gray" +msgstr "crwdns4922:0crwdne4922:0" + +#. Option for a Select field in DocType 'Kanban Board Column' +#: desk/doctype/kanban_board_column/kanban_board_column.json +msgctxt "Kanban Board Column" +msgid "Gray" +msgstr "crwdns4924:0crwdne4924:0" + +#. Option for a Select field in DocType 'DocType State' +#: core/doctype/doctype_state/doctype_state.json +msgctxt "DocType State" +msgid "Green" +msgstr "crwdns4926:0crwdne4926:0" + +#. Option for a Select field in DocType 'Kanban Board Column' +#: desk/doctype/kanban_board_column/kanban_board_column.json +msgctxt "Kanban Board Column" +msgid "Green" +msgstr "crwdns4928:0crwdne4928:0" + +#: public/js/frappe/ui/keyboard.js:123 +msgid "Grid Shortcuts" +msgstr "crwdns4930:0crwdne4930:0" + +#. Label of a Data field in DocType 'DocType Action' +#: core/doctype/doctype_action/doctype_action.json +msgctxt "DocType Action" +msgid "Group" +msgstr "crwdns4932:0crwdne4932:0" + +#. Label of a Data field in DocType 'DocType Link' +#: core/doctype/doctype_link/doctype_link.json +msgctxt "DocType Link" +msgid "Group" +msgstr "crwdns4934:0crwdne4934:0" + +#. Label of a Data field in DocType 'Website Sidebar Item' +#: website/doctype/website_sidebar_item/website_sidebar_item.json +msgctxt "Website Sidebar Item" +msgid "Group" +msgstr "crwdns4936:0crwdne4936:0" + +#: website/report/website_analytics/website_analytics.js:32 +msgid "Group By" +msgstr "crwdns4938:0crwdne4938:0" + +#. Option for a Select field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "Group By" +msgstr "crwdns4940:0crwdne4940:0" + +#. Label of a Select field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "Group By Based On" +msgstr "crwdns4942:0crwdne4942:0" + +#. Label of a Select field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "Group By Type" +msgstr "crwdns4944:0crwdne4944:0" + +#: desk/doctype/dashboard_chart/dashboard_chart.py:408 +msgid "Group By field is required to create a dashboard chart" +msgstr "crwdns4946:0crwdne4946:0" + +#: public/js/frappe/views/treeview.js:401 +msgid "Group Node" +msgstr "crwdns4948:0crwdne4948:0" + +#. Label of a Data field in DocType 'LDAP Settings' +#: integrations/doctype/ldap_settings/ldap_settings.json +msgctxt "LDAP Settings" +msgid "Group Object Class" +msgstr "crwdns4950:0crwdne4950:0" + +#: public/js/frappe/ui/group_by/group_by.js:415 +msgid "Grouped by {0}" +msgstr "crwdns4952:0{0}crwdne4952:0" + +#. Option for a Select field in DocType 'Recorder' +#: core/doctype/recorder/recorder.json +msgctxt "Recorder" +msgid "HEAD" +msgstr "crwdns4954:0crwdne4954:0" + +#. Option for a Select field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "HH:mm" +msgstr "crwdns4956:0crwdne4956:0" + +#. Option for a Select field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "HH:mm:ss" +msgstr "crwdns4958:0crwdne4958:0" + +#: printing/doctype/print_format/print_format.py:93 +msgid "HTML" +msgstr "crwdns4960:0crwdne4960:0" + +#. Option for a Select field in DocType 'Auto Email Report' +#: email/doctype/auto_email_report/auto_email_report.json +msgctxt "Auto Email Report" +msgid "HTML" +msgstr "crwdns4962:0crwdne4962:0" + +#. Option for a Select field in DocType 'Blog Post' +#: website/doctype/blog_post/blog_post.json +msgctxt "Blog Post" +msgid "HTML" +msgstr "crwdns4964:0crwdne4964:0" + +#. Option for a Select field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "HTML" +msgstr "crwdns4966:0crwdne4966:0" + +#. Label of a Section Break field in DocType 'Custom HTML Block' +#: desk/doctype/custom_html_block/custom_html_block.json +msgctxt "Custom HTML Block" +msgid "HTML" +msgstr "crwdns4968:0crwdne4968:0" + +#. Option for a Select field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "HTML" +msgstr "crwdns4970:0crwdne4970:0" + +#. Option for a Select field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "HTML" +msgstr "crwdns4972:0crwdne4972:0" + +#. Option for a Select field in DocType 'Letter Head' +#: printing/doctype/letter_head/letter_head.json +msgctxt "Letter Head" +msgid "HTML" +msgstr "crwdns4974:0crwdne4974:0" + +#. Option for a Select field in DocType 'Newsletter' +#: email/doctype/newsletter/newsletter.json +msgctxt "Newsletter" +msgid "HTML" +msgstr "crwdns4976:0crwdne4976:0" + +#. Option for a Select field in DocType 'Notification' +#: email/doctype/notification/notification.json +msgctxt "Notification" +msgid "HTML" +msgstr "crwdns4978:0crwdne4978:0" + +#. Label of a Code field in DocType 'Print Format' +#: printing/doctype/print_format/print_format.json +msgctxt "Print Format" +msgid "HTML" +msgstr "crwdns4980:0crwdne4980:0" + +#. Option for a Select field in DocType 'Web Form Field' +#: website/doctype/web_form_field/web_form_field.json +msgctxt "Web Form Field" +msgid "HTML" +msgstr "crwdns4982:0crwdne4982:0" + +#. Option for a Select field in DocType 'Web Page' +#: website/doctype/web_page/web_page.json +msgctxt "Web Page" +msgid "HTML" +msgstr "crwdns4984:0crwdne4984:0" + +#. Option for a Select field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "HTML Editor" +msgstr "crwdns4986:0crwdne4986:0" + +#. Option for a Select field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "HTML Editor" +msgstr "crwdns4988:0crwdne4988:0" + +#. Option for a Select field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "HTML Editor" +msgstr "crwdns4990:0crwdne4990:0" + +#. Label of a HTML Editor field in DocType 'Access Log' +#: core/doctype/access_log/access_log.json +msgctxt "Access Log" +msgid "HTML Page" +msgstr "crwdns4992:0crwdne4992:0" + +#. Description of a HTML Editor field in DocType 'Web Page' +#: website/doctype/web_page/web_page.json +msgctxt "Web Page" +msgid "HTML for header section. Optional" +msgstr "crwdns4994:0crwdne4994:0" + +#. Option for a Select field in DocType 'Dashboard Chart Link' +#: desk/doctype/dashboard_chart_link/dashboard_chart_link.json +msgctxt "Dashboard Chart Link" +msgid "Half" +msgstr "crwdns4996:0crwdne4996:0" + +#. Option for a Select field in DocType 'Auto Email Report' +#: email/doctype/auto_email_report/auto_email_report.json +msgctxt "Auto Email Report" +msgid "Half Yearly" +msgstr "crwdns4998:0crwdne4998:0" + +#: public/js/frappe/utils/common.js:402 +msgid "Half-yearly" +msgstr "crwdns5000:0crwdne5000:0" + +#. Option for a Select field in DocType 'Auto Repeat' +#: automation/doctype/auto_repeat/auto_repeat.json +msgctxt "Auto Repeat" +msgid "Half-yearly" +msgstr "crwdns5002:0crwdne5002:0" + +#. Label of a Check field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Has Attachment" +msgstr "crwdns5004:0crwdne5004:0" + +#. Name of a DocType +#: core/doctype/has_domain/has_domain.json +msgid "Has Domain" +msgstr "crwdns5006:0crwdne5006:0" + +#. Label of a Check field in DocType 'Form Tour Step' +#: desk/doctype/form_tour_step/form_tour_step.json +msgctxt "Form Tour Step" +msgid "Has Next Condition" +msgstr "crwdns5008:0crwdne5008:0" + +#. Name of a DocType +#: core/doctype/has_role/has_role.json +msgid "Has Role" +msgstr "crwdns5010:0crwdne5010:0" + +#. Label of a Check field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Has Web View" +msgstr "crwdns5012:0crwdne5012:0" + +#: templates/signup.html:19 +msgid "Have an account? Login" +msgstr "crwdns5014:0crwdne5014:0" + +#. Label of a Section Break field in DocType 'Letter Head' +#: printing/doctype/letter_head/letter_head.json +msgctxt "Letter Head" +msgid "Header" +msgstr "crwdns5016:0crwdne5016:0" + +#. Label of a Check field in DocType 'SMS Parameter' +#: core/doctype/sms_parameter/sms_parameter.json +msgctxt "SMS Parameter" +msgid "Header" +msgstr "crwdns5018:0crwdne5018:0" + +#. Label of a HTML Editor field in DocType 'Web Page' +#: website/doctype/web_page/web_page.json +msgctxt "Web Page" +msgid "Header" +msgstr "crwdns5020:0crwdne5020:0" + +#. Label of a HTML Editor field in DocType 'Website Slideshow' +#: website/doctype/website_slideshow/website_slideshow.json +msgctxt "Website Slideshow" +msgid "Header" +msgstr "crwdns5022:0crwdne5022:0" + +#. Label of a HTML Editor field in DocType 'Letter Head' +#: printing/doctype/letter_head/letter_head.json +msgctxt "Letter Head" +msgid "Header HTML" +msgstr "crwdns5024:0crwdne5024:0" + +#: printing/doctype/letter_head/letter_head.py:60 +msgid "Header HTML set from attachment {0}" +msgstr "crwdns5026:0{0}crwdne5026:0" + +#. Label of a Section Break field in DocType 'Web Page' +#: website/doctype/web_page/web_page.json +msgctxt "Web Page" +msgid "Header and Breadcrumbs" +msgstr "crwdns5028:0crwdne5028:0" + +#. Label of a Tab Break field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Header, Robots" +msgstr "crwdns5030:0crwdne5030:0" + +#. Label of a Table field in DocType 'Webhook' +#: integrations/doctype/webhook/webhook.json +msgctxt "Webhook" +msgid "Headers" +msgstr "crwdns5032:0crwdne5032:0" + +#. Label of a Code field in DocType 'Webhook Request Log' +#: integrations/doctype/webhook_request_log/webhook_request_log.json +msgctxt "Webhook Request Log" +msgid "Headers" +msgstr "crwdns5034:0crwdne5034:0" + +#: printing/page/print_format_builder/print_format_builder.js:602 +msgid "Heading" +msgstr "crwdns5036:0crwdne5036:0" + +#. Label of a Data field in DocType 'Contact Us Settings' +#: website/doctype/contact_us_settings/contact_us_settings.json +msgctxt "Contact Us Settings" +msgid "Heading" +msgstr "crwdns5038:0crwdne5038:0" + +#. Option for a Select field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Heading" +msgstr "crwdns5040:0crwdne5040:0" + +#. Option for a Select field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Heading" +msgstr "crwdns5042:0crwdne5042:0" + +#. Option for a Select field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Heading" +msgstr "crwdns5044:0crwdne5044:0" + +#. Label of a Data field in DocType 'Website Slideshow Item' +#: website/doctype/website_slideshow_item/website_slideshow_item.json +msgctxt "Website Slideshow Item" +msgid "Heading" +msgstr "crwdns5046:0crwdne5046:0" + +#. Option for a Select field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "Heatmap" +msgstr "crwdns5048:0crwdne5048:0" + +#: templates/emails/new_user.html:2 +msgid "Hello" +msgstr "crwdns5050:0crwdne5050:0" + +#: public/js/frappe/form/workflow.js:23 public/js/frappe/utils/help.js:27 +msgid "Help" +msgstr "crwdns5052:0crwdne5052:0" + +#. Label of a HTML field in DocType 'Property Setter' +#: custom/doctype/property_setter/property_setter.json +msgctxt "Property Setter" +msgid "Help" +msgstr "crwdns5054:0crwdne5054:0" + +#. Label of a Section Break field in DocType 'Server Script' +#: core/doctype/server_script/server_script.json +msgctxt "Server Script" +msgid "Help" +msgstr "crwdns5056:0crwdne5056:0" + +#. Name of a DocType +#: website/doctype/help_article/help_article.json +msgid "Help Article" +msgstr "crwdns5058:0crwdne5058:0" + +#. Label of a Link in the Website Workspace +#: website/workspace/website/website.json +msgctxt "Help Article" +msgid "Help Article" +msgstr "crwdns5060:0crwdne5060:0" + +#. Label of a Int field in DocType 'Help Category' +#: website/doctype/help_category/help_category.json +msgctxt "Help Category" +msgid "Help Articles" +msgstr "crwdns5062:0crwdne5062:0" + +#. Name of a DocType +#: website/doctype/help_category/help_category.json +msgid "Help Category" +msgstr "crwdns5064:0crwdne5064:0" + +#. Label of a Link in the Website Workspace +#: website/workspace/website/website.json +msgctxt "Help Category" +msgid "Help Category" +msgstr "crwdns5066:0crwdne5066:0" + +#. Label of a Table field in DocType 'Navbar Settings' +#: core/doctype/navbar_settings/navbar_settings.json +msgctxt "Navbar Settings" +msgid "Help Dropdown" +msgstr "crwdns5068:0crwdne5068:0" + +#. Label of a HTML field in DocType 'Document Naming Settings' +#: core/doctype/document_naming_settings/document_naming_settings.json +msgctxt "Document Naming Settings" +msgid "Help HTML" +msgstr "crwdns5070:0crwdne5070:0" + +#: public/js/frappe/ui/toolbar/awesome_bar.js:149 +msgid "Help on Search" +msgstr "crwdns5072:0crwdne5072:0" + +#. Description of a Text Editor field in DocType 'Note' +#: desk/doctype/note/note.json +msgctxt "Note" +msgid "Help: To link to another record in the system, use \"/app/note/[Note Name]\" as the Link URL. (don't use \"http://\")" +msgstr "crwdns5074:0crwdne5074:0" + +#. Label of a Int field in DocType 'Help Article' +#: website/doctype/help_article/help_article.json +msgctxt "Help Article" +msgid "Helpful" +msgstr "crwdns5076:0crwdne5076:0" + +#. Option for a Select field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "Helvetica" +msgstr "crwdns5078:0crwdne5078:0" + +#. Option for a Select field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "Helvetica Neue" +msgstr "crwdns5080:0crwdne5080:0" + +#: public/js/frappe/utils/utils.js:1747 +msgid "Here's your tracking URL" +msgstr "crwdns5082:0crwdne5082:0" + +#: www/qrcode.html:9 +msgid "Hi {0}" +msgstr "crwdns5084:0{0}crwdne5084:0" + +#. Label of a Check field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Hidden" +msgstr "crwdns5086:0crwdne5086:0" + +#. Label of a Check field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Hidden" +msgstr "crwdns5088:0crwdne5088:0" + +#. Label of a Check field in DocType 'Desktop Icon' +#: desk/doctype/desktop_icon/desktop_icon.json +msgctxt "Desktop Icon" +msgid "Hidden" +msgstr "crwdns5090:0crwdne5090:0" + +#. Label of a Check field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Hidden" +msgstr "crwdns5092:0crwdne5092:0" + +#. Label of a Check field in DocType 'DocType Action' +#: core/doctype/doctype_action/doctype_action.json +msgctxt "DocType Action" +msgid "Hidden" +msgstr "crwdns5094:0crwdne5094:0" + +#. Label of a Check field in DocType 'DocType Link' +#: core/doctype/doctype_link/doctype_link.json +msgctxt "DocType Link" +msgid "Hidden" +msgstr "crwdns5096:0crwdne5096:0" + +#. Label of a Check field in DocType 'Navbar Item' +#: core/doctype/navbar_item/navbar_item.json +msgctxt "Navbar Item" +msgid "Hidden" +msgstr "crwdns5098:0crwdne5098:0" + +#. Label of a Check field in DocType 'Web Form Field' +#: website/doctype/web_form_field/web_form_field.json +msgctxt "Web Form Field" +msgid "Hidden" +msgstr "crwdns5100:0crwdne5100:0" + +#. Label of a Check field in DocType 'Workspace Link' +#: desk/doctype/workspace_link/workspace_link.json +msgctxt "Workspace Link" +msgid "Hidden" +msgstr "crwdns5102:0crwdne5102:0" + +#. Label of a Section Break field in DocType 'Form Tour Step' +#: desk/doctype/form_tour_step/form_tour_step.json +msgctxt "Form Tour Step" +msgid "Hidden Fields" +msgstr "crwdns5104:0crwdne5104:0" + +#: public/js/frappe/views/workspace/workspace.js:814 +#: public/js/frappe/widgets/base_widget.js:46 +#: public/js/frappe/widgets/base_widget.js:176 +msgid "Hide" +msgstr "crwdns5106:0crwdne5106:0" + +#. Option for a Select field in DocType 'Print Format' +#: printing/doctype/print_format/print_format.json +msgctxt "Print Format" +msgid "Hide" +msgstr "crwdns5108:0crwdne5108:0" + +#. Label of a Check field in DocType 'Web Page Block' +#: website/doctype/web_page_block/web_page_block.json +msgctxt "Web Page Block" +msgid "Hide Block" +msgstr "crwdns5110:0crwdne5110:0" + +#. Label of a Check field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Hide Border" +msgstr "crwdns5112:0crwdne5112:0" + +#. Label of a Check field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Hide Border" +msgstr "crwdns5114:0crwdne5114:0" + +#. Label of a Check field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Hide Border" +msgstr "crwdns5116:0crwdne5116:0" + +#. Label of a Check field in DocType 'Form Tour Step' +#: desk/doctype/form_tour_step/form_tour_step.json +msgctxt "Form Tour Step" +msgid "Hide Buttons" +msgstr "crwdns5118:0crwdne5118:0" + +#. Label of a Check field in DocType 'Blog Post' +#: website/doctype/blog_post/blog_post.json +msgctxt "Blog Post" +msgid "Hide CTA" +msgstr "crwdns5120:0crwdne5120:0" + +#. Label of a Check field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Hide Copy" +msgstr "crwdns5122:0crwdne5122:0" + +#. Label of a Check field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Hide Copy" +msgstr "crwdns5124:0crwdne5124:0" + +#. Label of a Check field in DocType 'Workspace' +#: desk/doctype/workspace/workspace.json +msgctxt "Workspace" +msgid "Hide Custom DocTypes and Reports" +msgstr "crwdns5126:0crwdne5126:0" + +#. Label of a Check field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Hide Days" +msgstr "crwdns5128:0crwdne5128:0" + +#. Label of a Check field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Hide Days" +msgstr "crwdns5130:0crwdne5130:0" + +#. Label of a Check field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Hide Days" +msgstr "crwdns5132:0crwdne5132:0" + +#: core/doctype/user_permission/user_permission_list.js:96 +msgid "Hide Descendants" +msgstr "crwdns5134:0crwdne5134:0" + +#. Label of a Check field in DocType 'User Permission' +#: core/doctype/user_permission/user_permission.json +msgctxt "User Permission" +msgid "Hide Descendants" +msgstr "crwdns5136:0crwdne5136:0" + +#: www/error.html:41 www/error.html:56 +msgid "Hide Error" +msgstr "crwdns5138:0crwdne5138:0" + +#. Label of a Check field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Hide Login" +msgstr "crwdns5140:0crwdne5140:0" + +#: public/js/form_builder/form_builder.bundle.js:43 +#: public/js/print_format_builder/print_format_builder.bundle.js:54 +msgid "Hide Preview" +msgstr "crwdns5142:0crwdne5142:0" + +#. Description of a Check field in DocType 'Form Tour Step' +#: desk/doctype/form_tour_step/form_tour_step.json +msgctxt "Form Tour Step" +msgid "Hide Previous, Next and Close button on highlight dialog." +msgstr "crwdns5144:0crwdne5144:0" + +#: public/js/frappe/list/list_filter.js:87 +msgid "Hide Saved" +msgstr "crwdns5146:0crwdne5146:0" + +#. Label of a Check field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Hide Seconds" +msgstr "crwdns5148:0crwdne5148:0" + +#. Label of a Check field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Hide Seconds" +msgstr "crwdns5150:0crwdne5150:0" + +#. Label of a Check field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Hide Seconds" +msgstr "crwdns5152:0crwdne5152:0" + +#. Label of a Check field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Hide Sidebar, Menu, and Comments" +msgstr "crwdns5154:0crwdne5154:0" + +#. Label of a Check field in DocType 'Portal Settings' +#: website/doctype/portal_settings/portal_settings.json +msgctxt "Portal Settings" +msgid "Hide Standard Menu" +msgstr "crwdns5156:0crwdne5156:0" + +#: public/js/frappe/list/list_view.js:1566 +msgid "Hide Tags" +msgstr "crwdns5158:0crwdne5158:0" + +#: public/js/frappe/views/calendar/calendar.js:184 +msgid "Hide Weekends" +msgstr "crwdns5160:0crwdne5160:0" + +#: public/js/frappe/views/workspace/workspace.js:815 +msgid "Hide Workspace" +msgstr "crwdns5162:0crwdne5162:0" + +#. Description of a Check field in DocType 'User Permission' +#: core/doctype/user_permission/user_permission.json +msgctxt "User Permission" +msgid "Hide descendant records of For Value." +msgstr "crwdns5164:0crwdne5164:0" + +#: public/js/frappe/form/layout.js:260 +msgid "Hide details" +msgstr "crwdns5166:0crwdne5166:0" + +#. Label of a Check field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Hide footer in auto email reports" +msgstr "crwdns5168:0crwdne5168:0" + +#. Label of a Check field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Hide footer signup" +msgstr "crwdns5170:0crwdne5170:0" + +#: public/js/frappe/form/sidebar/assign_to.js:198 +msgid "High" +msgstr "crwdns5172:0crwdne5172:0" + +#. Option for a Select field in DocType 'ToDo' +#: desk/doctype/todo/todo.json +msgctxt "ToDo" +msgid "High" +msgstr "crwdns5174:0crwdne5174:0" + +#. Description of a Int field in DocType 'Assignment Rule' +#: automation/doctype/assignment_rule/assignment_rule.json +msgctxt "Assignment Rule" +msgid "Higher priority rule will be applied first" +msgstr "crwdns5176:0crwdne5176:0" + +#. Label of a Text field in DocType 'Company History' +#: website/doctype/company_history/company_history.json +msgctxt "Company History" +msgid "Highlight" +msgstr "crwdns5178:0crwdne5178:0" + +#: www/update-password.html:271 +msgid "Hint: Include symbols, numbers and capital letters in the password" +msgstr "crwdns5180:0crwdne5180:0" + +#: core/doctype/file/utils.py:31 public/js/frappe/views/file/file_view.js:67 +#: public/js/frappe/views/file/file_view.js:88 +#: public/js/frappe/views/pageview.js:149 templates/doc.html:19 +#: templates/includes/navbar/navbar.html:9 +#: website/doctype/blog_post/blog_post.py:153 +#: website/doctype/blog_post/blog_post.py:265 +#: website/doctype/blog_post/blog_post.py:267 +#: website/web_template/primary_navbar/primary_navbar.html:9 www/contact.py:22 +#: www/error.html:30 www/login.html:150 www/message.html:34 +msgid "Home" +msgstr "crwdns5182:0crwdne5182:0" + +#. Label of a Tab Break field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Home" +msgstr "crwdns5184:0crwdne5184:0" + +#. Label of a Data field in DocType 'Role' +#: core/doctype/role/role.json +msgctxt "Role" +msgid "Home Page" +msgstr "crwdns5186:0crwdne5186:0" + +#. Label of a Data field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Home Page" +msgstr "crwdns5188:0crwdne5188:0" + +#. Label of a Code field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Home Settings" +msgstr "crwdns5190:0crwdne5190:0" + +#: core/doctype/file/test_file.py:299 core/doctype/file/test_file.py:301 +#: core/doctype/file/test_file.py:365 +msgid "Home/Test Folder 1" +msgstr "crwdns5192:0crwdne5192:0" + +#: core/doctype/file/test_file.py:354 +msgid "Home/Test Folder 1/Test Folder 3" +msgstr "crwdns5194:0crwdne5194:0" + +#: core/doctype/file/test_file.py:310 +msgid "Home/Test Folder 2" +msgstr "crwdns5196:0crwdne5196:0" + +#. Option for a Select field in DocType 'Scheduled Job Type' +#: core/doctype/scheduled_job_type/scheduled_job_type.json +msgctxt "Scheduled Job Type" +msgid "Hourly" +msgstr "crwdns5198:0crwdne5198:0" + +#. Option for a Select field in DocType 'Server Script' +#: core/doctype/server_script/server_script.json +msgctxt "Server Script" +msgid "Hourly" +msgstr "crwdns5200:0crwdne5200:0" + +#. Option for a Select field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Hourly" +msgstr "crwdns5202:0crwdne5202:0" + +#. Option for a Select field in DocType 'Scheduled Job Type' +#: core/doctype/scheduled_job_type/scheduled_job_type.json +msgctxt "Scheduled Job Type" +msgid "Hourly Long" +msgstr "crwdns5204:0crwdne5204:0" + +#. Option for a Select field in DocType 'Server Script' +#: core/doctype/server_script/server_script.json +msgctxt "Server Script" +msgid "Hourly Long" +msgstr "crwdns5206:0crwdne5206:0" + +#. Description of a Int field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Hourly rate limit for generating password reset links" +msgstr "crwdns5208:0crwdne5208:0" + +#. Description of a Select field in DocType 'Currency' +#: geo/doctype/currency/currency.json +msgctxt "Currency" +msgid "How should this currency be formatted? If not set, will use system defaults" +msgstr "crwdns5210:0crwdne5210:0" + +#: core/doctype/data_import/importer.py:1120 +#: core/doctype/data_import/importer.py:1126 +#: core/doctype/data_import/importer.py:1192 +#: core/doctype/data_import/importer.py:1195 desk/report/todo/todo.py:36 +#: model/__init__.py:137 model/meta.py:44 +#: public/js/frappe/data_import/data_exporter.js:326 +#: public/js/frappe/data_import/data_exporter.js:341 +#: public/js/frappe/list/list_view.js:355 +#: public/js/frappe/list/list_view.js:419 public/js/frappe/model/meta.js:197 +#: public/js/frappe/model/model.js:112 +msgid "ID" +msgstr "crwdns5212:0crwdne5212:0" + +#: desk/reportview.py:418 public/js/frappe/views/reports/report_view.js:920 +msgctxt "Label of name column in report" +msgid "ID" +msgstr "crwdns5214:0crwdne5214:0" + +#. Description of a Data field in DocType 'Property Setter' +#: custom/doctype/property_setter/property_setter.json +msgctxt "Property Setter" +msgid "ID (name) of the entity whose property is to be set" +msgstr "crwdns5216:0crwdne5216:0" + +#. Description of a Data field in DocType 'Web Page Block' +#: website/doctype/web_page_block/web_page_block.json +msgctxt "Web Page Block" +msgid "IDs must contain only alphanumeric characters, not contain spaces, and should be unique." +msgstr "crwdns5218:0crwdne5218:0" + +#. Label of a Section Break field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "IMAP Details" +msgstr "crwdns5220:0crwdne5220:0" + +#. Name of a DocType +#: email/doctype/imap_folder/imap_folder.json +msgid "IMAP Folder" +msgstr "crwdns5222:0crwdne5222:0" + +#. Label of a Data field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "IMAP Folder" +msgstr "crwdns5224:0crwdne5224:0" + +#. Label of a Table field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "IMAP Folder" +msgstr "crwdns5226:0crwdne5226:0" + +#. Label of a Data field in DocType 'Activity Log' +#: core/doctype/activity_log/activity_log.json +msgctxt "Activity Log" +msgid "IP Address" +msgstr "crwdns5228:0crwdne5228:0" + +#. Label of a Data field in DocType 'Comment' +#: core/doctype/comment/comment.json +msgctxt "Comment" +msgid "IP Address" +msgstr "crwdns5230:0crwdne5230:0" + +#: public/js/frappe/views/workspace/workspace.js:632 +#: public/js/frappe/views/workspace/workspace.js:960 +#: public/js/frappe/views/workspace/workspace.js:1205 +msgid "Icon" +msgstr "crwdns5232:0crwdne5232:0" + +#. Option for a Select field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Icon" +msgstr "crwdns5234:0crwdne5234:0" + +#. Option for a Select field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Icon" +msgstr "crwdns5236:0crwdne5236:0" + +#. Label of a Data field in DocType 'Desktop Icon' +#: desk/doctype/desktop_icon/desktop_icon.json +msgctxt "Desktop Icon" +msgid "Icon" +msgstr "crwdns5238:0crwdne5238:0" + +#. Option for a Select field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Icon" +msgstr "crwdns5240:0crwdne5240:0" + +#. Label of a Data field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Icon" +msgstr "crwdns5242:0crwdne5242:0" + +#. Label of a Data field in DocType 'Social Login Key' +#: integrations/doctype/social_login_key/social_login_key.json +msgctxt "Social Login Key" +msgid "Icon" +msgstr "crwdns5244:0crwdne5244:0" + +#. Label of a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "Icon" +msgstr "crwdns5246:0crwdne5246:0" + +#. Label of a Icon field in DocType 'Workspace' +#: desk/doctype/workspace/workspace.json +msgctxt "Workspace" +msgid "Icon" +msgstr "crwdns5248:0crwdne5248:0" + +#. Label of a Data field in DocType 'Workspace Link' +#: desk/doctype/workspace_link/workspace_link.json +msgctxt "Workspace Link" +msgid "Icon" +msgstr "crwdns5250:0crwdne5250:0" + +#. Label of a Data field in DocType 'Workspace Shortcut' +#: desk/doctype/workspace_shortcut/workspace_shortcut.json +msgctxt "Workspace Shortcut" +msgid "Icon" +msgstr "crwdns5252:0crwdne5252:0" + +#. Description of a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "Icon will appear on the button" +msgstr "crwdns5254:0crwdne5254:0" + +#. Label of a Section Break field in DocType 'Social Login Key' +#: integrations/doctype/social_login_key/social_login_key.json +msgctxt "Social Login Key" +msgid "Identity Details" +msgstr "crwdns5256:0crwdne5256:0" + +#. Label of a Int field in DocType 'Desktop Icon' +#: desk/doctype/desktop_icon/desktop_icon.json +msgctxt "Desktop Icon" +msgid "Idx" +msgstr "crwdns5258:0crwdne5258:0" + +#. Description of a Check field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +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 "crwdns5260:0crwdne5260:0" + +#. Description of a Check field in DocType 'Workflow' +#: workflow/doctype/workflow/workflow.json +msgctxt "Workflow" +msgid "If Checked workflow status will not override status in list view" +msgstr "crwdns5262:0crwdne5262:0" + +#. Description of a Check field in DocType 'Workflow Document State' +#: workflow/doctype/workflow_document_state/workflow_document_state.json +msgctxt "Workflow Document State" +msgid "If Checked workflow status will not override status in list view" +msgstr "crwdns5264:0crwdne5264:0" + +#: core/doctype/doctype/doctype.py:1706 +msgid "If Owner" +msgstr "crwdns5266:0crwdne5266:0" + +#. Description of a Check field in DocType 'Workflow' +#: workflow/doctype/workflow/workflow.json +msgctxt "Workflow" +msgid "If checked, all other workflows become inactive." +msgstr "crwdns5268:0crwdne5268:0" + +#. Description of a Check field in DocType 'Print Format' +#: printing/doctype/print_format/print_format.json +msgctxt "Print Format" +msgid "If checked, negative numeric values of Currency, Quantity or Count would be shown as positive" +msgstr "crwdns5270:0crwdne5270:0" + +#. Description of a Check field in DocType 'OAuth Client' +#: integrations/doctype/oauth_client/oauth_client.json +msgctxt "OAuth Client" +msgid "If checked, users will not see the Confirm Access dialog." +msgstr "crwdns5272:0crwdne5272:0" + +#. Description of a Check field in DocType 'Role' +#: core/doctype/role/role.json +msgctxt "Role" +msgid "If disabled, this role will be removed from all users." +msgstr "crwdns5274:0crwdne5274:0" + +#. Description of a Check field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +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 "crwdns5276:0crwdne5276:0" + +#. Description of a Check field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +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 "crwdns5278:0crwdne5278:0" + +#. Description of a Check field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "If enabled, changes to the document are tracked and shown in timeline" +msgstr "crwdns5280:0crwdne5280:0" + +#. Description of a Check field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "If enabled, document views are tracked, this can happen multiple times" +msgstr "crwdns5282:0crwdne5282:0" + +#. Description of a Check field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "If enabled, the document is marked as seen, the first time a user opens it" +msgstr "crwdns5284:0crwdne5284:0" + +#. Description of a Check field in DocType 'Notification' +#: email/doctype/notification/notification.json +msgctxt "Notification" +msgid "If enabled, the notification will show up in the notifications dropdown on the top right corner of the navigation bar." +msgstr "crwdns5286:0crwdne5286:0" + +#. Description of a Check field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 2 being medium strong and 4 being very strong." +msgstr "crwdns5288:0crwdne5288:0" + +#. Description of a Check field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth" +msgstr "crwdns5290:0crwdne5290:0" + +#. Description of a Check field in DocType 'Note' +#: desk/doctype/note/note.json +msgctxt "Note" +msgid "If enabled, users will be notified every time they login. If not enabled, users will only be notified once." +msgstr "crwdns5292:0crwdne5292:0" + +#. Description of a Data field in DocType 'Email Domain' +#: email/doctype/email_domain/email_domain.json +msgctxt "Email Domain" +msgid "If non standard port (e.g. 587)" +msgstr "crwdns5294:0crwdne5294:0" + +#. Description of a Data field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "If non standard port (e.g. 587). If on Google Cloud, try port 2525." +msgstr "crwdns5296:0crwdne5296:0" + +#. Description of a Data field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "If non-standard port (e.g. POP3: 995/110, IMAP: 993/143)" +msgstr "crwdns5298:0crwdne5298:0" + +#. Description of a Data field in DocType 'Email Domain' +#: email/doctype/email_domain/email_domain.json +msgctxt "Email Domain" +msgid "If non-standard port (e.g. POP3: 995/110, IMAP: 993/143)" +msgstr "crwdns5300:0crwdne5300:0" + +#. Description of a Select field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "If not set, the currency precision will depend on number format" +msgstr "crwdns5302:0crwdne5302:0" + +#. Description of a Table field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "If set, only user with these roles can access this chart. If not set, DocType or Report permissions will be used." +msgstr "crwdns5304:0crwdne5304:0" + +#. Description of a Code field in DocType 'Energy Point Rule' +#: social/doctype/energy_point_rule/energy_point_rule.json +msgctxt "Energy Point Rule" +msgid "If the condition is satisfied user will be rewarded with the points. eg. doc.status == 'Closed'\n" +msgstr "crwdns5306:0crwdne5306:0" + +#. Description of a Link field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "If the user has any role checked, then the user becomes a \"System User\". \"System User\" has access to the desktop" +msgstr "crwdns5308:0crwdne5308:0" + +#. Description of a Check field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "If unchecked, the value will always be re-fetched on save." +msgstr "crwdns5310:0crwdne5310:0" + +#. Description of a Check field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "If unchecked, the value will always be re-fetched on save." +msgstr "crwdns5312:0crwdne5312:0" + +#. Description of a Check field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "If unchecked, the value will always be re-fetched on save." +msgstr "crwdns5314:0crwdne5314:0" + +#. Label of a Check field in DocType 'Custom DocPerm' +#: core/doctype/custom_docperm/custom_docperm.json +msgctxt "Custom DocPerm" +msgid "If user is the owner" +msgstr "crwdns5316:0crwdne5316:0" + +#. Label of a Check field in DocType 'DocPerm' +#: core/doctype/docperm/docperm.json +msgctxt "DocPerm" +msgid "If user is the owner" +msgstr "crwdns5318:0crwdne5318:0" + +#: core/doctype/data_export/exporter.py:206 +msgid "If you are updating, please select \"Overwrite\" else existing rows will not be deleted." +msgstr "crwdns5320:0crwdne5320:0" + +#: core/doctype/data_export/exporter.py:190 +msgid "If you are uploading new records, \"Naming Series\" becomes mandatory, if present." +msgstr "crwdns5322:0crwdne5322:0" + +#: core/doctype/data_export/exporter.py:187 +msgid "If you are uploading new records, leave the \"name\" (ID) column blank." +msgstr "crwdns5324:0crwdne5324:0" + +#: utils/password.py:200 +msgid "If you have recently restored the site you may need to copy the site config contaning original Encryption Key." +msgstr "crwdns5326:0crwdne5326:0" + +#: core/doctype/doctype/doctype.js:80 +msgid "If you just want to customize for your site, use {0} instead." +msgstr "crwdns5328:0{0}crwdne5328:0" + +#. Description of a Select field in DocType 'Top Bar Item' +#: website/doctype/top_bar_item/top_bar_item.json +msgctxt "Top Bar Item" +msgid "If you set this, this Item will come in a drop-down under the selected parent." +msgstr "crwdns5330:0crwdne5330:0" + +#: templates/emails/administrator_logged_in.html:3 +msgid "If you think this is unauthorized, please change the Administrator password." +msgstr "crwdns5332:0crwdne5332:0" + +#. Description of a Code field in DocType 'Translation' +#: core/doctype/translation/translation.json +msgctxt "Translation" +msgid "If your data is in HTML, please copy paste the exact HTML code with the tags." +msgstr "crwdns5334:0crwdne5334:0" + +#. Label of a Check field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Ignore User Permissions" +msgstr "crwdns5336:0crwdne5336:0" + +#. Label of a Check field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Ignore User Permissions" +msgstr "crwdns5338:0crwdne5338:0" + +#. Label of a Check field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Ignore User Permissions" +msgstr "crwdns5340:0crwdne5340:0" + +#. Label of a Check field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Ignore XSS Filter" +msgstr "crwdns5342:0crwdne5342:0" + +#. Label of a Check field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Ignore XSS Filter" +msgstr "crwdns5344:0crwdne5344:0" + +#. Label of a Check field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Ignore XSS Filter" +msgstr "crwdns5346:0crwdne5346:0" + +#. Description of a Int field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Ignore attachments over this size" +msgstr "crwdns5348:0crwdne5348:0" + +#. Description of a Int field in DocType 'Email Domain' +#: email/doctype/email_domain/email_domain.json +msgctxt "Email Domain" +msgid "Ignore attachments over this size" +msgstr "crwdns5350:0crwdne5350:0" + +#. Label of a Table field in DocType 'Website Theme' +#: website/doctype/website_theme/website_theme.json +msgctxt "Website Theme" +msgid "Ignored Apps" +msgstr "crwdns5352:0crwdne5352:0" + +#: integrations/doctype/dropbox_settings/dropbox_settings.py:349 +msgid "Illegal Access Token. Please try again" +msgstr "crwdns5354:0crwdne5354:0" + +#: model/workflow.py:143 +msgid "Illegal Document Status for {0}" +msgstr "crwdns5356:0{0}crwdne5356:0" + +#: model/db_query.py:451 model/db_query.py:454 model/db_query.py:1129 +msgid "Illegal SQL Query" +msgstr "crwdns5358:0crwdne5358:0" + +#: utils/jinja.py:95 +msgid "Illegal template" +msgstr "crwdns5360:0crwdne5360:0" + +#. Label of a Attach Image field in DocType 'Contact' +#: contacts/doctype/contact/contact.json +msgctxt "Contact" +msgid "Image" +msgstr "crwdns5362:0crwdne5362:0" + +#. Option for a Select field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Image" +msgstr "crwdns5364:0crwdne5364:0" + +#. Option for a Select field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Image" +msgstr "crwdns5366:0crwdne5366:0" + +#. Option for a Select field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Image" +msgstr "crwdns5368:0crwdne5368:0" + +#. Option for a Select field in DocType 'Form Tour' +#: desk/doctype/form_tour/form_tour.json +msgctxt "Form Tour" +msgid "Image" +msgstr "crwdns5370:0crwdne5370:0" + +#. Option for a Select field in DocType 'Letter Head' +#. Label of a Attach Image field in DocType 'Letter Head' +#: printing/doctype/letter_head/letter_head.json +msgctxt "Letter Head" +msgid "Image" +msgstr "crwdns5372:0crwdne5372:0" + +#. Label of a Attach Image field in DocType 'Web Page' +#: website/doctype/web_page/web_page.json +msgctxt "Web Page" +msgid "Image" +msgstr "crwdns5374:0crwdne5374:0" + +#. Label of a Attach field in DocType 'Website Slideshow Item' +#: website/doctype/website_slideshow_item/website_slideshow_item.json +msgctxt "Website Slideshow Item" +msgid "Image" +msgstr "crwdns5376:0crwdne5376:0" + +#. Option for a Select field in DocType 'Workspace Shortcut' +#: desk/doctype/workspace_shortcut/workspace_shortcut.json +msgctxt "Workspace Shortcut" +msgid "Image" +msgstr "crwdns5378:0crwdne5378:0" + +#. Label of a Data field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Image Field" +msgstr "crwdns5380:0crwdne5380:0" + +#. Label of a Data field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Image Field" +msgstr "crwdns5382:0crwdne5382:0" + +#. Label of a Float field in DocType 'Letter Head' +#: printing/doctype/letter_head/letter_head.json +msgctxt "Letter Head" +msgid "Image Height" +msgstr "crwdns5384:0crwdne5384:0" + +#. Label of a Attach field in DocType 'About Us Team Member' +#: website/doctype/about_us_team_member/about_us_team_member.json +msgctxt "About Us Team Member" +msgid "Image Link" +msgstr "crwdns5386:0crwdne5386:0" + +#. Label of a Float field in DocType 'Letter Head' +#: printing/doctype/letter_head/letter_head.json +msgctxt "Letter Head" +msgid "Image Width" +msgstr "crwdns5388:0crwdne5388:0" + +#: core/doctype/doctype/doctype.py:1457 +msgid "Image field must be a valid fieldname" +msgstr "crwdns5390:0crwdne5390:0" + +#: core/doctype/doctype/doctype.py:1459 +msgid "Image field must be of type Attach Image" +msgstr "crwdns5392:0crwdne5392:0" + +#: core/doctype/file/utils.py:134 +msgid "Image link '{0}' is not valid" +msgstr "crwdns5394:0{0}crwdne5394:0" + +#: core/doctype/file/file.js:91 +msgid "Image optimized" +msgstr "crwdns5396:0crwdne5396:0" + +#: public/js/frappe/views/image/image_view.js:13 +msgid "Images" +msgstr "crwdns5398:0crwdne5398:0" + +#: core/doctype/log_settings/log_settings.py:56 +msgid "Implement `clear_old_logs` method to enable auto error clearing." +msgstr "crwdns5400:0crwdne5400:0" + +#. Option for a Select field in DocType 'OAuth Client' +#: integrations/doctype/oauth_client/oauth_client.json +msgctxt "OAuth Client" +msgid "Implicit" +msgstr "crwdns5402:0crwdne5402:0" + +#: core/doctype/recorder/recorder_list.js:21 +#: email/doctype/email_group/email_group.js:31 +msgid "Import" +msgstr "crwdns5404:0crwdne5404:0" + +#: public/js/frappe/list/list_view.js:1628 +msgctxt "Button in list view menu" +msgid "Import" +msgstr "crwdns5406:0crwdne5406:0" + +#. Label of a Check field in DocType 'Custom DocPerm' +#: core/doctype/custom_docperm/custom_docperm.json +msgctxt "Custom DocPerm" +msgid "Import" +msgstr "crwdns5408:0crwdne5408:0" + +#. Label of a Check field in DocType 'DocPerm' +#: core/doctype/docperm/docperm.json +msgctxt "DocPerm" +msgid "Import" +msgstr "crwdns5410:0crwdne5410:0" + +#. Label of a Link in the Tools Workspace +#. Label of a shortcut in the Tools Workspace +#: automation/workspace/tools/tools.json +msgctxt "Data Import" +msgid "Import Data" +msgstr "crwdns5412:0crwdne5412:0" + +#: email/doctype/email_group/email_group.js:14 +msgid "Import Email From" +msgstr "crwdns5414:0crwdne5414:0" + +#. Label of a Attach field in DocType 'Data Import' +#: core/doctype/data_import/data_import.json +msgctxt "Data Import" +msgid "Import File" +msgstr "crwdns5416:0crwdne5416:0" + +#. Label of a Section Break field in DocType 'Data Import' +#: core/doctype/data_import/data_import.json +msgctxt "Data Import" +msgid "Import File Errors and Warnings" +msgstr "crwdns5418:0crwdne5418:0" + +#. Label of a Section Break field in DocType 'Data Import' +#: core/doctype/data_import/data_import.json +msgctxt "Data Import" +msgid "Import Log" +msgstr "crwdns5420:0crwdne5420:0" + +#. Label of a HTML field in DocType 'Data Import' +#: core/doctype/data_import/data_import.json +msgctxt "Data Import" +msgid "Import Log Preview" +msgstr "crwdns5422:0crwdne5422:0" + +#. Label of a HTML field in DocType 'Data Import' +#: core/doctype/data_import/data_import.json +msgctxt "Data Import" +msgid "Import Preview" +msgstr "crwdns5424:0crwdne5424:0" + +#: core/doctype/data_import/data_import.js:41 +msgid "Import Progress" +msgstr "crwdns5426:0crwdne5426:0" + +#: email/doctype/email_group/email_group.js:8 +#: email/doctype/email_group/email_group.js:30 +msgid "Import Subscribers" +msgstr "crwdns5428:0crwdne5428:0" + +#. Label of a Select field in DocType 'Data Import' +#: core/doctype/data_import/data_import.json +msgctxt "Data Import" +msgid "Import Type" +msgstr "crwdns5430:0crwdne5430:0" + +#. Label of a HTML field in DocType 'Data Import' +#: core/doctype/data_import/data_import.json +msgctxt "Data Import" +msgid "Import Warnings" +msgstr "crwdns5432:0crwdne5432:0" + +#: public/js/frappe/views/file/file_view.js:117 +msgid "Import Zip" +msgstr "crwdns5434:0crwdne5434:0" + +#. Label of a Data field in DocType 'Data Import' +#: core/doctype/data_import/data_import.json +msgctxt "Data Import" +msgid "Import from Google Sheets" +msgstr "crwdns5436:0crwdne5436:0" + +#: core/doctype/data_import/importer.py:598 +msgid "Import template should be of type .csv, .xlsx or .xls" +msgstr "crwdns5438:0crwdne5438:0" + +#: core/doctype/data_import/importer.py:467 +msgid "Import template should contain a Header and atleast one row." +msgstr "crwdns5440:0crwdne5440:0" + +#: core/doctype/data_import/data_import.js:170 +msgid "Import timed out, please re-try." +msgstr "crwdns5442:0crwdne5442:0" + +#: core/doctype/data_import/data_import.py:61 +msgid "Importing {0} is not allowed." +msgstr "crwdns5444:0{0}crwdne5444:0" + +#: integrations/doctype/google_contacts/google_contacts.js:19 +msgid "Importing {0} of {1}" +msgstr "crwdns5446:0{0}crwdnd5446:0{1}crwdne5446:0" + +#: core/doctype/data_import/data_import.js:35 +msgid "Importing {0} of {1}, {2}" +msgstr "crwdns5448:0{0}crwdnd5448:0{1}crwdnd5448:0{2}crwdne5448:0" + +#: public/js/frappe/ui/filters/filter.js:20 +msgid "In" +msgstr "crwdns5450:0crwdne5450:0" + +#. Description of a Int field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "In Days" +msgstr "crwdns5452:0crwdne5452:0" + +#. Description of the Onboarding Step 'Setup Limited Access for a User' +#: custom/onboarding_step/role_permissions/role_permissions.json +msgid "In ERPNext, you can add your Employees as Users, and give them restricted access. Tools like Role Permission and User Permission allow you to define rules which give restricted access to the user to masters and transactions." +msgstr "crwdns5454:0crwdne5454:0" + +#. Label of a Check field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "In Filter" +msgstr "crwdns5456:0crwdne5456:0" + +#. Label of a Check field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "In Filter" +msgstr "crwdns5458:0crwdne5458:0" + +#. Label of a Check field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "In Global Search" +msgstr "crwdns5460:0crwdne5460:0" + +#. Label of a Check field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "In Global Search" +msgstr "crwdns5462:0crwdne5462:0" + +#. Label of a Check field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "In Global Search" +msgstr "crwdns5464:0crwdne5464:0" + +#: core/doctype/doctype/doctype.js:95 +msgid "In Grid View" +msgstr "crwdns5466:0crwdne5466:0" + +#. Label of a Check field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "In List Filter" +msgstr "crwdns5468:0crwdne5468:0" + +#: core/doctype/doctype/doctype.js:96 +msgid "In List View" +msgstr "crwdns5470:0crwdne5470:0" + +#. Label of a Check field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "In List View" +msgstr "crwdns5472:0crwdne5472:0" + +#. Label of a Check field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "In List View" +msgstr "crwdns5474:0crwdne5474:0" + +#. Label of a Check field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "In List View" +msgstr "crwdns5476:0crwdne5476:0" + +#. Label of a Check field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "In Preview" +msgstr "crwdns5478:0crwdne5478:0" + +#. Label of a Check field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "In Preview" +msgstr "crwdns5480:0crwdne5480:0" + +#. Label of a Check field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "In Preview" +msgstr "crwdns5482:0crwdne5482:0" + +#: core/doctype/data_import/data_import.js:42 +msgid "In Progress" +msgstr "crwdns5484:0crwdne5484:0" + +#: database/database.py:233 +msgid "In Read Only Mode" +msgstr "crwdns5486:0crwdne5486:0" + +#. Label of a Link field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "In Reply To" +msgstr "crwdns5488:0crwdne5488:0" + +#. Label of a Check field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "In Standard Filter" +msgstr "crwdns5490:0crwdne5490:0" + +#. Label of a Check field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "In Standard Filter" +msgstr "crwdns5492:0crwdne5492:0" + +#. Description of the Onboarding Step 'Generate Custom Reports' +#: custom/onboarding_step/report_builder/report_builder.json +msgid "In each module, you will find a host of single-click reports, ranging from financial statements to sales and purchase analytics and stock tracking reports. If a required new report is not available out-of-the-box, you can create custom reports in ERPNext by pulling values from the same multiple ERPNext tables.\n" +msgstr "crwdns5494:0crwdne5494:0" + +#. Description of a Float field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "In points. Default is 9." +msgstr "crwdns5496:0crwdne5496:0" + +#. Description of a Int field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "In seconds" +msgstr "crwdns5498:0crwdne5498:0" + +#: core/doctype/recorder/recorder_list.js:107 +msgid "Inactive" +msgstr "crwdns5500:0crwdne5500:0" + +#: public/js/frappe/ui/field_group.js:131 +msgid "Inavlid Values" +msgstr "crwdns5502:0crwdne5502:0" + +#: email/doctype/email_account/email_account_list.js:19 +msgid "Inbox" +msgstr "crwdns5504:0crwdne5504:0" + +#. Option for a Select field in DocType 'Form Tour' +#: desk/doctype/form_tour/form_tour.json +msgctxt "Form Tour" +msgid "Inbox" +msgstr "crwdns5506:0crwdne5506:0" + +#. Name of a role +#: core/doctype/communication/communication.json +#: email/doctype/email_account/email_account.json +msgid "Inbox User" +msgstr "crwdns5508:0crwdne5508:0" + +#. Label of a Check field in DocType 'Form Tour' +#: desk/doctype/form_tour/form_tour.json +msgctxt "Form Tour" +msgid "Include Name Field" +msgstr "crwdns5510:0crwdne5510:0" + +#. Label of a Check field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Include Search in Top Bar" +msgstr "crwdns5512:0crwdne5512:0" + +#: website/doctype/website_theme/website_theme.js:61 +msgid "Include Theme from Apps" +msgstr "crwdns5514:0crwdne5514:0" + +#. Label of a Check field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Include Web View Link in Email" +msgstr "crwdns5516:0crwdne5516:0" + +#: public/js/frappe/views/reports/query_report.js:1488 +msgid "Include filters" +msgstr "crwdns5518:0crwdne5518:0" + +#: public/js/frappe/views/reports/query_report.js:1480 +msgid "Include indentation" +msgstr "crwdns5520:0crwdne5520:0" + +#: public/js/frappe/form/controls/password.js:107 +msgid "Include symbols, numbers and capital letters in the password" +msgstr "crwdns5522:0crwdne5522:0" + +#. Label of a Section Break field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Incoming (POP/IMAP) Settings" +msgstr "crwdns5524:0crwdne5524:0" + +#. Label of a Data field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Incoming Server" +msgstr "crwdns5526:0crwdne5526:0" + +#. Label of a Data field in DocType 'Email Domain' +#: email/doctype/email_domain/email_domain.json +msgctxt "Email Domain" +msgid "Incoming Server" +msgstr "crwdns5528:0crwdne5528:0" + +#. Label of a Section Break field in DocType 'Email Domain' +#: email/doctype/email_domain/email_domain.json +msgctxt "Email Domain" +msgid "Incoming Settings" +msgstr "crwdns5530:0crwdne5530:0" + +#: email/doctype/email_domain/email_domain.py:32 +msgid "Incoming email account not correct" +msgstr "crwdns5532:0crwdne5532:0" + +#: model/virtual_doctype.py:81 model/virtual_doctype.py:94 +msgid "Incomplete Virtual Doctype Implementation" +msgstr "crwdns5534:0crwdne5534:0" + +#: auth.py:236 +msgid "Incomplete login details" +msgstr "crwdns5536:0crwdne5536:0" + +#: email/smtp.py:103 +msgid "Incorrect Configuration" +msgstr "crwdns5538:0crwdne5538:0" + +#: utils/csvutils.py:207 +msgid "Incorrect URL" +msgstr "crwdns5540:0crwdne5540:0" + +#: utils/password.py:90 +msgid "Incorrect User or Password" +msgstr "crwdns5542:0crwdne5542:0" + +#: twofactor.py:177 twofactor.py:189 +msgid "Incorrect Verification code" +msgstr "crwdns5544:0crwdne5544:0" + +#: model/document.py:1352 +msgid "Incorrect value in row {0}: {1} must be {2} {3}" +msgstr "crwdns5546:0{0}crwdnd5546:0{1}crwdnd5546:0{2}crwdnd5546:0{3}crwdne5546:0" + +#: model/document.py:1356 +msgid "Incorrect value: {0} must be {1} {2}" +msgstr "crwdns5548:0{0}crwdnd5548:0{1}crwdnd5548:0{2}crwdne5548:0" + +#: model/__init__.py:139 model/meta.py:47 public/js/frappe/model/meta.js:200 +#: public/js/frappe/model/model.js:114 +#: public/js/frappe/views/reports/report_view.js:941 +msgid "Index" +msgstr "crwdns5550:0crwdne5550:0" + +#. Label of a Check field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Index" +msgstr "crwdns5552:0crwdne5552:0" + +#. Label of a Check field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Index" +msgstr "crwdns5554:0crwdne5554:0" + +#. Label of a Int field in DocType 'Recorder Query' +#: core/doctype/recorder_query/recorder_query.json +msgctxt "Recorder Query" +msgid "Index" +msgstr "crwdns5556:0crwdne5556:0" + +#. Label of a Check field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Index Web Pages for Search" +msgstr "crwdns5558:0crwdne5558:0" + +#. Label of a Data field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Indexing authorization code" +msgstr "crwdns5560:0crwdne5560:0" + +#. Label of a Data field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Indexing refresh token" +msgstr "crwdns5562:0crwdne5562:0" + +#. Label of a Select field in DocType 'Kanban Board Column' +#: desk/doctype/kanban_board_column/kanban_board_column.json +msgctxt "Kanban Board Column" +msgid "Indicator" +msgstr "crwdns5564:0crwdne5564:0" + +#. Label of a Select field in DocType 'Workspace' +#: desk/doctype/workspace/workspace.json +msgctxt "Workspace" +msgid "Indicator Color" +msgstr "crwdns5566:0crwdne5566:0" + +#: public/js/frappe/views/workspace/workspace.js:639 +#: public/js/frappe/views/workspace/workspace.js:967 +#: public/js/frappe/views/workspace/workspace.js:1211 +msgid "Indicator color" +msgstr "crwdns5568:0crwdne5568:0" + +#. Option for a Select field in DocType 'Comment' +#: core/doctype/comment/comment.json +msgctxt "Comment" +msgid "Info" +msgstr "crwdns5570:0crwdne5570:0" + +#. Option for a Select field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Info" +msgstr "crwdns5572:0crwdne5572:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "Info" +msgstr "crwdns5574:0crwdne5574:0" + +#: core/doctype/data_export/exporter.py:144 +msgid "Info:" +msgstr "crwdns5576:0crwdne5576:0" + +#. Label of a Select field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Initial Sync Count" +msgstr "crwdns5578:0crwdne5578:0" + +#. Option for a Select field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "InnoDB" +msgstr "crwdns5580:0crwdne5580:0" + +#: core/doctype/data_import/data_import_list.js:39 +msgid "Insert" +msgstr "crwdns5582:0crwdne5582:0" + +#: public/js/frappe/views/reports/query_report.js:1712 +msgid "Insert After" +msgstr "crwdns5584:0crwdne5584:0" + +#. Label of a Select field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Insert After" +msgstr "crwdns5586:0crwdne5586:0" + +#: custom/doctype/custom_field/custom_field.py:249 +msgid "Insert After cannot be set as {0}" +msgstr "crwdns5588:0{0}crwdne5588:0" + +#: custom/doctype/custom_field/custom_field.py:242 +msgid "Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist" +msgstr "crwdns5590:0{0}crwdnd5590:0{1}crwdnd5590:0{2}crwdne5590:0" + +#: public/js/frappe/views/reports/report_view.js:364 +msgid "Insert Column Before {0}" +msgstr "crwdns5592:0{0}crwdne5592:0" + +#: public/js/frappe/form/controls/markdown_editor.js:81 +msgid "Insert Image in Markdown" +msgstr "crwdns5594:0crwdne5594:0" + +#. Option for a Select field in DocType 'Data Import' +#: core/doctype/data_import/data_import.json +msgctxt "Data Import" +msgid "Insert New Records" +msgstr "crwdns5596:0crwdne5596:0" + +#. Label of a Check field in DocType 'Web Page' +#: website/doctype/web_page/web_page.json +msgctxt "Web Page" +msgid "Insert Style" +msgstr "crwdns5598:0crwdne5598:0" + +#: public/js/frappe/ui/toolbar/search_utils.js:646 +#: public/js/frappe/ui/toolbar/search_utils.js:647 +msgid "Install {0} from Marketplace" +msgstr "crwdns5600:0{0}crwdne5600:0" + +#. Name of a DocType +#: core/doctype/installed_application/installed_application.json +msgid "Installed Application" +msgstr "crwdns5602:0crwdne5602:0" + +#. Name of a DocType +#: core/doctype/installed_applications/installed_applications.json +msgid "Installed Applications" +msgstr "crwdns5604:0crwdne5604:0" + +#. Label of a Table field in DocType 'Installed Applications' +#: core/doctype/installed_applications/installed_applications.json +msgctxt "Installed Applications" +msgid "Installed Applications" +msgstr "crwdns5606:0crwdne5606:0" + +#: core/doctype/installed_applications/installed_applications.js:18 +msgid "Installed Apps" +msgstr "crwdns5608:0crwdne5608:0" + +#: permissions.py:824 +msgid "Insufficient Permission Level for {0}" +msgstr "crwdns5610:0{0}crwdne5610:0" + +#: database/query.py:371 desk/form/load.py:40 model/db_query.py:530 +#: model/document.py:234 +msgid "Insufficient Permission for {0}" +msgstr "crwdns5612:0{0}crwdne5612:0" + +#: desk/reportview.py:322 +msgid "Insufficient Permissions for deleting Report" +msgstr "crwdns5614:0crwdne5614:0" + +#: desk/reportview.py:293 +msgid "Insufficient Permissions for editing Report" +msgstr "crwdns5616:0crwdne5616:0" + +#: core/doctype/doctype/doctype.py:447 +msgid "Insufficient attachment limit" +msgstr "crwdns5618:0crwdne5618:0" + +#. Option for a Select field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Int" +msgstr "crwdns5620:0crwdne5620:0" + +#. Option for a Select field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Int" +msgstr "crwdns5622:0crwdne5622:0" + +#. Option for a Select field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Int" +msgstr "crwdns5624:0crwdne5624:0" + +#. Option for a Select field in DocType 'Report Column' +#: core/doctype/report_column/report_column.json +msgctxt "Report Column" +msgid "Int" +msgstr "crwdns5626:0crwdne5626:0" + +#. Option for a Select field in DocType 'Report Filter' +#: core/doctype/report_filter/report_filter.json +msgctxt "Report Filter" +msgid "Int" +msgstr "crwdns5628:0crwdne5628:0" + +#. Option for a Select field in DocType 'Web Form Field' +#: website/doctype/web_form_field/web_form_field.json +msgctxt "Web Form Field" +msgid "Int" +msgstr "crwdns5630:0crwdne5630:0" + +#. Option for a Select field in DocType 'Web Template Field' +#: website/doctype/web_template_field/web_template_field.json +msgctxt "Web Template Field" +msgid "Int" +msgstr "crwdns5632:0crwdne5632:0" + +#. Name of a DocType +#: integrations/doctype/integration_request/integration_request.json +msgid "Integration Request" +msgstr "crwdns5634:0crwdne5634:0" + +#. Name of a Workspace +#: integrations/workspace/integrations/integrations.json +msgid "Integrations" +msgstr "crwdns5636:0crwdne5636:0" + +#. Group in User's connections +#: core/doctype/user/user.json +msgctxt "User" +msgid "Integrations" +msgstr "crwdns5638:0crwdne5638:0" + +#. Label of a Tab Break field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Integrations" +msgstr "crwdns5640:0crwdne5640:0" + +#. Description of a Select field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Integrations can use this field to set email delivery status" +msgstr "crwdns5642:0crwdne5642:0" + +#. Option for a Select field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "Inter" +msgstr "crwdns5644:0crwdne5644:0" + +#. Label of a Small Text field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Interests" +msgstr "crwdns5646:0crwdne5646:0" + +#. Option for a Select field in DocType 'Help Article' +#: website/doctype/help_article/help_article.json +msgctxt "Help Article" +msgid "Intermediate" +msgstr "crwdns5648:0crwdne5648:0" + +#: public/js/frappe/request.js:232 +msgid "Internal Server Error" +msgstr "crwdns5650:0crwdne5650:0" + +#. Label of a Data field in DocType 'Onboarding Step' +#: desk/doctype/onboarding_step/onboarding_step.json +msgctxt "Onboarding Step" +msgid "Intro Video URL" +msgstr "crwdns5652:0crwdne5652:0" + +#. Description of a Text Editor field in DocType 'About Us Settings' +#: website/doctype/about_us_settings/about_us_settings.json +msgctxt "About Us Settings" +msgid "Introduce your company to the website visitor." +msgstr "crwdns5654:0crwdne5654:0" + +#. Label of a Section Break field in DocType 'Contact Us Settings' +#. Label of a Text Editor field in DocType 'Contact Us Settings' +#: website/doctype/contact_us_settings/contact_us_settings.json +msgctxt "Contact Us Settings" +msgid "Introduction" +msgstr "crwdns5656:0crwdne5656:0" + +#. Label of a Text Editor field in DocType 'Web Form' +#: website/doctype/web_form/web_form.json +msgctxt "Web Form" +msgid "Introduction" +msgstr "crwdns5658:0crwdne5658:0" + +#. Title of an Onboarding Step +#: website/onboarding_step/introduction_to_website/introduction_to_website.json +msgid "Introduction to Website" +msgstr "crwdns5660:0crwdne5660:0" + +#. Description of a Text Editor field in DocType 'Contact Us Settings' +#: website/doctype/contact_us_settings/contact_us_settings.json +msgctxt "Contact Us Settings" +msgid "Introductory information for the Contact Us Page" +msgstr "crwdns5662:0crwdne5662:0" + +#. Label of a Data field in DocType 'Connected App' +#: integrations/doctype/connected_app/connected_app.json +msgctxt "Connected App" +msgid "Introspection URI" +msgstr "crwdns5664:0crwdne5664:0" + +#. Option for a Select field in DocType 'OAuth Authorization Code' +#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +msgctxt "OAuth Authorization Code" +msgid "Invalid" +msgstr "crwdns5666:0crwdne5666:0" + +#: public/js/form_builder/utils.js:221 public/js/frappe/form/grid_row.js:748 +#: public/js/frappe/form/layout.js:774 +msgid "Invalid \"depends_on\" expression" +msgstr "crwdns5668:0crwdne5668:0" + +#: public/js/frappe/views/reports/query_report.js:510 +msgid "Invalid \"depends_on\" expression set in filter {0}" +msgstr "crwdns5670:0{0}crwdne5670:0" + +#: public/js/frappe/form/save.js:206 +msgid "Invalid \"mandatory_depends_on\" expression" +msgstr "crwdns5672:0crwdne5672:0" + +#: utils/nestedset.py:181 +msgid "Invalid Action" +msgstr "crwdns5674:0crwdne5674:0" + +#: utils/csvutils.py:35 +msgid "Invalid CSV Format" +msgstr "crwdns5676:0crwdne5676:0" + +#: integrations/doctype/webhook/webhook.py:87 +msgid "Invalid Condition: {}" +msgstr "crwdns5678:0crwdne5678:0" + +#: email/smtp.py:132 +msgid "Invalid Credentials" +msgstr "crwdns5680:0crwdne5680:0" + +#: utils/data.py:124 utils/data.py:285 +msgid "Invalid Date" +msgstr "crwdns5682:0crwdne5682:0" + +#: www/list.py:85 +msgid "Invalid DocType" +msgstr "crwdns5684:0crwdne5684:0" + +#: database/query.py:95 +msgid "Invalid DocType: {0}" +msgstr "crwdns5686:0{0}crwdne5686:0" + +#: core/doctype/doctype/doctype.py:1223 +msgid "Invalid Fieldname" +msgstr "crwdns5688:0crwdne5688:0" + +#: core/doctype/file/file.py:206 +msgid "Invalid File URL" +msgstr "crwdns5690:0crwdne5690:0" + +#: public/js/form_builder/store.js:216 +msgid "Invalid Filter Format for field {0} of type {1}. Try using filter icon on the field to set it correctly" +msgstr "crwdns5692:0{0}crwdnd5692:0{1}crwdne5692:0" + +#: utils/dashboard.py:61 +msgid "Invalid Filter Value" +msgstr "crwdns5694:0crwdne5694:0" + +#: website/doctype/website_settings/website_settings.py:83 +msgid "Invalid Home Page" +msgstr "crwdns5696:0crwdne5696:0" + +#: utils/verified_command.py:48 www/update-password.html:151 +msgid "Invalid Link" +msgstr "crwdns5698:0crwdne5698:0" + +#: www/login.py:112 +msgid "Invalid Login Token" +msgstr "crwdns5700:0crwdne5700:0" + +#: email/receive.py:105 email/receive.py:142 +msgid "Invalid Mail Server. Please rectify and try again." +msgstr "crwdns5702:0crwdne5702:0" + +#: model/naming.py:91 +msgid "Invalid Naming Series: {}" +msgstr "crwdns5704:0crwdne5704:0" + +#: core/doctype/rq_job/rq_job.py:122 +msgid "Invalid Operation" +msgstr "crwdns5706:0crwdne5706:0" + +#: core/doctype/doctype/doctype.py:1582 core/doctype/doctype/doctype.py:1591 +msgid "Invalid Option" +msgstr "crwdns5708:0crwdne5708:0" + +#: email/smtp.py:102 +msgid "Invalid Outgoing Mail Server or Port: {0}" +msgstr "crwdns5710:0{0}crwdne5710:0" + +#: email/doctype/auto_email_report/auto_email_report.py:182 +msgid "Invalid Output Format" +msgstr "crwdns5712:0crwdne5712:0" + +#: integrations/doctype/connected_app/connected_app.py:166 +msgid "Invalid Parameters." +msgstr "crwdns5714:0crwdne5714:0" + +#: core/doctype/user/user.py:1194 www/update-password.html:121 +#: www/update-password.html:142 www/update-password.html:144 +#: www/update-password.html:246 +msgid "Invalid Password" +msgstr "crwdns5716:0crwdne5716:0" + +#: utils/__init__.py:109 +msgid "Invalid Phone Number" +msgstr "crwdns5718:0crwdne5718:0" + +#: auth.py:93 utils/oauth.py:184 utils/oauth.py:191 www/login.py:112 +msgid "Invalid Request" +msgstr "crwdns5720:0crwdne5720:0" + +#: desk/search.py:26 +msgid "Invalid Search Field {0}" +msgstr "crwdns5722:0{0}crwdne5722:0" + +#: core/doctype/doctype/doctype.py:1165 +msgid "Invalid Table Fieldname" +msgstr "crwdns5724:0crwdne5724:0" + +#: public/js/workflow_builder/store.js:182 +msgid "Invalid Transition" +msgstr "crwdns5726:0crwdne5726:0" + +#: core/doctype/file/file.py:217 public/js/frappe/widgets/widget_dialog.js:565 +#: utils/csvutils.py:199 utils/csvutils.py:220 +msgid "Invalid URL" +msgstr "crwdns5728:0crwdne5728:0" + +#: email/receive.py:150 +msgid "Invalid User Name or Support Password. Please rectify and try again." +msgstr "crwdns5730:0crwdne5730:0" + +#: integrations/doctype/webhook/webhook.py:116 +msgid "Invalid Webhook Secret" +msgstr "crwdns5732:0crwdne5732:0" + +#: desk/reportview.py:150 +msgid "Invalid aggregate function" +msgstr "crwdns5734:0crwdne5734:0" + +#: public/js/frappe/views/reports/report_view.js:373 +msgid "Invalid column" +msgstr "crwdns5736:0crwdne5736:0" + +#: model/document.py:841 model/document.py:855 +msgid "Invalid docstatus" +msgstr "crwdns5738:0crwdne5738:0" + +#: public/js/frappe/utils/dashboard_utils.js:229 +msgid "Invalid expression set in filter {0}" +msgstr "crwdns5740:0{0}crwdne5740:0" + +#: public/js/frappe/utils/dashboard_utils.js:219 +msgid "Invalid expression set in filter {0} ({1})" +msgstr "crwdns5742:0{0}crwdnd5742:0{1}crwdne5742:0" + +#: utils/data.py:2128 +msgid "Invalid field name {0}" +msgstr "crwdns5744:0{0}crwdne5744:0" + +#: core/doctype/doctype/doctype.py:1048 +msgid "Invalid fieldname '{0}' in autoname" +msgstr "crwdns5746:0{0}crwdne5746:0" + +#: client.py:344 +msgid "Invalid file path: {0}" +msgstr "crwdns5748:0{0}crwdne5748:0" + +#: database/query.py:173 public/js/frappe/ui/filters/filter_list.js:199 +msgid "Invalid filter: {0}" +msgstr "crwdns5750:0{0}crwdne5750:0" + +#: model/utils/__init__.py:69 +msgid "Invalid include path" +msgstr "crwdns5752:0crwdne5752:0" + +#: desk/doctype/dashboard/dashboard.py:68 +#: desk/doctype/dashboard_chart/dashboard_chart.py:424 +msgid "Invalid json added in the custom options: {0}" +msgstr "crwdns5754:0{0}crwdne5754:0" + +#: model/naming.py:445 +msgid "Invalid name type (integer) for varchar name column" +msgstr "crwdns5756:0crwdne5756:0" + +#: model/naming.py:52 +msgid "Invalid naming series {}: dot (.) missing" +msgstr "crwdns5758:0crwdne5758:0" + +#: core/doctype/data_import/importer.py:438 +msgid "Invalid or corrupted content for import" +msgstr "crwdns5760:0crwdne5760:0" + +#: website/doctype/website_settings/website_settings.py:139 +msgid "Invalid redirect regex in row #{}: {}" +msgstr "crwdns5762:0crwdne5762:0" + +#: app.py:301 +msgid "Invalid request arguments" +msgstr "crwdns5764:0crwdne5764:0" + +#: integrations/doctype/connected_app/connected_app.py:172 +msgid "Invalid state." +msgstr "crwdns5766:0crwdne5766:0" + +#: core/doctype/data_import/importer.py:415 +msgid "Invalid template file for import" +msgstr "crwdns5768:0crwdne5768:0" + +#: integrations/doctype/ldap_settings/ldap_settings.py:162 +#: integrations/doctype/ldap_settings/ldap_settings.py:335 +msgid "Invalid username or password" +msgstr "crwdns5770:0crwdne5770:0" + +#: public/js/frappe/web_form/web_form.js:229 +msgctxt "Error message in web form" +msgid "Invalid values for fields:" +msgstr "crwdns5772:0crwdne5772:0" + +#: core/doctype/doctype/doctype.py:1515 +msgid "Invalid {0} condition" +msgstr "crwdns5774:0{0}crwdne5774:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "Inverse" +msgstr "crwdns5776:0crwdne5776:0" + +#: contacts/doctype/contact/contact.js:25 +msgid "Invite as User" +msgstr "crwdns5778:0crwdne5778:0" + +#: public/js/frappe/ui/filters/filter.js:22 +msgid "Is" +msgstr "crwdns5780:0crwdne5780:0" + +#. Label of a Check field in DocType 'Workflow' +#: workflow/doctype/workflow/workflow.json +msgctxt "Workflow" +msgid "Is Active" +msgstr "crwdns5782:0crwdne5782:0" + +#. Label of a Check field in DocType 'File' +#: core/doctype/file/file.json +msgctxt "File" +msgid "Is Attachments Folder" +msgstr "crwdns5784:0crwdne5784:0" + +#. Label of a Check field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Is Calendar and Gantt" +msgstr "crwdns5786:0crwdne5786:0" + +#. Label of a Check field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Is Calendar and Gantt" +msgstr "crwdns5788:0crwdne5788:0" + +#: core/doctype/doctype/doctype_list.js:34 +msgid "Is Child Table" +msgstr "crwdns5790:0crwdne5790:0" + +#. Label of a Check field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Is Child Table" +msgstr "crwdns5792:0crwdne5792:0" + +#. Label of a Check field in DocType 'DocType Link' +#: core/doctype/doctype_link/doctype_link.json +msgctxt "DocType Link" +msgid "Is Child Table" +msgstr "crwdns5794:0crwdne5794:0" + +#. Label of a Check field in DocType 'Module Onboarding' +#: desk/doctype/module_onboarding/module_onboarding.json +msgctxt "Module Onboarding" +msgid "Is Complete" +msgstr "crwdns5796:0crwdne5796:0" + +#. Label of a Check field in DocType 'Onboarding Step' +#: desk/doctype/onboarding_step/onboarding_step.json +msgctxt "Onboarding Step" +msgid "Is Complete" +msgstr "crwdns5798:0crwdne5798:0" + +#. Label of a Check field in DocType 'Email Flag Queue' +#: email/doctype/email_flag_queue/email_flag_queue.json +msgctxt "Email Flag Queue" +msgid "Is Completed" +msgstr "crwdns5800:0crwdne5800:0" + +#. Label of a Check field in DocType 'Role' +#: core/doctype/role/role.json +msgctxt "Role" +msgid "Is Custom" +msgstr "crwdns5802:0crwdne5802:0" + +#. Label of a Check field in DocType 'User Document Type' +#: core/doctype/user_document_type/user_document_type.json +msgctxt "User Document Type" +msgid "Is Custom" +msgstr "crwdns5804:0crwdne5804:0" + +#. Label of a Check field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Is Custom Field" +msgstr "crwdns5806:0crwdne5806:0" + +#: core/doctype/user_permission/user_permission_list.js:69 +msgid "Is Default" +msgstr "crwdns5808:0crwdne5808:0" + +#. Label of a Check field in DocType 'Address Template' +#: contacts/doctype/address_template/address_template.json +msgctxt "Address Template" +msgid "Is Default" +msgstr "crwdns5810:0crwdne5810:0" + +#. Label of a Check field in DocType 'Dashboard' +#: desk/doctype/dashboard/dashboard.json +msgctxt "Dashboard" +msgid "Is Default" +msgstr "crwdns5812:0crwdne5812:0" + +#. Label of a Check field in DocType 'User Permission' +#: core/doctype/user_permission/user_permission.json +msgctxt "User Permission" +msgid "Is Default" +msgstr "crwdns5814:0crwdne5814:0" + +#. Label of a Check field in DocType 'Webhook' +#: integrations/doctype/webhook/webhook.json +msgctxt "Webhook" +msgid "Is Dynamic URL?" +msgstr "crwdns5816:0crwdne5816:0" + +#. Label of a Check field in DocType 'File' +#: core/doctype/file/file.json +msgctxt "File" +msgid "Is Folder" +msgstr "crwdns5818:0crwdne5818:0" + +#: public/js/frappe/list/list_filter.js:43 +msgid "Is Global" +msgstr "crwdns5820:0crwdne5820:0" + +#. Label of a Check field in DocType 'Workspace' +#: desk/doctype/workspace/workspace.json +msgctxt "Workspace" +msgid "Is Hidden" +msgstr "crwdns5822:0crwdne5822:0" + +#. Label of a Check field in DocType 'File' +#: core/doctype/file/file.json +msgctxt "File" +msgid "Is Home Folder" +msgstr "crwdns5824:0crwdne5824:0" + +#. Label of a Check field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Is Mandatory Field" +msgstr "crwdns5826:0crwdne5826:0" + +#. Label of a Check field in DocType 'Workflow Document State' +#: workflow/doctype/workflow_document_state/workflow_document_state.json +msgctxt "Workflow Document State" +msgid "Is Optional State" +msgstr "crwdns5828:0crwdne5828:0" + +#. Label of a Check field in DocType 'Contact Email' +#: contacts/doctype/contact_email/contact_email.json +msgctxt "Contact Email" +msgid "Is Primary" +msgstr "crwdns5830:0crwdne5830:0" + +#. Label of a Check field in DocType 'Contact' +#: contacts/doctype/contact/contact.json +msgctxt "Contact" +msgid "Is Primary Contact" +msgstr "crwdns5832:0crwdne5832:0" + +#. Label of a Check field in DocType 'Contact Phone' +#: contacts/doctype/contact_phone/contact_phone.json +msgctxt "Contact Phone" +msgid "Is Primary Mobile" +msgstr "crwdns5834:0crwdne5834:0" + +#. Label of a Check field in DocType 'Contact Phone' +#: contacts/doctype/contact_phone/contact_phone.json +msgctxt "Contact Phone" +msgid "Is Primary Phone" +msgstr "crwdns5836:0crwdne5836:0" + +#. Label of a Check field in DocType 'File' +#: core/doctype/file/file.json +msgctxt "File" +msgid "Is Private" +msgstr "crwdns5838:0crwdne5838:0" + +#. Label of a Check field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "Is Public" +msgstr "crwdns5840:0crwdne5840:0" + +#. Label of a Check field in DocType 'Number Card' +#: desk/doctype/number_card/number_card.json +msgctxt "Number Card" +msgid "Is Public" +msgstr "crwdns5842:0crwdne5842:0" + +#. Label of a Data field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Is Published Field" +msgstr "crwdns5844:0crwdne5844:0" + +#: core/doctype/doctype/doctype.py:1466 +msgid "Is Published Field must be a valid fieldname" +msgstr "crwdns5846:0crwdne5846:0" + +#. Label of a Check field in DocType 'Workspace Link' +#: desk/doctype/workspace_link/workspace_link.json +msgctxt "Workspace Link" +msgid "Is Query Report" +msgstr "crwdns5848:0crwdne5848:0" + +#. Label of a Check field in DocType 'Integration Request' +#: integrations/doctype/integration_request/integration_request.json +msgctxt "Integration Request" +msgid "Is Remote Request?" +msgstr "crwdns5850:0crwdne5850:0" + +#: core/doctype/doctype/doctype_list.js:48 +msgid "Is Single" +msgstr "crwdns5852:0crwdne5852:0" + +#. Label of a Check field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Is Single" +msgstr "crwdns5854:0crwdne5854:0" + +#. Label of a Check field in DocType 'Onboarding Step' +#: desk/doctype/onboarding_step/onboarding_step.json +msgctxt "Onboarding Step" +msgid "Is Single" +msgstr "crwdns5856:0crwdne5856:0" + +#. Label of a Check field in DocType 'Onboarding Step' +#: desk/doctype/onboarding_step/onboarding_step.json +msgctxt "Onboarding Step" +msgid "Is Skipped" +msgstr "crwdns5858:0crwdne5858:0" + +#. Label of a Check field in DocType 'Email Rule' +#: email/doctype/email_rule/email_rule.json +msgctxt "Email Rule" +msgid "Is Spam" +msgstr "crwdns5860:0crwdne5860:0" + +#. Label of a Check field in DocType 'Dashboard' +#: desk/doctype/dashboard/dashboard.json +msgctxt "Dashboard" +msgid "Is Standard" +msgstr "crwdns5862:0crwdne5862:0" + +#. Label of a Check field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "Is Standard" +msgstr "crwdns5864:0crwdne5864:0" + +#. Label of a Check field in DocType 'Form Tour' +#: desk/doctype/form_tour/form_tour.json +msgctxt "Form Tour" +msgid "Is Standard" +msgstr "crwdns5866:0crwdne5866:0" + +#. Label of a Check field in DocType 'Navbar Item' +#: core/doctype/navbar_item/navbar_item.json +msgctxt "Navbar Item" +msgid "Is Standard" +msgstr "crwdns5868:0crwdne5868:0" + +#. Label of a Check field in DocType 'Notification' +#: email/doctype/notification/notification.json +msgctxt "Notification" +msgid "Is Standard" +msgstr "crwdns5870:0crwdne5870:0" + +#. Label of a Check field in DocType 'Number Card' +#: desk/doctype/number_card/number_card.json +msgctxt "Number Card" +msgid "Is Standard" +msgstr "crwdns5872:0crwdne5872:0" + +#. Label of a Select field in DocType 'Report' +#: core/doctype/report/report.json +msgctxt "Report" +msgid "Is Standard" +msgstr "crwdns5874:0crwdne5874:0" + +#. Label of a Check field in DocType 'User Type' +#: core/doctype/user_type/user_type.json +msgctxt "User Type" +msgid "Is Standard" +msgstr "crwdns5876:0crwdne5876:0" + +#. Label of a Check field in DocType 'Web Form' +#: website/doctype/web_form/web_form.json +msgctxt "Web Form" +msgid "Is Standard" +msgstr "crwdns5878:0crwdne5878:0" + +#: core/doctype/doctype/doctype_list.js:25 +msgid "Is Submittable" +msgstr "crwdns5880:0crwdne5880:0" + +#. Label of a Check field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Is Submittable" +msgstr "crwdns5882:0crwdne5882:0" + +#. Label of a Check field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Is System Generated" +msgstr "crwdns5884:0crwdne5884:0" + +#. Label of a Check field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Is System Generated" +msgstr "crwdns5886:0crwdne5886:0" + +#. Label of a Check field in DocType 'Property Setter' +#: custom/doctype/property_setter/property_setter.json +msgctxt "Property Setter" +msgid "Is System Generated" +msgstr "crwdns5888:0crwdne5888:0" + +#. Label of a Check field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Is Table" +msgstr "crwdns5890:0crwdne5890:0" + +#. Label of a Check field in DocType 'Form Tour Step' +#: desk/doctype/form_tour_step/form_tour_step.json +msgctxt "Form Tour Step" +msgid "Is Table Field" +msgstr "crwdns5892:0crwdne5892:0" + +#. Label of a Check field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Is Tree" +msgstr "crwdns5894:0crwdne5894:0" + +#. Label of a Data field in DocType 'Web Page View' +#: website/doctype/web_page_view/web_page_view.json +msgctxt "Web Page View" +msgid "Is Unique" +msgstr "crwdns5896:0crwdne5896:0" + +#. Label of a Check field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Is Virtual" +msgstr "crwdns5898:0crwdne5898:0" + +#. Label of a Check field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Is Virtual" +msgstr "crwdns5900:0crwdne5900:0" + +#. Label of a Check field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Is Virtual" +msgstr "crwdns5902:0crwdne5902:0" + +#: core/doctype/file/utils.py:155 utils/file_manager.py:315 +msgid "It is risky to delete this file: {0}. Please contact your System Manager." +msgstr "crwdns5904:0{0}crwdne5904:0" + +#. Label of a Data field in DocType 'Navbar Item' +#: core/doctype/navbar_item/navbar_item.json +msgctxt "Navbar Item" +msgid "Item Label" +msgstr "crwdns5906:0crwdne5906:0" + +#. Label of a Select field in DocType 'Navbar Item' +#: core/doctype/navbar_item/navbar_item.json +msgctxt "Navbar Item" +msgid "Item Type" +msgstr "crwdns5908:0crwdne5908:0" + +#: utils/nestedset.py:234 +msgid "Item cannot be added to its own descendants" +msgstr "crwdns5910:0crwdne5910:0" + +#. Option for a Select field in DocType 'Print Format' +#: printing/doctype/print_format/print_format.json +msgctxt "Print Format" +msgid "JS" +msgstr "crwdns5912:0crwdne5912:0" + +#. Label of a HTML field in DocType 'Custom HTML Block' +#: desk/doctype/custom_html_block/custom_html_block.json +msgctxt "Custom HTML Block" +msgid "JS Message" +msgstr "crwdns5914:0crwdne5914:0" + +#. Option for a Select field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "JSON" +msgstr "crwdns5916:0crwdne5916:0" + +#. Option for a Select field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "JSON" +msgstr "crwdns5918:0crwdne5918:0" + +#. Label of a Code field in DocType 'Report' +#: core/doctype/report/report.json +msgctxt "Report" +msgid "JSON" +msgstr "crwdns5920:0crwdne5920:0" + +#. Option for a Select field in DocType 'Webhook' +#: integrations/doctype/webhook/webhook.json +msgctxt "Webhook" +msgid "JSON" +msgstr "crwdns5922:0crwdne5922:0" + +#. Label of a Code field in DocType 'Webhook' +#: integrations/doctype/webhook/webhook.json +msgctxt "Webhook" +msgid "JSON Request Body" +msgstr "crwdns5924:0crwdne5924:0" + +#: templates/signup.html:5 +msgid "Jane Doe" +msgstr "crwdns5926:0crwdne5926:0" + +#. Label of a Code field in DocType 'Website Theme' +#: website/doctype/website_theme/website_theme.json +msgctxt "Website Theme" +msgid "JavaScript" +msgstr "crwdns5928:0crwdne5928:0" + +#. Description of a Code field in DocType 'Report' +#: core/doctype/report/report.json +msgctxt "Report" +msgid "JavaScript Format: frappe.query_reports['REPORTNAME'] = {}" +msgstr "crwdns5930:0crwdne5930:0" + +#. Label of a Section Break field in DocType 'Custom HTML Block' +#: desk/doctype/custom_html_block/custom_html_block.json +msgctxt "Custom HTML Block" +msgid "Javascript" +msgstr "crwdns5932:0crwdne5932:0" + +#. Label of a Code field in DocType 'Report' +#: core/doctype/report/report.json +msgctxt "Report" +msgid "Javascript" +msgstr "crwdns5934:0crwdne5934:0" + +#. Label of a Code field in DocType 'Web Page' +#: website/doctype/web_page/web_page.json +msgctxt "Web Page" +msgid "Javascript" +msgstr "crwdns5936:0crwdne5936:0" + +#. Label of a Code field in DocType 'Website Script' +#: website/doctype/website_script/website_script.json +msgctxt "Website Script" +msgid "Javascript" +msgstr "crwdns5938:0crwdne5938:0" + +#: www/login.html:71 +msgid "Javascript is disabled on your browser" +msgstr "crwdns5940:0crwdne5940:0" + +#. Option for a Select field in DocType 'Print Format' +#: printing/doctype/print_format/print_format.json +msgctxt "Print Format" +msgid "Jinja" +msgstr "crwdns5942:0crwdne5942:0" + +#. Label of a Link field in DocType 'Prepared Report' +#: core/doctype/prepared_report/prepared_report.json +msgctxt "Prepared Report" +msgid "Job ID" +msgstr "crwdns5944:0crwdne5944:0" + +#. Label of a Data field in DocType 'RQ Job' +#: core/doctype/rq_job/rq_job.json +msgctxt "RQ Job" +msgid "Job ID" +msgstr "crwdns5946:0crwdne5946:0" + +#. Label of a Link field in DocType 'Submission Queue' +#: core/doctype/submission_queue/submission_queue.json +msgctxt "Submission Queue" +msgid "Job Id" +msgstr "crwdns5948:0crwdne5948:0" + +#. Label of a Section Break field in DocType 'RQ Job' +#: core/doctype/rq_job/rq_job.json +msgctxt "RQ Job" +msgid "Job Info" +msgstr "crwdns5950:0crwdne5950:0" + +#. Label of a Data field in DocType 'RQ Job' +#: core/doctype/rq_job/rq_job.json +msgctxt "RQ Job" +msgid "Job Name" +msgstr "crwdns5952:0crwdne5952:0" + +#. Label of a Section Break field in DocType 'RQ Job' +#: core/doctype/rq_job/rq_job.json +msgctxt "RQ Job" +msgid "Job Status" +msgstr "crwdns5954:0crwdne5954:0" + +#: core/doctype/rq_job/rq_job.js:24 +msgid "Job Stopped Successfully" +msgstr "crwdns5956:0crwdne5956:0" + +#: core/doctype/rq_job/rq_job.py:122 +msgid "Job is not running." +msgstr "crwdns5958:0crwdne5958:0" + +#: desk/doctype/event/event.js:51 +msgid "Join video conference with {0}" +msgstr "crwdns5960:0{0}crwdne5960:0" + +#: public/js/frappe/form/toolbar.js:355 public/js/frappe/form/toolbar.js:757 +msgid "Jump to field" +msgstr "crwdns5962:0crwdne5962:0" + +#: public/js/frappe/utils/number_systems.js:17 +#: public/js/frappe/utils/number_systems.js:31 +#: public/js/frappe/utils/number_systems.js:53 +msgctxt "Number system" +msgid "K" +msgstr "crwdns5964:0crwdne5964:0" + +#. Option for a Select field in DocType 'Form Tour' +#: desk/doctype/form_tour/form_tour.json +msgctxt "Form Tour" +msgid "Kanban" +msgstr "crwdns5966:0crwdne5966:0" + +#. Option for a Select field in DocType 'Workspace Shortcut' +#: desk/doctype/workspace_shortcut/workspace_shortcut.json +msgctxt "Workspace Shortcut" +msgid "Kanban" +msgstr "crwdns5968:0crwdne5968:0" + +#. Name of a DocType +#: desk/doctype/kanban_board/kanban_board.json +msgid "Kanban Board" +msgstr "crwdns5970:0crwdne5970:0" + +#. Linked DocType in DocType's connections +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Kanban Board" +msgstr "crwdns5972:0crwdne5972:0" + +#. Label of a Link field in DocType 'Workspace Shortcut' +#: desk/doctype/workspace_shortcut/workspace_shortcut.json +msgctxt "Workspace Shortcut" +msgid "Kanban Board" +msgstr "crwdns5974:0crwdne5974:0" + +#. Name of a DocType +#: desk/doctype/kanban_board_column/kanban_board_column.json +msgid "Kanban Board Column" +msgstr "crwdns5976:0crwdne5976:0" + +#: public/js/frappe/views/kanban/kanban_view.js:385 +msgid "Kanban Board Name" +msgstr "crwdns5978:0crwdne5978:0" + +#. Label of a Data field in DocType 'Kanban Board' +#: desk/doctype/kanban_board/kanban_board.json +msgctxt "Kanban Board" +msgid "Kanban Board Name" +msgstr "crwdns5980:0crwdne5980:0" + +#: public/js/frappe/views/kanban/kanban_view.js:262 +msgctxt "Button in kanban view menu" +msgid "Kanban Settings" +msgstr "crwdns5982:0crwdne5982:0" + +#. Label of a Data field in DocType 'DefaultValue' +#: core/doctype/defaultvalue/defaultvalue.json +msgctxt "DefaultValue" +msgid "Key" +msgstr "crwdns5984:0crwdne5984:0" + +#. Label of a Data field in DocType 'Document Share Key' +#: core/doctype/document_share_key/document_share_key.json +msgctxt "Document Share Key" +msgid "Key" +msgstr "crwdns5986:0crwdne5986:0" + +#. Label of a Data field in DocType 'Query Parameters' +#: integrations/doctype/query_parameters/query_parameters.json +msgctxt "Query Parameters" +msgid "Key" +msgstr "crwdns5988:0crwdne5988:0" + +#. Label of a Data field in DocType 'Webhook Data' +#: integrations/doctype/webhook_data/webhook_data.json +msgctxt "Webhook Data" +msgid "Key" +msgstr "crwdns5990:0crwdne5990:0" + +#. Label of a Small Text field in DocType 'Webhook Header' +#: integrations/doctype/webhook_header/webhook_header.json +msgctxt "Webhook Header" +msgid "Key" +msgstr "crwdns5992:0crwdne5992:0" + +#. Label of a Data field in DocType 'Website Meta Tag' +#: website/doctype/website_meta_tag/website_meta_tag.json +msgctxt "Website Meta Tag" +msgid "Key" +msgstr "crwdns5994:0crwdne5994:0" + +#. Label of a standard help item +#. Type: Action +#: hooks.py public/js/frappe/ui/keyboard.js:126 +msgid "Keyboard Shortcuts" +msgstr "crwdns5996:0crwdne5996:0" + +#: public/js/frappe/utils/number_systems.js:37 +msgctxt "Number system" +msgid "Kh" +msgstr "crwdns5998:0crwdne5998:0" + +#. Label of a Card Break in the Website Workspace +#: website/doctype/help_article/help_article.py:80 +#: website/workspace/website/website.json +msgid "Knowledge Base" +msgstr "crwdns6000:0crwdne6000:0" + +#. Name of a role +#: website/doctype/help_article/help_article.json +msgid "Knowledge Base Contributor" +msgstr "crwdns6002:0crwdne6002:0" + +#. Name of a role +#: website/doctype/help_article/help_article.json +msgid "Knowledge Base Editor" +msgstr "crwdns6004:0crwdne6004:0" + +#: public/js/frappe/utils/number_systems.js:27 +#: public/js/frappe/utils/number_systems.js:49 +msgctxt "Number system" +msgid "L" +msgstr "crwdns6006:0crwdne6006:0" + +#. Label of a Section Break field in DocType 'LDAP Settings' +#: integrations/doctype/ldap_settings/ldap_settings.json +msgctxt "LDAP Settings" +msgid "LDAP Auth" +msgstr "crwdns6008:0crwdne6008:0" + +#. Label of a Section Break field in DocType 'LDAP Settings' +#: integrations/doctype/ldap_settings/ldap_settings.json +msgctxt "LDAP Settings" +msgid "LDAP Custom Settings" +msgstr "crwdns6010:0crwdne6010:0" + +#. Label of a Data field in DocType 'LDAP Settings' +#: integrations/doctype/ldap_settings/ldap_settings.json +msgctxt "LDAP Settings" +msgid "LDAP Email Field" +msgstr "crwdns6012:0crwdne6012:0" + +#. Label of a Data field in DocType 'LDAP Settings' +#: integrations/doctype/ldap_settings/ldap_settings.json +msgctxt "LDAP Settings" +msgid "LDAP First Name Field" +msgstr "crwdns6014:0crwdne6014:0" + +#. Label of a Data field in DocType 'LDAP Group Mapping' +#: integrations/doctype/ldap_group_mapping/ldap_group_mapping.json +msgctxt "LDAP Group Mapping" +msgid "LDAP Group" +msgstr "crwdns6016:0crwdne6016:0" + +#. Label of a Data field in DocType 'LDAP Settings' +#: integrations/doctype/ldap_settings/ldap_settings.json +msgctxt "LDAP Settings" +msgid "LDAP Group Field" +msgstr "crwdns6018:0crwdne6018:0" + +#. Name of a DocType +#: integrations/doctype/ldap_group_mapping/ldap_group_mapping.json +msgid "LDAP Group Mapping" +msgstr "crwdns6020:0crwdne6020:0" + +#. Label of a Section Break field in DocType 'LDAP Settings' +#. Label of a Table field in DocType 'LDAP Settings' +#: integrations/doctype/ldap_settings/ldap_settings.json +msgctxt "LDAP Settings" +msgid "LDAP Group Mappings" +msgstr "crwdns6022:0crwdne6022:0" + +#. Label of a Data field in DocType 'LDAP Settings' +#: integrations/doctype/ldap_settings/ldap_settings.json +msgctxt "LDAP Settings" +msgid "LDAP Group Member attribute" +msgstr "crwdns6024:0crwdne6024:0" + +#. Label of a Data field in DocType 'LDAP Settings' +#: integrations/doctype/ldap_settings/ldap_settings.json +msgctxt "LDAP Settings" +msgid "LDAP Last Name Field" +msgstr "crwdns6026:0crwdne6026:0" + +#. Label of a Data field in DocType 'LDAP Settings' +#: integrations/doctype/ldap_settings/ldap_settings.json +msgctxt "LDAP Settings" +msgid "LDAP Middle Name Field" +msgstr "crwdns6028:0crwdne6028:0" + +#. Label of a Data field in DocType 'LDAP Settings' +#: integrations/doctype/ldap_settings/ldap_settings.json +msgctxt "LDAP Settings" +msgid "LDAP Mobile Field" +msgstr "crwdns6030:0crwdne6030:0" + +#: integrations/doctype/ldap_settings/ldap_settings.py:160 +msgid "LDAP Not Installed" +msgstr "crwdns6032:0crwdne6032:0" + +#. Label of a Data field in DocType 'LDAP Settings' +#: integrations/doctype/ldap_settings/ldap_settings.json +msgctxt "LDAP Settings" +msgid "LDAP Phone Field" +msgstr "crwdns6034:0crwdne6034:0" + +#. Label of a Data field in DocType 'LDAP Settings' +#: integrations/doctype/ldap_settings/ldap_settings.json +msgctxt "LDAP Settings" +msgid "LDAP Search String" +msgstr "crwdns6036:0crwdne6036:0" + +#: integrations/doctype/ldap_settings/ldap_settings.py:127 +msgid "LDAP Search String must be enclosed in '()' and needs to contian the user placeholder {0}, eg sAMAccountName={0}" +msgstr "crwdns6038:0{0}crwdnd6038:0{0}crwdne6038:0" + +#. Label of a Section Break field in DocType 'LDAP Settings' +#: integrations/doctype/ldap_settings/ldap_settings.json +msgctxt "LDAP Settings" +msgid "LDAP Search and Paths" +msgstr "crwdns6040:0crwdne6040:0" + +#. Label of a Section Break field in DocType 'LDAP Settings' +#: integrations/doctype/ldap_settings/ldap_settings.json +msgctxt "LDAP Settings" +msgid "LDAP Security" +msgstr "crwdns6042:0crwdne6042:0" + +#. Label of a Section Break field in DocType 'LDAP Settings' +#: integrations/doctype/ldap_settings/ldap_settings.json +msgctxt "LDAP Settings" +msgid "LDAP Server Settings" +msgstr "crwdns6044:0crwdne6044:0" + +#. Label of a Data field in DocType 'LDAP Settings' +#: integrations/doctype/ldap_settings/ldap_settings.json +msgctxt "LDAP Settings" +msgid "LDAP Server Url" +msgstr "crwdns6046:0crwdne6046:0" + +#. Name of a DocType +#: integrations/doctype/ldap_settings/ldap_settings.json +msgid "LDAP Settings" +msgstr "crwdns6048:0crwdne6048:0" + +#. Label of a Link in the Integrations Workspace +#: integrations/workspace/integrations/integrations.json +msgctxt "LDAP Settings" +msgid "LDAP Settings" +msgstr "crwdns6050:0crwdne6050:0" + +#. Label of a Section Break field in DocType 'LDAP Settings' +#: integrations/doctype/ldap_settings/ldap_settings.json +msgctxt "LDAP Settings" +msgid "LDAP User Creation and Mapping" +msgstr "crwdns6052:0crwdne6052:0" + +#. Label of a Data field in DocType 'LDAP Settings' +#: integrations/doctype/ldap_settings/ldap_settings.json +msgctxt "LDAP Settings" +msgid "LDAP Username Field" +msgstr "crwdns6054:0crwdne6054:0" + +#: integrations/doctype/ldap_settings/ldap_settings.py:308 +#: integrations/doctype/ldap_settings/ldap_settings.py:427 +msgid "LDAP is not enabled." +msgstr "crwdns6056:0crwdne6056:0" + +#. Label of a Data field in DocType 'LDAP Settings' +#: integrations/doctype/ldap_settings/ldap_settings.json +msgctxt "LDAP Settings" +msgid "LDAP search path for Groups" +msgstr "crwdns6058:0crwdne6058:0" + +#. Label of a Data field in DocType 'LDAP Settings' +#: integrations/doctype/ldap_settings/ldap_settings.json +msgctxt "LDAP Settings" +msgid "LDAP search path for Users" +msgstr "crwdns6060:0crwdne6060:0" + +#: integrations/doctype/ldap_settings/ldap_settings.py:99 +msgid "LDAP settings incorrect. validation response was: {0}" +msgstr "crwdns6062:0{0}crwdne6062:0" + +#: printing/page/print_format_builder/print_format_builder.js:474 +#: public/js/frappe/widgets/widget_dialog.js:606 +#: public/js/frappe/widgets/widget_dialog.js:639 +msgid "Label" +msgstr "crwdns6064:0crwdne6064:0" + +#. Option for a Select field in DocType 'Comment' +#: core/doctype/comment/comment.json +msgctxt "Comment" +msgid "Label" +msgstr "crwdns6066:0crwdne6066:0" + +#. Option for a Select field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Label" +msgstr "crwdns6068:0crwdne6068:0" + +#. Label of a Data field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Label" +msgstr "crwdns6070:0crwdne6070:0" + +#. Label of a Data field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Label" +msgstr "crwdns6072:0crwdne6072:0" + +#. Label of a Data field in DocType 'Desktop Icon' +#: desk/doctype/desktop_icon/desktop_icon.json +msgctxt "Desktop Icon" +msgid "Label" +msgstr "crwdns6074:0crwdne6074:0" + +#. Label of a Data field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Label" +msgstr "crwdns6076:0crwdne6076:0" + +#. Label of a Data field in DocType 'DocType Action' +#: core/doctype/doctype_action/doctype_action.json +msgctxt "DocType Action" +msgid "Label" +msgstr "crwdns6078:0crwdne6078:0" + +#. Label of a Data field in DocType 'DocType Layout Field' +#: custom/doctype/doctype_layout_field/doctype_layout_field.json +msgctxt "DocType Layout Field" +msgid "Label" +msgstr "crwdns6080:0crwdne6080:0" + +#. Label of a Data field in DocType 'Form Tour Step' +#: desk/doctype/form_tour_step/form_tour_step.json +msgctxt "Form Tour Step" +msgid "Label" +msgstr "crwdns6082:0crwdne6082:0" + +#. Label of a Data field in DocType 'Number Card' +#: desk/doctype/number_card/number_card.json +msgctxt "Number Card" +msgid "Label" +msgstr "crwdns6084:0crwdne6084:0" + +#. Label of a Data field in DocType 'Report Column' +#: core/doctype/report_column/report_column.json +msgctxt "Report Column" +msgid "Label" +msgstr "crwdns6086:0crwdne6086:0" + +#. Label of a Data field in DocType 'Report Filter' +#: core/doctype/report_filter/report_filter.json +msgctxt "Report Filter" +msgid "Label" +msgstr "crwdns6088:0crwdne6088:0" + +#. Label of a Data field in DocType 'Top Bar Item' +#: website/doctype/top_bar_item/top_bar_item.json +msgctxt "Top Bar Item" +msgid "Label" +msgstr "crwdns6090:0crwdne6090:0" + +#. Label of a Data field in DocType 'Web Template Field' +#: website/doctype/web_template_field/web_template_field.json +msgctxt "Web Template Field" +msgid "Label" +msgstr "crwdns6092:0crwdne6092:0" + +#. Label of a Data field in DocType 'Workspace Chart' +#: desk/doctype/workspace_chart/workspace_chart.json +msgctxt "Workspace Chart" +msgid "Label" +msgstr "crwdns6094:0crwdne6094:0" + +#. Label of a Data field in DocType 'Workspace Custom Block' +#: desk/doctype/workspace_custom_block/workspace_custom_block.json +msgctxt "Workspace Custom Block" +msgid "Label" +msgstr "crwdns6096:0crwdne6096:0" + +#. Label of a Data field in DocType 'Workspace Link' +#: desk/doctype/workspace_link/workspace_link.json +msgctxt "Workspace Link" +msgid "Label" +msgstr "crwdns6098:0crwdne6098:0" + +#. Label of a Data field in DocType 'Workspace Number Card' +#: desk/doctype/workspace_number_card/workspace_number_card.json +msgctxt "Workspace Number Card" +msgid "Label" +msgstr "crwdns6100:0crwdne6100:0" + +#. Label of a Data field in DocType 'Workspace Quick List' +#: desk/doctype/workspace_quick_list/workspace_quick_list.json +msgctxt "Workspace Quick List" +msgid "Label" +msgstr "crwdns6102:0crwdne6102:0" + +#. Label of a Data field in DocType 'Workspace Shortcut' +#: desk/doctype/workspace_shortcut/workspace_shortcut.json +msgctxt "Workspace Shortcut" +msgid "Label" +msgstr "crwdns6104:0crwdne6104:0" + +#. Label of a HTML field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Label Help" +msgstr "crwdns6106:0crwdne6106:0" + +#. Label of a Section Break field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Label and Type" +msgstr "crwdns6108:0crwdne6108:0" + +#: custom/doctype/custom_field/custom_field.py:141 +msgid "Label is mandatory" +msgstr "crwdns6110:0crwdne6110:0" + +#. Label of a Section Break field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Landing Page" +msgstr "crwdns6112:0crwdne6112:0" + +#: public/js/frappe/form/print_utils.js:28 +msgid "Landscape" +msgstr "crwdns6114:0crwdne6114:0" + +#. Name of a DocType +#: core/doctype/language/language.json printing/page/print/print.js:104 +msgid "Language" +msgstr "crwdns6116:0crwdne6116:0" + +#. Label of a Link field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Language" +msgstr "crwdns6118:0crwdne6118:0" + +#. Label of a Link field in DocType 'Translation' +#: core/doctype/translation/translation.json +msgctxt "Translation" +msgid "Language" +msgstr "crwdns6120:0crwdne6120:0" + +#. Label of a Link field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Language" +msgstr "crwdns6122:0crwdne6122:0" + +#. Label of a Data field in DocType 'Language' +#: core/doctype/language/language.json +msgctxt "Language" +msgid "Language Code" +msgstr "crwdns6124:0crwdne6124:0" + +#. Label of a Data field in DocType 'Language' +#: core/doctype/language/language.json +msgctxt "Language" +msgid "Language Name" +msgstr "crwdns6126:0crwdne6126:0" + +#. Label of a Datetime field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Last Active" +msgstr "crwdns6128:0crwdne6128:0" + +#. Label of a Datetime field in DocType 'Google Drive' +#: integrations/doctype/google_drive/google_drive.json +msgctxt "Google Drive" +msgid "Last Backup On" +msgstr "crwdns6130:0crwdne6130:0" + +#. Label of a Datetime field in DocType 'Scheduled Job Type' +#: core/doctype/scheduled_job_type/scheduled_job_type.json +msgctxt "Scheduled Job Type" +msgid "Last Execution" +msgstr "crwdns6132:0crwdne6132:0" + +#. Label of a Datetime field in DocType 'RQ Worker' +#: core/doctype/rq_worker/rq_worker.json +msgctxt "RQ Worker" +msgid "Last Heartbeat" +msgstr "crwdns6134:0crwdne6134:0" + +#. Label of a Read Only field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Last IP" +msgstr "crwdns6136:0crwdne6136:0" + +#. Label of a Text field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Last Known Versions" +msgstr "crwdns6138:0crwdne6138:0" + +#. Label of a Read Only field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Last Login" +msgstr "crwdns6140:0crwdne6140:0" + +#: desk/doctype/dashboard_chart/dashboard_chart.js:242 +#: public/js/frappe/views/dashboard/dashboard_view.js:479 +msgid "Last Modified On" +msgstr "crwdns6142:0crwdne6142:0" + +#. Option for a Select field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "Last Month" +msgstr "crwdns6144:0crwdne6144:0" + +#: www/complete_signup.html:19 +msgid "Last Name" +msgstr "crwdns6146:0crwdne6146:0" + +#. Label of a Data field in DocType 'Contact' +#: contacts/doctype/contact/contact.json +msgctxt "Contact" +msgid "Last Name" +msgstr "crwdns6148:0crwdne6148:0" + +#. Label of a Data field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Last Name" +msgstr "crwdns6150:0crwdne6150:0" + +#. Label of a Date field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Last Password Reset Date" +msgstr "crwdns6152:0crwdne6152:0" + +#. Label of a Date field in DocType 'Energy Point Settings' +#: social/doctype/energy_point_settings/energy_point_settings.json +msgctxt "Energy Point Settings" +msgid "Last Point Allocation Date" +msgstr "crwdns6154:0crwdne6154:0" + +#. Option for a Select field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "Last Quarter" +msgstr "crwdns6156:0crwdne6156:0" + +#. Label of a Datetime field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Last Reset Password Key Generated On" +msgstr "crwdns6158:0crwdne6158:0" + +#. Label of a Datetime field in DocType 'Google Contacts' +#: integrations/doctype/google_contacts/google_contacts.json +msgctxt "Google Contacts" +msgid "Last Sync On" +msgstr "crwdns6160:0crwdne6160:0" + +#. Label of a Datetime field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "Last Synced On" +msgstr "crwdns6162:0crwdne6162:0" + +#: model/__init__.py:145 model/meta.py:49 public/js/frappe/model/meta.js:202 +#: public/js/frappe/model/model.js:120 +msgid "Last Updated By" +msgstr "crwdns6164:0crwdne6164:0" + +#: model/__init__.py:141 model/meta.py:48 public/js/frappe/model/meta.js:201 +#: public/js/frappe/model/model.js:116 +msgid "Last Updated On" +msgstr "crwdns6166:0crwdne6166:0" + +#. Label of a Link field in DocType 'Assignment Rule' +#: automation/doctype/assignment_rule/assignment_rule.json +msgctxt "Assignment Rule" +msgid "Last User" +msgstr "crwdns6168:0crwdne6168:0" + +#. Option for a Select field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "Last Week" +msgstr "crwdns6170:0crwdne6170:0" + +#. Option for a Select field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "Last Year" +msgstr "crwdns6172:0crwdne6172:0" + +#: public/js/frappe/widgets/chart_widget.js:698 +msgid "Last synced {0}" +msgstr "crwdns6174:0{0}crwdne6174:0" + +#: custom/doctype/customize_form/customize_form.js:186 +msgid "Layout Reset" +msgstr "crwdns6176:0crwdne6176:0" + +#: custom/doctype/customize_form/customize_form.js:178 +msgid "Layout will be reset to standard layout, are you sure you want to do this?" +msgstr "crwdns6178:0crwdne6178:0" + +#: desk/page/leaderboard/leaderboard.js:15 +msgid "Leaderboard" +msgstr "crwdns6180:0crwdne6180:0" + +#. Label of an action in the Onboarding Step 'Customize Print Formats' +#: custom/onboarding_step/print_format/print_format.json +msgid "Learn about Standard and Custom Print Formats" +msgstr "crwdns6182:0crwdne6182:0" + +#. Title of an Onboarding Step +#: website/onboarding_step/web_page_tour/web_page_tour.json +msgid "Learn about Web Pages" +msgstr "crwdns6184:0crwdne6184:0" + +#. Label of an action in the Onboarding Step 'Create Custom Fields' +#: custom/onboarding_step/custom_field/custom_field.json +msgid "Learn how to add Custom Fields" +msgstr "crwdns6186:0crwdne6186:0" + +#: website/web_template/section_with_features/section_with_features.html:26 +msgid "Learn more" +msgstr "crwdns6188:0crwdne6188:0" + +#. Label of an action in the Onboarding Step 'Generate Custom Reports' +#: custom/onboarding_step/report_builder/report_builder.json +msgid "Learn more about Report Builders" +msgstr "crwdns6190:0crwdne6190:0" + +#. Label of an action in the Onboarding Step 'Custom Document Types' +#: custom/onboarding_step/custom_doctype/custom_doctype.json +msgid "Learn more about creating new DocTypes" +msgstr "crwdns6192:0crwdne6192:0" + +#. Description of a Date field in DocType 'Event' +#: desk/doctype/event/event.json +msgctxt "Event" +msgid "Leave blank to repeat always" +msgstr "crwdns6194:0crwdne6194:0" + +#: core/doctype/communication/mixins.py:206 +#: email/doctype/email_account/email_account.py:624 +msgid "Leave this conversation" +msgstr "crwdns6196:0crwdne6196:0" + +#. Option for a Select field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "Ledger" +msgstr "crwdns6198:0crwdne6198:0" + +#. Option for a Select field in DocType 'Form Tour Step' +#: desk/doctype/form_tour_step/form_tour_step.json +msgctxt "Form Tour Step" +msgid "Left" +msgstr "crwdns6200:0crwdne6200:0" + +#. Option for a Select field in DocType 'Letter Head' +#: printing/doctype/letter_head/letter_head.json +msgctxt "Letter Head" +msgid "Left" +msgstr "crwdns6202:0crwdne6202:0" + +#. Option for a Select field in DocType 'Web Page' +#: website/doctype/web_page/web_page.json +msgctxt "Web Page" +msgid "Left" +msgstr "crwdns6204:0crwdne6204:0" + +#: printing/page/print_format_builder/print_format_builder.js:483 +msgctxt "alignment" +msgid "Left" +msgstr "crwdns6206:0crwdne6206:0" + +#. Option for a Select field in DocType 'Form Tour Step' +#: desk/doctype/form_tour_step/form_tour_step.json +msgctxt "Form Tour Step" +msgid "Left Bottom" +msgstr "crwdns6208:0crwdne6208:0" + +#. Option for a Select field in DocType 'Form Tour Step' +#: desk/doctype/form_tour_step/form_tour_step.json +msgctxt "Form Tour Step" +msgid "Left Center" +msgstr "crwdns6210:0crwdne6210:0" + +#: email/doctype/email_unsubscribe/email_unsubscribe.py:59 +msgid "Left this conversation" +msgstr "crwdns6212:0crwdne6212:0" + +#. Option for a Select field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "Legal" +msgstr "crwdns6214:0crwdne6214:0" + +#. Label of a Int field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Length" +msgstr "crwdns6216:0crwdne6216:0" + +#. Label of a Int field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Length" +msgstr "crwdns6218:0crwdne6218:0" + +#. Label of a Int field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Length" +msgstr "crwdns6220:0crwdne6220:0" + +#: public/js/frappe/ui/chart.js:11 +msgid "Length of passed data array is greater than value of maximum allowed label points!" +msgstr "crwdns6222:0crwdne6222:0" + +#: database/schema.py:133 +msgid "Length of {0} should be between 1 and 1000" +msgstr "crwdns6224:0{0}crwdne6224:0" + +#: public/js/frappe/widgets/onboarding_widget.js:439 +msgid "Let us continue with the onboarding" +msgstr "crwdns6226:0crwdne6226:0" + +#: public/js/frappe/views/workspace/blocks/onboarding.js:94 +#: public/js/frappe/widgets/onboarding_widget.js:602 +msgid "Let's Get Started" +msgstr "crwdns6228:0crwdne6228:0" + +#. Title of the Module Onboarding 'Website' +#: website/module_onboarding/website/website.json +msgid "Let's Set Up Your Website." +msgstr "crwdns6230:0crwdne6230:0" + +#: utils/password_strength.py:113 +msgid "Let's avoid repeated words and characters" +msgstr "crwdns6232:0crwdne6232:0" + +#: desk/page/setup_wizard/setup_wizard.js:459 +msgid "Let's set up your account" +msgstr "crwdns6234:0crwdne6234:0" + +#: public/js/frappe/widgets/onboarding_widget.js:268 +#: public/js/frappe/widgets/onboarding_widget.js:309 +#: public/js/frappe/widgets/onboarding_widget.js:380 +#: public/js/frappe/widgets/onboarding_widget.js:419 +msgid "Let's take you back to onboarding" +msgstr "crwdns6236:0crwdne6236:0" + +#. Option for a Select field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "Letter" +msgstr "crwdns6238:0crwdne6238:0" + +#. Name of a DocType +#: printing/doctype/letter_head/letter_head.json +#: printing/page/print/print.js:127 public/js/frappe/form/print_utils.js:18 +#: public/js/frappe/list/bulk_operations.js:43 +msgid "Letter Head" +msgstr "crwdns6240:0crwdne6240:0" + +#. Label of a Link field in DocType 'Report' +#: core/doctype/report/report.json +msgctxt "Report" +msgid "Letter Head" +msgstr "crwdns6242:0crwdne6242:0" + +#. Label of a Select field in DocType 'Letter Head' +#: printing/doctype/letter_head/letter_head.json +msgctxt "Letter Head" +msgid "Letter Head Based On" +msgstr "crwdns6244:0crwdne6244:0" + +#. Label of a Section Break field in DocType 'Letter Head' +#: printing/doctype/letter_head/letter_head.json +msgctxt "Letter Head" +msgid "Letter Head Image" +msgstr "crwdns6246:0crwdne6246:0" + +#. Label of a Data field in DocType 'Letter Head' +#: printing/doctype/letter_head/letter_head.json +msgctxt "Letter Head" +msgid "Letter Head Name" +msgstr "crwdns6248:0crwdne6248:0" + +#: printing/doctype/letter_head/letter_head.py:45 +msgid "Letter Head cannot be both disabled and default" +msgstr "crwdns6250:0crwdne6250:0" + +#. Description of a HTML Editor field in DocType 'Letter Head' +#: printing/doctype/letter_head/letter_head.json +msgctxt "Letter Head" +msgid "Letter Head in HTML" +msgstr "crwdns6252:0crwdne6252:0" + +#: core/page/permission_manager/permission_manager.js:213 +msgid "Level" +msgstr "crwdns6254:0crwdne6254:0" + +#. Label of a Int field in DocType 'Custom DocPerm' +#: core/doctype/custom_docperm/custom_docperm.json +msgctxt "Custom DocPerm" +msgid "Level" +msgstr "crwdns6256:0crwdne6256:0" + +#. Label of a Int field in DocType 'DocPerm' +#: core/doctype/docperm/docperm.json +msgctxt "DocPerm" +msgid "Level" +msgstr "crwdns6258:0crwdne6258:0" + +#. Label of a Select field in DocType 'Help Article' +#: website/doctype/help_article/help_article.json +msgctxt "Help Article" +msgid "Level" +msgstr "crwdns6260:0crwdne6260:0" + +#: core/page/permission_manager/permission_manager.js:450 +msgid "Level 0 is for document level permissions, higher levels for field level permissions." +msgstr "crwdns6262:0crwdne6262:0" + +#. Label of a Data field in DocType 'Review Level' +#: social/doctype/review_level/review_level.json +msgctxt "Review Level" +msgid "Level Name" +msgstr "crwdns6264:0crwdne6264:0" + +#. Label of a Markdown Editor field in DocType 'Package' +#: core/doctype/package/package.json +msgctxt "Package" +msgid "License" +msgstr "crwdns6266:0crwdne6266:0" + +#. Label of a Select field in DocType 'Package' +#: core/doctype/package/package.json +msgctxt "Package" +msgid "License Type" +msgstr "crwdns6268:0crwdne6268:0" + +#. Option for a Select field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Light" +msgstr "crwdns6270:0crwdne6270:0" + +#. Option for a Select field in DocType 'DocType State' +#: core/doctype/doctype_state/doctype_state.json +msgctxt "DocType State" +msgid "Light Blue" +msgstr "crwdns6272:0crwdne6272:0" + +#. Option for a Select field in DocType 'Kanban Board Column' +#: desk/doctype/kanban_board_column/kanban_board_column.json +msgctxt "Kanban Board Column" +msgid "Light Blue" +msgstr "crwdns6274:0crwdne6274:0" + +#. Label of a Link field in DocType 'Website Theme' +#: website/doctype/website_theme/website_theme.json +msgctxt "Website Theme" +msgid "Light Color" +msgstr "crwdns6276:0crwdne6276:0" + +#: public/js/frappe/ui/theme_switcher.js:60 +msgid "Light Theme" +msgstr "crwdns6278:0crwdne6278:0" + +#: public/js/frappe/ui/filters/filter.js:18 +msgid "Like" +msgstr "crwdns6280:0crwdne6280:0" + +#. Option for a Select field in DocType 'Comment' +#: core/doctype/comment/comment.json +msgctxt "Comment" +msgid "Like" +msgstr "crwdns6282:0crwdne6282:0" + +#. Option for a Select field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Like" +msgstr "crwdns6284:0crwdne6284:0" + +#. Label of a Int field in DocType 'Blog Settings' +#: website/doctype/blog_settings/blog_settings.json +msgctxt "Blog Settings" +msgid "Like limit" +msgstr "crwdns6286:0crwdne6286:0" + +#. Description of a Int field in DocType 'Blog Settings' +#: website/doctype/blog_settings/blog_settings.json +msgctxt "Blog Settings" +msgid "Like limit per hour" +msgstr "crwdns6288:0crwdne6288:0" + +#: templates/includes/likes/likes.py:30 +msgid "Like on {0}: {1}" +msgstr "crwdns6290:0{0}crwdnd6290:0{1}crwdne6290:0" + +#: desk/like.py:91 +msgid "Liked" +msgstr "crwdns6292:0crwdne6292:0" + +#: model/__init__.py:149 model/meta.py:52 public/js/frappe/model/meta.js:205 +#: public/js/frappe/model/model.js:124 +msgid "Liked By" +msgstr "crwdns6294:0crwdne6294:0" + +#. Label of a Int field in DocType 'Help Article' +#: website/doctype/help_article/help_article.json +msgctxt "Help Article" +msgid "Likes" +msgstr "crwdns6296:0crwdne6296:0" + +#. Label of a Int field in DocType 'Bulk Update' +#: desk/doctype/bulk_update/bulk_update.json +msgctxt "Bulk Update" +msgid "Limit" +msgstr "crwdns6298:0crwdne6298:0" + +#. Label of a Check field in DocType 'Dropbox Settings' +#: integrations/doctype/dropbox_settings/dropbox_settings.json +msgctxt "Dropbox Settings" +msgid "Limit Number of DB Backups" +msgstr "crwdns6300:0crwdne6300:0" + +#. Option for a Select field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "Line" +msgstr "crwdns6302:0crwdne6302:0" + +#. Option for a Select field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Link" +msgstr "crwdns6304:0crwdne6304:0" + +#. Option for a Select field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Link" +msgstr "crwdns6306:0crwdne6306:0" + +#. Label of a Small Text field in DocType 'Desktop Icon' +#: desk/doctype/desktop_icon/desktop_icon.json +msgctxt "Desktop Icon" +msgid "Link" +msgstr "crwdns6308:0crwdne6308:0" + +#. Option for a Select field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Link" +msgstr "crwdns6310:0crwdne6310:0" + +#. Label of a Data field in DocType 'Notification Log' +#: desk/doctype/notification_log/notification_log.json +msgctxt "Notification Log" +msgid "Link" +msgstr "crwdns6312:0crwdne6312:0" + +#. Option for a Select field in DocType 'Report Column' +#: core/doctype/report_column/report_column.json +msgctxt "Report Column" +msgid "Link" +msgstr "crwdns6314:0crwdne6314:0" + +#. Option for a Select field in DocType 'Report Filter' +#: core/doctype/report_filter/report_filter.json +msgctxt "Report Filter" +msgid "Link" +msgstr "crwdns6316:0crwdne6316:0" + +#. Option for a Select field in DocType 'Web Form Field' +#: website/doctype/web_form_field/web_form_field.json +msgctxt "Web Form Field" +msgid "Link" +msgstr "crwdns6318:0crwdne6318:0" + +#. Option for a Select field in DocType 'Web Template Field' +#: website/doctype/web_template_field/web_template_field.json +msgctxt "Web Template Field" +msgid "Link" +msgstr "crwdns6320:0crwdne6320:0" + +#. Option for a Select field in DocType 'Workspace Link' +#: desk/doctype/workspace_link/workspace_link.json +msgctxt "Workspace Link" +msgid "Link" +msgstr "crwdns6322:0crwdne6322:0" + +#. Label of a Tab Break field in DocType 'Workspace' +#: desk/doctype/workspace/workspace.json +msgctxt "Workspace" +msgid "Link Cards" +msgstr "crwdns6324:0crwdne6324:0" + +#. Label of a Int field in DocType 'Workspace Link' +#: desk/doctype/workspace_link/workspace_link.json +msgctxt "Workspace Link" +msgid "Link Count" +msgstr "crwdns6326:0crwdne6326:0" + +#. Label of a Section Break field in DocType 'Workspace Link' +#: desk/doctype/workspace_link/workspace_link.json +msgctxt "Workspace Link" +msgid "Link Details" +msgstr "crwdns6328:0crwdne6328:0" + +#. Label of a Link field in DocType 'Activity Log' +#: core/doctype/activity_log/activity_log.json +msgctxt "Activity Log" +msgid "Link DocType" +msgstr "crwdns6330:0crwdne6330:0" + +#. Label of a Link field in DocType 'Communication Link' +#: core/doctype/communication_link/communication_link.json +msgctxt "Communication Link" +msgid "Link DocType" +msgstr "crwdns6332:0crwdne6332:0" + +#. Label of a Link field in DocType 'DocType Link' +#: core/doctype/doctype_link/doctype_link.json +msgctxt "DocType Link" +msgid "Link DocType" +msgstr "crwdns6334:0crwdne6334:0" + +#. Label of a Link field in DocType 'Dynamic Link' +#: core/doctype/dynamic_link/dynamic_link.json +msgctxt "Dynamic Link" +msgid "Link Document Type" +msgstr "crwdns6336:0crwdne6336:0" + +#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:403 +#: workflow/doctype/workflow_action/workflow_action.py:202 +msgid "Link Expired" +msgstr "crwdns6338:0crwdne6338:0" + +#. Label of a Data field in DocType 'DocType Link' +#: core/doctype/doctype_link/doctype_link.json +msgctxt "DocType Link" +msgid "Link Fieldname" +msgstr "crwdns6340:0crwdne6340:0" + +#. Label of a JSON field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Link Filters" +msgstr "crwdns6342:0crwdne6342:0" + +#. Label of a JSON field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Link Filters" +msgstr "crwdns6344:0crwdne6344:0" + +#. Label of a JSON field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Link Filters" +msgstr "crwdns6346:0crwdne6346:0" + +#. Label of a JSON field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Link Filters" +msgstr "crwdns6348:0crwdne6348:0" + +#. Label of a Dynamic Link field in DocType 'Activity Log' +#: core/doctype/activity_log/activity_log.json +msgctxt "Activity Log" +msgid "Link Name" +msgstr "crwdns6350:0crwdne6350:0" + +#. Label of a Dynamic Link field in DocType 'Communication Link' +#: core/doctype/communication_link/communication_link.json +msgctxt "Communication Link" +msgid "Link Name" +msgstr "crwdns6352:0crwdne6352:0" + +#. Label of a Dynamic Link field in DocType 'Dynamic Link' +#: core/doctype/dynamic_link/dynamic_link.json +msgctxt "Dynamic Link" +msgid "Link Name" +msgstr "crwdns6354:0crwdne6354:0" + +#. Label of a Read Only field in DocType 'Communication Link' +#: core/doctype/communication_link/communication_link.json +msgctxt "Communication Link" +msgid "Link Title" +msgstr "crwdns6356:0crwdne6356:0" + +#. Label of a Read Only field in DocType 'Dynamic Link' +#: core/doctype/dynamic_link/dynamic_link.json +msgctxt "Dynamic Link" +msgid "Link Title" +msgstr "crwdns6358:0crwdne6358:0" + +#. Label of a Dynamic Link field in DocType 'Workspace Link' +#: desk/doctype/workspace_link/workspace_link.json +msgctxt "Workspace Link" +msgid "Link To" +msgstr "crwdns6360:0crwdne6360:0" + +#. Label of a Dynamic Link field in DocType 'Workspace Shortcut' +#: desk/doctype/workspace_shortcut/workspace_shortcut.json +msgctxt "Workspace Shortcut" +msgid "Link To" +msgstr "crwdns6362:0crwdne6362:0" + +#. Label of a Select field in DocType 'Workspace Link' +#: desk/doctype/workspace_link/workspace_link.json +msgctxt "Workspace Link" +msgid "Link Type" +msgstr "crwdns6364:0crwdne6364:0" + +#: website/doctype/about_us_settings/about_us_settings.js:6 +msgid "Link for About Us Page is \"/about\"." +msgstr "crwdns6366:0crwdne6366:0" + +#. Description of a Data field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Link that is the website home page. Standard Links (home, login, products, blog, about, contact)" +msgstr "crwdns6368:0crwdne6368:0" + +#. Description of a Data field in DocType 'Top Bar Item' +#: website/doctype/top_bar_item/top_bar_item.json +msgctxt "Top Bar Item" +msgid "Link to the page you want to open. Leave blank if you want to make it a group parent." +msgstr "crwdns6370:0crwdne6370:0" + +#. Option for a Select field in DocType 'Activity Log' +#: core/doctype/activity_log/activity_log.json +msgctxt "Activity Log" +msgid "Linked" +msgstr "crwdns6372:0crwdne6372:0" + +#. Option for a Select field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Linked" +msgstr "crwdns6374:0crwdne6374:0" + +#. Label of a Section Break field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Linked Documents" +msgstr "crwdns6376:0crwdne6376:0" + +#: public/js/frappe/form/linked_with.js:23 +msgid "Linked With" +msgstr "crwdns6378:0crwdne6378:0" + +#: contacts/doctype/address/address.js:39 +#: contacts/doctype/contact/contact.js:82 public/js/frappe/form/toolbar.js:366 +msgid "Links" +msgstr "crwdns6380:0crwdne6380:0" + +#. Label of a Table field in DocType 'Address' +#: contacts/doctype/address/address.json +msgctxt "Address" +msgid "Links" +msgstr "crwdns6382:0crwdne6382:0" + +#. Label of a Table field in DocType 'Contact' +#: contacts/doctype/contact/contact.json +msgctxt "Contact" +msgid "Links" +msgstr "crwdns6384:0crwdne6384:0" + +#. Label of a Table field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Links" +msgstr "crwdns6386:0crwdne6386:0" + +#. Label of a Table field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Links" +msgstr "crwdns6388:0crwdne6388:0" + +#. Label of a Table field in DocType 'Workspace' +#: desk/doctype/workspace/workspace.json +msgctxt "Workspace" +msgid "Links" +msgstr "crwdns6390:0crwdne6390:0" + +#. Option for a Select field in DocType 'Client Script' +#: custom/doctype/client_script/client_script.json +msgctxt "Client Script" +msgid "List" +msgstr "crwdns6392:0crwdne6392:0" + +#. Option for a Select field in DocType 'Form Tour' +#: desk/doctype/form_tour/form_tour.json +msgctxt "Form Tour" +msgid "List" +msgstr "crwdns6394:0crwdne6394:0" + +#. Option for a Select field in DocType 'Workspace Shortcut' +#: desk/doctype/workspace_shortcut/workspace_shortcut.json +msgctxt "Workspace Shortcut" +msgid "List" +msgstr "crwdns6396:0crwdne6396:0" + +#. Label of a Section Break field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "List / Search Settings" +msgstr "crwdns6398:0crwdne6398:0" + +#. Label of a Table field in DocType 'Web Form' +#: website/doctype/web_form/web_form.json +msgctxt "Web Form" +msgid "List Columns" +msgstr "crwdns6400:0crwdne6400:0" + +#. Name of a DocType +#: desk/doctype/list_filter/list_filter.json +msgid "List Filter" +msgstr "crwdns6402:0crwdne6402:0" + +#. Label of a HTML field in DocType 'Web Form' +#: website/doctype/web_form/web_form.json +msgctxt "Web Form" +msgid "List Setting Message" +msgstr "crwdns6404:0crwdne6404:0" + +#: public/js/frappe/list/list_view.js:1708 +msgctxt "Button in list view menu" +msgid "List Settings" +msgstr "crwdns6406:0crwdne6406:0" + +#. Label of a Section Break field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "List Settings" +msgstr "crwdns6408:0crwdne6408:0" + +#. Label of a Section Break field in DocType 'Role' +#: core/doctype/role/role.json +msgctxt "Role" +msgid "List Settings" +msgstr "crwdns6410:0crwdne6410:0" + +#. Label of a Section Break field in DocType 'Web Form' +#: website/doctype/web_form/web_form.json +msgctxt "Web Form" +msgid "List Settings" +msgstr "crwdns6412:0crwdne6412:0" + +#. Name of a DocType +#: desk/doctype/list_view_settings/list_view_settings.json +msgid "List View Settings" +msgstr "crwdns6414:0crwdne6414:0" + +#: public/js/frappe/ui/toolbar/awesome_bar.js:161 +msgid "List a document type" +msgstr "crwdns6416:0crwdne6416:0" + +#. Description of a Code field in DocType 'Web Form' +#: website/doctype/web_form/web_form.json +msgctxt "Web Form" +msgid "List as [{\"label\": _(\"Jobs\"), \"route\":\"jobs\"}]" +msgstr "crwdns6418:0crwdne6418:0" + +#. Description of a Code field in DocType 'Web Page' +#: website/doctype/web_page/web_page.json +msgctxt "Web Page" +msgid "List as [{\"label\": _(\"Jobs\"), \"route\":\"jobs\"}]" +msgstr "crwdns6420:0crwdne6420:0" + +#: public/js/frappe/ui/toolbar/search_utils.js:526 +msgid "Lists" +msgstr "crwdns6422:0crwdne6422:0" + +#. Option for a Select field in DocType 'Assignment Rule' +#: automation/doctype/assignment_rule/assignment_rule.json +msgctxt "Assignment Rule" +msgid "Load Balancing" +msgstr "crwdns6424:0crwdne6424:0" + +#: website/doctype/blog_post/templates/blog_post_list.html:50 +msgid "Load More" +msgstr "crwdns6426:0crwdne6426:0" + +#: public/js/frappe/form/footer/form_timeline.js:214 +msgctxt "Form timeline" +msgid "Load More Communications" +msgstr "crwdns6428:0crwdne6428:0" + +#: core/page/permission_manager/permission_manager.js:165 +#: public/js/frappe/list/base_list.js:465 +msgid "Loading" +msgstr "crwdns6430:0crwdne6430:0" + +#: core/doctype/data_import/data_import.js:262 +msgid "Loading import file..." +msgstr "crwdns6432:0crwdne6432:0" + +#: desk/page/user_profile/user_profile_controller.js:20 +msgid "Loading user profile" +msgstr "crwdns6434:0crwdne6434:0" + +#: public/js/frappe/form/sidebar/share.js:51 +msgid "Loading..." +msgstr "crwdns6436:0crwdne6436:0" + +#. Label of a Data field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Location" +msgstr "crwdns6438:0crwdne6438:0" + +#. Label of a Code field in DocType 'Package Import' +#: core/doctype/package_import/package_import.json +msgctxt "Package Import" +msgid "Log" +msgstr "crwdns6440:0crwdne6440:0" + +#. Label of a Section Break field in DocType 'Access Log' +#: core/doctype/access_log/access_log.json +msgctxt "Access Log" +msgid "Log Data" +msgstr "crwdns6442:0crwdne6442:0" + +#. Label of a Link field in DocType 'Logs To Clear' +#: core/doctype/logs_to_clear/logs_to_clear.json +msgctxt "Logs To Clear" +msgid "Log DocType" +msgstr "crwdns6444:0crwdne6444:0" + +#: templates/emails/login_with_email_link.html:28 +msgid "Log In To {0}" +msgstr "crwdns6446:0{0}crwdne6446:0" + +#. Label of a Int field in DocType 'Data Import Log' +#: core/doctype/data_import_log/data_import_log.json +msgctxt "Data Import Log" +msgid "Log Index" +msgstr "crwdns6448:0crwdne6448:0" + +#. Name of a DocType +#: core/doctype/log_setting_user/log_setting_user.json +msgid "Log Setting User" +msgstr "crwdns6450:0crwdne6450:0" + +#. Name of a DocType +#: core/doctype/log_settings/log_settings.json +msgid "Log Settings" +msgstr "crwdns6452:0crwdne6452:0" + +#: www/app.py:21 +msgid "Log in to access this page." +msgstr "crwdns6454:0crwdne6454:0" + +#. Label of a standard navbar item +#. Type: Action +#: hooks.py website/doctype/website_settings/website_settings.py:182 +msgid "Log out" +msgstr "crwdns6456:0crwdne6456:0" + +#: handler.py:123 +msgid "Logged Out" +msgstr "crwdns6458:0crwdne6458:0" + +#: public/js/frappe/web_form/webform_script.js:16 +#: templates/discussions/discussions_section.html:60 +#: templates/discussions/reply_section.html:43 +#: templates/includes/navbar/dropdown_login.html:15 +#: templates/includes/navbar/navbar_login.html:24 +#: website/page_renderers/not_permitted_page.py:22 www/login.html:42 +msgid "Login" +msgstr "crwdns6460:0crwdne6460:0" + +#. Option for a Select field in DocType 'Activity Log' +#: core/doctype/activity_log/activity_log.json +msgctxt "Activity Log" +msgid "Login" +msgstr "crwdns6462:0crwdne6462:0" + +#. Label of a Tab Break field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Login" +msgstr "crwdns6464:0crwdne6464:0" + +#. Label of a Int field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Login After" +msgstr "crwdns6466:0crwdne6466:0" + +#. Label of a Int field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Login Before" +msgstr "crwdns6468:0crwdne6468:0" + +#: public/js/frappe/desk.js:235 +msgid "Login Failed please try again" +msgstr "crwdns6470:0crwdne6470:0" + +#: email/doctype/email_account/email_account.py:134 +msgid "Login Id is required" +msgstr "crwdns6472:0crwdne6472:0" + +#. Label of a Section Break field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Login Methods" +msgstr "crwdns6474:0crwdne6474:0" + +#. Label of a Section Break field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Login Page" +msgstr "crwdns6476:0crwdne6476:0" + +#. Label of a Check field in DocType 'Web Form' +#: website/doctype/web_form/web_form.json +msgctxt "Web Form" +msgid "Login Required" +msgstr "crwdns6478:0crwdne6478:0" + +#: www/login.py:137 +msgid "Login To {0}" +msgstr "crwdns6480:0{0}crwdne6480:0" + +#: twofactor.py:265 +msgid "Login Verification Code from {}" +msgstr "crwdns6482:0crwdne6482:0" + +#: www/login.html:97 +msgid "Login With {0}" +msgstr "crwdns6484:0{0}crwdne6484:0" + +#: templates/emails/new_message.html:4 +msgid "Login and view in Browser" +msgstr "crwdns6486:0crwdne6486:0" + +#: website/doctype/web_form/web_form.js:358 +msgid "Login is required to see web form list view. Enable {0} to see list settings" +msgstr "crwdns6488:0{0}crwdne6488:0" + +#: auth.py:322 auth.py:325 +msgid "Login not allowed at this time" +msgstr "crwdns6490:0crwdne6490:0" + +#: twofactor.py:165 +msgid "Login session expired, refresh page to retry" +msgstr "crwdns6492:0crwdne6492:0" + +#: templates/includes/comments/comments.html:110 +msgid "Login to comment" +msgstr "crwdns6494:0crwdne6494:0" + +#: templates/includes/comments/comments.html:6 +msgid "Login to start a new discussion" +msgstr "crwdns6496:0crwdne6496:0" + +#: www/login.html:61 +msgid "Login to {0}" +msgstr "crwdns6498:0{0}crwdne6498:0" + +#: www/login.html:106 +msgid "Login with Email Link" +msgstr "crwdns6500:0crwdne6500:0" + +#: www/login.html:46 +msgid "Login with LDAP" +msgstr "crwdns6502:0crwdne6502:0" + +#. Label of a Check field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Login with email link" +msgstr "crwdns6504:0crwdne6504:0" + +#. Label of a Int field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Login with email link expiry (in minutes)" +msgstr "crwdns6506:0crwdne6506:0" + +#: auth.py:131 +msgid "Login with username and password is not allowed." +msgstr "crwdns6508:0crwdne6508:0" + +#. Label of a Int field in DocType 'Navbar Settings' +#: core/doctype/navbar_settings/navbar_settings.json +msgctxt "Navbar Settings" +msgid "Logo Width" +msgstr "crwdns6510:0crwdne6510:0" + +#. Option for a Select field in DocType 'Activity Log' +#: core/doctype/activity_log/activity_log.json +msgctxt "Activity Log" +msgid "Logout" +msgstr "crwdns6512:0crwdne6512:0" + +#: core/doctype/user/user.js:179 +msgid "Logout All Sessions" +msgstr "crwdns6514:0crwdne6514:0" + +#. Label of a Check field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Logout All Sessions on Password Reset" +msgstr "crwdns6516:0crwdne6516:0" + +#. Label of a Check field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Logout From All Devices After Changing Password" +msgstr "crwdns6518:0crwdne6518:0" + +#. Label of a Card Break in the Users Workspace +#: core/workspace/users/users.json +msgid "Logs" +msgstr "crwdns6520:0crwdne6520:0" + +#. Group in User's connections +#: core/doctype/user/user.json +msgctxt "User" +msgid "Logs" +msgstr "crwdns6522:0crwdne6522:0" + +#. Name of a DocType +#: core/doctype/logs_to_clear/logs_to_clear.json +msgid "Logs To Clear" +msgstr "crwdns6524:0crwdne6524:0" + +#. Label of a Table field in DocType 'Log Settings' +#: core/doctype/log_settings/log_settings.json +msgctxt "Log Settings" +msgid "Logs to Clear" +msgstr "crwdns6526:0crwdne6526:0" + +#. Option for a Select field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Long Text" +msgstr "crwdns6528:0crwdne6528:0" + +#. Option for a Select field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Long Text" +msgstr "crwdns6530:0crwdne6530:0" + +#. Option for a Select field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Long Text" +msgstr "crwdns6532:0crwdne6532:0" + +#: public/js/frappe/widgets/onboarding_widget.js:322 +msgid "Looks like you didn't change the value" +msgstr "crwdns6534:0crwdne6534:0" + +#: www/third_party_apps.html:57 +msgid "Looks like you haven’t added any third party apps." +msgstr "crwdns6536:0crwdne6536:0" + +#: public/js/frappe/form/sidebar/assign_to.js:190 +msgid "Low" +msgstr "crwdns6538:0crwdne6538:0" + +#. Option for a Select field in DocType 'ToDo' +#: desk/doctype/todo/todo.json +msgctxt "ToDo" +msgid "Low" +msgstr "crwdns6540:0crwdne6540:0" + +#: public/js/frappe/utils/number_systems.js:13 +msgctxt "Number system" +msgid "M" +msgstr "crwdns6542:0crwdne6542:0" + +#. Option for a Select field in DocType 'Package' +#: core/doctype/package/package.json +msgctxt "Package" +msgid "MIT License" +msgstr "crwdns6544:0crwdne6544:0" + +#. Label of a Text Editor field in DocType 'Web Page' +#: website/doctype/web_page/web_page.json +msgctxt "Web Page" +msgid "Main Section" +msgstr "crwdns6546:0crwdne6546:0" + +#. Label of a HTML Editor field in DocType 'Web Page' +#: website/doctype/web_page/web_page.json +msgctxt "Web Page" +msgid "Main Section (HTML)" +msgstr "crwdns6548:0crwdne6548:0" + +#. Label of a Markdown Editor field in DocType 'Web Page' +#: website/doctype/web_page/web_page.json +msgctxt "Web Page" +msgid "Main Section (Markdown)" +msgstr "crwdns6550:0crwdne6550:0" + +#. Name of a role +#: contacts/doctype/contact/contact.json +msgid "Maintenance Manager" +msgstr "crwdns6552:0crwdne6552:0" + +#. Name of a role +#: contacts/doctype/address/address.json contacts/doctype/contact/contact.json +msgid "Maintenance User" +msgstr "crwdns6554:0crwdne6554:0" + +#. Label of a Int field in DocType 'Package Release' +#: core/doctype/package_release/package_release.json +msgctxt "Package Release" +msgid "Major" +msgstr "crwdns6556:0crwdne6556:0" + +#. Label of a Check field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Make \"name\" searchable in Global Search" +msgstr "crwdns6558:0crwdne6558:0" + +#. Label of a Check field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Make Attachments Public by Default" +msgstr "crwdns6560:0crwdne6560:0" + +#. Label of a Check field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Make Attachments Public by Default" +msgstr "crwdns6562:0crwdne6562:0" + +#. Description of a Check field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Make sure to configure a Social Login Key before disabling to prevent lockout" +msgstr "crwdns6564:0crwdne6564:0" + +#: utils/password_strength.py:94 +msgid "Make use of longer keyboard patterns" +msgstr "crwdns6566:0crwdne6566:0" + +#: public/js/frappe/form/multi_select_dialog.js:86 +msgid "Make {0}" +msgstr "crwdns6568:0{0}crwdne6568:0" + +#: website/doctype/web_page/web_page.js:77 +msgid "Makes the page public" +msgstr "crwdns6570:0crwdne6570:0" + +#: www/me.html:50 +msgid "Manage third party apps" +msgstr "crwdns6572:0crwdne6572:0" + +#: www/me.html:59 +msgid "Manage your apps" +msgstr "crwdns6574:0crwdne6574:0" + +#. Label of a Check field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Mandatory" +msgstr "crwdns6576:0crwdne6576:0" + +#. Label of a Check field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Mandatory" +msgstr "crwdns6578:0crwdne6578:0" + +#. Label of a Check field in DocType 'Report Filter' +#: core/doctype/report_filter/report_filter.json +msgctxt "Report Filter" +msgid "Mandatory" +msgstr "crwdns6580:0crwdne6580:0" + +#. Label of a Check field in DocType 'Web Form Field' +#: website/doctype/web_form_field/web_form_field.json +msgctxt "Web Form Field" +msgid "Mandatory" +msgstr "crwdns6582:0crwdne6582:0" + +#. Label of a Check field in DocType 'Web Template Field' +#: website/doctype/web_template_field/web_template_field.json +msgctxt "Web Template Field" +msgid "Mandatory" +msgstr "crwdns6584:0crwdne6584:0" + +#. Label of a Code field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Mandatory Depends On" +msgstr "crwdns6586:0crwdne6586:0" + +#. Label of a Code field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Mandatory Depends On" +msgstr "crwdns6588:0crwdne6588:0" + +#. Label of a Code field in DocType 'Web Form Field' +#: website/doctype/web_form_field/web_form_field.json +msgctxt "Web Form Field" +msgid "Mandatory Depends On" +msgstr "crwdns6590:0crwdne6590:0" + +#. Label of a Code field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Mandatory Depends On (JS)" +msgstr "crwdns6592:0crwdne6592:0" + +#: website/doctype/web_form/web_form.py:412 +msgid "Mandatory Information missing:" +msgstr "crwdns6594:0crwdne6594:0" + +#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:120 +msgid "Mandatory field: set role for" +msgstr "crwdns6596:0crwdne6596:0" + +#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:124 +msgid "Mandatory field: {0}" +msgstr "crwdns6598:0{0}crwdne6598:0" + +#: public/js/frappe/form/save.js:167 +msgid "Mandatory fields required in table {0}, Row {1}" +msgstr "crwdns6600:0{0}crwdnd6600:0{1}crwdne6600:0" + +#: public/js/frappe/form/save.js:172 +msgid "Mandatory fields required in {0}" +msgstr "crwdns6602:0{0}crwdne6602:0" + +#: public/js/frappe/web_form/web_form.js:234 +msgctxt "Error message in web form" +msgid "Mandatory fields required:" +msgstr "crwdns6604:0crwdne6604:0" + +#: core/doctype/data_export/exporter.py:142 +msgid "Mandatory:" +msgstr "crwdns6606:0crwdne6606:0" + +#. Option for a Select field in DocType 'Form Tour' +#: desk/doctype/form_tour/form_tour.json +msgctxt "Form Tour" +msgid "Map" +msgstr "crwdns6608:0crwdne6608:0" + +#: public/js/frappe/data_import/import_preview.js:190 +#: public/js/frappe/data_import/import_preview.js:302 +msgid "Map Columns" +msgstr "crwdns6610:0crwdne6610:0" + +#. Description of a Check field in DocType 'Web Page' +#: website/doctype/web_page/web_page.json +msgctxt "Web Page" +msgid "Map route parameters into form variables. Example /project/<name>" +msgstr "crwdns6612:0crwdne6612:0" + +#: core/doctype/data_import/importer.py:877 +msgid "Mapping column {0} to field {1}" +msgstr "crwdns6614:0{0}crwdnd6614:0{1}crwdne6614:0" + +#. Label of a Float field in DocType 'Print Format' +#: printing/doctype/print_format/print_format.json +msgctxt "Print Format" +msgid "Margin Bottom" +msgstr "crwdns6616:0crwdne6616:0" + +#. Label of a Float field in DocType 'Print Format' +#: printing/doctype/print_format/print_format.json +msgctxt "Print Format" +msgid "Margin Left" +msgstr "crwdns6618:0crwdne6618:0" + +#. Label of a Float field in DocType 'Print Format' +#: printing/doctype/print_format/print_format.json +msgctxt "Print Format" +msgid "Margin Right" +msgstr "crwdns6620:0crwdne6620:0" + +#. Label of a Float field in DocType 'Print Format' +#: printing/doctype/print_format/print_format.json +msgctxt "Print Format" +msgid "Margin Top" +msgstr "crwdns6622:0crwdne6622:0" + +#: public/js/frappe/ui/notifications/notifications.js:44 +msgid "Mark all as read" +msgstr "crwdns6624:0crwdne6624:0" + +#: core/doctype/communication/communication.js:78 +#: core/doctype/communication/communication_list.js:21 +msgid "Mark as Read" +msgstr "crwdns6626:0crwdne6626:0" + +#: core/doctype/communication/communication.js:95 +msgid "Mark as Spam" +msgstr "crwdns6628:0crwdne6628:0" + +#: core/doctype/communication/communication.js:78 +#: core/doctype/communication/communication_list.js:24 +msgid "Mark as Unread" +msgstr "crwdns6630:0crwdne6630:0" + +#. Option for a Select field in DocType 'Blog Post' +#: website/doctype/blog_post/blog_post.json +msgctxt "Blog Post" +msgid "Markdown" +msgstr "crwdns6632:0crwdne6632:0" + +#. Option for a Select field in DocType 'Newsletter' +#: email/doctype/newsletter/newsletter.json +msgctxt "Newsletter" +msgid "Markdown" +msgstr "crwdns6634:0crwdne6634:0" + +#. Option for a Select field in DocType 'Notification' +#: email/doctype/notification/notification.json +msgctxt "Notification" +msgid "Markdown" +msgstr "crwdns6636:0crwdne6636:0" + +#. Option for a Select field in DocType 'Web Page' +#: website/doctype/web_page/web_page.json +msgctxt "Web Page" +msgid "Markdown" +msgstr "crwdns6638:0crwdne6638:0" + +#. Option for a Select field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Markdown Editor" +msgstr "crwdns6640:0crwdne6640:0" + +#. Option for a Select field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Markdown Editor" +msgstr "crwdns6642:0crwdne6642:0" + +#. Option for a Select field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Markdown Editor" +msgstr "crwdns6644:0crwdne6644:0" + +#. Option for a Select field in DocType 'Web Template Field' +#: website/doctype/web_template_field/web_template_field.json +msgctxt "Web Template Field" +msgid "Markdown Editor" +msgstr "crwdns6646:0crwdne6646:0" + +#. Option for a Select field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Marked As Spam" +msgstr "crwdns6648:0crwdne6648:0" + +#. Name of a DocType +#: website/doctype/marketing_campaign/marketing_campaign.json +msgid "Marketing Campaign" +msgstr "crwdns6650:0crwdne6650:0" + +#. Description of a Int field in DocType 'Bulk Update' +#: desk/doctype/bulk_update/bulk_update.json +msgctxt "Bulk Update" +msgid "Max 500 records at a time" +msgstr "crwdns6652:0crwdne6652:0" + +#. Label of a Int field in DocType 'Web Form' +#: website/doctype/web_form/web_form.json +msgctxt "Web Form" +msgid "Max Attachment Size (in MB)" +msgstr "crwdns6654:0crwdne6654:0" + +#. Label of a Int field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Max Attachments" +msgstr "crwdns6656:0crwdne6656:0" + +#. Label of a Int field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Max Attachments" +msgstr "crwdns6658:0crwdne6658:0" + +#. Label of a Int field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Max File Size (MB)" +msgstr "crwdns6660:0crwdne6660:0" + +#. Label of a Data field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Max Height" +msgstr "crwdns6662:0crwdne6662:0" + +#. Label of a Int field in DocType 'Web Form Field' +#: website/doctype/web_form_field/web_form_field.json +msgctxt "Web Form Field" +msgid "Max Length" +msgstr "crwdns6664:0crwdne6664:0" + +#. Label of a Int field in DocType 'Web Form Field' +#: website/doctype/web_form_field/web_form_field.json +msgctxt "Web Form Field" +msgid "Max Value" +msgstr "crwdns6666:0crwdne6666:0" + +#. Label of a Int field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Max auto email report per user" +msgstr "crwdns6668:0crwdne6668:0" + +#: core/doctype/doctype/doctype.py:1293 +msgid "Max width for type Currency is 100px in row {0}" +msgstr "crwdns6670:0{0}crwdne6670:0" + +#. Option for a Select field in DocType 'Number Card' +#: desk/doctype/number_card/number_card.json +msgctxt "Number Card" +msgid "Maximum" +msgstr "crwdns6672:0crwdne6672:0" + +#: core/doctype/file/file.py:317 +msgid "Maximum Attachment Limit of {0} has been reached for {1} {2}." +msgstr "crwdns6674:0{0}crwdnd6674:0{1}crwdnd6674:0{2}crwdne6674:0" + +#. Label of a Select field in DocType 'List View Settings' +#: desk/doctype/list_view_settings/list_view_settings.json +msgctxt "List View Settings" +msgid "Maximum Number of Fields" +msgstr "crwdns6676:0crwdne6676:0" + +#. Label of a Int field in DocType 'Energy Point Rule' +#: social/doctype/energy_point_rule/energy_point_rule.json +msgctxt "Energy Point Rule" +msgid "Maximum Points" +msgstr "crwdns6678:0crwdne6678:0" + +#: public/js/frappe/form/sidebar/attachments.js:38 +msgid "Maximum attachment limit of {0} has been reached." +msgstr "crwdns6680:0{0}crwdne6680:0" + +#. Description of a Int field in DocType 'Energy Point Rule' +#: social/doctype/energy_point_rule/energy_point_rule.json +msgctxt "Energy Point Rule" +msgid "Maximum points allowed after multiplying points with the multiplier value\n" +"(Note: For no limit leave this field empty or set 0)" +msgstr "crwdns6682:0crwdne6682:0" + +#: model/rename_doc.py:674 +msgid "Maximum {0} rows allowed" +msgstr "crwdns6684:0{0}crwdne6684:0" + +#: public/js/frappe/list/list_sidebar_group_by.js:221 +msgid "Me" +msgstr "crwdns6686:0crwdne6686:0" + +#: public/js/frappe/form/sidebar/assign_to.js:194 +#: public/js/frappe/utils/utils.js:1719 +#: website/report/website_analytics/website_analytics.js:40 +msgid "Medium" +msgstr "crwdns6688:0crwdne6688:0" + +#. Option for a Select field in DocType 'ToDo' +#: desk/doctype/todo/todo.json +msgctxt "ToDo" +msgid "Medium" +msgstr "crwdns6690:0crwdne6690:0" + +#. Label of a Data field in DocType 'Web Page View' +#: website/doctype/web_page_view/web_page_view.json +msgctxt "Web Page View" +msgid "Medium" +msgstr "crwdns6692:0crwdne6692:0" + +#. Option for a Select field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Meeting" +msgstr "crwdns6694:0crwdne6694:0" + +#. Option for a Select field in DocType 'Event' +#: desk/doctype/event/event.json +msgctxt "Event" +msgid "Meeting" +msgstr "crwdns6696:0crwdne6696:0" + +#. Label of a Data field in DocType 'Webhook' +#: integrations/doctype/webhook/webhook.json +msgctxt "Webhook" +msgid "Meets Condition?" +msgstr "crwdns6698:0crwdne6698:0" + +#. Group in Email Group's connections +#: email/doctype/email_group/email_group.json +msgctxt "Email Group" +msgid "Members" +msgstr "crwdns6700:0crwdne6700:0" + +#. Option for a Select field in DocType 'Notification Log' +#: desk/doctype/notification_log/notification_log.json +msgctxt "Notification Log" +msgid "Mention" +msgstr "crwdns6702:0crwdne6702:0" + +#. Label of a Check field in DocType 'Notification Settings' +#: desk/doctype/notification_settings/notification_settings.json +msgctxt "Notification Settings" +msgid "Mentions" +msgstr "crwdns6704:0crwdne6704:0" + +#: public/js/frappe/ui/page.js:155 +msgid "Menu" +msgstr "crwdns6706:0crwdne6706:0" + +#: public/js/frappe/form/toolbar.js:222 public/js/frappe/model/model.js:719 +msgid "Merge with existing" +msgstr "crwdns6708:0crwdne6708:0" + +#: utils/nestedset.py:310 +msgid "Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node" +msgstr "crwdns6710:0crwdne6710:0" + +#: public/js/frappe/ui/messages.js:175 +#: public/js/frappe/views/communication.js:110 www/message.html:3 +#: www/message.html:25 +msgid "Message" +msgstr "crwdns6712:0crwdne6712:0" + +#. Label of a Text Editor field in DocType 'Activity Log' +#: core/doctype/activity_log/activity_log.json +msgctxt "Activity Log" +msgid "Message" +msgstr "crwdns6714:0crwdne6714:0" + +#. Label of a Section Break field in DocType 'Auto Email Report' +#. Label of a Text Editor field in DocType 'Auto Email Report' +#: email/doctype/auto_email_report/auto_email_report.json +msgctxt "Auto Email Report" +msgid "Message" +msgstr "crwdns6716:0crwdne6716:0" + +#. Label of a Text field in DocType 'Auto Repeat' +#: automation/doctype/auto_repeat/auto_repeat.json +msgctxt "Auto Repeat" +msgid "Message" +msgstr "crwdns6718:0crwdne6718:0" + +#. Label of a Text Editor field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Message" +msgstr "crwdns6720:0crwdne6720:0" + +#: __init__.py:510 public/js/frappe/ui/messages.js:267 +msgctxt "Default title of the message dialog" +msgid "Message" +msgstr "crwdns6722:0crwdne6722:0" + +#. Label of a Code field in DocType 'Email Queue' +#: email/doctype/email_queue/email_queue.json +msgctxt "Email Queue" +msgid "Message" +msgstr "crwdns6724:0crwdne6724:0" + +#. Label of a Text Editor field in DocType 'Newsletter' +#: email/doctype/newsletter/newsletter.json +msgctxt "Newsletter" +msgid "Message" +msgstr "crwdns6726:0crwdne6726:0" + +#. Label of a Section Break field in DocType 'Notification' +#. Label of a Code field in DocType 'Notification' +#: email/doctype/notification/notification.json +msgctxt "Notification" +msgid "Message" +msgstr "crwdns6728:0crwdne6728:0" + +#. Label of a Text Editor field in DocType 'Notification Log' +#: desk/doctype/notification_log/notification_log.json +msgctxt "Notification Log" +msgid "Message" +msgstr "crwdns6730:0crwdne6730:0" + +#. Label of a Small Text field in DocType 'SMS Log' +#: core/doctype/sms_log/sms_log.json +msgctxt "SMS Log" +msgid "Message" +msgstr "crwdns6732:0crwdne6732:0" + +#. Label of a Data field in DocType 'Success Action' +#: core/doctype/success_action/success_action.json +msgctxt "Success Action" +msgid "Message" +msgstr "crwdns6734:0crwdne6734:0" + +#. Label of a Text field in DocType 'Workflow Document State' +#: workflow/doctype/workflow_document_state/workflow_document_state.json +msgctxt "Workflow Document State" +msgid "Message" +msgstr "crwdns6736:0crwdne6736:0" + +#. Label of a HTML Editor field in DocType 'Newsletter' +#: email/doctype/newsletter/newsletter.json +msgctxt "Newsletter" +msgid "Message (HTML)" +msgstr "crwdns6738:0crwdne6738:0" + +#. Label of a Markdown Editor field in DocType 'Newsletter' +#: email/doctype/newsletter/newsletter.json +msgctxt "Newsletter" +msgid "Message (Markdown)" +msgstr "crwdns6740:0crwdne6740:0" + +#. Label of a HTML field in DocType 'Notification' +#: email/doctype/notification/notification.json +msgctxt "Notification" +msgid "Message Examples" +msgstr "crwdns6742:0crwdne6742:0" + +#. Label of a Small Text field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Message ID" +msgstr "crwdns6744:0crwdne6744:0" + +#. Label of a Small Text field in DocType 'Email Queue' +#: email/doctype/email_queue/email_queue.json +msgctxt "Email Queue" +msgid "Message ID" +msgstr "crwdns6746:0crwdne6746:0" + +#. Label of a Data field in DocType 'SMS Settings' +#: core/doctype/sms_settings/sms_settings.json +msgctxt "SMS Settings" +msgid "Message Parameter" +msgstr "crwdns6748:0crwdne6748:0" + +#. Label of a Select field in DocType 'Notification' +#: email/doctype/notification/notification.json +msgctxt "Notification" +msgid "Message Type" +msgstr "crwdns6750:0crwdne6750:0" + +#: public/js/frappe/views/communication.js:837 +msgid "Message clipped" +msgstr "crwdns6752:0crwdne6752:0" + +#: email/doctype/email_account/email_account.py:299 +msgid "Message from server: {0}" +msgstr "crwdns6754:0{0}crwdne6754:0" + +#: automation/doctype/auto_repeat/auto_repeat.js:102 +msgid "Message not setup" +msgstr "crwdns6756:0crwdne6756:0" + +#. Description of a Text field in DocType 'Web Form' +#: website/doctype/web_form/web_form.json +msgctxt "Web Form" +msgid "Message to be displayed on successful completion" +msgstr "crwdns6758:0crwdne6758:0" + +#. Label of a Code field in DocType 'Unhandled Email' +#: email/doctype/unhandled_email/unhandled_email.json +msgctxt "Unhandled Email" +msgid "Message-id" +msgstr "crwdns6760:0crwdne6760:0" + +#. Label of a Code field in DocType 'Data Import Log' +#: core/doctype/data_import_log/data_import_log.json +msgctxt "Data Import Log" +msgid "Messages" +msgstr "crwdns6762:0crwdne6762:0" + +#. Label of a Section Break field in DocType 'Web Form' +#: website/doctype/web_form/web_form.json +msgctxt "Web Form" +msgid "Meta" +msgstr "crwdns6764:0crwdne6764:0" + +#: website/doctype/web_page/web_page.js:124 +msgid "Meta Description" +msgstr "crwdns6766:0crwdne6766:0" + +#. Label of a Small Text field in DocType 'Blog Post' +#: website/doctype/blog_post/blog_post.json +msgctxt "Blog Post" +msgid "Meta Description" +msgstr "crwdns6768:0crwdne6768:0" + +#. Label of a Small Text field in DocType 'Web Form' +#: website/doctype/web_form/web_form.json +msgctxt "Web Form" +msgid "Meta Description" +msgstr "crwdns6770:0crwdne6770:0" + +#: website/doctype/web_page/web_page.js:131 +msgid "Meta Image" +msgstr "crwdns6772:0crwdne6772:0" + +#. Label of a Attach Image field in DocType 'Blog Post' +#: website/doctype/blog_post/blog_post.json +msgctxt "Blog Post" +msgid "Meta Image" +msgstr "crwdns6774:0crwdne6774:0" + +#. Label of a Attach Image field in DocType 'Web Form' +#: website/doctype/web_form/web_form.json +msgctxt "Web Form" +msgid "Meta Image" +msgstr "crwdns6776:0crwdne6776:0" + +#. Label of a Section Break field in DocType 'Blog Post' +#: website/doctype/blog_post/blog_post.json +msgctxt "Blog Post" +msgid "Meta Tags" +msgstr "crwdns6778:0crwdne6778:0" + +#. Label of a Section Break field in DocType 'Web Page' +#: website/doctype/web_page/web_page.json +msgctxt "Web Page" +msgid "Meta Tags" +msgstr "crwdns6780:0crwdne6780:0" + +#. Label of a Table field in DocType 'Website Route Meta' +#: website/doctype/website_route_meta/website_route_meta.json +msgctxt "Website Route Meta" +msgid "Meta Tags" +msgstr "crwdns6782:0crwdne6782:0" + +#: website/doctype/web_page/web_page.js:117 +msgid "Meta Title" +msgstr "crwdns6784:0crwdne6784:0" + +#. Label of a Data field in DocType 'Blog Post' +#: website/doctype/blog_post/blog_post.json +msgctxt "Blog Post" +msgid "Meta Title" +msgstr "crwdns6786:0crwdne6786:0" + +#. Label of a Data field in DocType 'Web Form' +#: website/doctype/web_form/web_form.json +msgctxt "Web Form" +msgid "Meta Title" +msgstr "crwdns6788:0crwdne6788:0" + +#: website/doctype/web_page/web_page.js:110 +msgid "Meta title for SEO" +msgstr "crwdns6790:0crwdne6790:0" + +#. Label of a Data field in DocType 'Access Log' +#: core/doctype/access_log/access_log.json +msgctxt "Access Log" +msgid "Method" +msgstr "crwdns6792:0crwdne6792:0" + +#. Label of a Select field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Method" +msgstr "crwdns6794:0crwdne6794:0" + +#. Option for a Select field in DocType 'Notification' +#: email/doctype/notification/notification.json +msgctxt "Notification" +msgid "Method" +msgstr "crwdns6796:0crwdne6796:0" + +#. Label of a Data field in DocType 'Number Card' +#: desk/doctype/number_card/number_card.json +msgctxt "Number Card" +msgid "Method" +msgstr "crwdns6798:0crwdne6798:0" + +#. Label of a Select field in DocType 'Recorder' +#: core/doctype/recorder/recorder.json +msgctxt "Recorder" +msgid "Method" +msgstr "crwdns6800:0crwdne6800:0" + +#. Label of a Data field in DocType 'Scheduled Job Type' +#: core/doctype/scheduled_job_type/scheduled_job_type.json +msgctxt "Scheduled Job Type" +msgid "Method" +msgstr "crwdns6802:0crwdne6802:0" + +#: desk/doctype/number_card/number_card.py:69 +msgid "Method is required to create a number card" +msgstr "crwdns6804:0crwdne6804:0" + +#. Option for a Select field in DocType 'Form Tour Step' +#: desk/doctype/form_tour_step/form_tour_step.json +msgctxt "Form Tour Step" +msgid "Mid Center" +msgstr "crwdns6806:0crwdne6806:0" + +#. Label of a Data field in DocType 'Contact' +#: contacts/doctype/contact/contact.json +msgctxt "Contact" +msgid "Middle Name" +msgstr "crwdns6808:0crwdne6808:0" + +#. Label of a Data field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Middle Name" +msgstr "crwdns6810:0crwdne6810:0" + +#. Name of a DocType +#: automation/doctype/milestone/milestone.json +msgid "Milestone" +msgstr "crwdns6812:0crwdne6812:0" + +#. Label of a Link in the Tools Workspace +#: automation/workspace/tools/tools.json +msgctxt "Milestone" +msgid "Milestone" +msgstr "crwdns6814:0crwdne6814:0" + +#. Name of a DocType +#: automation/doctype/milestone_tracker/milestone_tracker.json +msgid "Milestone Tracker" +msgstr "crwdns6816:0crwdne6816:0" + +#. Label of a Link field in DocType 'Milestone' +#: automation/doctype/milestone/milestone.json +msgctxt "Milestone" +msgid "Milestone Tracker" +msgstr "crwdns6818:0crwdne6818:0" + +#. Option for a Select field in DocType 'Number Card' +#: desk/doctype/number_card/number_card.json +msgctxt "Number Card" +msgid "Minimum" +msgstr "crwdns6820:0crwdne6820:0" + +#. Label of a Select field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Minimum Password Score" +msgstr "crwdns6822:0crwdne6822:0" + +#. Label of a Int field in DocType 'Package Release' +#: core/doctype/package_release/package_release.json +msgctxt "Package Release" +msgid "Minor" +msgstr "crwdns6824:0crwdne6824:0" + +#: integrations/doctype/ldap_settings/ldap_settings.py:100 +#: integrations/doctype/ldap_settings/ldap_settings.py:105 +#: integrations/doctype/ldap_settings/ldap_settings.py:114 +#: integrations/doctype/ldap_settings/ldap_settings.py:122 +#: integrations/doctype/ldap_settings/ldap_settings.py:332 +msgid "Misconfigured" +msgstr "crwdns6826:0crwdne6826:0" + +#: desk/form/meta.py:213 +msgid "Missing DocType" +msgstr "crwdns6828:0crwdne6828:0" + +#: core/doctype/doctype/doctype.py:1477 +msgid "Missing Field" +msgstr "crwdns6830:0crwdne6830:0" + +#: public/js/frappe/form/save.js:178 +msgid "Missing Fields" +msgstr "crwdns6832:0crwdne6832:0" + +#: email/doctype/auto_email_report/auto_email_report.py:123 +msgid "Missing Filters Required" +msgstr "crwdns6834:0crwdne6834:0" + +#: desk/form/assign_to.py:105 +msgid "Missing Permission" +msgstr "crwdns6836:0crwdne6836:0" + +#: www/update-password.html:107 www/update-password.html:114 +msgid "Missing Value" +msgstr "crwdns6838:0crwdne6838:0" + +#: public/js/frappe/ui/field_group.js:118 +#: public/js/frappe/widgets/widget_dialog.js:330 +#: public/js/workflow_builder/store.js:97 +#: workflow/doctype/workflow/workflow.js:71 +msgid "Missing Values Required" +msgstr "crwdns6840:0crwdne6840:0" + +#: www/login.py:96 +msgid "Mobile" +msgstr "crwdns6842:0crwdne6842:0" + +#: tests/test_translate.py:83 tests/test_translate.py:86 +#: tests/test_translate.py:88 tests/test_translate.py:91 +#: tests/test_translate.py:102 tests/test_translate.py:106 +#: tests/test_translate.py:111 tests/test_translate.py:114 +msgid "Mobile No" +msgstr "crwdns6844:0crwdne6844:0" + +#. Label of a Data field in DocType 'Contact' +#: contacts/doctype/contact/contact.json +msgctxt "Contact" +msgid "Mobile No" +msgstr "crwdns6846:0crwdne6846:0" + +#. Label of a Data field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Mobile No" +msgstr "crwdns6848:0crwdne6848:0" + +#. Label of a Check field in DocType 'Form Tour Step' +#: desk/doctype/form_tour_step/form_tour_step.json +msgctxt "Form Tour Step" +msgid "Modal Trigger" +msgstr "crwdns6850:0crwdne6850:0" + +#. Label of a Card Break in the Build Workspace +#: core/workspace/build/build.json +msgid "Models" +msgstr "crwdns6852:0crwdne6852:0" + +#: core/report/transaction_log_report/transaction_log_report.py:106 +#: social/doctype/energy_point_rule/energy_point_rule.js:43 +msgid "Modified By" +msgstr "crwdns6854:0crwdne6854:0" + +#: core/doctype/doctype/doctype_list.js:17 +msgid "Module" +msgstr "crwdns6856:0crwdne6856:0" + +#. Label of a Data field in DocType 'Block Module' +#: core/doctype/block_module/block_module.json +msgctxt "Block Module" +msgid "Module" +msgstr "crwdns6858:0crwdne6858:0" + +#. Label of a Link field in DocType 'Dashboard' +#: desk/doctype/dashboard/dashboard.json +msgctxt "Dashboard" +msgid "Module" +msgstr "crwdns6860:0crwdne6860:0" + +#. Label of a Link field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "Module" +msgstr "crwdns6862:0crwdne6862:0" + +#. Label of a Link field in DocType 'Dashboard Chart Source' +#: desk/doctype/dashboard_chart_source/dashboard_chart_source.json +msgctxt "Dashboard Chart Source" +msgid "Module" +msgstr "crwdns6864:0crwdne6864:0" + +#. Label of a Link field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Module" +msgstr "crwdns6866:0crwdne6866:0" + +#. Label of a Link field in DocType 'Form Tour' +#: desk/doctype/form_tour/form_tour.json +msgctxt "Form Tour" +msgid "Module" +msgstr "crwdns6868:0crwdne6868:0" + +#. Label of a Link field in DocType 'Module Onboarding' +#: desk/doctype/module_onboarding/module_onboarding.json +msgctxt "Module Onboarding" +msgid "Module" +msgstr "crwdns6870:0crwdne6870:0" + +#. Label of a Link field in DocType 'Notification' +#: email/doctype/notification/notification.json +msgctxt "Notification" +msgid "Module" +msgstr "crwdns6872:0crwdne6872:0" + +#. Label of a Link field in DocType 'Number Card' +#: desk/doctype/number_card/number_card.json +msgctxt "Number Card" +msgid "Module" +msgstr "crwdns6874:0crwdne6874:0" + +#. Label of a Link field in DocType 'Page' +#: core/doctype/page/page.json +msgctxt "Page" +msgid "Module" +msgstr "crwdns6876:0crwdne6876:0" + +#. Label of a Link field in DocType 'Print Format' +#: printing/doctype/print_format/print_format.json +msgctxt "Print Format" +msgid "Module" +msgstr "crwdns6878:0crwdne6878:0" + +#. Label of a Link field in DocType 'Print Format Field Template' +#: printing/doctype/print_format_field_template/print_format_field_template.json +msgctxt "Print Format Field Template" +msgid "Module" +msgstr "crwdns6880:0crwdne6880:0" + +#. Label of a Link field in DocType 'Report' +#: core/doctype/report/report.json +msgctxt "Report" +msgid "Module" +msgstr "crwdns6882:0crwdne6882:0" + +#. Label of a Link field in DocType 'User Type Module' +#: core/doctype/user_type_module/user_type_module.json +msgctxt "User Type Module" +msgid "Module" +msgstr "crwdns6884:0crwdne6884:0" + +#. Label of a Link field in DocType 'Web Form' +#: website/doctype/web_form/web_form.json +msgctxt "Web Form" +msgid "Module" +msgstr "crwdns6886:0crwdne6886:0" + +#. Label of a Link field in DocType 'Web Template' +#: website/doctype/web_template/web_template.json +msgctxt "Web Template" +msgid "Module" +msgstr "crwdns6888:0crwdne6888:0" + +#. Label of a Link field in DocType 'Website Theme' +#: website/doctype/website_theme/website_theme.json +msgctxt "Website Theme" +msgid "Module" +msgstr "crwdns6890:0crwdne6890:0" + +#. Label of a Link field in DocType 'Workspace' +#: desk/doctype/workspace/workspace.json +msgctxt "Workspace" +msgid "Module" +msgstr "crwdns6892:0crwdne6892:0" + +#. Label of a Link field in DocType 'Client Script' +#: custom/doctype/client_script/client_script.json +msgctxt "Client Script" +msgid "Module (for export)" +msgstr "crwdns6894:0crwdne6894:0" + +#. Label of a Link field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Module (for export)" +msgstr "crwdns6896:0crwdne6896:0" + +#. Label of a Link field in DocType 'Property Setter' +#: custom/doctype/property_setter/property_setter.json +msgctxt "Property Setter" +msgid "Module (for export)" +msgstr "crwdns6898:0crwdne6898:0" + +#. Label of a Link field in DocType 'Server Script' +#: core/doctype/server_script/server_script.json +msgctxt "Server Script" +msgid "Module (for export)" +msgstr "crwdns6900:0crwdne6900:0" + +#. Label of a Link field in DocType 'Web Page' +#: website/doctype/web_page/web_page.json +msgctxt "Web Page" +msgid "Module (for export)" +msgstr "crwdns6902:0crwdne6902:0" + +#. Name of a DocType +#: core/doctype/module_def/module_def.json +msgid "Module Def" +msgstr "crwdns6904:0crwdne6904:0" + +#. Label of a Link in the Build Workspace +#: core/workspace/build/build.json +msgctxt "Module Def" +msgid "Module Def" +msgstr "crwdns6906:0crwdne6906:0" + +#. Linked DocType in Package's connections +#: core/doctype/package/package.json +msgctxt "Package" +msgid "Module Def" +msgstr "crwdns6908:0crwdne6908:0" + +#. Label of a HTML field in DocType 'Module Profile' +#: core/doctype/module_profile/module_profile.json +msgctxt "Module Profile" +msgid "Module HTML" +msgstr "crwdns6910:0crwdne6910:0" + +#. Label of a Data field in DocType 'Desktop Icon' +#: desk/doctype/desktop_icon/desktop_icon.json +msgctxt "Desktop Icon" +msgid "Module Name" +msgstr "crwdns6912:0crwdne6912:0" + +#. Label of a Data field in DocType 'Module Def' +#: core/doctype/module_def/module_def.json +msgctxt "Module Def" +msgid "Module Name" +msgstr "crwdns6914:0crwdne6914:0" + +#. Name of a DocType +#: desk/doctype/module_onboarding/module_onboarding.json +msgid "Module Onboarding" +msgstr "crwdns6916:0crwdne6916:0" + +#. Label of a Link in the Build Workspace +#: core/workspace/build/build.json +msgctxt "Module Onboarding" +msgid "Module Onboarding" +msgstr "crwdns6918:0crwdne6918:0" + +#. Name of a DocType +#: core/doctype/module_profile/module_profile.json +msgid "Module Profile" +msgstr "crwdns6920:0crwdne6920:0" + +#. Label of a Link in the Users Workspace +#: core/workspace/users/users.json +msgctxt "Module Profile" +msgid "Module Profile" +msgstr "crwdns6922:0crwdne6922:0" + +#. Label of a Link field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Module Profile" +msgstr "crwdns6924:0crwdne6924:0" + +#. Label of a Data field in DocType 'Module Profile' +#: core/doctype/module_profile/module_profile.json +msgctxt "Module Profile" +msgid "Module Profile Name" +msgstr "crwdns6926:0crwdne6926:0" + +#: desk/doctype/module_onboarding/module_onboarding.py:68 +msgid "Module onboarding progress reset" +msgstr "crwdns6928:0crwdne6928:0" + +#: custom/doctype/customize_form/customize_form.js:208 +msgid "Module to Export" +msgstr "crwdns6930:0crwdne6930:0" + +#: modules/utils.py:261 +msgid "Module {} not found" +msgstr "crwdns6932:0crwdne6932:0" + +#. Label of a Card Break in the Build Workspace +#: core/workspace/build/build.json +msgid "Modules" +msgstr "crwdns6934:0crwdne6934:0" + +#. Group in Package's connections +#: core/doctype/package/package.json +msgctxt "Package" +msgid "Modules" +msgstr "crwdns6936:0crwdne6936:0" + +#. Label of a HTML field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Modules HTML" +msgstr "crwdns6938:0crwdne6938:0" + +#. Option for a Select field in DocType 'Assignment Rule Day' +#: automation/doctype/assignment_rule_day/assignment_rule_day.json +msgctxt "Assignment Rule Day" +msgid "Monday" +msgstr "crwdns6940:0crwdne6940:0" + +#. Option for a Select field in DocType 'Auto Email Report' +#: email/doctype/auto_email_report/auto_email_report.json +msgctxt "Auto Email Report" +msgid "Monday" +msgstr "crwdns6942:0crwdne6942:0" + +#. Option for a Select field in DocType 'Auto Repeat Day' +#: automation/doctype/auto_repeat_day/auto_repeat_day.json +msgctxt "Auto Repeat Day" +msgid "Monday" +msgstr "crwdns6944:0crwdne6944:0" + +#. Label of a Check field in DocType 'Event' +#: desk/doctype/event/event.json +msgctxt "Event" +msgid "Monday" +msgstr "crwdns6946:0crwdne6946:0" + +#. Option for a Select field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Monday" +msgstr "crwdns6948:0crwdne6948:0" + +#. Option for a Select field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "Monospace" +msgstr "crwdns6950:0crwdne6950:0" + +#: public/js/frappe/views/calendar/calendar.js:268 +msgid "Month" +msgstr "crwdns6952:0crwdne6952:0" + +#: public/js/frappe/utils/common.js:400 +#: website/report/website_analytics/website_analytics.js:25 +msgid "Monthly" +msgstr "crwdns6954:0crwdne6954:0" + +#. Option for a Select field in DocType 'Auto Email Report' +#: email/doctype/auto_email_report/auto_email_report.json +msgctxt "Auto Email Report" +msgid "Monthly" +msgstr "crwdns6956:0crwdne6956:0" + +#. Option for a Select field in DocType 'Auto Repeat' +#: automation/doctype/auto_repeat/auto_repeat.json +msgctxt "Auto Repeat" +msgid "Monthly" +msgstr "crwdns6958:0crwdne6958:0" + +#. Option for a Select field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "Monthly" +msgstr "crwdns6960:0crwdne6960:0" + +#. Option for a Select field in DocType 'Energy Point Settings' +#: social/doctype/energy_point_settings/energy_point_settings.json +msgctxt "Energy Point Settings" +msgid "Monthly" +msgstr "crwdns6962:0crwdne6962:0" + +#. Option for a Select field in DocType 'Event' +#: desk/doctype/event/event.json +msgctxt "Event" +msgid "Monthly" +msgstr "crwdns6964:0crwdne6964:0" + +#. Option for a Select field in DocType 'Number Card' +#: desk/doctype/number_card/number_card.json +msgctxt "Number Card" +msgid "Monthly" +msgstr "crwdns6966:0crwdne6966:0" + +#. Option for a Select field in DocType 'S3 Backup Settings' +#: integrations/doctype/s3_backup_settings/s3_backup_settings.json +msgctxt "S3 Backup Settings" +msgid "Monthly" +msgstr "crwdns6968:0crwdne6968:0" + +#. Option for a Select field in DocType 'Scheduled Job Type' +#: core/doctype/scheduled_job_type/scheduled_job_type.json +msgctxt "Scheduled Job Type" +msgid "Monthly" +msgstr "crwdns6970:0crwdne6970:0" + +#. Option for a Select field in DocType 'Server Script' +#: core/doctype/server_script/server_script.json +msgctxt "Server Script" +msgid "Monthly" +msgstr "crwdns6972:0crwdne6972:0" + +#. Option for a Select field in DocType 'Scheduled Job Type' +#: core/doctype/scheduled_job_type/scheduled_job_type.json +msgctxt "Scheduled Job Type" +msgid "Monthly Long" +msgstr "crwdns6974:0crwdne6974:0" + +#. Option for a Select field in DocType 'Server Script' +#: core/doctype/server_script/server_script.json +msgctxt "Server Script" +msgid "Monthly Long" +msgstr "crwdns6976:0crwdne6976:0" + +#: public/js/frappe/form/link_selector.js:39 +#: public/js/frappe/form/multi_select_dialog.js:43 +#: public/js/frappe/form/multi_select_dialog.js:70 +#: templates/includes/list/list.html:23 +#: templates/includes/search_template.html:13 +msgid "More" +msgstr "crwdns6978:0crwdne6978:0" + +#. Label of a Section Break field in DocType 'Activity Log' +#: core/doctype/activity_log/activity_log.json +msgctxt "Activity Log" +msgid "More Information" +msgstr "crwdns6980:0crwdne6980:0" + +#. Label of a Section Break field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "More Information" +msgstr "crwdns6982:0crwdne6982:0" + +#. Label of a Section Break field in DocType 'Contact' +#: contacts/doctype/contact/contact.json +msgctxt "Contact" +msgid "More Information" +msgstr "crwdns6984:0crwdne6984:0" + +#. Label of a Tab Break field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "More Information" +msgstr "crwdns6986:0crwdne6986:0" + +#: website/doctype/help_article/templates/help_article.html:19 +#: website/doctype/help_article/templates/help_article.html:33 +msgid "More articles on {0}" +msgstr "crwdns6988:0{0}crwdne6988:0" + +#. Description of a Text Editor field in DocType 'About Us Settings' +#: website/doctype/about_us_settings/about_us_settings.json +msgctxt "About Us Settings" +msgid "More content for the bottom of the page." +msgstr "crwdns6990:0crwdne6990:0" + +#: public/js/frappe/ui/sort_selector.js:193 +msgid "Most Used" +msgstr "crwdns6992:0crwdne6992:0" + +#: utils/password.py:65 +msgid "Most probably your password is too long." +msgstr "crwdns6994:0crwdne6994:0" + +#: core/doctype/communication/communication.js:86 +#: core/doctype/communication/communication.js:194 +#: core/doctype/communication/communication.js:212 +msgid "Move" +msgstr "crwdns6996:0crwdne6996:0" + +#: public/js/frappe/form/grid_row.js:189 +msgid "Move To" +msgstr "crwdns6998:0crwdne6998:0" + +#: core/doctype/communication/communication.js:104 +msgid "Move To Trash" +msgstr "crwdns7000:0crwdne7000:0" + +#: public/js/frappe/form/form.js:176 +msgid "Move cursor to above row" +msgstr "crwdns7002:0crwdne7002:0" + +#: public/js/frappe/form/form.js:180 +msgid "Move cursor to below row" +msgstr "crwdns7004:0crwdne7004:0" + +#: public/js/frappe/form/form.js:184 +msgid "Move cursor to next column" +msgstr "crwdns7006:0crwdne7006:0" + +#: public/js/frappe/form/form.js:188 +msgid "Move cursor to previous column" +msgstr "crwdns7008:0crwdne7008:0" + +#: public/js/frappe/form/grid_row.js:165 +msgid "Move to Row Number" +msgstr "crwdns7010:0crwdne7010:0" + +#. Description of a Check field in DocType 'Form Tour Step' +#: desk/doctype/form_tour_step/form_tour_step.json +msgctxt "Form Tour Step" +msgid "Move to next step when clicked inside highlighted area." +msgstr "crwdns7012:0crwdne7012:0" + +#. Description of a Data field in DocType 'Form Tour Step' +#: desk/doctype/form_tour_step/form_tour_step.json +msgctxt "Form Tour Step" +msgid "Mozilla doesn't support :has() so you can pass parent selector here as workaround" +msgstr "crwdns7014:0crwdne7014:0" + +#: utils/nestedset.py:334 +msgid "Multiple root nodes not allowed." +msgstr "crwdns7016:0crwdne7016:0" + +#. Label of a Select field in DocType 'Energy Point Rule' +#: social/doctype/energy_point_rule/energy_point_rule.json +msgctxt "Energy Point Rule" +msgid "Multiplier Field" +msgstr "crwdns7018:0crwdne7018:0" + +#. Description of a Data field in DocType 'Data Import' +#: core/doctype/data_import/data_import.json +msgctxt "Data Import" +msgid "Must be a publicly accessible Google Sheets URL" +msgstr "crwdns7020:0crwdne7020:0" + +#. Description of a Data field in DocType 'LDAP Settings' +#: integrations/doctype/ldap_settings/ldap_settings.json +msgctxt "LDAP Settings" +msgid "Must be enclosed in '()' and include '{0}', which is a placeholder for the user/login name. i.e. (&(objectclass=user)(uid={0}))" +msgstr "crwdns7022:0{0}crwdnd7022:0{0}crwdne7022:0" + +#. Description of a Data field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Must be of type \"Attach Image\"" +msgstr "crwdns7024:0crwdne7024:0" + +#. Description of a Data field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Must be of type \"Attach Image\"" +msgstr "crwdns7026:0crwdne7026:0" + +#: desk/query_report.py:202 +msgid "Must have report permission to access this report." +msgstr "crwdns7028:0crwdne7028:0" + +#: core/doctype/report/report.py:148 +msgid "Must specify a Query to run" +msgstr "crwdns7030:0crwdne7030:0" + +#. Label of a Check field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Mute Sounds" +msgstr "crwdns7032:0crwdne7032:0" + +#: templates/includes/web_sidebar.html:41 +#: website/doctype/web_form/web_form.py:401 +#: website/doctype/website_settings/website_settings.py:181 www/list.py:21 +#: www/me.html:4 www/me.html:8 www/update_password.py:10 +msgid "My Account" +msgstr "crwdns7034:0crwdne7034:0" + +#. Label of a standard navbar item +#. Type: Route +#: hooks.py +msgid "My Profile" +msgstr "crwdns7036:0crwdne7036:0" + +#. Label of a standard navbar item +#. Type: Action +#: hooks.py +msgid "My Settings" +msgstr "crwdns7038:0crwdne7038:0" + +#. Option for a Select field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "MyISAM" +msgstr "crwdns7040:0crwdne7040:0" + +#: 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 "crwdns7042:0crwdne7042:0" + +#. Description of a Data field in DocType 'LDAP Settings' +#: integrations/doctype/ldap_settings/ldap_settings.json +msgctxt "LDAP Settings" +msgid "NOTE: This box is due for depreciation. Please re-setup LDAP to work with the newer settings" +msgstr "crwdns7044:0crwdne7044:0" + +#: public/js/frappe/form/layout.js:75 +#: public/js/frappe/form/multi_select_dialog.js:239 +#: public/js/frappe/form/save.js:154 +#: public/js/frappe/views/file/file_view.js:97 +#: website/doctype/website_slideshow/website_slideshow.js:25 +msgid "Name" +msgstr "crwdns7046:0crwdne7046:0" + +#. Label of a Data field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Name" +msgstr "crwdns7048:0crwdne7048:0" + +#. Label of a Data field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Name" +msgstr "crwdns7050:0crwdne7050:0" + +#. Label of a Data field in DocType 'Slack Webhook URL' +#: integrations/doctype/slack_webhook_url/slack_webhook_url.json +msgctxt "Slack Webhook URL" +msgid "Name" +msgstr "crwdns7052:0crwdne7052:0" + +#. Label of a Data field in DocType 'Workspace' +#: desk/doctype/workspace/workspace.json +msgctxt "Workspace" +msgid "Name" +msgstr "crwdns7054:0crwdne7054:0" + +#: desk/utils.py:22 +msgid "Name already taken, please set a new name" +msgstr "crwdns7056:0crwdne7056:0" + +#: model/naming.py:460 +msgid "Name cannot contain special characters like {0}" +msgstr "crwdns7058:0{0}crwdne7058:0" + +#: 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 "crwdns7060:0crwdne7060:0" + +#: printing/page/print_format_builder/print_format_builder.js:117 +msgid "Name of the new Print Format" +msgstr "crwdns7062:0crwdne7062:0" + +#: model/naming.py:454 +msgid "Name of {0} cannot be {1}" +msgstr "crwdns7064:0{0}crwdnd7064:0{1}crwdne7064:0" + +#: utils/password_strength.py:178 +msgid "Names and surnames by themselves are easy to guess." +msgstr "crwdns7066:0crwdne7066:0" + +#. Label of a Section Break field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Naming" +msgstr "crwdns7068:0crwdne7068:0" + +#. Label of a Section Break field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Naming" +msgstr "crwdns7070:0crwdne7070:0" + +#. Label of a Section Break field in DocType 'Document Naming Rule' +#: core/doctype/document_naming_rule/document_naming_rule.json +msgctxt "Document Naming Rule" +msgid "Naming" +msgstr "crwdns7072:0crwdne7072:0" + +#. Description of a Data field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Naming Options:\n" +"
  1. field:[fieldname] - By Field
  2. autoincrement - Uses Databases' Auto Increment feature
  3. naming_series: - By Naming Series (field called naming_series must be present)
  4. Prompt - Prompt user for a name
  5. [series] - Series by prefix (separated by a dot); for example PRE.#####
  6. \n" +"
  7. 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 "crwdns7074:0{MM}crwdnd7074:0{fieldname1}crwdnd7074:0{fieldname2}crwdnd7074:0{#####}crwdne7074:0" + +#. Description of a Data field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +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 "crwdns7076:0{MM}crwdnd7076:0{fieldname1}crwdnd7076:0{fieldname2}crwdnd7076:0{#####}crwdne7076:0" + +#. Label of a Select field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Naming Rule" +msgstr "crwdns7078:0crwdne7078:0" + +#. Label of a Select field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Naming Rule" +msgstr "crwdns7080:0crwdne7080:0" + +#. Label of a Tab Break field in DocType 'Document Naming Settings' +#: core/doctype/document_naming_settings/document_naming_settings.json +msgctxt "Document Naming Settings" +msgid "Naming Series" +msgstr "crwdns7082:0crwdne7082:0" + +#: model/naming.py:243 +msgid "Naming Series mandatory" +msgstr "crwdns7084:0crwdne7084:0" + +#. Option for a Select field in DocType 'Web Template' +#: website/doctype/web_template/web_template.json +msgctxt "Web Template" +msgid "Navbar" +msgstr "crwdns7086:0crwdne7086:0" + +#. Label of a Section Break field in DocType 'Website Settings' +#. Label of a Tab Break field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Navbar" +msgstr "crwdns7088:0crwdne7088:0" + +#. Name of a DocType +#: core/doctype/navbar_item/navbar_item.json +msgid "Navbar Item" +msgstr "crwdns7090:0crwdne7090:0" + +#. Name of a DocType +#: core/doctype/navbar_settings/navbar_settings.json +msgid "Navbar Settings" +msgstr "crwdns7092:0crwdne7092:0" + +#. Label of a Link in the Build Workspace +#: core/workspace/build/build.json +msgctxt "Navbar Settings" +msgid "Navbar Settings" +msgstr "crwdns7094:0crwdne7094:0" + +#. Label of a Link field in DocType 'Website Settings' +#. Label of a Section Break field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Navbar Template" +msgstr "crwdns7096:0crwdne7096:0" + +#. Label of a Code field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Navbar Template Values" +msgstr "crwdns7098:0crwdne7098:0" + +#: public/js/frappe/ui/keyboard.js:211 +msgid "Navigate Home" +msgstr "crwdns7100:0crwdne7100:0" + +#: public/js/frappe/list/list_view.js:1134 +msgctxt "Description of a list view shortcut" +msgid "Navigate list down" +msgstr "crwdns7102:0crwdne7102:0" + +#: public/js/frappe/list/list_view.js:1141 +msgctxt "Description of a list view shortcut" +msgid "Navigate list up" +msgstr "crwdns7104:0crwdne7104:0" + +#: public/js/frappe/ui/page.js:168 +msgid "Navigate to main content" +msgstr "crwdns7106:0crwdne7106:0" + +#. Label of a Section Break field in DocType 'Role' +#: core/doctype/role/role.json +msgctxt "Role" +msgid "Navigation Settings" +msgstr "crwdns7108:0crwdne7108:0" + +#: desk/doctype/workspace/workspace.py:297 +msgid "Need Workspace Manager role to edit private workspace of other users" +msgstr "crwdns7110:0crwdne7110:0" + +#: desk/doctype/workspace/workspace.py:343 +msgid "Need Workspace Manager role to hide/unhide public workspaces" +msgstr "crwdns7112:0crwdne7112:0" + +#: model/document.py:607 +msgid "Negative Value" +msgstr "crwdns7114:0crwdne7114:0" + +#: utils/nestedset.py:95 +msgid "Nested set error. Please contact the Administrator." +msgstr "crwdns7116:0crwdne7116:0" + +#. Name of a DocType +#: printing/doctype/network_printer_settings/network_printer_settings.json +msgid "Network Printer Settings" +msgstr "crwdns7118:0crwdne7118:0" + +#: core/doctype/success_action/success_action.js:55 +#: core/page/dashboard_view/dashboard_view.js:173 desk/doctype/todo/todo.js:46 +#: public/js/frappe/form/success_action.js:77 +#: public/js/frappe/views/treeview.js:454 +#: website/doctype/web_form/templates/web_list.html:15 www/list.html:19 +msgid "New" +msgstr "crwdns7120:0crwdne7120:0" + +#. Option for a Select field in DocType 'Energy Point Rule' +#: social/doctype/energy_point_rule/energy_point_rule.json +msgctxt "Energy Point Rule" +msgid "New" +msgstr "crwdns7122:0crwdne7122:0" + +#. Option for a Select field in DocType 'Notification' +#: email/doctype/notification/notification.json +msgctxt "Notification" +msgid "New" +msgstr "crwdns7124:0crwdne7124:0" + +#. Option for a Select field in DocType 'Workspace Shortcut' +#: desk/doctype/workspace_shortcut/workspace_shortcut.json +msgctxt "Workspace Shortcut" +msgid "New" +msgstr "crwdns7126:0crwdne7126:0" + +#: public/js/frappe/views/interaction.js:15 +msgid "New Activity" +msgstr "crwdns7128:0crwdne7128:0" + +#: templates/includes/comments/comments.py:64 +msgid "New Comment on {0}: {1}" +msgstr "crwdns7130:0{0}crwdnd7130:0{1}crwdne7130:0" + +#: printing/page/print/print.js:288 printing/page/print/print.js:335 +msgid "New Custom Print Format" +msgstr "crwdns7132:0crwdne7132:0" + +#. Label of a Check field in DocType 'Form Tour' +#: desk/doctype/form_tour/form_tour.json +msgctxt "Form Tour" +msgid "New Document Form" +msgstr "crwdns7134:0crwdne7134:0" + +#: desk/doctype/notification_log/notification_log.py:158 +msgid "New Document Shared {0}" +msgstr "crwdns7136:0{0}crwdne7136:0" + +#: public/js/frappe/form/footer/form_timeline.js:26 +#: public/js/frappe/views/communication.js:23 +msgid "New Email" +msgstr "crwdns7138:0crwdne7138:0" + +#: public/js/frappe/list/list_view_select.js:98 +#: public/js/frappe/views/inbox/inbox_view.js:177 +msgid "New Email Account" +msgstr "crwdns7140:0crwdne7140:0" + +#: public/js/frappe/form/footer/form_timeline.js:45 +msgid "New Event" +msgstr "crwdns7142:0crwdne7142:0" + +#: public/js/frappe/views/file/file_view.js:94 +msgid "New Folder" +msgstr "crwdns7144:0crwdne7144:0" + +#: public/js/frappe/views/kanban/kanban_view.js:341 +msgid "New Kanban Board" +msgstr "crwdns7146:0crwdne7146:0" + +#: desk/doctype/notification_log/notification_log.py:156 +msgid "New Mention on {0}" +msgstr "crwdns7148:0{0}crwdne7148:0" + +#: www/contact.py:51 +msgid "New Message from Website Contact Page" +msgstr "crwdns7150:0crwdne7150:0" + +#: public/js/frappe/form/toolbar.js:206 public/js/frappe/model/model.js:727 +msgid "New Name" +msgstr "crwdns7152:0crwdne7152:0" + +#. Label of a Read Only field in DocType 'Deleted Document' +#: core/doctype/deleted_document/deleted_document.json +msgctxt "Deleted Document" +msgid "New Name" +msgstr "crwdns7154:0crwdne7154:0" + +#: email/doctype/email_group/email_group.js:67 +msgid "New Newsletter" +msgstr "crwdns7156:0crwdne7156:0" + +#: desk/doctype/notification_log/notification_log.py:155 +msgid "New Notification" +msgstr "crwdns7158:0crwdne7158:0" + +#: core/doctype/user/user.js:167 www/update-password.html:19 +msgid "New Password" +msgstr "crwdns7160:0crwdne7160:0" + +#: printing/page/print/print.js:260 printing/page/print/print.js:314 +#: printing/page/print_format_builder_beta/print_format_builder_beta.js:61 +msgid "New Print Format Name" +msgstr "crwdns7162:0crwdne7162:0" + +#: public/js/frappe/views/reports/report_view.js:1310 +msgid "New Report name" +msgstr "crwdns7164:0crwdne7164:0" + +#: workflow/page/workflow_builder/workflow_builder.js:61 +msgid "New Workflow Name" +msgstr "crwdns7166:0crwdne7166:0" + +#: public/js/frappe/views/workspace/workspace.js:1172 +msgid "New Workspace" +msgstr "crwdns7168:0crwdne7168:0" + +#: www/update-password.html:77 +msgid "New password cannot be same as old password" +msgstr "crwdns7170:0crwdne7170:0" + +#: utils/change_log.py:306 +msgid "New updates are available" +msgstr "crwdns7172:0crwdne7172:0" + +#. Description of a Check field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "New users will have to be manually registered by system managers." +msgstr "crwdns7174:0crwdne7174:0" + +#. Description of a Small Text field in DocType 'Property Setter' +#: custom/doctype/property_setter/property_setter.json +msgctxt "Property Setter" +msgid "New value to be set" +msgstr "crwdns7176:0crwdne7176:0" + +#: public/js/frappe/form/quick_entry.js:124 public/js/frappe/form/toolbar.js:36 +#: public/js/frappe/form/toolbar.js:196 public/js/frappe/form/toolbar.js:209 +#: public/js/frappe/form/toolbar.js:490 +#: public/js/frappe/ui/toolbar/search_utils.js:151 +#: public/js/frappe/ui/toolbar/search_utils.js:152 +#: public/js/frappe/ui/toolbar/search_utils.js:201 +#: public/js/frappe/ui/toolbar/search_utils.js:202 +#: public/js/frappe/views/treeview.js:350 +#: website/doctype/web_form/web_form.py:310 +msgid "New {0}" +msgstr "crwdns7178:0{0}crwdne7178:0" + +#: public/js/frappe/views/reports/query_report.js:392 +msgid "New {0} Created" +msgstr "crwdns7180:0{0}crwdne7180:0" + +#: public/js/frappe/views/reports/query_report.js:384 +msgid "New {0} {1} added to Dashboard {2}" +msgstr "crwdns7182:0{0}crwdnd7182:0{1}crwdnd7182:0{2}crwdne7182:0" + +#: public/js/frappe/form/quick_entry.js:167 +#: public/js/frappe/views/reports/query_report.js:389 +msgid "New {0} {1} created" +msgstr "crwdns7184:0{0}crwdnd7184:0{1}crwdne7184:0" + +#: automation/doctype/auto_repeat/auto_repeat.py:373 +msgid "New {0}: {1}" +msgstr "crwdns7186:0{0}crwdnd7186:0{1}crwdne7186:0" + +#: utils/change_log.py:298 +msgid "New {} releases for the following apps are available" +msgstr "crwdns7188:0crwdne7188:0" + +#: core/doctype/user/user.py:764 +msgid "Newly created user {0} has no roles enabled." +msgstr "crwdns7190:0{0}crwdne7190:0" + +#. Label of a Card Break in the Tools Workspace +#. Name of a DocType +#: automation/workspace/tools/tools.json +#: email/doctype/newsletter/newsletter.json +msgid "Newsletter" +msgstr "crwdns7192:0crwdne7192:0" + +#. Label of a Link in the Tools Workspace +#: automation/workspace/tools/tools.json +msgctxt "Newsletter" +msgid "Newsletter" +msgstr "crwdns7194:0crwdne7194:0" + +#. Name of a DocType +#: email/doctype/newsletter_attachment/newsletter_attachment.json +msgid "Newsletter Attachment" +msgstr "crwdns7196:0crwdne7196:0" + +#. Name of a DocType +#: email/doctype/newsletter_email_group/newsletter_email_group.json +msgid "Newsletter Email Group" +msgstr "crwdns7198:0crwdne7198:0" + +#. Name of a role +#: email/doctype/email_group/email_group.json +#: email/doctype/email_group_member/email_group_member.json +#: email/doctype/newsletter/newsletter.json +#: website/doctype/marketing_campaign/marketing_campaign.json +msgid "Newsletter Manager" +msgstr "crwdns7200:0crwdne7200:0" + +#: email/doctype/newsletter/newsletter.py:130 +msgid "Newsletter has already been sent" +msgstr "crwdns7202:0crwdne7202:0" + +#: email/doctype/newsletter/newsletter.py:149 +msgid "Newsletter must be published to send webview link in email" +msgstr "crwdns7204:0crwdne7204:0" + +#: email/doctype/newsletter/newsletter.py:137 +msgid "Newsletter should have atleast one recipient" +msgstr "crwdns7206:0crwdne7206:0" + +#: email/doctype/newsletter/newsletter.py:392 +msgid "Newsletters" +msgstr "crwdns7208:0crwdne7208:0" + +#: public/js/frappe/form/form_tour.js:316 +#: public/js/onboarding_tours/onboarding_tours.js:15 +#: public/js/onboarding_tours/onboarding_tours.js:240 +#: templates/includes/slideshow.html:38 website/utils.py:247 +#: website/web_template/slideshow/slideshow.html:44 +msgid "Next" +msgstr "crwdns7210:0crwdne7210:0" + +#. Label of a Link field in DocType 'Workflow Document State' +#: workflow/doctype/workflow_document_state/workflow_document_state.json +msgctxt "Workflow Document State" +msgid "Next Action Email Template" +msgstr "crwdns7212:0crwdne7212:0" + +#. Label of a HTML field in DocType 'Success Action' +#: core/doctype/success_action/success_action.json +msgctxt "Success Action" +msgid "Next Actions HTML" +msgstr "crwdns7214:0crwdne7214:0" + +#: public/js/frappe/form/toolbar.js:297 +msgid "Next Document" +msgstr "crwdns7216:0crwdne7216:0" + +#. Label of a Datetime field in DocType 'Scheduled Job Type' +#: core/doctype/scheduled_job_type/scheduled_job_type.json +msgctxt "Scheduled Job Type" +msgid "Next Execution" +msgstr "crwdns7218:0crwdne7218:0" + +#. Label of a Link field in DocType 'Form Tour Step' +#: desk/doctype/form_tour_step/form_tour_step.json +msgctxt "Form Tour Step" +msgid "Next Form Tour" +msgstr "crwdns7220:0crwdne7220:0" + +#. Label of a Date field in DocType 'Auto Repeat' +#: automation/doctype/auto_repeat/auto_repeat.json +msgctxt "Auto Repeat" +msgid "Next Schedule Date" +msgstr "crwdns7222:0crwdne7222:0" + +#. Label of a Link field in DocType 'Workflow Transition' +#: workflow/doctype/workflow_transition/workflow_transition.json +msgctxt "Workflow Transition" +msgid "Next State" +msgstr "crwdns7224:0crwdne7224:0" + +#. Label of a Code field in DocType 'Form Tour Step' +#: desk/doctype/form_tour_step/form_tour_step.json +msgctxt "Form Tour Step" +msgid "Next Step Condition" +msgstr "crwdns7226:0crwdne7226:0" + +#. Label of a Password field in DocType 'Google Calendar' +#: integrations/doctype/google_calendar/google_calendar.json +msgctxt "Google Calendar" +msgid "Next Sync Token" +msgstr "crwdns7228:0crwdne7228:0" + +#. Label of a Password field in DocType 'Google Contacts' +#: integrations/doctype/google_contacts/google_contacts.json +msgctxt "Google Contacts" +msgid "Next Sync Token" +msgstr "crwdns7230:0crwdne7230:0" + +#. Label of a Check field in DocType 'Form Tour Step' +#: desk/doctype/form_tour_step/form_tour_step.json +msgctxt "Form Tour Step" +msgid "Next on Click" +msgstr "crwdns7232:0crwdne7232:0" + +#: integrations/doctype/webhook/webhook.py:137 +#: public/js/form_builder/utils.js:341 +#: public/js/frappe/form/controls/link.js:471 +#: public/js/frappe/list/list_sidebar_group_by.js:223 +#: public/js/frappe/views/reports/query_report.js:1513 +#: website/doctype/help_article/templates/help_article.html:26 +msgid "No" +msgstr "crwdns7234:0crwdne7234:0" + +#: public/js/frappe/ui/filters/filter.js:501 +msgctxt "Checkbox is not checked" +msgid "No" +msgstr "crwdns7236:0crwdne7236:0" + +#: public/js/frappe/ui/messages.js:37 +msgctxt "Dismiss confirmation dialog" +msgid "No" +msgstr "crwdns7238:0crwdne7238:0" + +#. Option for a Select field in DocType 'LDAP Settings' +#: integrations/doctype/ldap_settings/ldap_settings.json +msgctxt "LDAP Settings" +msgid "No" +msgstr "crwdns7240:0crwdne7240:0" + +#. Option for a Select field in DocType 'Page' +#: core/doctype/page/page.json +msgctxt "Page" +msgid "No" +msgstr "crwdns7242:0crwdne7242:0" + +#. Option for a Select field in DocType 'Print Format' +#: printing/doctype/print_format/print_format.json +msgctxt "Print Format" +msgid "No" +msgstr "crwdns7244:0crwdne7244:0" + +#. Option for a Select field in DocType 'Report' +#: core/doctype/report/report.json +msgctxt "Report" +msgid "No" +msgstr "crwdns7246:0crwdne7246:0" + +#: www/third_party_apps.html:54 +msgid "No Active Sessions" +msgstr "crwdns7248:0crwdne7248:0" + +#. Label of a Check field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "No Copy" +msgstr "crwdns7250:0crwdne7250:0" + +#. Label of a Check field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "No Copy" +msgstr "crwdns7252:0crwdne7252:0" + +#. Label of a Check field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "No Copy" +msgstr "crwdns7254:0crwdne7254:0" + +#: core/doctype/data_export/exporter.py:162 +#: email/doctype/auto_email_report/auto_email_report.py:263 +#: public/js/frappe/data_import/import_preview.js:142 +#: public/js/frappe/form/multi_select_dialog.js:223 +#: public/js/frappe/utils/datatable.js:10 +msgid "No Data" +msgstr "crwdns7256:0crwdne7256:0" + +#: public/js/frappe/views/inbox/inbox_view.js:176 +msgid "No Email Account" +msgstr "crwdns7258:0crwdne7258:0" + +#: public/js/frappe/views/inbox/inbox_view.js:183 +msgid "No Emails" +msgstr "crwdns7260:0crwdne7260:0" + +#: integrations/doctype/ldap_settings/ldap_settings.py:362 +msgid "No Entry for the User {0} found within LDAP!" +msgstr "crwdns7262:0{0}crwdne7262:0" + +#: public/js/frappe/widgets/chart_widget.js:366 +msgid "No Filters Set" +msgstr "crwdns7264:0crwdne7264:0" + +#: integrations/doctype/google_calendar/google_calendar.py:356 +msgid "No Google Calendar Event to sync." +msgstr "crwdns7266:0crwdne7266:0" + +#: public/js/frappe/ui/capture.js:254 +msgid "No Images" +msgstr "crwdns7268:0crwdne7268:0" + +#: desk/page/leaderboard/leaderboard.js:282 +msgid "No Items Found" +msgstr "crwdns7270:0crwdne7270:0" + +#: integrations/doctype/ldap_settings/ldap_settings.py:364 +msgid "No LDAP User found for email: {0}" +msgstr "crwdns7272:0{0}crwdne7272:0" + +#: printing/page/print/print.js:675 printing/page/print/print.js:757 +#: public/js/frappe/list/bulk_operations.js:82 +#: public/js/frappe/list/bulk_operations.js:126 utils/weasyprint.py:54 +msgid "No Letterhead" +msgstr "crwdns7274:0crwdne7274:0" + +#: model/naming.py:436 +msgid "No Name Specified for {0}" +msgstr "crwdns7276:0{0}crwdne7276:0" + +#: core/doctype/doctype/doctype.py:1684 +msgid "No Permissions Specified" +msgstr "crwdns7278:0crwdne7278:0" + +#: core/page/permission_manager/permission_manager.js:192 +msgid "No Permissions set for this criteria." +msgstr "crwdns7280:0crwdne7280:0" + +#: core/page/dashboard_view/dashboard_view.js:93 +msgid "No Permitted Charts" +msgstr "crwdns7282:0crwdne7282:0" + +#: core/page/dashboard_view/dashboard_view.js:92 +msgid "No Permitted Charts on this Dashboard" +msgstr "crwdns7284:0crwdne7284:0" + +#: printing/page/print/print.js:835 +msgid "No Printer is Available." +msgstr "crwdns7286:0crwdne7286:0" + +#: public/js/frappe/form/link_selector.js:135 +msgid "No Results" +msgstr "crwdns7288:0crwdne7288:0" + +#: public/js/frappe/ui/toolbar/search.js:51 +msgid "No Results found" +msgstr "crwdns7290:0crwdne7290:0" + +#: core/doctype/user/user.py:765 +msgid "No Roles Specified" +msgstr "crwdns7292:0crwdne7292:0" + +#: public/js/frappe/views/kanban/kanban_view.js:341 +msgid "No Select Field Found" +msgstr "crwdns7294:0crwdne7294:0" + +#: desk/reportview.py:565 +msgid "No Tags" +msgstr "crwdns7296:0crwdne7296:0" + +#: email/doctype/notification/notification.js:180 +msgid "No alerts for today" +msgstr "crwdns7298:0crwdne7298:0" + +#: email/doctype/newsletter/newsletter.js:34 +msgid "No broken links found in the email content" +msgstr "crwdns7300:0crwdne7300:0" + +#: public/js/frappe/form/save.js:38 +msgid "No changes in document" +msgstr "crwdns7302:0crwdne7302:0" + +#: model/rename_doc.py:369 +msgid "No changes made because old and new name are the same." +msgstr "crwdns7304:0crwdne7304:0" + +#: public/js/frappe/views/workspace/workspace.js:1477 +msgid "No changes made on the page" +msgstr "crwdns7306:0crwdne7306:0" + +#: custom/doctype/doctype_layout/doctype_layout.js:59 +msgid "No changes to sync" +msgstr "crwdns7308:0crwdne7308:0" + +#: core/doctype/data_import/importer.py:286 +msgid "No changes to update" +msgstr "crwdns7310:0crwdne7310:0" + +#: website/doctype/blog_post/blog_post.py:376 +msgid "No comments yet" +msgstr "crwdns7312:0crwdne7312:0" + +#: templates/includes/comments/comments.html:4 +msgid "No comments yet. " +msgstr "crwdns7314:0crwdne7314:0" + +#: automation/doctype/auto_repeat/auto_repeat.py:426 +msgid "No contacts linked to document" +msgstr "crwdns7316:0crwdne7316:0" + +#: desk/query_report.py:335 +msgid "No data to export" +msgstr "crwdns7318:0crwdne7318:0" + +#: contacts/doctype/address/address.py:251 +msgid "No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template." +msgstr "crwdns7320:0crwdne7320:0" + +#: public/js/frappe/ui/toolbar/search.js:71 +msgid "No documents found tagged with {0}" +msgstr "crwdns7322:0{0}crwdne7322:0" + +#: 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 "crwdns7324:0crwdne7324:0" + +#: utils/file_manager.py:143 +msgid "No file attached" +msgstr "crwdns7326:0crwdne7326:0" + +#: desk/form/utils.py:102 +msgid "No further records" +msgstr "crwdns7328:0crwdne7328:0" + +#: templates/includes/search_template.html:49 +msgid "No matching records. Search something new" +msgstr "crwdns7330:0crwdne7330:0" + +#: public/js/frappe/web_form/web_form_list.js:161 +msgid "No more items to display" +msgstr "crwdns7332:0crwdne7332:0" + +#: utils/password_strength.py:45 +msgid "No need for symbols, digits, or uppercase letters." +msgstr "crwdns7334:0crwdne7334:0" + +#: integrations/doctype/google_contacts/google_contacts.py:192 +msgid "No new Google Contacts synced." +msgstr "crwdns7336:0crwdne7336:0" + +#: printing/page/print_format_builder/print_format_builder.js:415 +msgid "No of Columns" +msgstr "crwdns7338:0crwdne7338:0" + +#. Label of a Int field in DocType 'SMS Log' +#: core/doctype/sms_log/sms_log.json +msgctxt "SMS Log" +msgid "No of Requested SMS" +msgstr "crwdns7340:0crwdne7340:0" + +#. Label of a Int field in DocType 'Auto Email Report' +#: email/doctype/auto_email_report/auto_email_report.json +msgctxt "Auto Email Report" +msgid "No of Rows (Max 500)" +msgstr "crwdns7342:0crwdne7342:0" + +#. Label of a Int field in DocType 'SMS Log' +#: core/doctype/sms_log/sms_log.json +msgctxt "SMS Log" +msgid "No of Sent SMS" +msgstr "crwdns7344:0crwdne7344:0" + +#: __init__.py:1010 client.py:109 client.py:151 +msgid "No permission for {0}" +msgstr "crwdns7346:0{0}crwdne7346:0" + +#: public/js/frappe/form/form.js:1115 +msgctxt "{0} = verb, {1} = object" +msgid "No permission to '{0}' {1}" +msgstr "crwdns7348:0{0}crwdnd7348:0{1}crwdne7348:0" + +#: model/db_query.py:944 +msgid "No permission to read {0}" +msgstr "crwdns7350:0{0}crwdne7350:0" + +#: share.py:224 +msgid "No permission to {0} {1} {2}" +msgstr "crwdns7352:0{0}crwdnd7352:0{1}crwdnd7352:0{2}crwdne7352:0" + +#: core/doctype/user_permission/user_permission_list.js:175 +msgid "No records deleted" +msgstr "crwdns7354:0crwdne7354:0" + +#: contacts/report/addresses_and_contacts/addresses_and_contacts.py:121 +msgid "No records present in {0}" +msgstr "crwdns7356:0{0}crwdne7356:0" + +#: public/js/frappe/data_import/data_exporter.js:221 +msgid "No records will be exported" +msgstr "crwdns7358:0crwdne7358:0" + +#: www/printview.py:426 +msgid "No template found at path: {0}" +msgstr "crwdns7360:0{0}crwdne7360:0" + +#: website/web_template/discussions/discussions.html:2 +msgid "No {0}" +msgstr "crwdns7362:0{0}crwdne7362:0" + +#: public/js/frappe/list/list_view.js:466 +msgid "No {0} found with matching filters. Clear filters to see all {0}." +msgstr "crwdns7364:0{0}crwdnd7364:0{0}crwdne7364:0" + +#: public/js/frappe/views/inbox/inbox_view.js:171 +msgid "No {0} mail" +msgstr "crwdns7366:0{0}crwdne7366:0" + +#: public/js/form_builder/utils.js:117 public/js/frappe/form/grid_row.js:251 +msgid "No." +msgstr "crwdns7368:0crwdne7368:0" + +#. Label of a Check field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Non Negative" +msgstr "crwdns7370:0crwdne7370:0" + +#. Label of a Check field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Non Negative" +msgstr "crwdns7372:0crwdne7372:0" + +#. Label of a Check field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Non Negative" +msgstr "crwdns7374:0crwdne7374:0" + +#. Option for a Select field in DocType 'S3 Backup Settings' +#: integrations/doctype/s3_backup_settings/s3_backup_settings.json +msgctxt "S3 Backup Settings" +msgid "None" +msgstr "crwdns7376:0crwdne7376:0" + +#: public/js/frappe/form/workflow.js:36 +msgid "None: End of Workflow" +msgstr "crwdns7378:0crwdne7378:0" + +#. Label of a Int field in DocType 'Recorder Query' +#: core/doctype/recorder_query/recorder_query.json +msgctxt "Recorder Query" +msgid "Normalized Copies" +msgstr "crwdns7380:0crwdne7380:0" + +#. Label of a Data field in DocType 'Recorder Query' +#: core/doctype/recorder_query/recorder_query.json +msgctxt "Recorder Query" +msgid "Normalized Query" +msgstr "crwdns7382:0crwdne7382:0" + +#: core/doctype/user/user.py:972 utils/oauth.py:272 +msgid "Not Allowed" +msgstr "crwdns7384:0crwdne7384:0" + +#: public/js/frappe/ui/filters/filter.js:36 +msgid "Not Ancestors Of" +msgstr "crwdns7386:0crwdne7386:0" + +#: public/js/frappe/ui/filters/filter.js:34 +msgid "Not Descendants Of" +msgstr "crwdns7388:0crwdne7388:0" + +#: public/js/frappe/ui/filters/filter.js:17 +msgid "Not Equals" +msgstr "crwdns7390:0crwdne7390:0" + +#: app.py:363 www/404.html:3 +msgid "Not Found" +msgstr "crwdns7392:0crwdne7392:0" + +#. Label of a Int field in DocType 'Help Article' +#: website/doctype/help_article/help_article.json +msgctxt "Help Article" +msgid "Not Helpful" +msgstr "crwdns7394:0crwdne7394:0" + +#: public/js/frappe/ui/filters/filter.js:21 +msgid "Not In" +msgstr "crwdns7396:0crwdne7396:0" + +#: public/js/frappe/ui/filters/filter.js:19 +msgid "Not Like" +msgstr "crwdns7398:0crwdne7398:0" + +#: public/js/frappe/form/linked_with.js:45 +msgid "Not Linked to any record" +msgstr "crwdns7400:0crwdne7400:0" + +#. Label of a Check field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Not Nullable" +msgstr "crwdns7402:0crwdne7402:0" + +#: __init__.py:904 app.py:354 desk/calendar.py:26 geo/utils.py:97 +#: public/js/frappe/web_form/webform_script.js:15 +#: website/doctype/web_form/web_form.py:603 +#: website/page_renderers/not_permitted_page.py:20 www/login.py:177 +#: www/qrcode.py:22 www/qrcode.py:25 www/qrcode.py:37 +msgid "Not Permitted" +msgstr "crwdns7404:0crwdne7404:0" + +#: desk/query_report.py:513 +msgid "Not Permitted to read {0}" +msgstr "crwdns7406:0{0}crwdne7406:0" + +#: website/doctype/blog_post/blog_post_list.js:7 +#: website/doctype/web_form/web_form_list.js:7 +#: website/doctype/web_page/web_page_list.js:7 +msgid "Not Published" +msgstr "crwdns7408:0crwdne7408:0" + +#: public/js/frappe/form/toolbar.js:260 public/js/frappe/form/toolbar.js:740 +#: public/js/frappe/model/indicator.js:28 +#: public/js/frappe/views/kanban/kanban_view.js:167 +#: public/js/frappe/views/reports/report_view.js:173 +#: public/js/print_format_builder/print_format_builder.bundle.js:39 +#: website/doctype/web_form/templates/web_form.html:75 +msgid "Not Saved" +msgstr "crwdns7410:0crwdne7410:0" + +#: core/doctype/error_log/error_log_list.js:7 +msgid "Not Seen" +msgstr "crwdns7412:0crwdne7412:0" + +#: email/doctype/newsletter/newsletter_list.js:9 +msgid "Not Sent" +msgstr "crwdns7414:0crwdne7414:0" + +#. Option for a Select field in DocType 'Email Queue' +#: email/doctype/email_queue/email_queue.json +msgctxt "Email Queue" +msgid "Not Sent" +msgstr "crwdns7416:0crwdne7416:0" + +#. Option for a Select field in DocType 'Email Queue Recipient' +#: email/doctype/email_queue_recipient/email_queue_recipient.json +msgctxt "Email Queue Recipient" +msgid "Not Sent" +msgstr "crwdns7418:0crwdne7418:0" + +#: public/js/frappe/list/list_sidebar_group_by.js:219 +msgid "Not Set" +msgstr "crwdns7420:0crwdne7420:0" + +#: public/js/frappe/ui/filters/filter.js:563 +msgctxt "Field value is not set" +msgid "Not Set" +msgstr "crwdns7422:0crwdne7422:0" + +#: utils/csvutils.py:77 +msgid "Not a valid Comma Separated Value (CSV File)" +msgstr "crwdns7424:0crwdne7424:0" + +#: core/doctype/user/user.py:197 +msgid "Not a valid User Image." +msgstr "crwdns7426:0crwdne7426:0" + +#: model/workflow.py:118 +msgid "Not a valid Workflow Action" +msgstr "crwdns7428:0crwdne7428:0" + +#: workflow/doctype/workflow/workflow_list.js:7 +msgid "Not active" +msgstr "crwdns7430:0crwdne7430:0" + +#: permissions.py:364 +msgid "Not allowed for {0}: {1}" +msgstr "crwdns7432:0{0}crwdnd7432:0{1}crwdne7432:0" + +#: email/doctype/notification/notification.py:388 +msgid "Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings" +msgstr "crwdns7434:0{0}crwdnd7434:0{0}crwdne7434:0" + +#: core/doctype/doctype/doctype.py:338 +msgid "Not allowed to create custom Virtual DocType." +msgstr "crwdns7436:0crwdne7436:0" + +#: www/printview.py:141 +msgid "Not allowed to print cancelled documents" +msgstr "crwdns7438:0crwdne7438:0" + +#: www/printview.py:138 +msgid "Not allowed to print draft documents" +msgstr "crwdns7440:0crwdne7440:0" + +#: permissions.py:210 +msgid "Not allowed via controller permission check" +msgstr "crwdns7442:0crwdne7442:0" + +#: public/js/frappe/request.js:145 website/js/website.js:94 +msgid "Not found" +msgstr "crwdns7444:0crwdne7444:0" + +#: core/doctype/page/page.py:62 +msgid "Not in Developer Mode" +msgstr "crwdns7446:0crwdne7446:0" + +#: core/doctype/doctype/doctype.py:332 +msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType." +msgstr "crwdns7448:0crwdne7448:0" + +#: api/v1.py:88 api/v1.py:93 +#: core/doctype/system_settings/system_settings.py:199 handler.py:109 +#: public/js/frappe/request.js:157 public/js/frappe/request.js:167 +#: public/js/frappe/request.js:172 +#: public/js/frappe/views/kanban/kanban_board.bundle.js:68 +#: website/doctype/web_form/web_form.py:616 website/js/website.js:97 +msgid "Not permitted" +msgstr "crwdns7450:0crwdne7450:0" + +#: public/js/frappe/list/list_view.js:45 +msgid "Not permitted to view {0}" +msgstr "crwdns7452:0{0}crwdne7452:0" + +#. Name of a DocType +#: automation/doctype/auto_repeat/auto_repeat.py:395 +#: desk/doctype/note/note.json +msgid "Note" +msgstr "crwdns7454:0crwdne7454:0" + +#. Label of a Link in the Tools Workspace +#: automation/workspace/tools/tools.json +msgctxt "Note" +msgid "Note" +msgstr "crwdns7456:0crwdne7456:0" + +#. Name of a DocType +#: desk/doctype/note_seen_by/note_seen_by.json +msgid "Note Seen By" +msgstr "crwdns7458:0crwdne7458:0" + +#: www/confirm_workflow_action.html:8 +msgid "Note:" +msgstr "crwdns7460:0crwdne7460:0" + +#. Description of a Check field in DocType 'Dropbox Settings' +#: integrations/doctype/dropbox_settings/dropbox_settings.json +msgctxt "Dropbox Settings" +msgid "Note: By default emails for failed backups are sent." +msgstr "crwdns7462:0crwdne7462:0" + +#. Description of a Check field in DocType 'Google Drive' +#: integrations/doctype/google_drive/google_drive.json +msgctxt "Google Drive" +msgid "Note: By default emails for failed backups are sent." +msgstr "crwdns7464:0crwdne7464:0" + +#: public/js/frappe/utils/utils.js:775 +msgid "Note: Changing the Page Name will break previous URL to this page." +msgstr "crwdns7466:0crwdne7466:0" + +#: core/doctype/user/user.js:25 +msgid "Note: Etc timezones have their signs reversed." +msgstr "crwdns7468:0crwdne7468:0" + +#. Description of a Section Break field in DocType 'Website Slideshow' +#: website/doctype/website_slideshow/website_slideshow.json +msgctxt "Website Slideshow" +msgid "Note: For best results, images must be of the same size and width must be greater than height." +msgstr "crwdns7470:0crwdne7470:0" + +#. Description of a Check field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Note: Multiple sessions will be allowed in case of mobile device" +msgstr "crwdns7472:0crwdne7472:0" + +#: 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 "crwdns7474:0{0}crwdne7474:0" + +#: core/doctype/data_export/exporter.py:183 +msgid "Notes:" +msgstr "crwdns7476:0crwdne7476:0" + +#: public/js/frappe/form/undo_manager.js:43 +msgid "Nothing left to redo" +msgstr "crwdns7478:0crwdne7478:0" + +#: public/js/frappe/form/undo_manager.js:33 +msgid "Nothing left to undo" +msgstr "crwdns7480:0crwdne7480:0" + +#: public/js/frappe/list/base_list.js:359 templates/includes/list/list.html:7 +#: website/doctype/blog_post/templates/blog_post_list.html:41 +msgid "Nothing to show" +msgstr "crwdns7482:0crwdne7482:0" + +#: core/doctype/user_permission/user_permission_list.js:129 +msgid "Nothing to update" +msgstr "crwdns7484:0crwdne7484:0" + +#. Name of a DocType +#: core/doctype/communication/mixins.py:142 +#: email/doctype/notification/notification.json +msgid "Notification" +msgstr "crwdns7486:0crwdne7486:0" + +#. Label of a Section Break field in DocType 'Auto Repeat' +#: automation/doctype/auto_repeat/auto_repeat.json +msgctxt "Auto Repeat" +msgid "Notification" +msgstr "crwdns7488:0crwdne7488:0" + +#. Option for a Select field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Notification" +msgstr "crwdns7490:0crwdne7490:0" + +#. Linked DocType in DocType's connections +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Notification" +msgstr "crwdns7492:0crwdne7492:0" + +#. Linked DocType in Module Def's connections +#: core/doctype/module_def/module_def.json +msgctxt "Module Def" +msgid "Notification" +msgstr "crwdns7494:0crwdne7494:0" + +#. Label of a Link in the Tools Workspace +#: automation/workspace/tools/tools.json +msgctxt "Notification" +msgid "Notification" +msgstr "crwdns7496:0crwdne7496:0" + +#. Label of a Section Break field in DocType 'S3 Backup Settings' +#: integrations/doctype/s3_backup_settings/s3_backup_settings.json +msgctxt "S3 Backup Settings" +msgid "Notification" +msgstr "crwdns7498:0crwdne7498:0" + +#. Name of a DocType +#: desk/doctype/notification_log/notification_log.json +msgid "Notification Log" +msgstr "crwdns7500:0crwdne7500:0" + +#. Name of a DocType +#: email/doctype/notification_recipient/notification_recipient.json +msgid "Notification Recipient" +msgstr "crwdns7502:0crwdne7502:0" + +#. Name of a DocType +#: desk/doctype/notification_settings/notification_settings.json +#: public/js/frappe/ui/notifications/notifications.js:36 +msgid "Notification Settings" +msgstr "crwdns7504:0crwdne7504:0" + +#. Label of a Link in the Tools Workspace +#: automation/workspace/tools/tools.json +msgctxt "Notification Settings" +msgid "Notification Settings" +msgstr "crwdns7506:0crwdne7506:0" + +#. Name of a DocType +#: desk/doctype/notification_subscribed_document/notification_subscribed_document.json +msgid "Notification Subscribed Document" +msgstr "crwdns7508:0crwdne7508:0" + +#: public/js/frappe/ui/notifications/notifications.js:49 +#: public/js/frappe/ui/notifications/notifications.js:180 +msgid "Notifications" +msgstr "crwdns7510:0crwdne7510:0" + +#. Label of a Check field in DocType 'Role' +#: core/doctype/role/role.json +msgctxt "Role" +msgid "Notifications" +msgstr "crwdns7512:0crwdne7512:0" + +#. Description of a Check field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Notifications and bulk mails will be sent from this outgoing server." +msgstr "crwdns7514:0crwdne7514:0" + +#. Label of a Check field in DocType 'Note' +#: desk/doctype/note/note.json +msgctxt "Note" +msgid "Notify Users On Every Login" +msgstr "crwdns7516:0crwdne7516:0" + +#. Label of a Check field in DocType 'Auto Repeat' +#: automation/doctype/auto_repeat/auto_repeat.json +msgctxt "Auto Repeat" +msgid "Notify by Email" +msgstr "crwdns7518:0crwdne7518:0" + +#. Label of a Check field in DocType 'DocShare' +#: core/doctype/docshare/docshare.json +msgctxt "DocShare" +msgid "Notify by email" +msgstr "crwdns7520:0crwdne7520:0" + +#. Label of a Check field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Notify if unreplied" +msgstr "crwdns7522:0crwdne7522:0" + +#. Label of a Int field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Notify if unreplied for (in mins)" +msgstr "crwdns7524:0crwdne7524:0" + +#. Label of a Check field in DocType 'Note' +#: desk/doctype/note/note.json +msgctxt "Note" +msgid "Notify users with a popup when they log in" +msgstr "crwdns7526:0crwdne7526:0" + +#: public/js/frappe/form/controls/datetime.js:25 +#: public/js/frappe/form/controls/time.js:37 +msgid "Now" +msgstr "crwdns7528:0crwdne7528:0" + +#. Label of a Data field in DocType 'Contact Phone' +#: contacts/doctype/contact_phone/contact_phone.json +msgctxt "Contact Phone" +msgid "Number" +msgstr "crwdns7530:0crwdne7530:0" + +#. Name of a DocType +#: desk/doctype/number_card/number_card.json +#: public/js/frappe/widgets/widget_dialog.js:591 +msgid "Number Card" +msgstr "crwdns7532:0crwdne7532:0" + +#. Name of a DocType +#: desk/doctype/number_card_link/number_card_link.json +msgid "Number Card Link" +msgstr "crwdns7534:0crwdne7534:0" + +#. Label of a Link field in DocType 'Workspace Number Card' +#: desk/doctype/workspace_number_card/workspace_number_card.json +msgctxt "Workspace Number Card" +msgid "Number Card Name" +msgstr "crwdns7536:0crwdne7536:0" + +#: public/js/frappe/widgets/widget_dialog.js:621 +msgid "Number Cards" +msgstr "crwdns7538:0crwdne7538:0" + +#. Label of a Tab Break field in DocType 'Workspace' +#. Label of a Table field in DocType 'Workspace' +#: desk/doctype/workspace/workspace.json +msgctxt "Workspace" +msgid "Number Cards" +msgstr "crwdns7540:0crwdne7540:0" + +#. Label of a Select field in DocType 'Currency' +#: geo/doctype/currency/currency.json +msgctxt "Currency" +msgid "Number Format" +msgstr "crwdns7542:0crwdne7542:0" + +#. Label of a Select field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Number Format" +msgstr "crwdns7544:0crwdne7544:0" + +#. Label of a Int field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Number of Backups" +msgstr "crwdns7546:0crwdne7546:0" + +#. Label of a Int field in DocType 'Dropbox Settings' +#: integrations/doctype/dropbox_settings/dropbox_settings.json +msgctxt "Dropbox Settings" +msgid "Number of DB Backups" +msgstr "crwdns7548:0crwdne7548:0" + +#: integrations/doctype/dropbox_settings/dropbox_settings.py:53 +msgid "Number of DB backups cannot be less than 1" +msgstr "crwdns7550:0crwdne7550:0" + +#. Label of a Int field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "Number of Groups" +msgstr "crwdns7552:0crwdne7552:0" + +#. Label of a Int field in DocType 'Recorder' +#: core/doctype/recorder/recorder.json +msgctxt "Recorder" +msgid "Number of Queries" +msgstr "crwdns7554:0crwdne7554:0" + +#: core/doctype/doctype/doctype.py:444 public/js/frappe/doctype/index.js:59 +msgid "Number of attachment fields are more than {}, limit updated to {}." +msgstr "crwdns7556:0crwdne7556:0" + +#: core/doctype/system_settings/system_settings.py:152 +msgid "Number of backups must be greater than zero." +msgstr "crwdns7558:0crwdne7558:0" + +#. Description of a Int field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Number of columns for a field in a Grid (Total Columns in a grid should be less than 11)" +msgstr "crwdns7560:0crwdne7560:0" + +#. Description of a Int field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Number of columns for a field in a List View or a Grid (Total Columns should be less than 11)" +msgstr "crwdns7562:0crwdne7562:0" + +#. Description of a Int field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Number of columns for a field in a List View or a Grid (Total Columns should be less than 11)" +msgstr "crwdns7564:0crwdne7564:0" + +#. Description of a Int field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Number of days after which the document Web View link shared on email will be expired" +msgstr "crwdns7566:0crwdne7566:0" + +#. Option for a Select field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "OAuth" +msgstr "crwdns7568:0crwdne7568:0" + +#. Name of a DocType +#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +msgid "OAuth Authorization Code" +msgstr "crwdns7570:0crwdne7570:0" + +#. Name of a DocType +#: integrations/doctype/oauth_bearer_token/oauth_bearer_token.json +msgid "OAuth Bearer Token" +msgstr "crwdns7572:0crwdne7572:0" + +#. Name of a DocType +#: integrations/doctype/oauth_client/oauth_client.json +msgid "OAuth Client" +msgstr "crwdns7574:0crwdne7574:0" + +#. Label of a Link in the Integrations Workspace +#: integrations/workspace/integrations/integrations.json +msgctxt "OAuth Client" +msgid "OAuth Client" +msgstr "crwdns7576:0crwdne7576:0" + +#. Label of a Section Break field in DocType 'Google Settings' +#: integrations/doctype/google_settings/google_settings.json +msgctxt "Google Settings" +msgid "OAuth Client ID" +msgstr "crwdns7578:0crwdne7578:0" + +#: email/oauth.py:31 +msgid "OAuth Error" +msgstr "crwdns7580:0crwdne7580:0" + +#. Name of a DocType +#: integrations/doctype/oauth_provider_settings/oauth_provider_settings.json +msgid "OAuth Provider Settings" +msgstr "crwdns7582:0crwdne7582:0" + +#. Label of a Link in the Integrations Workspace +#: integrations/workspace/integrations/integrations.json +msgctxt "OAuth Provider Settings" +msgid "OAuth Provider Settings" +msgstr "crwdns7584:0crwdne7584:0" + +#. Name of a DocType +#: integrations/doctype/oauth_scope/oauth_scope.json +msgid "OAuth Scope" +msgstr "crwdns7586:0crwdne7586:0" + +#: email/doctype/email_account/email_account.js:187 +msgid "OAuth has been enabled but not authorised. Please use \"Authorise API Access\" button to do the same." +msgstr "crwdns7588:0crwdne7588:0" + +#: templates/includes/oauth_confirmation.html:39 +msgid "OK" +msgstr "crwdns7590:0crwdne7590:0" + +#. Option for a Select field in DocType 'Recorder' +#: core/doctype/recorder/recorder.json +msgctxt "Recorder" +msgid "OPTIONS" +msgstr "crwdns7592:0crwdne7592:0" + +#. Option for a Select field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "OTP App" +msgstr "crwdns7594:0crwdne7594:0" + +#. Label of a Data field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "OTP Issuer Name" +msgstr "crwdns7596:0crwdne7596:0" + +#: twofactor.py:468 +msgid "OTP Secret Reset - {0}" +msgstr "crwdns7598:0{0}crwdne7598:0" + +#: twofactor.py:487 +msgid "OTP Secret has been reset. Re-registration will be required on next login." +msgstr "crwdns7600:0crwdne7600:0" + +#. Option for a Select field in DocType 'LDAP Settings' +#: integrations/doctype/ldap_settings/ldap_settings.json +msgctxt "LDAP Settings" +msgid "Off" +msgstr "crwdns7602:0crwdne7602:0" + +#. Option for a Select field in DocType 'Address' +#: contacts/doctype/address/address.json +msgctxt "Address" +msgid "Office" +msgstr "crwdns7604:0crwdne7604:0" + +#. Option for a Select field in DocType 'Social Login Key' +#: integrations/doctype/social_login_key/social_login_key.json +msgctxt "Social Login Key" +msgid "Office 365" +msgstr "crwdns7606:0crwdne7606:0" + +#. Label of a Int field in DocType 'Form Tour Step' +#: desk/doctype/form_tour_step/form_tour_step.json +msgctxt "Form Tour Step" +msgid "Offset X" +msgstr "crwdns7608:0crwdne7608:0" + +#. Label of a Int field in DocType 'Form Tour Step' +#: desk/doctype/form_tour_step/form_tour_step.json +msgctxt "Form Tour Step" +msgid "Offset Y" +msgstr "crwdns7610:0crwdne7610:0" + +#: www/update-password.html:15 +msgid "Old Password" +msgstr "crwdns7612:0crwdne7612:0" + +#: custom/doctype/custom_field/custom_field.py:362 +msgid "Old and new fieldnames are same." +msgstr "crwdns7614:0crwdne7614:0" + +#. Description of a Int field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Older backups will be automatically deleted" +msgstr "crwdns7616:0crwdne7616:0" + +#. Option for a Select field in DocType 'Personal Data Deletion Request' +#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +msgctxt "Personal Data Deletion Request" +msgid "On Hold" +msgstr "crwdns7618:0crwdne7618:0" + +#. Option for a Select field in DocType 'Server Script' +#: core/doctype/server_script/server_script.json +msgctxt "Server Script" +msgid "On Payment Authorization" +msgstr "crwdns7620:0crwdne7620:0" + +#. Description of a Check field in DocType 'Webhook' +#: integrations/doctype/webhook/webhook.json +msgctxt "Webhook" +msgid "On checking this option, URL will be treated like a jinja template string" +msgstr "crwdns7622:0crwdne7622:0" + +#. Label of a Check field in DocType 'Workspace Link' +#: desk/doctype/workspace_link/workspace_link.json +msgctxt "Workspace Link" +msgid "Onboard" +msgstr "crwdns7624:0crwdne7624:0" + +#. Name of a DocType +#: desk/doctype/onboarding_permission/onboarding_permission.json +msgid "Onboarding Permission" +msgstr "crwdns7626:0crwdne7626:0" + +#. Label of a Small Text field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Onboarding Status" +msgstr "crwdns7628:0crwdne7628:0" + +#. Name of a DocType +#: desk/doctype/onboarding_step/onboarding_step.json +msgid "Onboarding Step" +msgstr "crwdns7630:0crwdne7630:0" + +#. Linked DocType in DocType's connections +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Onboarding Step" +msgstr "crwdns7632:0crwdne7632:0" + +#. Name of a DocType +#: desk/doctype/onboarding_step_map/onboarding_step_map.json +msgid "Onboarding Step Map" +msgstr "crwdns7634:0crwdne7634:0" + +#: public/js/frappe/widgets/onboarding_widget.js:269 +msgid "Onboarding complete" +msgstr "crwdns7636:0crwdne7636:0" + +#: core/doctype/doctype/doctype_list.js:28 +msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended." +msgstr "crwdns7638:0crwdne7638:0" + +#. Description of a Check field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended." +msgstr "crwdns7640:0crwdne7640:0" + +#: www/complete_signup.html:7 +msgid "One Last Step" +msgstr "crwdns7642:0crwdne7642:0" + +#: twofactor.py:283 +msgid "One Time Password (OTP) Registration Code from {}" +msgstr "crwdns7644:0crwdne7644:0" + +#: core/doctype/data_export/exporter.py:331 +msgid "One of" +msgstr "crwdns7646:0crwdne7646:0" + +#: public/js/frappe/views/workspace/workspace.js:1312 +msgid "One of the child page with name {0} already exist in {1} Section. Please update the name of the child page first before moving" +msgstr "crwdns7648:0{0}crwdnd7648:0{1}crwdne7648:0" + +#: client.py:213 +msgid "Only 200 inserts allowed in one request" +msgstr "crwdns7650:0crwdne7650:0" + +#: email/doctype/email_queue/email_queue.py:80 +msgid "Only Administrator can delete Email Queue" +msgstr "crwdns7652:0crwdne7652:0" + +#: core/doctype/page/page.py:66 +msgid "Only Administrator can edit" +msgstr "crwdns7654:0crwdne7654:0" + +#: core/doctype/report/report.py:71 +msgid "Only Administrator can save a standard report. Please rename and save." +msgstr "crwdns7656:0crwdne7656:0" + +#: recorder.py:234 +msgid "Only Administrator is allowed to use Recorder" +msgstr "crwdns7658:0crwdne7658:0" + +#. Label of a Link field in DocType 'Workflow Document State' +#: workflow/doctype/workflow_document_state/workflow_document_state.json +msgctxt "Workflow Document State" +msgid "Only Allow Edit For" +msgstr "crwdns7660:0crwdne7660:0" + +#: core/doctype/doctype/doctype.py:1561 +msgid "Only Options allowed for Data field are:" +msgstr "crwdns7662:0crwdne7662:0" + +#. Label of a Int field in DocType 'Auto Email Report' +#: email/doctype/auto_email_report/auto_email_report.json +msgctxt "Auto Email Report" +msgid "Only Send Records Updated in Last X Hours" +msgstr "crwdns7664:0crwdne7664:0" + +#: desk/doctype/workspace/workspace.js:36 +msgid "Only Workspace Manager can edit public workspaces" +msgstr "crwdns7666:0crwdne7666:0" + +#: public/js/frappe/views/workspace/workspace.js:536 +msgid "Only Workspace Manager can sort or edit this page" +msgstr "crwdns7668:0crwdne7668:0" + +#: modules/utils.py:66 +msgid "Only allowed to export customizations in developer mode" +msgstr "crwdns7670:0crwdne7670:0" + +#. Description of a Data field in DocType 'S3 Backup Settings' +#: integrations/doctype/s3_backup_settings/s3_backup_settings.json +msgctxt "S3 Backup Settings" +msgid "Only change this if you want to use other S3 compatible object storage backends." +msgstr "crwdns7672:0crwdne7672:0" + +#. Label of a Link field in DocType 'Workspace Link' +#: desk/doctype/workspace_link/workspace_link.json +msgctxt "Workspace Link" +msgid "Only for" +msgstr "crwdns7674:0crwdne7674:0" + +#: core/doctype/data_export/exporter.py:194 +msgid "Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish." +msgstr "crwdns7676:0crwdne7676:0" + +#: contacts/doctype/contact/contact.py:129 +#: contacts/doctype/contact/contact.py:153 +msgid "Only one {0} can be set as primary." +msgstr "crwdns7678:0{0}crwdne7678:0" + +#: desk/reportview.py:319 +msgid "Only reports of type Report Builder can be deleted" +msgstr "crwdns7680:0crwdne7680:0" + +#: desk/reportview.py:290 +msgid "Only reports of type Report Builder can be edited" +msgstr "crwdns7682:0crwdne7682:0" + +#: custom/doctype/customize_form/customize_form.py:124 +msgid "Only standard DocTypes are allowed to be customized from Customize Form." +msgstr "crwdns7684:0crwdne7684:0" + +#: desk/form/assign_to.py:181 +msgid "Only the assignee can complete this to-do." +msgstr "crwdns7686:0crwdne7686:0" + +#: public/js/frappe/form/sidebar/review.js:54 +msgid "Only users involved in the document are listed" +msgstr "crwdns7688:0crwdne7688:0" + +#: email/doctype/auto_email_report/auto_email_report.py:100 +msgid "Only {0} emailed reports are allowed per user." +msgstr "crwdns7690:0{0}crwdne7690:0" + +#: core/doctype/deleted_document/deleted_document.js:7 +msgid "Open" +msgstr "crwdns7692:0crwdne7692:0" + +#: desk/doctype/todo/todo_list.js:20 +msgctxt "Access" +msgid "Open" +msgstr "crwdns7694:0crwdne7694:0" + +#. Option for a Select field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Open" +msgstr "crwdns7696:0crwdne7696:0" + +#. Option for a Select field in DocType 'Contact' +#: contacts/doctype/contact/contact.json +msgctxt "Contact" +msgid "Open" +msgstr "crwdns7698:0crwdne7698:0" + +#. Option for a Select field in DocType 'Event' +#: desk/doctype/event/event.json +msgctxt "Event" +msgid "Open" +msgstr "crwdns7700:0crwdne7700:0" + +#. Option for a Select field in DocType 'ToDo' +#: desk/doctype/todo/todo.json +msgctxt "ToDo" +msgid "Open" +msgstr "crwdns7702:0crwdne7702:0" + +#. Option for a Select field in DocType 'Workflow Action' +#: workflow/doctype/workflow_action/workflow_action.json +msgctxt "Workflow Action" +msgid "Open" +msgstr "crwdns7704:0crwdne7704:0" + +#: public/js/frappe/ui/keyboard.js:202 +msgid "Open Awesomebar" +msgstr "crwdns7706:0crwdne7706:0" + +#: templates/emails/new_notification.html:10 +msgid "Open Document" +msgstr "crwdns7708:0crwdne7708:0" + +#. Label of a Table MultiSelect field in DocType 'Notification Settings' +#: desk/doctype/notification_settings/notification_settings.json +msgctxt "Notification Settings" +msgid "Open Documents" +msgstr "crwdns7710:0crwdne7710:0" + +#: public/js/frappe/ui/keyboard.js:237 +msgid "Open Help" +msgstr "crwdns7712:0crwdne7712:0" + +#. Label of a Button field in DocType 'Notification Log' +#: desk/doctype/notification_log/notification_log.json +msgctxt "Notification Log" +msgid "Open Reference Document" +msgstr "crwdns7714:0crwdne7714:0" + +#: public/js/frappe/ui/keyboard.js:220 +msgid "Open Settings" +msgstr "crwdns7716:0crwdne7716:0" + +#. Label of a Check field in DocType 'Top Bar Item' +#: website/doctype/top_bar_item/top_bar_item.json +msgctxt "Top Bar Item" +msgid "Open URL in a New Tab" +msgstr "crwdns7718:0crwdne7718:0" + +#. Description of a Check field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Open a dialog with mandatory fields to create a new record quickly" +msgstr "crwdns7720:0crwdne7720:0" + +#: public/js/frappe/ui/toolbar/awesome_bar.js:176 +msgid "Open a module or tool" +msgstr "crwdns7722:0crwdne7722:0" + +#: public/js/frappe/list/list_view.js:1187 +msgctxt "Description of a list view shortcut" +msgid "Open list item" +msgstr "crwdns7724:0crwdne7724:0" + +#: www/qrcode.html:13 +msgid "Open your authentication app on your mobile phone." +msgstr "crwdns7726:0crwdne7726:0" + +#: desk/doctype/todo/todo_list.js:23 +#: public/js/frappe/ui/toolbar/search_utils.js:261 +#: public/js/frappe/ui/toolbar/search_utils.js:262 +#: public/js/frappe/ui/toolbar/search_utils.js:273 +#: public/js/frappe/ui/toolbar/search_utils.js:283 +#: public/js/frappe/ui/toolbar/search_utils.js:292 +#: public/js/frappe/ui/toolbar/search_utils.js:310 +#: public/js/frappe/ui/toolbar/search_utils.js:311 +#: social/doctype/energy_point_log/energy_point_log_list.js:23 +msgid "Open {0}" +msgstr "crwdns7728:0{0}crwdne7728:0" + +#. Label of a Data field in DocType 'Connected App' +#: integrations/doctype/connected_app/connected_app.json +msgctxt "Connected App" +msgid "OpenID Configuration" +msgstr "crwdns7730:0crwdne7730:0" + +#. Option for a Select field in DocType 'LDAP Settings' +#: integrations/doctype/ldap_settings/ldap_settings.json +msgctxt "LDAP Settings" +msgid "OpenLDAP" +msgstr "crwdns7732:0crwdne7732:0" + +#. Option for a Select field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Opened" +msgstr "crwdns7734:0crwdne7734:0" + +#. Label of a Select field in DocType 'Activity Log' +#: core/doctype/activity_log/activity_log.json +msgctxt "Activity Log" +msgid "Operation" +msgstr "crwdns7736:0crwdne7736:0" + +#: utils/data.py:2063 +msgid "Operator must be one of {0}" +msgstr "crwdns7738:0{0}crwdne7738:0" + +#: core/doctype/file/file.js:24 +msgid "Optimize" +msgstr "crwdns7740:0crwdne7740:0" + +#: core/doctype/file/file.js:89 +msgid "Optimizing image..." +msgstr "crwdns7742:0crwdne7742:0" + +#: custom/doctype/custom_field/custom_field.js:100 +msgid "Option 1" +msgstr "crwdns7744:0crwdne7744:0" + +#: custom/doctype/custom_field/custom_field.js:102 +msgid "Option 2" +msgstr "crwdns7746:0crwdne7746:0" + +#: custom/doctype/custom_field/custom_field.js:104 +msgid "Option 3" +msgstr "crwdns7748:0crwdne7748:0" + +#: core/doctype/doctype/doctype.py:1579 +msgid "Option {0} for field {1} is not a child table" +msgstr "crwdns7750:0{0}crwdnd7750:0{1}crwdne7750:0" + +#. Description of a Code field in DocType 'Notification Recipient' +#: email/doctype/notification_recipient/notification_recipient.json +msgctxt "Notification Recipient" +msgid "Optional: Always send to these ids. Each Email Address on a new row" +msgstr "crwdns7752:0crwdne7752:0" + +#. Description of a Code field in DocType 'Notification' +#: email/doctype/notification/notification.json +msgctxt "Notification" +msgid "Optional: The alert will be sent if this expression is true" +msgstr "crwdns7754:0crwdne7754:0" + +#. Label of a Small Text field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Options" +msgstr "crwdns7756:0crwdne7756:0" + +#. Label of a Small Text field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Options" +msgstr "crwdns7758:0crwdne7758:0" + +#. Label of a Small Text field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Options" +msgstr "crwdns7760:0crwdne7760:0" + +#. Label of a Data field in DocType 'Report Column' +#: core/doctype/report_column/report_column.json +msgctxt "Report Column" +msgid "Options" +msgstr "crwdns7762:0crwdne7762:0" + +#. Label of a Small Text field in DocType 'Report Filter' +#: core/doctype/report_filter/report_filter.json +msgctxt "Report Filter" +msgid "Options" +msgstr "crwdns7764:0crwdne7764:0" + +#. Label of a Text field in DocType 'Web Form Field' +#: website/doctype/web_form_field/web_form_field.json +msgctxt "Web Form Field" +msgid "Options" +msgstr "crwdns7766:0crwdne7766:0" + +#. Label of a Small Text field in DocType 'Web Template Field' +#: website/doctype/web_template_field/web_template_field.json +msgctxt "Web Template Field" +msgid "Options" +msgstr "crwdns7768:0crwdne7768:0" + +#: core/doctype/doctype/doctype.py:1317 +msgid "Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType'" +msgstr "crwdns7770:0crwdne7770:0" + +#. Label of a HTML field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Options Help" +msgstr "crwdns7772:0crwdne7772:0" + +#: core/doctype/doctype/doctype.py:1601 +msgid "Options for Rating field can range from 3 to 10" +msgstr "crwdns7774:0crwdne7774:0" + +#: custom/doctype/custom_field/custom_field.js:96 +msgid "Options for select. Each option on a new line." +msgstr "crwdns7776:0crwdne7776:0" + +#: core/doctype/doctype/doctype.py:1334 +msgid "Options for {0} must be set before setting the default value." +msgstr "crwdns7778:0{0}crwdne7778:0" + +#: public/js/form_builder/store.js:177 +msgid "Options is required for field {0} of type {1}" +msgstr "crwdns7780:0{0}crwdnd7780:0{1}crwdne7780:0" + +#: model/base_document.py:767 +msgid "Options not set for link field {0}" +msgstr "crwdns7782:0{0}crwdne7782:0" + +#. Option for a Select field in DocType 'DocType State' +#: core/doctype/doctype_state/doctype_state.json +msgctxt "DocType State" +msgid "Orange" +msgstr "crwdns7784:0crwdne7784:0" + +#. Option for a Select field in DocType 'Kanban Board Column' +#: desk/doctype/kanban_board_column/kanban_board_column.json +msgctxt "Kanban Board Column" +msgid "Orange" +msgstr "crwdns7786:0crwdne7786:0" + +#. Label of a Code field in DocType 'Kanban Board Column' +#: desk/doctype/kanban_board_column/kanban_board_column.json +msgctxt "Kanban Board Column" +msgid "Order" +msgstr "crwdns7788:0crwdne7788:0" + +#. Label of a Section Break field in DocType 'About Us Settings' +#. Label of a Table field in DocType 'About Us Settings' +#: website/doctype/about_us_settings/about_us_settings.json +msgctxt "About Us Settings" +msgid "Org History" +msgstr "crwdns7790:0crwdne7790:0" + +#. Label of a Data field in DocType 'About Us Settings' +#: website/doctype/about_us_settings/about_us_settings.json +msgctxt "About Us Settings" +msgid "Org History Heading" +msgstr "crwdns7792:0crwdne7792:0" + +#: public/js/frappe/form/print_utils.js:26 +msgid "Orientation" +msgstr "crwdns7794:0crwdne7794:0" + +#. Option for a Select field in DocType 'Address' +#: contacts/doctype/address/address.json +msgctxt "Address" +msgid "Other" +msgstr "crwdns7796:0crwdne7796:0" + +#. Option for a Select field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Other" +msgstr "crwdns7798:0crwdne7798:0" + +#. Option for a Select field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Other" +msgstr "crwdns7800:0crwdne7800:0" + +#. Option for a Select field in DocType 'Event' +#: desk/doctype/event/event.json +msgctxt "Event" +msgid "Other" +msgstr "crwdns7802:0crwdne7802:0" + +#. Label of a Section Break field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Outgoing (SMTP) Settings" +msgstr "crwdns7804:0crwdne7804:0" + +#. Label of a Data field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Outgoing Server" +msgstr "crwdns7806:0crwdne7806:0" + +#. Label of a Data field in DocType 'Email Domain' +#: email/doctype/email_domain/email_domain.json +msgctxt "Email Domain" +msgid "Outgoing Server" +msgstr "crwdns7808:0crwdne7808:0" + +#. Label of a Section Break field in DocType 'Email Domain' +#: email/doctype/email_domain/email_domain.json +msgctxt "Email Domain" +msgid "Outgoing Settings" +msgstr "crwdns7810:0crwdne7810:0" + +#: email/doctype/email_domain/email_domain.py:33 +msgid "Outgoing email account not correct" +msgstr "crwdns7812:0crwdne7812:0" + +#. Option for a Select field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Outlook.com" +msgstr "crwdns7814:0crwdne7814:0" + +#. Label of a Code field in DocType 'Integration Request' +#: integrations/doctype/integration_request/integration_request.json +msgctxt "Integration Request" +msgid "Output" +msgstr "crwdns7816:0crwdne7816:0" + +#. Label of a Code field in DocType 'Permission Debugger' +#: core/doctype/permission_debugger/permission_debugger.json +msgctxt "Permission Debugger" +msgid "Output" +msgstr "crwdns7818:0crwdne7818:0" + +#. Label of a Code field in DocType 'System Console' +#: desk/doctype/system_console/system_console.json +msgctxt "System Console" +msgid "Output" +msgstr "crwdns7820:0crwdne7820:0" + +#: core/report/transaction_log_report/transaction_log_report.py:100 +#: social/doctype/energy_point_rule/energy_point_rule.js:42 +msgid "Owner" +msgstr "crwdns7822:0crwdne7822:0" + +#. Option for a Select field in DocType 'Recorder' +#: core/doctype/recorder/recorder.json +msgctxt "Recorder" +msgid "PATCH" +msgstr "crwdns7824:0crwdne7824:0" + +#: printing/page/print/print.js:71 +#: public/js/frappe/views/reports/query_report.js:1637 +msgid "PDF" +msgstr "crwdns7826:0crwdne7826:0" + +#. Label of a Float field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "PDF Page Height (in mm)" +msgstr "crwdns7828:0crwdne7828:0" + +#. Label of a Select field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "PDF Page Size" +msgstr "crwdns7830:0crwdne7830:0" + +#. Label of a Float field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "PDF Page Width (in mm)" +msgstr "crwdns7832:0crwdne7832:0" + +#. Label of a Section Break field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "PDF Settings" +msgstr "crwdns7834:0crwdne7834:0" + +#: utils/print_format.py:177 +msgid "PDF generation failed" +msgstr "crwdns7836:0crwdne7836:0" + +#: utils/pdf.py:95 +msgid "PDF generation failed because of broken image links" +msgstr "crwdns7838:0crwdne7838:0" + +#: printing/page/print/print.js:524 +msgid "PDF printing via \"Raw Print\" is not supported." +msgstr "crwdns7840:0crwdne7840:0" + +#. Label of a Data field in DocType 'RQ Worker' +#: core/doctype/rq_worker/rq_worker.json +msgctxt "RQ Worker" +msgid "PID" +msgstr "crwdns7842:0crwdne7842:0" + +#. Option for a Select field in DocType 'Recorder' +#: core/doctype/recorder/recorder.json +msgctxt "Recorder" +msgid "POST" +msgstr "crwdns7844:0crwdne7844:0" + +#. Option for a Select field in DocType 'Webhook' +#: integrations/doctype/webhook/webhook.json +msgctxt "Webhook" +msgid "POST" +msgstr "crwdns7846:0crwdne7846:0" + +#. Option for a Select field in DocType 'Recorder' +#: core/doctype/recorder/recorder.json +msgctxt "Recorder" +msgid "PUT" +msgstr "crwdns7848:0crwdne7848:0" + +#. Option for a Select field in DocType 'Webhook' +#: integrations/doctype/webhook/webhook.json +msgctxt "Webhook" +msgid "PUT" +msgstr "crwdns7850:0crwdne7850:0" + +#. Name of a DocType +#: core/doctype/package/package.json +msgid "Package" +msgstr "crwdns7852:0crwdne7852:0" + +#. Label of a Link field in DocType 'Module Def' +#: core/doctype/module_def/module_def.json +msgctxt "Module Def" +msgid "Package" +msgstr "crwdns7854:0crwdne7854:0" + +#. Label of a Link in the Build Workspace +#: core/workspace/build/build.json +msgctxt "Package" +msgid "Package" +msgstr "crwdns7856:0crwdne7856:0" + +#. Label of a Link field in DocType 'Package Release' +#: core/doctype/package_release/package_release.json +msgctxt "Package Release" +msgid "Package" +msgstr "crwdns7858:0crwdne7858:0" + +#. Name of a DocType +#: core/doctype/package_import/package_import.json +msgid "Package Import" +msgstr "crwdns7860:0crwdne7860:0" + +#. Label of a Link in the Build Workspace +#: core/workspace/build/build.json +msgctxt "Package Import" +msgid "Package Import" +msgstr "crwdns7862:0crwdne7862:0" + +#. Label of a Data field in DocType 'Package' +#: core/doctype/package/package.json +msgctxt "Package" +msgid "Package Name" +msgstr "crwdns7864:0crwdne7864:0" + +#. Name of a DocType +#: core/doctype/package_release/package_release.json +msgid "Package Release" +msgstr "crwdns7866:0crwdne7866:0" + +#. Linked DocType in Package's connections +#: core/doctype/package/package.json +msgctxt "Package" +msgid "Package Release" +msgstr "crwdns7868:0crwdne7868:0" + +#. Label of a Card Break in the Build Workspace +#: core/workspace/build/build.json +msgid "Packages" +msgstr "crwdns7870:0crwdne7870:0" + +#. Name of a DocType +#: core/doctype/page/page.json +msgid "Page" +msgstr "crwdns7872:0crwdne7872:0" + +#. Label of a Link field in DocType 'Custom Role' +#: core/doctype/custom_role/custom_role.json +msgctxt "Custom Role" +msgid "Page" +msgstr "crwdns7874:0crwdne7874:0" + +#. Option for a Select field in DocType 'Form Tour' +#: desk/doctype/form_tour/form_tour.json +msgctxt "Form Tour" +msgid "Page" +msgstr "crwdns7876:0crwdne7876:0" + +#. Option for a Select field in DocType 'Role Permission for Page and Report' +#. Label of a Link field in DocType 'Role Permission for Page and Report' +#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json +msgctxt "Role Permission for Page and Report" +msgid "Page" +msgstr "crwdns7878:0crwdne7878:0" + +#. Option for a Select field in DocType 'Workspace Link' +#: desk/doctype/workspace_link/workspace_link.json +msgctxt "Workspace Link" +msgid "Page" +msgstr "crwdns7880:0crwdne7880:0" + +#. Option for a Select field in DocType 'Workspace Shortcut' +#: desk/doctype/workspace_shortcut/workspace_shortcut.json +msgctxt "Workspace Shortcut" +msgid "Page" +msgstr "crwdns7882:0crwdne7882:0" + +#. Option for a Select field in DocType 'Web Form Field' +#: website/doctype/web_form_field/web_form_field.json +msgctxt "Web Form Field" +msgid "Page Break" +msgstr "crwdns7884:0crwdne7884:0" + +#. Option for a Select field in DocType 'Web Page' +#: website/doctype/web_page/web_page.json +msgctxt "Web Page" +msgid "Page Builder" +msgstr "crwdns7886:0crwdne7886:0" + +#. Label of a Table field in DocType 'Web Page' +#: website/doctype/web_page/web_page.json +msgctxt "Web Page" +msgid "Page Building Blocks" +msgstr "crwdns7888:0crwdne7888:0" + +#. Label of a Section Break field in DocType 'Page' +#: core/doctype/page/page.json +msgctxt "Page" +msgid "Page HTML" +msgstr "crwdns7890:0crwdne7890:0" + +#: public/js/frappe/list/bulk_operations.js:64 +msgid "Page Height (in mm)" +msgstr "crwdns7892:0crwdne7892:0" + +#. Label of a Data field in DocType 'Page' +#: core/doctype/page/page.json +msgctxt "Page" +msgid "Page Name" +msgstr "crwdns7894:0crwdne7894:0" + +#. Label of a Select field in DocType 'Print Format' +#: printing/doctype/print_format/print_format.json +msgctxt "Print Format" +msgid "Page Number" +msgstr "crwdns7896:0crwdne7896:0" + +#. Label of a Small Text field in DocType 'Form Tour' +#: desk/doctype/form_tour/form_tour.json +msgctxt "Form Tour" +msgid "Page Route" +msgstr "crwdns7898:0crwdne7898:0" + +#: public/js/frappe/views/workspace/workspace.js:1499 +msgid "Page Saved Successfully" +msgstr "crwdns7900:0crwdne7900:0" + +#. Label of a Section Break field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "Page Settings" +msgstr "crwdns7902:0crwdne7902:0" + +#: public/js/frappe/ui/keyboard.js:121 +msgid "Page Shortcuts" +msgstr "crwdns7904:0crwdne7904:0" + +#: public/js/frappe/list/bulk_operations.js:57 +msgid "Page Size" +msgstr "crwdns7906:0crwdne7906:0" + +#. Label of a Data field in DocType 'About Us Settings' +#: website/doctype/about_us_settings/about_us_settings.json +msgctxt "About Us Settings" +msgid "Page Title" +msgstr "crwdns7908:0crwdne7908:0" + +#: public/js/frappe/list/bulk_operations.js:71 +msgid "Page Width (in mm)" +msgstr "crwdns7910:0crwdne7910:0" + +#: www/qrcode.py:35 +msgid "Page has expired!" +msgstr "crwdns7912:0crwdne7912:0" + +#: printing/doctype/print_settings/print_settings.py:71 +#: public/js/frappe/list/bulk_operations.js:90 +msgid "Page height and width cannot be zero" +msgstr "crwdns7914:0crwdne7914:0" + +#: public/js/frappe/views/container.js:52 +msgid "Page not found" +msgstr "crwdns7916:0crwdne7916:0" + +#: public/js/frappe/views/workspace/workspace.js:1299 +msgid "Page with title {0} already exist." +msgstr "crwdns7918:0{0}crwdne7918:0" + +#: public/js/frappe/web_form/web_form.js:264 +#: templates/print_formats/standard.html:34 +msgid "Page {0} of {1}" +msgstr "crwdns7920:0{0}crwdnd7920:0{1}crwdne7920:0" + +#. Label of a Data field in DocType 'SMS Parameter' +#: core/doctype/sms_parameter/sms_parameter.json +msgctxt "SMS Parameter" +msgid "Parameter" +msgstr "crwdns7922:0crwdne7922:0" + +#: public/js/frappe/model/model.js:132 +#: public/js/frappe/views/workspace/workspace.js:606 +#: public/js/frappe/views/workspace/workspace.js:934 +#: public/js/frappe/views/workspace/workspace.js:1181 +msgid "Parent" +msgstr "crwdns7924:0crwdne7924:0" + +#. Label of a Link field in DocType 'DocType Link' +#: core/doctype/doctype_link/doctype_link.json +msgctxt "DocType Link" +msgid "Parent DocType" +msgstr "crwdns7926:0crwdne7926:0" + +#. Label of a Link field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "Parent Document Type" +msgstr "crwdns7928:0crwdne7928:0" + +#. Label of a Link field in DocType 'Number Card' +#: desk/doctype/number_card/number_card.json +msgctxt "Number Card" +msgid "Parent Document Type" +msgstr "crwdns7930:0crwdne7930:0" + +#: desk/doctype/number_card/number_card.py:61 +msgid "Parent Document Type is required to create a number card" +msgstr "crwdns7932:0crwdne7932:0" + +#. Label of a Data field in DocType 'Form Tour Step' +#: desk/doctype/form_tour_step/form_tour_step.json +msgctxt "Form Tour Step" +msgid "Parent Element Selector" +msgstr "crwdns7934:0crwdne7934:0" + +#. Label of a Select field in DocType 'Form Tour Step' +#: desk/doctype/form_tour_step/form_tour_step.json +msgctxt "Form Tour Step" +msgid "Parent Field" +msgstr "crwdns7936:0crwdne7936:0" + +#: core/doctype/doctype/doctype.py:915 +msgid "Parent Field (Tree)" +msgstr "crwdns7938:0crwdne7938:0" + +#. Label of a Data field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Parent Field (Tree)" +msgstr "crwdns7940:0crwdne7940:0" + +#: core/doctype/doctype/doctype.py:921 +msgid "Parent Field must be a valid fieldname" +msgstr "crwdns7942:0crwdne7942:0" + +#. Label of a Select field in DocType 'Top Bar Item' +#: website/doctype/top_bar_item/top_bar_item.json +msgctxt "Top Bar Item" +msgid "Parent Label" +msgstr "crwdns7944:0crwdne7944:0" + +#: core/doctype/doctype/doctype.py:1148 +msgid "Parent Missing" +msgstr "crwdns7946:0crwdne7946:0" + +#. Label of a Data field in DocType 'Workspace' +#: desk/doctype/workspace/workspace.json +msgctxt "Workspace" +msgid "Parent Page" +msgstr "crwdns7948:0crwdne7948:0" + +#: core/doctype/data_export/exporter.py:24 +msgid "Parent Table" +msgstr "crwdns7950:0crwdne7950:0" + +#: desk/doctype/dashboard_chart/dashboard_chart.py:404 +msgid "Parent document type is required to create a dashboard chart" +msgstr "crwdns7952:0crwdne7952:0" + +#: core/doctype/data_export/exporter.py:255 +msgid "Parent is the name of the document to which the data will get added to." +msgstr "crwdns7954:0crwdne7954:0" + +#: permissions.py:804 +msgid "Parentfield not specified in {0}: {1}" +msgstr "crwdns7956:0{0}crwdnd7956:0{1}crwdne7956:0" + +#: client.py:476 +msgid "Parenttype, Parent and Parentfield are required to insert a child record" +msgstr "crwdns7958:0crwdne7958:0" + +#. Label of a Check field in DocType 'Personal Data Deletion Step' +#: website/doctype/personal_data_deletion_step/personal_data_deletion_step.json +msgctxt "Personal Data Deletion Step" +msgid "Partial" +msgstr "crwdns7960:0crwdne7960:0" + +#. Option for a Select field in DocType 'Data Import' +#: core/doctype/data_import/data_import.json +msgctxt "Data Import" +msgid "Partial Success" +msgstr "crwdns7962:0crwdne7962:0" + +#. Option for a Select field in DocType 'Email Queue' +#: email/doctype/email_queue/email_queue.json +msgctxt "Email Queue" +msgid "Partially Sent" +msgstr "crwdns7964:0crwdne7964:0" + +#: desk/doctype/event/event.js:30 +msgid "Participants" +msgstr "crwdns7966:0crwdne7966:0" + +#. Label of a Section Break field in DocType 'Event' +#: desk/doctype/event/event.json +msgctxt "Event" +msgid "Participants" +msgstr "crwdns7968:0crwdne7968:0" + +#. Option for a Select field in DocType 'Contact' +#: contacts/doctype/contact/contact.json +msgctxt "Contact" +msgid "Passive" +msgstr "crwdns7970:0crwdne7970:0" + +#: core/doctype/user/user.js:154 core/doctype/user/user.js:201 +#: core/doctype/user/user.js:221 desk/page/setup_wizard/setup_wizard.js:474 +#: www/login.html:21 +msgid "Password" +msgstr "crwdns7972:0crwdne7972:0" + +#. Option for a Select field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Password" +msgstr "crwdns7974:0crwdne7974:0" + +#. Option for a Select field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Password" +msgstr "crwdns7976:0crwdne7976:0" + +#. Option for a Select field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Password" +msgstr "crwdns7978:0crwdne7978:0" + +#. Label of a Password field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Password" +msgstr "crwdns7980:0crwdne7980:0" + +#. Label of a Section Break field in DocType 'System Settings' +#. Label of a Tab Break field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Password" +msgstr "crwdns7982:0crwdne7982:0" + +#. Option for a Select field in DocType 'Web Form Field' +#: website/doctype/web_form_field/web_form_field.json +msgctxt "Web Form Field" +msgid "Password" +msgstr "crwdns7984:0crwdne7984:0" + +#: core/doctype/user/user.py:1036 +msgid "Password Email Sent" +msgstr "crwdns7986:0crwdne7986:0" + +#: core/doctype/user/user.py:418 +msgid "Password Reset" +msgstr "crwdns7988:0crwdne7988:0" + +#. Label of a Int field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Password Reset Link Generation Limit" +msgstr "crwdns7990:0crwdne7990:0" + +#: public/js/frappe/form/grid_row.js:790 +msgid "Password cannot be filtered" +msgstr "crwdns7992:0crwdne7992:0" + +#: integrations/doctype/ldap_settings/ldap_settings.py:358 +msgid "Password changed successfully." +msgstr "crwdns7994:0crwdne7994:0" + +#. Label of a Password field in DocType 'LDAP Settings' +#: integrations/doctype/ldap_settings/ldap_settings.json +msgctxt "LDAP Settings" +msgid "Password for Base DN" +msgstr "crwdns7996:0crwdne7996:0" + +#: email/doctype/email_account/email_account.py:165 +msgid "Password is required or select Awaiting Password" +msgstr "crwdns7998:0crwdne7998:0" + +#: public/js/frappe/desk.js:191 +msgid "Password missing in Email Account" +msgstr "crwdns8000:0crwdne8000:0" + +#: utils/password.py:42 +msgid "Password not found for {0} {1} {2}" +msgstr "crwdns8002:0{0}crwdnd8002:0{1}crwdnd8002:0{2}crwdne8002:0" + +#: core/doctype/user/user.py:1035 +msgid "Password reset instructions have been sent to your email" +msgstr "crwdns8004:0crwdne8004:0" + +#: www/update-password.html:164 +msgid "Password set" +msgstr "crwdns8006:0crwdne8006:0" + +#: auth.py:239 +msgid "Password size exceeded the maximum allowed size" +msgstr "crwdns8008:0crwdne8008:0" + +#: core/doctype/user/user.py:828 +msgid "Password size exceeded the maximum allowed size." +msgstr "crwdns8010:0crwdne8010:0" + +#: www/update-password.html:78 +msgid "Passwords do not match" +msgstr "crwdns8012:0crwdne8012:0" + +#: core/doctype/user/user.js:187 +msgid "Passwords do not match!" +msgstr "crwdns8014:0crwdne8014:0" + +#: email/doctype/newsletter/newsletter.py:156 +msgid "Past dates are not allowed for Scheduling." +msgstr "crwdns8016:0crwdne8016:0" + +#: public/js/frappe/views/file/file_view.js:151 +msgid "Paste" +msgstr "crwdns8018:0crwdne8018:0" + +#. Label of a Int field in DocType 'Package Release' +#: core/doctype/package_release/package_release.json +msgctxt "Package Release" +msgid "Patch" +msgstr "crwdns8020:0crwdne8020:0" + +#. Label of a Code field in DocType 'Patch Log' +#: core/doctype/patch_log/patch_log.json +msgctxt "Patch Log" +msgid "Patch" +msgstr "crwdns8022:0crwdne8022:0" + +#. Name of a DocType +#: core/doctype/patch_log/patch_log.json +msgid "Patch Log" +msgstr "crwdns8024:0crwdne8024:0" + +#: modules/patch_handler.py:137 +msgid "Patch type {} not found in patches.txt" +msgstr "crwdns8026:0crwdne8026:0" + +#: website/report/website_analytics/website_analytics.js:35 +msgid "Path" +msgstr "crwdns8028:0crwdne8028:0" + +#. Label of a Data field in DocType 'Onboarding Step' +#: desk/doctype/onboarding_step/onboarding_step.json +msgctxt "Onboarding Step" +msgid "Path" +msgstr "crwdns8030:0crwdne8030:0" + +#. Label of a Small Text field in DocType 'Package Release' +#: core/doctype/package_release/package_release.json +msgctxt "Package Release" +msgid "Path" +msgstr "crwdns8032:0crwdne8032:0" + +#. Label of a Data field in DocType 'Recorder' +#: core/doctype/recorder/recorder.json +msgctxt "Recorder" +msgid "Path" +msgstr "crwdns8034:0crwdne8034:0" + +#. Label of a Data field in DocType 'Web Page View' +#: website/doctype/web_page_view/web_page_view.json +msgctxt "Web Page View" +msgid "Path" +msgstr "crwdns8036:0crwdne8036:0" + +#. Label of a Data field in DocType 'LDAP Settings' +#: integrations/doctype/ldap_settings/ldap_settings.json +msgctxt "LDAP Settings" +msgid "Path to CA Certs File" +msgstr "crwdns8038:0crwdne8038:0" + +#. Label of a Data field in DocType 'LDAP Settings' +#: integrations/doctype/ldap_settings/ldap_settings.json +msgctxt "LDAP Settings" +msgid "Path to Server Certificate" +msgstr "crwdns8040:0crwdne8040:0" + +#. Label of a Data field in DocType 'LDAP Settings' +#: integrations/doctype/ldap_settings/ldap_settings.json +msgctxt "LDAP Settings" +msgid "Path to private Key File" +msgstr "crwdns8042:0crwdne8042:0" + +#. Label of a Int field in DocType 'Data Import' +#: core/doctype/data_import/data_import.json +msgctxt "Data Import" +msgid "Payload Count" +msgstr "crwdns8044:0crwdne8044:0" + +#. Option for a Select field in DocType 'Data Import' +#: core/doctype/data_import/data_import.json +msgctxt "Data Import" +msgid "Pending" +msgstr "crwdns8046:0crwdne8046:0" + +#. Option for a Select field in DocType 'Personal Data Deletion Step' +#: website/doctype/personal_data_deletion_step/personal_data_deletion_step.json +msgctxt "Personal Data Deletion Step" +msgid "Pending" +msgstr "crwdns8048:0crwdne8048:0" + +#. Option for a Select field in DocType 'Translation' +#: core/doctype/translation/translation.json +msgctxt "Translation" +msgid "Pending" +msgstr "crwdns8050:0crwdne8050:0" + +#. Option for a Select field in DocType 'Personal Data Deletion Request' +#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +msgctxt "Personal Data Deletion Request" +msgid "Pending Approval" +msgstr "crwdns8052:0crwdne8052:0" + +#. Option for a Select field in DocType 'Personal Data Deletion Request' +#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +msgctxt "Personal Data Deletion Request" +msgid "Pending Verification" +msgstr "crwdns8054:0crwdne8054:0" + +#. Option for a Select field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Percent" +msgstr "crwdns8056:0crwdne8056:0" + +#. Option for a Select field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Percent" +msgstr "crwdns8058:0crwdne8058:0" + +#. Option for a Select field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Percent" +msgstr "crwdns8060:0crwdne8060:0" + +#. Option for a Select field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "Percentage" +msgstr "crwdns8062:0crwdne8062:0" + +#. Label of a Select field in DocType 'Auto Email Report' +#: email/doctype/auto_email_report/auto_email_report.json +msgctxt "Auto Email Report" +msgid "Period" +msgstr "crwdns8064:0crwdne8064:0" + +#. Label of a Int field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Perm Level" +msgstr "crwdns8066:0crwdne8066:0" + +#. Label of a Int field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Perm Level" +msgstr "crwdns8068:0crwdne8068:0" + +#. Option for a Select field in DocType 'Address' +#: contacts/doctype/address/address.json +msgctxt "Address" +msgid "Permanent" +msgstr "crwdns8070:0crwdne8070:0" + +#: public/js/frappe/form/form.js:1047 +msgid "Permanently Cancel {0}?" +msgstr "crwdns8072:0{0}crwdne8072:0" + +#: public/js/frappe/form/form.js:877 +msgid "Permanently Submit {0}?" +msgstr "crwdns8074:0{0}crwdne8074:0" + +#: public/js/frappe/model/model.js:698 +msgid "Permanently delete {0}?" +msgstr "crwdns8076:0{0}crwdne8076:0" + +#. Name of a DocType +#: core/doctype/permission_debugger/permission_debugger.json +msgid "Permission Debugger" +msgstr "crwdns8078:0crwdne8078:0" + +#: core/doctype/user_type/user_type.py:83 +msgid "Permission Error" +msgstr "crwdns8080:0crwdne8080:0" + +#: core/page/permission_manager/permission_manager.js:446 +msgid "Permission Level" +msgstr "crwdns8082:0crwdne8082:0" + +#. Label of a Int field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Permission Level" +msgstr "crwdns8084:0crwdne8084:0" + +#. Label of a shortcut in the Users Workspace +#: core/workspace/users/users.json +msgid "Permission Manager" +msgstr "crwdns8086:0crwdne8086:0" + +#. Option for a Select field in DocType 'Server Script' +#: core/doctype/server_script/server_script.json +msgctxt "Server Script" +msgid "Permission Query" +msgstr "crwdns8088:0crwdne8088:0" + +#. Label of a Section Break field in DocType 'Custom Role' +#: core/doctype/custom_role/custom_role.json +msgctxt "Custom Role" +msgid "Permission Rules" +msgstr "crwdns8090:0crwdne8090:0" + +#. Label of a Section Break field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Permission Rules" +msgstr "crwdns8092:0crwdne8092:0" + +#. Label of a Select field in DocType 'Permission Debugger' +#: core/doctype/permission_debugger/permission_debugger.json +msgctxt "Permission Debugger" +msgid "Permission Type" +msgstr "crwdns8094:0crwdne8094:0" + +#. Label of a Card Break in the Users Workspace +#: core/doctype/user/user.js:129 core/doctype/user/user.js:138 +#: core/page/permission_manager/permission_manager.js:214 +#: core/workspace/users/users.json +msgid "Permissions" +msgstr "crwdns8096:0crwdne8096:0" + +#. Label of a Section Break field in DocType 'Custom DocPerm' +#: core/doctype/custom_docperm/custom_docperm.json +msgctxt "Custom DocPerm" +msgid "Permissions" +msgstr "crwdns8098:0crwdne8098:0" + +#. Label of a Section Break field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Permissions" +msgstr "crwdns8100:0crwdne8100:0" + +#. Label of a Section Break field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Permissions" +msgstr "crwdns8102:0crwdne8102:0" + +#. Label of a Section Break field in DocType 'DocPerm' +#: core/doctype/docperm/docperm.json +msgctxt "DocPerm" +msgid "Permissions" +msgstr "crwdns8104:0crwdne8104:0" + +#. Label of a Table field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Permissions" +msgstr "crwdns8106:0crwdne8106:0" + +#. Label of a Section Break field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Permissions" +msgstr "crwdns8108:0crwdne8108:0" + +#: core/doctype/doctype/doctype.py:1775 core/doctype/doctype/doctype.py:1785 +msgid "Permissions Error" +msgstr "crwdns8110:0crwdne8110:0" + +#. Name of a report +#. Label of a Link in the Users Workspace +#: core/report/permitted_documents_for_user/permitted_documents_for_user.json +#: core/workspace/users/users.json +msgid "Permitted Documents For User" +msgstr "crwdns8112:0crwdne8112:0" + +#. Label of a Table MultiSelect field in DocType 'Workflow Action' +#: workflow/doctype/workflow_action/workflow_action.json +msgctxt "Workflow Action" +msgid "Permitted Roles" +msgstr "crwdns8114:0crwdne8114:0" + +#. Option for a Select field in DocType 'Address' +#: contacts/doctype/address/address.json +msgctxt "Address" +msgid "Personal" +msgstr "crwdns8116:0crwdne8116:0" + +#. Name of a DocType +#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +msgid "Personal Data Deletion Request" +msgstr "crwdns8118:0crwdne8118:0" + +#. Name of a DocType +#: website/doctype/personal_data_deletion_step/personal_data_deletion_step.json +msgid "Personal Data Deletion Step" +msgstr "crwdns8120:0crwdne8120:0" + +#. Name of a DocType +#: website/doctype/personal_data_download_request/personal_data_download_request.json +msgid "Personal Data Download Request" +msgstr "crwdns8122:0crwdne8122:0" + +#. Label of a Data field in DocType 'Address' +#: contacts/doctype/address/address.json +msgctxt "Address" +msgid "Phone" +msgstr "crwdns8124:0crwdne8124:0" + +#. Option for a Select field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Phone" +msgstr "crwdns8126:0crwdne8126:0" + +#. Label of a Data field in DocType 'Contact' +#: contacts/doctype/contact/contact.json +msgctxt "Contact" +msgid "Phone" +msgstr "crwdns8128:0crwdne8128:0" + +#. Label of a Data field in DocType 'Contact Us Settings' +#: website/doctype/contact_us_settings/contact_us_settings.json +msgctxt "Contact Us Settings" +msgid "Phone" +msgstr "crwdns8130:0crwdne8130:0" + +#. Option for a Select field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Phone" +msgstr "crwdns8132:0crwdne8132:0" + +#. Option for a Select field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Phone" +msgstr "crwdns8134:0crwdne8134:0" + +#. Option for a Select field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Phone" +msgstr "crwdns8136:0crwdne8136:0" + +#. Label of a Data field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Phone" +msgstr "crwdns8138:0crwdne8138:0" + +#. Option for a Select field in DocType 'Web Form Field' +#: website/doctype/web_form_field/web_form_field.json +msgctxt "Web Form Field" +msgid "Phone" +msgstr "crwdns8140:0crwdne8140:0" + +#. Label of a Data field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Phone No." +msgstr "crwdns8142:0crwdne8142:0" + +#: utils/__init__.py:108 +msgid "Phone Number {0} set in field {1} is not valid." +msgstr "crwdns8144:0{0}crwdnd8144:0{1}crwdne8144:0" + +#: public/js/frappe/form/print_utils.js:38 +#: public/js/frappe/views/reports/report_view.js:1504 +#: public/js/frappe/views/reports/report_view.js:1507 +msgid "Pick Columns" +msgstr "crwdns8146:0crwdne8146:0" + +#. Option for a Select field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "Pie" +msgstr "crwdns8148:0crwdne8148:0" + +#. Label of a Data field in DocType 'Contact Us Settings' +#: website/doctype/contact_us_settings/contact_us_settings.json +msgctxt "Contact Us Settings" +msgid "Pincode" +msgstr "crwdns8150:0crwdne8150:0" + +#. Option for a Select field in DocType 'DocType State' +#: core/doctype/doctype_state/doctype_state.json +msgctxt "DocType State" +msgid "Pink" +msgstr "crwdns8152:0crwdne8152:0" + +#. Option for a Select field in DocType 'Kanban Board Column' +#: desk/doctype/kanban_board_column/kanban_board_column.json +msgctxt "Kanban Board Column" +msgid "Pink" +msgstr "crwdns8154:0crwdne8154:0" + +#. Option for a Select field in DocType 'Notification' +#: email/doctype/notification/notification.json +msgctxt "Notification" +msgid "Plain Text" +msgstr "crwdns8156:0crwdne8156:0" + +#. Option for a Select field in DocType 'Address' +#: contacts/doctype/address/address.json +msgctxt "Address" +msgid "Plant" +msgstr "crwdns8158:0crwdne8158:0" + +#: email/oauth.py:30 +msgid "Please Authorize OAuth for Email Account {}" +msgstr "crwdns8160:0crwdne8160:0" + +#: website/doctype/website_theme/website_theme.py:79 +msgid "Please Duplicate this Website Theme to customize." +msgstr "crwdns8162:0crwdne8162:0" + +#: integrations/doctype/ldap_settings/ldap_settings.py:159 +msgid "Please Install the ldap3 library via pip to use ldap functionality." +msgstr "crwdns8164:0crwdne8164:0" + +#: public/js/frappe/views/reports/query_report.js:307 +msgid "Please Set Chart" +msgstr "crwdns8166:0crwdne8166:0" + +#: core/doctype/sms_settings/sms_settings.py:84 +msgid "Please Update SMS Settings" +msgstr "crwdns8168:0crwdne8168:0" + +#: automation/doctype/auto_repeat/auto_repeat.py:569 +msgid "Please add a subject to your email" +msgstr "crwdns8170:0crwdne8170:0" + +#: templates/includes/comments/comments.html:168 +msgid "Please add a valid comment." +msgstr "crwdns8172:0crwdne8172:0" + +#: core/doctype/user/user.py:1017 +msgid "Please ask your administrator to verify your sign-up" +msgstr "crwdns8174:0crwdne8174:0" + +#: public/js/frappe/form/controls/select.js:95 +msgid "Please attach a file first." +msgstr "crwdns8176:0crwdne8176:0" + +#: printing/doctype/letter_head/letter_head.py:73 +msgid "Please attach an image file to set HTML for Footer." +msgstr "crwdns8178:0crwdne8178:0" + +#: printing/doctype/letter_head/letter_head.py:61 +msgid "Please attach an image file to set HTML for Letter Head." +msgstr "crwdns8180:0crwdne8180:0" + +#: core/doctype/package_import/package_import.py:38 +msgid "Please attach the package" +msgstr "crwdns8182:0crwdne8182:0" + +#: integrations/doctype/connected_app/connected_app.js:19 +msgid "Please check OpenID Configuration URL" +msgstr "crwdns8184:0crwdne8184:0" + +#: utils/dashboard.py:58 +msgid "Please check the filter values set for Dashboard Chart: {}" +msgstr "crwdns8186:0crwdne8186:0" + +#: model/base_document.py:839 +msgid "Please check the value of \"Fetch From\" set for field {0}" +msgstr "crwdns8188:0{0}crwdne8188:0" + +#: core/doctype/user/user.py:1015 +msgid "Please check your email for verification" +msgstr "crwdns8190:0crwdne8190:0" + +#: email/smtp.py:131 +msgid "Please check your email login credentials." +msgstr "crwdns8192:0crwdne8192:0" + +#: twofactor.py:246 +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 "crwdns8194:0crwdne8194:0" + +#: twofactor.py:291 +msgid "Please click on the following link and follow the instructions on the page. {0}" +msgstr "crwdns8196:0{0}crwdne8196:0" + +#: templates/emails/password_reset.html:2 +msgid "Please click on the following link to set your new password" +msgstr "crwdns8198:0crwdne8198:0" + +#: integrations/doctype/dropbox_settings/dropbox_settings.py:344 +msgid "Please close this window" +msgstr "crwdns8200:0crwdne8200:0" + +#: www/confirm_workflow_action.html:4 +msgid "Please confirm your action to {0} this document." +msgstr "crwdns8202:0{0}crwdne8202:0" + +#: core/doctype/server_script/server_script.js:33 +msgid "Please contact your system administrator to enable this feature." +msgstr "crwdns8204:0crwdne8204:0" + +#: desk/doctype/number_card/number_card.js:44 +msgid "Please create Card first" +msgstr "crwdns8206:0crwdne8206:0" + +#: desk/doctype/dashboard_chart/dashboard_chart.js:42 +msgid "Please create chart first" +msgstr "crwdns8208:0crwdne8208:0" + +#: desk/form/meta.py:209 +msgid "Please delete the field from {0} or add the required doctype." +msgstr "crwdns8210:0{0}crwdne8210:0" + +#: core/doctype/data_export/exporter.py:184 +msgid "Please do not change the template headings." +msgstr "crwdns8212:0crwdne8212:0" + +#: printing/doctype/print_format/print_format.js:18 +msgid "Please duplicate this to make changes" +msgstr "crwdns8214:0crwdne8214:0" + +#: core/doctype/system_settings/system_settings.py:145 +msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login." +msgstr "crwdns8216:0crwdne8216:0" + +#: desk/doctype/notification_log/notification_log.js:45 +#: email/doctype/auto_email_report/auto_email_report.js:17 +#: printing/page/print/print.js:611 printing/page/print/print.js:640 +#: public/js/frappe/list/bulk_operations.js:117 +#: public/js/frappe/utils/utils.js:1416 +msgid "Please enable pop-ups" +msgstr "crwdns8218:0crwdne8218:0" + +#: public/js/frappe/microtemplate.js:162 public/js/frappe/microtemplate.js:177 +msgid "Please enable pop-ups in your browser" +msgstr "crwdns8220:0crwdne8220:0" + +#: integrations/google_oauth.py:53 +msgid "Please enable {} before continuing." +msgstr "crwdns8222:0crwdne8222:0" + +#: utils/oauth.py:191 +msgid "Please ensure that your profile has an email address" +msgstr "crwdns8224:0crwdne8224:0" + +#: integrations/doctype/social_login_key/social_login_key.py:73 +msgid "Please enter Access Token URL" +msgstr "crwdns8226:0crwdne8226:0" + +#: integrations/doctype/social_login_key/social_login_key.py:71 +msgid "Please enter Authorize URL" +msgstr "crwdns8228:0crwdne8228:0" + +#: integrations/doctype/social_login_key/social_login_key.py:69 +msgid "Please enter Base URL" +msgstr "crwdns8230:0crwdne8230:0" + +#: integrations/doctype/social_login_key/social_login_key.py:78 +msgid "Please enter Client ID before social login is enabled" +msgstr "crwdns8232:0crwdne8232:0" + +#: integrations/doctype/social_login_key/social_login_key.py:82 +msgid "Please enter Client Secret before social login is enabled" +msgstr "crwdns8234:0crwdne8234:0" + +#: integrations/doctype/connected_app/connected_app.js:8 +msgid "Please enter OpenID Configuration URL" +msgstr "crwdns8236:0crwdne8236:0" + +#: integrations/doctype/social_login_key/social_login_key.py:75 +msgid "Please enter Redirect URL" +msgstr "crwdns8238:0crwdne8238:0" + +#: templates/includes/comments/comments.html:163 +msgid "Please enter a valid email address." +msgstr "crwdns8240:0crwdne8240:0" + +#: www/update-password.html:233 +msgid "Please enter the password" +msgstr "crwdns8242:0crwdne8242:0" + +#: public/js/frappe/desk.js:196 +msgctxt "Email Account" +msgid "Please enter the password for: {0}" +msgstr "crwdns8244:0{0}crwdne8244:0" + +#: core/doctype/sms_settings/sms_settings.py:42 +msgid "Please enter valid mobile nos" +msgstr "crwdns8246:0crwdne8246:0" + +#: www/update-password.html:115 +msgid "Please enter your new password." +msgstr "crwdns8248:0crwdne8248:0" + +#: www/update-password.html:108 +msgid "Please enter your old password." +msgstr "crwdns8250:0crwdne8250:0" + +#: automation/doctype/auto_repeat/auto_repeat.py:401 +msgid "Please find attached {0}: {1}" +msgstr "crwdns8252:0{0}crwdnd8252:0{1}crwdne8252:0" + +#: core/doctype/navbar_settings/navbar_settings.py:44 +msgid "Please hide the standard navbar items instead of deleting them" +msgstr "crwdns8254:0crwdne8254:0" + +#: templates/includes/comments/comments.py:31 +msgid "Please login to post a comment." +msgstr "crwdns8256:0crwdne8256:0" + +#: core/doctype/communication/communication.py:210 +msgid "Please make sure the Reference Communication Docs are not circularly linked." +msgstr "crwdns8258:0crwdne8258:0" + +#: model/document.py:810 +msgid "Please refresh to get the latest document." +msgstr "crwdns8260:0crwdne8260:0" + +#: printing/page/print/print.js:525 +msgid "Please remove the printer mapping in Printer Settings and try again." +msgstr "crwdns8262:0crwdne8262:0" + +#: public/js/frappe/form/form.js:384 +msgid "Please save before attaching." +msgstr "crwdns8264:0crwdne8264:0" + +#: email/doctype/newsletter/newsletter.py:133 +msgid "Please save the Newsletter before sending" +msgstr "crwdns8266:0crwdne8266:0" + +#: public/js/frappe/form/sidebar/assign_to.js:51 +msgid "Please save the document before assignment" +msgstr "crwdns8268:0crwdne8268:0" + +#: public/js/frappe/form/sidebar/assign_to.js:71 +msgid "Please save the document before removing assignment" +msgstr "crwdns8270:0crwdne8270:0" + +#: public/js/frappe/views/reports/report_view.js:1614 +msgid "Please save the report first" +msgstr "crwdns8272:0crwdne8272:0" + +#: website/doctype/web_template/web_template.js:22 +msgid "Please save to edit the template." +msgstr "crwdns8274:0crwdne8274:0" + +#: desk/page/leaderboard/leaderboard.js:244 +msgid "Please select Company" +msgstr "crwdns8276:0crwdne8276:0" + +#: printing/doctype/print_format/print_format.js:30 +msgid "Please select DocType first" +msgstr "crwdns8278:0crwdne8278:0" + +#: contacts/report/addresses_and_contacts/addresses_and_contacts.js:27 +msgid "Please select Entity Type first" +msgstr "crwdns8280:0crwdne8280:0" + +#: core/doctype/system_settings/system_settings.py:103 +msgid "Please select Minimum Password Score" +msgstr "crwdns8282:0crwdne8282:0" + +#: utils/__init__.py:115 +msgid "Please select a country code for field {1}." +msgstr "crwdns8284:0{1}crwdne8284:0" + +#: utils/file_manager.py:50 +msgid "Please select a file or url" +msgstr "crwdns8286:0crwdne8286:0" + +#: model/rename_doc.py:669 +msgid "Please select a valid csv file with data" +msgstr "crwdns8288:0crwdne8288:0" + +#: utils/data.py:285 +msgid "Please select a valid date filter" +msgstr "crwdns8290:0crwdne8290:0" + +#: core/doctype/user_permission/user_permission_list.js:203 +msgid "Please select applicable Doctypes" +msgstr "crwdns8292:0crwdne8292:0" + +#: model/db_query.py:1141 +msgid "Please select atleast 1 column from {0} to sort/group" +msgstr "crwdns8294:0{0}crwdne8294:0" + +#: core/doctype/document_naming_settings/document_naming_settings.py:215 +msgid "Please select prefix first" +msgstr "crwdns8296:0crwdne8296:0" + +#: core/doctype/data_export/data_export.js:42 +msgid "Please select the Document Type." +msgstr "crwdns8298:0crwdne8298:0" + +#. Description of a Select field in DocType 'LDAP Settings' +#: integrations/doctype/ldap_settings/ldap_settings.json +msgctxt "LDAP Settings" +msgid "Please select the LDAP Directory being used" +msgstr "crwdns8300:0crwdne8300:0" + +#: website/doctype/website_settings/website_settings.js:100 +msgid "Please select {0}" +msgstr "crwdns8302:0{0}crwdne8302:0" + +#: integrations/doctype/dropbox_settings/dropbox_settings.py:306 +msgid "Please set Dropbox access keys in site config or doctype" +msgstr "crwdns8304:0crwdne8304:0" + +#: contacts/doctype/contact/contact.py:200 +msgid "Please set Email Address" +msgstr "crwdns8306:0crwdne8306:0" + +#: printing/page/print/print.js:539 +msgid "Please set a printer mapping for this print format in the Printer Settings" +msgstr "crwdns8308:0crwdne8308:0" + +#: public/js/frappe/views/reports/query_report.js:1308 +msgid "Please set filters" +msgstr "crwdns8310:0crwdne8310:0" + +#: email/doctype/auto_email_report/auto_email_report.py:226 +msgid "Please set filters value in Report Filter table." +msgstr "crwdns8312:0crwdne8312:0" + +#: model/naming.py:533 +msgid "Please set the document name" +msgstr "crwdns8314:0crwdne8314:0" + +#: desk/doctype/dashboard/dashboard.py:125 +msgid "Please set the following documents in this Dashboard as standard first." +msgstr "crwdns8316:0crwdne8316:0" + +#: core/doctype/document_naming_settings/document_naming_settings.py:121 +msgid "Please set the series to be used." +msgstr "crwdns8318:0crwdne8318:0" + +#: core/doctype/system_settings/system_settings.py:116 +msgid "Please setup SMS before setting it as an authentication method, via SMS Settings" +msgstr "crwdns8320:0crwdne8320:0" + +#: automation/doctype/auto_repeat/auto_repeat.js:102 +msgid "Please setup a message first" +msgstr "crwdns8322:0crwdne8322:0" + +#: email/doctype/email_account/email_account.py:389 +msgid "Please setup default Email Account from Settings > Email Account" +msgstr "crwdns8324:0crwdne8324:0" + +#: core/doctype/user/user.py:369 +msgid "Please setup default outgoing Email Account from Settings > Email Account" +msgstr "crwdns8326:0crwdne8326:0" + +#: public/js/frappe/model/model.js:785 +msgid "Please specify" +msgstr "crwdns8328:0crwdne8328:0" + +#: permissions.py:780 +msgid "Please specify a valid parent DocType for {0}" +msgstr "crwdns8330:0{0}crwdne8330:0" + +#: email/doctype/notification/notification.py:86 +msgid "Please specify which date field must be checked" +msgstr "crwdns8332:0crwdne8332:0" + +#: email/doctype/notification/notification.py:89 +msgid "Please specify which value field must be checked" +msgstr "crwdns8334:0crwdne8334:0" + +#: public/js/frappe/request.js:184 +#: public/js/frappe/views/translation_manager.js:102 +msgid "Please try again" +msgstr "crwdns8336:0crwdne8336:0" + +#: integrations/google_oauth.py:56 +msgid "Please update {} before continuing." +msgstr "crwdns8338:0crwdne8338:0" + +#: integrations/doctype/ldap_settings/ldap_settings.py:332 +msgid "Please use a valid LDAP search filter" +msgstr "crwdns8340:0crwdne8340:0" + +#: email/doctype/newsletter/newsletter.py:333 +msgid "Please verify your Email Address" +msgstr "crwdns8342:0crwdne8342:0" + +#. Label of a Select field in DocType 'Energy Point Settings' +#: social/doctype/energy_point_settings/energy_point_settings.json +msgctxt "Energy Point Settings" +msgid "Point Allocation Periodicity" +msgstr "crwdns8344:0crwdne8344:0" + +#: public/js/frappe/form/sidebar/review.js:75 +msgid "Points" +msgstr "crwdns8346:0crwdne8346:0" + +#. Label of a Int field in DocType 'Energy Point Log' +#: social/doctype/energy_point_log/energy_point_log.json +msgctxt "Energy Point Log" +msgid "Points" +msgstr "crwdns8348:0crwdne8348:0" + +#. Label of a Int field in DocType 'Energy Point Rule' +#: social/doctype/energy_point_rule/energy_point_rule.json +msgctxt "Energy Point Rule" +msgid "Points" +msgstr "crwdns8350:0crwdne8350:0" + +#: templates/emails/energy_points_summary.html:40 +msgid "Points Given" +msgstr "crwdns8352:0crwdne8352:0" + +#. Label of a Check field in DocType 'Form Tour Step' +#: desk/doctype/form_tour_step/form_tour_step.json +msgctxt "Form Tour Step" +msgid "Popover Element" +msgstr "crwdns8354:0crwdne8354:0" + +#. Label of a HTML Editor field in DocType 'Form Tour Step' +#: desk/doctype/form_tour_step/form_tour_step.json +msgctxt "Form Tour Step" +msgid "Popover or Modal Description" +msgstr "crwdns8356:0crwdne8356:0" + +#. Label of a Data field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Port" +msgstr "crwdns8358:0crwdne8358:0" + +#. Label of a Data field in DocType 'Email Domain' +#: email/doctype/email_domain/email_domain.json +msgctxt "Email Domain" +msgid "Port" +msgstr "crwdns8360:0crwdne8360:0" + +#. Label of a Int field in DocType 'Network Printer Settings' +#: printing/doctype/network_printer_settings/network_printer_settings.json +msgctxt "Network Printer Settings" +msgid "Port" +msgstr "crwdns8362:0crwdne8362:0" + +#. Label of a Card Break in the Website Workspace +#: website/workspace/website/website.json +msgid "Portal" +msgstr "crwdns8364:0crwdne8364:0" + +#. Label of a Table field in DocType 'Portal Settings' +#: website/doctype/portal_settings/portal_settings.json +msgctxt "Portal Settings" +msgid "Portal Menu" +msgstr "crwdns8366:0crwdne8366:0" + +#. Name of a DocType +#: website/doctype/portal_menu_item/portal_menu_item.json +msgid "Portal Menu Item" +msgstr "crwdns8368:0crwdne8368:0" + +#. Name of a DocType +#: website/doctype/portal_settings/portal_settings.json +msgid "Portal Settings" +msgstr "crwdns8370:0crwdne8370:0" + +#. Label of a Link in the Website Workspace +#: website/workspace/website/website.json +msgctxt "Portal Settings" +msgid "Portal Settings" +msgstr "crwdns8372:0crwdne8372:0" + +#: public/js/frappe/form/print_utils.js:29 +msgid "Portrait" +msgstr "crwdns8374:0crwdne8374:0" + +#. Label of a Select field in DocType 'Form Tour Step' +#: desk/doctype/form_tour_step/form_tour_step.json +msgctxt "Form Tour Step" +msgid "Position" +msgstr "crwdns8376:0crwdne8376:0" + +#: templates/discussions/comment_box.html:29 +#: templates/discussions/reply_card.html:15 +msgid "Post" +msgstr "crwdns8378:0crwdne8378:0" + +#: templates/discussions/reply_section.html:39 +msgid "Post it here, our mentors will help you out." +msgstr "crwdns8380:0crwdne8380:0" + +#. Option for a Select field in DocType 'Address' +#: contacts/doctype/address/address.json +msgctxt "Address" +msgid "Postal" +msgstr "crwdns8382:0crwdne8382:0" + +#. Label of a Data field in DocType 'Address' +#: contacts/doctype/address/address.json +msgctxt "Address" +msgid "Postal Code" +msgstr "crwdns8384:0crwdne8384:0" + +#. Group in Blog Category's connections +#: website/doctype/blog_category/blog_category.json +msgctxt "Blog Category" +msgid "Posts" +msgstr "crwdns8386:0crwdne8386:0" + +#: website/doctype/blog_post/blog_post.py:258 +msgid "Posts by {0}" +msgstr "crwdns8388:0{0}crwdne8388:0" + +#: website/doctype/blog_post/blog_post.py:250 +msgid "Posts filed under {0}" +msgstr "crwdns8390:0{0}crwdne8390:0" + +#. Label of a Select field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Precision" +msgstr "crwdns8392:0crwdne8392:0" + +#. Label of a Select field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Precision" +msgstr "crwdns8394:0crwdne8394:0" + +#. Label of a Select field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Precision" +msgstr "crwdns8396:0crwdne8396:0" + +#. Label of a Select field in DocType 'Web Form Field' +#: website/doctype/web_form_field/web_form_field.json +msgctxt "Web Form Field" +msgid "Precision" +msgstr "crwdns8398:0crwdne8398:0" + +#: core/doctype/doctype/doctype.py:1349 +msgid "Precision should be between 1 and 6" +msgstr "crwdns8400:0crwdne8400:0" + +#: utils/password_strength.py:191 +msgid "Predictable substitutions like '@' instead of 'a' don't help very much." +msgstr "crwdns8402:0crwdne8402:0" + +#. Label of a Check field in DocType 'Address' +#: contacts/doctype/address/address.json +msgctxt "Address" +msgid "Preferred Billing Address" +msgstr "crwdns8404:0crwdne8404:0" + +#. Label of a Check field in DocType 'Address' +#: contacts/doctype/address/address.json +msgctxt "Address" +msgid "Preferred Shipping Address" +msgstr "crwdns8406:0crwdne8406:0" + +#. Label of a Data field in DocType 'Document Naming Rule' +#: core/doctype/document_naming_rule/document_naming_rule.json +msgctxt "Document Naming Rule" +msgid "Prefix" +msgstr "crwdns8408:0crwdne8408:0" + +#. Label of a Autocomplete field in DocType 'Document Naming Settings' +#: core/doctype/document_naming_settings/document_naming_settings.json +msgctxt "Document Naming Settings" +msgid "Prefix" +msgstr "crwdns8410:0crwdne8410:0" + +#. Name of a DocType +#: core/doctype/prepared_report/prepared_report.json +msgid "Prepared Report" +msgstr "crwdns8412:0crwdne8412:0" + +#. Label of a Check field in DocType 'Report' +#: core/doctype/report/report.json +msgctxt "Report" +msgid "Prepared Report" +msgstr "crwdns8414:0crwdne8414:0" + +#. Name of a role +#: core/doctype/prepared_report/prepared_report.json +msgid "Prepared Report User" +msgstr "crwdns8416:0crwdne8416:0" + +#: desk/query_report.py:296 +msgid "Prepared report render failed" +msgstr "crwdns8418:0crwdne8418:0" + +#: public/js/frappe/views/reports/query_report.js:469 +msgid "Preparing Report" +msgstr "crwdns8420:0crwdne8420:0" + +#: public/js/frappe/views/communication.js:317 +msgid "Prepend the template to the email message" +msgstr "crwdns8422:0crwdne8422:0" + +#: public/js/frappe/list/list_filter.js:134 +msgid "Press Enter to save" +msgstr "crwdns8424:0crwdne8424:0" + +#: email/doctype/newsletter/newsletter.js:14 +#: email/doctype/newsletter/newsletter.js:42 +#: public/js/frappe/form/controls/markdown_editor.js:31 +#: public/js/frappe/ui/capture.js:228 +msgid "Preview" +msgstr "crwdns8426:0crwdne8426:0" + +#. Label of a Section Break field in DocType 'Custom HTML Block' +#: desk/doctype/custom_html_block/custom_html_block.json +msgctxt "Custom HTML Block" +msgid "Preview" +msgstr "crwdns8428:0crwdne8428:0" + +#. Label of a Section Break field in DocType 'Data Import' +#: core/doctype/data_import/data_import.json +msgctxt "Data Import" +msgid "Preview" +msgstr "crwdns8430:0crwdne8430:0" + +#. Label of a Section Break field in DocType 'File' +#: core/doctype/file/file.json +msgctxt "File" +msgid "Preview" +msgstr "crwdns8432:0crwdne8432:0" + +#. Label of a Attach Image field in DocType 'Print Style' +#: printing/doctype/print_style/print_style.json +msgctxt "Print Style" +msgid "Preview" +msgstr "crwdns8434:0crwdne8434:0" + +#. Label of a Tab Break field in DocType 'Webhook' +#: integrations/doctype/webhook/webhook.json +msgctxt "Webhook" +msgid "Preview" +msgstr "crwdns8436:0crwdne8436:0" + +#. Label of a HTML field in DocType 'File' +#: core/doctype/file/file.json +msgctxt "File" +msgid "Preview HTML" +msgstr "crwdns8438:0crwdne8438:0" + +#. Label of a Attach Image field in DocType 'Blog Category' +#: website/doctype/blog_category/blog_category.json +msgctxt "Blog Category" +msgid "Preview Image" +msgstr "crwdns8440:0crwdne8440:0" + +#. Label of a Attach Image field in DocType 'Blog Settings' +#: website/doctype/blog_settings/blog_settings.json +msgctxt "Blog Settings" +msgid "Preview Image" +msgstr "crwdns8442:0crwdne8442:0" + +#. Label of a Button field in DocType 'Auto Repeat' +#: automation/doctype/auto_repeat/auto_repeat.json +msgctxt "Auto Repeat" +msgid "Preview Message" +msgstr "crwdns8444:0crwdne8444:0" + +#: public/js/form_builder/form_builder.bundle.js:83 +msgid "Preview Mode" +msgstr "crwdns8446:0crwdne8446:0" + +#. Label of a Text field in DocType 'Document Naming Settings' +#: core/doctype/document_naming_settings/document_naming_settings.json +msgctxt "Document Naming Settings" +msgid "Preview of generated names" +msgstr "crwdns8448:0crwdne8448:0" + +#: public/js/onboarding_tours/onboarding_tours.js:16 +#: templates/includes/slideshow.html:34 +#: website/web_template/slideshow/slideshow.html:40 +msgid "Previous" +msgstr "crwdns8450:0crwdne8450:0" + +#: public/js/frappe/form/toolbar.js:289 +msgid "Previous Document" +msgstr "crwdns8452:0crwdne8452:0" + +#. Label of a Small Text field in DocType 'Transaction Log' +#: core/doctype/transaction_log/transaction_log.json +msgctxt "Transaction Log" +msgid "Previous Hash" +msgstr "crwdns8454:0crwdne8454:0" + +#: public/js/frappe/form/form.js:2143 +msgid "Previous Submission" +msgstr "crwdns8456:0crwdne8456:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "Primary" +msgstr "crwdns8458:0crwdne8458:0" + +#. Label of a Link field in DocType 'Website Theme' +#: website/doctype/website_theme/website_theme.json +msgctxt "Website Theme" +msgid "Primary Color" +msgstr "crwdns8460:0crwdne8460:0" + +#: core/doctype/success_action/success_action.js:56 +#: printing/page/print/print.js:65 public/js/frappe/form/success_action.js:81 +#: public/js/frappe/form/toolbar.js:321 public/js/frappe/form/toolbar.js:333 +#: public/js/frappe/list/bulk_operations.js:79 +#: public/js/frappe/views/reports/query_report.js:1623 +#: public/js/frappe/views/reports/report_view.js:1463 +#: public/js/frappe/views/treeview.js:473 www/printview.html:18 +msgid "Print" +msgstr "crwdns8462:0crwdne8462:0" + +#: public/js/frappe/list/list_view.js:1849 +msgctxt "Button in list view actions menu" +msgid "Print" +msgstr "crwdns8464:0crwdne8464:0" + +#. Label of a Check field in DocType 'Custom DocPerm' +#: core/doctype/custom_docperm/custom_docperm.json +msgctxt "Custom DocPerm" +msgid "Print" +msgstr "crwdns8466:0crwdne8466:0" + +#. Label of a Check field in DocType 'DocPerm' +#: core/doctype/docperm/docperm.json +msgctxt "DocPerm" +msgid "Print" +msgstr "crwdns8468:0crwdne8468:0" + +#: public/js/frappe/list/bulk_operations.js:39 +msgid "Print Documents" +msgstr "crwdns8470:0crwdne8470:0" + +#. Name of a DocType +#: printing/doctype/print_format/print_format.json +#: printing/page/print/print.js:94 printing/page/print/print.js:794 +#: public/js/frappe/list/bulk_operations.js:50 +msgid "Print Format" +msgstr "crwdns8472:0crwdne8472:0" + +#. Label of a Link field in DocType 'Auto Repeat' +#: automation/doctype/auto_repeat/auto_repeat.json +msgctxt "Auto Repeat" +msgid "Print Format" +msgstr "crwdns8474:0crwdne8474:0" + +#. Linked DocType in DocType's connections +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Print Format" +msgstr "crwdns8476:0crwdne8476:0" + +#. Linked DocType in Module Def's connections +#: core/doctype/module_def/module_def.json +msgctxt "Module Def" +msgid "Print Format" +msgstr "crwdns8478:0crwdne8478:0" + +#. Label of a Link field in DocType 'Notification' +#: email/doctype/notification/notification.json +msgctxt "Notification" +msgid "Print Format" +msgstr "crwdns8480:0crwdne8480:0" + +#. Label of a Link in the Build Workspace +#: core/workspace/build/build.json +msgctxt "Print Format" +msgid "Print Format" +msgstr "crwdns8482:0crwdne8482:0" + +#. Label of a Link field in DocType 'Web Form' +#: website/doctype/web_form/web_form.json +msgctxt "Web Form" +msgid "Print Format" +msgstr "crwdns8484:0crwdne8484:0" + +#. Label of a Link in the Tools Workspace +#. Label of a shortcut in the Build Workspace +#: automation/workspace/tools/tools.json core/workspace/build/build.json +#: printing/page/print_format_builder/print_format_builder.js:44 +#: printing/page/print_format_builder/print_format_builder.js:67 +#: printing/page/print_format_builder_beta/print_format_builder_beta.js:4 +msgid "Print Format Builder" +msgstr "crwdns8486:0crwdne8486:0" + +#. Label of a Check field in DocType 'Print Format' +#: printing/doctype/print_format/print_format.json +msgctxt "Print Format" +msgid "Print Format Builder" +msgstr "crwdns8488:0crwdne8488:0" + +#. Label of a Link in the Tools Workspace +#: automation/workspace/tools/tools.json +msgid "Print Format Builder (New)" +msgstr "crwdns8490:0crwdne8490:0" + +#. Label of a Check field in DocType 'Print Format' +#: printing/doctype/print_format/print_format.json +msgctxt "Print Format" +msgid "Print Format Builder Beta" +msgstr "crwdns8492:0crwdne8492:0" + +#: utils/pdf.py:52 +msgid "Print Format Error" +msgstr "crwdns8494:0crwdne8494:0" + +#. Name of a DocType +#: printing/doctype/print_format_field_template/print_format_field_template.json +msgid "Print Format Field Template" +msgstr "crwdns8496:0crwdne8496:0" + +#. Label of a HTML field in DocType 'Print Format' +#: printing/doctype/print_format/print_format.json +msgctxt "Print Format" +msgid "Print Format Help" +msgstr "crwdns8498:0crwdne8498:0" + +#. Label of a Select field in DocType 'Print Format' +#: printing/doctype/print_format/print_format.json +msgctxt "Print Format" +msgid "Print Format Type" +msgstr "crwdns8500:0crwdne8500:0" + +#: www/printview.py:407 +msgid "Print Format {0} is disabled" +msgstr "crwdns8502:0{0}crwdne8502:0" + +#. Description of the Onboarding Step 'Customize Print Formats' +#: custom/onboarding_step/print_format/print_format.json +msgid "Print Formats allow you can define looks for documents when printed or converted to PDF. You can also create a custom Print Format using drag-and-drop tools." +msgstr "crwdns8504:0crwdne8504:0" + +#. Name of a DocType +#: printing/doctype/print_heading/print_heading.json +msgid "Print Heading" +msgstr "crwdns8506:0crwdne8506:0" + +#. Label of a Link in the Tools Workspace +#. Label of a Data field in DocType 'Print Heading' +#: automation/workspace/tools/tools.json +#: printing/doctype/print_heading/print_heading.json +msgctxt "Print Heading" +msgid "Print Heading" +msgstr "crwdns8508:0crwdne8508:0" + +#. Label of a Check field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Print Hide" +msgstr "crwdns8510:0crwdne8510:0" + +#. Label of a Check field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Print Hide" +msgstr "crwdns8512:0crwdne8512:0" + +#. Label of a Check field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Print Hide" +msgstr "crwdns8514:0crwdne8514:0" + +#. Label of a Check field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Print Hide If No Value" +msgstr "crwdns8516:0crwdne8516:0" + +#. Label of a Check field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Print Hide If No Value" +msgstr "crwdns8518:0crwdne8518:0" + +#. Label of a Check field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Print Hide If No Value" +msgstr "crwdns8520:0crwdne8520:0" + +#: public/js/frappe/form/print_utils.js:195 +msgid "Print Sent to the printer!" +msgstr "crwdns8522:0crwdne8522:0" + +#. Label of a Section Break field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "Print Server" +msgstr "crwdns8524:0crwdne8524:0" + +#. Name of a DocType +#: printing/doctype/print_settings/print_settings.json +#: printing/doctype/print_style/print_style.js:6 +#: printing/page/print/print.js:160 public/js/frappe/form/print_utils.js:69 +msgid "Print Settings" +msgstr "crwdns8526:0crwdne8526:0" + +#. Label of a Section Break field in DocType 'Notification' +#: email/doctype/notification/notification.json +msgctxt "Notification" +msgid "Print Settings" +msgstr "crwdns8528:0crwdne8528:0" + +#. Label of a Link in the Tools Workspace +#: automation/workspace/tools/tools.json +msgctxt "Print Settings" +msgid "Print Settings" +msgstr "crwdns8530:0crwdne8530:0" + +#. Name of a DocType +#: printing/doctype/print_style/print_style.json +msgid "Print Style" +msgstr "crwdns8532:0crwdne8532:0" + +#. Label of a Section Break field in DocType 'Print Settings' +#. Label of a Link field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "Print Style" +msgstr "crwdns8534:0crwdne8534:0" + +#. Label of a Data field in DocType 'Print Style' +#: printing/doctype/print_style/print_style.json +msgctxt "Print Style" +msgid "Print Style Name" +msgstr "crwdns8536:0crwdne8536:0" + +#. Label of a HTML field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "Print Style Preview" +msgstr "crwdns8538:0crwdne8538:0" + +#. Label of a Data field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Print Width" +msgstr "crwdns8540:0crwdne8540:0" + +#. Label of a Data field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Print Width" +msgstr "crwdns8542:0crwdne8542:0" + +#. Label of a Data field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Print Width" +msgstr "crwdns8544:0crwdne8544:0" + +#. Description of a Data field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Print Width of the field, if the field is a column in a table" +msgstr "crwdns8546:0crwdne8546:0" + +#: public/js/frappe/form/form.js:170 +msgid "Print document" +msgstr "crwdns8548:0crwdne8548:0" + +#. Label of a Check field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "Print with letterhead" +msgstr "crwdns8550:0crwdne8550:0" + +#: printing/page/print/print.js:803 +msgid "Printer" +msgstr "crwdns8552:0crwdne8552:0" + +#: printing/page/print/print.js:780 +msgid "Printer Mapping" +msgstr "crwdns8554:0crwdne8554:0" + +#. Label of a Select field in DocType 'Network Printer Settings' +#: printing/doctype/network_printer_settings/network_printer_settings.json +msgctxt "Network Printer Settings" +msgid "Printer Name" +msgstr "crwdns8556:0crwdne8556:0" + +#: printing/page/print/print.js:772 +msgid "Printer Settings" +msgstr "crwdns8558:0crwdne8558:0" + +#: printing/page/print/print.js:538 +msgid "Printer mapping not set." +msgstr "crwdns8560:0crwdne8560:0" + +#. Label of a Card Break in the Tools Workspace +#: automation/workspace/tools/tools.json +msgid "Printing" +msgstr "crwdns8562:0crwdne8562:0" + +#: utils/print_format.py:179 +msgid "Printing failed" +msgstr "crwdns8564:0crwdne8564:0" + +#: desk/report/todo/todo.py:37 public/js/frappe/form/sidebar/assign_to.js:184 +msgid "Priority" +msgstr "crwdns8566:0crwdne8566:0" + +#. Label of a Int field in DocType 'Assignment Rule' +#: automation/doctype/assignment_rule/assignment_rule.json +msgctxt "Assignment Rule" +msgid "Priority" +msgstr "crwdns8568:0crwdne8568:0" + +#. Label of a Int field in DocType 'Document Naming Rule' +#: core/doctype/document_naming_rule/document_naming_rule.json +msgctxt "Document Naming Rule" +msgid "Priority" +msgstr "crwdns8570:0crwdne8570:0" + +#. Label of a Int field in DocType 'Email Queue' +#: email/doctype/email_queue/email_queue.json +msgctxt "Email Queue" +msgid "Priority" +msgstr "crwdns8572:0crwdne8572:0" + +#. Label of a Select field in DocType 'ToDo' +#: desk/doctype/todo/todo.json +msgctxt "ToDo" +msgid "Priority" +msgstr "crwdns8574:0crwdne8574:0" + +#. Label of a Int field in DocType 'Web Page' +#: website/doctype/web_page/web_page.json +msgctxt "Web Page" +msgid "Priority" +msgstr "crwdns8576:0crwdne8576:0" + +#: desk/doctype/note/note_list.js:8 +msgid "Private" +msgstr "crwdns8578:0crwdne8578:0" + +#. Label of a Check field in DocType 'Custom HTML Block' +#: desk/doctype/custom_html_block/custom_html_block.json +msgctxt "Custom HTML Block" +msgid "Private" +msgstr "crwdns8580:0crwdne8580:0" + +#. Option for a Select field in DocType 'Event' +#: desk/doctype/event/event.json +msgctxt "Event" +msgid "Private" +msgstr "crwdns8582:0crwdne8582:0" + +#. Label of a Check field in DocType 'Kanban Board' +#: desk/doctype/kanban_board/kanban_board.json +msgctxt "Kanban Board" +msgid "Private" +msgstr "crwdns8584:0crwdne8584:0" + +#. Description of a Text Editor field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference" +msgstr "crwdns8586:0{{ reference_doctype }}crwdnd8586:0{{ reference_name }}crwdne8586:0" + +#: core/doctype/document_naming_rule/document_naming_rule.js:22 +msgid "Proceed" +msgstr "crwdns8588:0crwdne8588:0" + +#: public/js/frappe/views/reports/query_report.js:854 +msgid "Proceed Anyway" +msgstr "crwdns8590:0crwdne8590:0" + +#: public/js/frappe/form/controls/table.js:88 +msgid "Processing" +msgstr "crwdns8592:0crwdne8592:0" + +#: email/doctype/email_queue/email_queue.py:404 +msgid "Processing..." +msgstr "crwdns8594:0crwdne8594:0" + +#. Group in User's connections +#: core/doctype/user/user.json +msgctxt "User" +msgid "Profile" +msgstr "crwdns8596:0crwdne8596:0" + +#: public/js/frappe/socketio_client.js:78 +msgid "Progress" +msgstr "crwdns8598:0crwdne8598:0" + +#: public/js/frappe/views/kanban/kanban_view.js:405 +msgid "Project" +msgstr "crwdns8600:0crwdne8600:0" + +#. Label of a Data field in DocType 'Property Setter' +#: custom/doctype/property_setter/property_setter.json +msgctxt "Property Setter" +msgid "Property" +msgstr "crwdns8602:0crwdne8602:0" + +#. Label of a Section Break field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Property Depends On" +msgstr "crwdns8604:0crwdne8604:0" + +#. Label of a Section Break field in DocType 'Web Form Field' +#: website/doctype/web_form_field/web_form_field.json +msgctxt "Web Form Field" +msgid "Property Depends On" +msgstr "crwdns8606:0crwdne8606:0" + +#. Name of a DocType +#: custom/doctype/property_setter/property_setter.json +msgid "Property Setter" +msgstr "crwdns8608:0crwdne8608:0" + +#. Linked DocType in Module Def's connections +#: core/doctype/module_def/module_def.json +msgctxt "Module Def" +msgid "Property Setter" +msgstr "crwdns8610:0crwdne8610:0" + +#. Label of a Data field in DocType 'Property Setter' +#: custom/doctype/property_setter/property_setter.json +msgctxt "Property Setter" +msgid "Property Type" +msgstr "crwdns8612:0crwdne8612:0" + +#. Description of a Small Text field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +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 "crwdns8614:0crwdne8614:0" + +#. Label of a Data field in DocType 'User Social Login' +#: core/doctype/user_social_login/user_social_login.json +msgctxt "User Social Login" +msgid "Provider" +msgstr "crwdns8616:0crwdne8616:0" + +#. Label of a Data field in DocType 'Connected App' +#: integrations/doctype/connected_app/connected_app.json +msgctxt "Connected App" +msgid "Provider Name" +msgstr "crwdns8618:0crwdne8618:0" + +#. Label of a Data field in DocType 'Social Login Key' +#: integrations/doctype/social_login_key/social_login_key.json +msgctxt "Social Login Key" +msgid "Provider Name" +msgstr "crwdns8620:0crwdne8620:0" + +#. Label of a Data field in DocType 'Token Cache' +#: integrations/doctype/token_cache/token_cache.json +msgctxt "Token Cache" +msgid "Provider Name" +msgstr "crwdns8622:0crwdne8622:0" + +#: desk/doctype/note/note_list.js:6 public/js/frappe/views/interaction.js:78 +#: public/js/frappe/views/workspace/workspace.js:613 +#: public/js/frappe/views/workspace/workspace.js:941 +#: public/js/frappe/views/workspace/workspace.js:1187 +msgid "Public" +msgstr "crwdns8624:0crwdne8624:0" + +#. Option for a Select field in DocType 'Event' +#: desk/doctype/event/event.json +msgctxt "Event" +msgid "Public" +msgstr "crwdns8626:0crwdne8626:0" + +#. Label of a Check field in DocType 'Note' +#: desk/doctype/note/note.json +msgctxt "Note" +msgid "Public" +msgstr "crwdns8628:0crwdne8628:0" + +#. Label of a Check field in DocType 'Workspace' +#: desk/doctype/workspace/workspace.json +msgctxt "Workspace" +msgid "Public" +msgstr "crwdns8630:0crwdne8630:0" + +#: website/doctype/blog_post/blog_post.js:36 +#: website/doctype/web_form/web_form.js:77 +msgid "Publish" +msgstr "crwdns8632:0crwdne8632:0" + +#. Label of a Check field in DocType 'Package Release' +#: core/doctype/package_release/package_release.json +msgctxt "Package Release" +msgid "Publish" +msgstr "crwdns8634:0crwdne8634:0" + +#. Label of a Section Break field in DocType 'Newsletter' +#: email/doctype/newsletter/newsletter.json +msgctxt "Newsletter" +msgid "Publish as a web page" +msgstr "crwdns8636:0crwdne8636:0" + +#: website/doctype/blog_post/blog_post_list.js:5 +#: website/doctype/web_form/web_form_list.js:5 +#: website/doctype/web_page/web_page_list.js:5 +msgid "Published" +msgstr "crwdns8638:0crwdne8638:0" + +#. Label of a Check field in DocType 'Blog Category' +#: website/doctype/blog_category/blog_category.json +msgctxt "Blog Category" +msgid "Published" +msgstr "crwdns8640:0crwdne8640:0" + +#. Label of a Check field in DocType 'Blog Post' +#: website/doctype/blog_post/blog_post.json +msgctxt "Blog Post" +msgid "Published" +msgstr "crwdns8642:0crwdne8642:0" + +#. Label of a Check field in DocType 'Comment' +#: core/doctype/comment/comment.json +msgctxt "Comment" +msgid "Published" +msgstr "crwdns8644:0crwdne8644:0" + +#. Label of a Check field in DocType 'Help Article' +#: website/doctype/help_article/help_article.json +msgctxt "Help Article" +msgid "Published" +msgstr "crwdns8646:0crwdne8646:0" + +#. Label of a Check field in DocType 'Help Category' +#: website/doctype/help_category/help_category.json +msgctxt "Help Category" +msgid "Published" +msgstr "crwdns8648:0crwdne8648:0" + +#. Label of a Check field in DocType 'Newsletter' +#: email/doctype/newsletter/newsletter.json +msgctxt "Newsletter" +msgid "Published" +msgstr "crwdns8650:0crwdne8650:0" + +#. Label of a Check field in DocType 'Web Form' +#: website/doctype/web_form/web_form.json +msgctxt "Web Form" +msgid "Published" +msgstr "crwdns8652:0crwdne8652:0" + +#. Label of a Check field in DocType 'Web Page' +#: website/doctype/web_page/web_page.json +msgctxt "Web Page" +msgid "Published" +msgstr "crwdns8654:0crwdne8654:0" + +#. Label of a Date field in DocType 'Blog Post' +#: website/doctype/blog_post/blog_post.json +msgctxt "Blog Post" +msgid "Published On" +msgstr "crwdns8656:0crwdne8656:0" + +#: website/doctype/blog_post/templates/blog_post.html:59 +msgid "Published on" +msgstr "crwdns8658:0crwdne8658:0" + +#. Label of a Section Break field in DocType 'Web Page' +#: website/doctype/web_page/web_page.json +msgctxt "Web Page" +msgid "Publishing Dates" +msgstr "crwdns8660:0crwdne8660:0" + +#: email/doctype/email_account/email_account.js:164 +msgid "Pull Emails" +msgstr "crwdns8662:0crwdne8662:0" + +#. Label of a Check field in DocType 'Google Calendar' +#: integrations/doctype/google_calendar/google_calendar.json +msgctxt "Google Calendar" +msgid "Pull from Google Calendar" +msgstr "crwdns8664:0crwdne8664:0" + +#. Label of a Check field in DocType 'Google Contacts' +#: integrations/doctype/google_contacts/google_contacts.json +msgctxt "Google Contacts" +msgid "Pull from Google Contacts" +msgstr "crwdns8666:0crwdne8666:0" + +#. Label of a Check field in DocType 'Event' +#: desk/doctype/event/event.json +msgctxt "Event" +msgid "Pulled from Google Calendar" +msgstr "crwdns8668:0crwdne8668:0" + +#. Label of a Check field in DocType 'Contact' +#: contacts/doctype/contact/contact.json +msgctxt "Contact" +msgid "Pulled from Google Contacts" +msgstr "crwdns8670:0crwdne8670:0" + +#. Name of a role +#: contacts/doctype/contact/contact.json +msgid "Purchase Manager" +msgstr "crwdns8672:0crwdne8672:0" + +#. Name of a role +#: contacts/doctype/contact/contact.json +msgid "Purchase Master Manager" +msgstr "crwdns8674:0crwdne8674:0" + +#. Name of a role +#: contacts/doctype/address/address.json contacts/doctype/contact/contact.json +#: geo/doctype/currency/currency.json +msgid "Purchase User" +msgstr "crwdns8676:0crwdne8676:0" + +#. Option for a Select field in DocType 'DocType State' +#: core/doctype/doctype_state/doctype_state.json +msgctxt "DocType State" +msgid "Purple" +msgstr "crwdns8678:0crwdne8678:0" + +#. Option for a Select field in DocType 'Kanban Board Column' +#: desk/doctype/kanban_board_column/kanban_board_column.json +msgctxt "Kanban Board Column" +msgid "Purple" +msgstr "crwdns8680:0crwdne8680:0" + +#. Label of a Check field in DocType 'Google Calendar' +#: integrations/doctype/google_calendar/google_calendar.json +msgctxt "Google Calendar" +msgid "Push to Google Calendar" +msgstr "crwdns8682:0crwdne8682:0" + +#. Label of a Check field in DocType 'Google Contacts' +#: integrations/doctype/google_contacts/google_contacts.json +msgctxt "Google Contacts" +msgid "Push to Google Contacts" +msgstr "crwdns8684:0crwdne8684:0" + +#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.js:23 +msgid "Put on Hold" +msgstr "crwdns8686:0crwdne8686:0" + +#. Option for a Select field in DocType 'System Console' +#: desk/doctype/system_console/system_console.json +msgctxt "System Console" +msgid "Python" +msgstr "crwdns8688:0crwdne8688:0" + +#: www/qrcode.html:3 +msgid "QR Code" +msgstr "crwdns8690:0crwdne8690:0" + +#: www/qrcode.html:6 +msgid "QR Code for Login Verification" +msgstr "crwdns8692:0crwdne8692:0" + +#: public/js/frappe/form/print_utils.js:204 +msgid "QZ Tray Failed: " +msgstr "crwdns8694:0crwdne8694:0" + +#: public/js/frappe/utils/common.js:401 +msgid "Quarterly" +msgstr "crwdns8696:0crwdne8696:0" + +#. Option for a Select field in DocType 'Auto Email Report' +#: email/doctype/auto_email_report/auto_email_report.json +msgctxt "Auto Email Report" +msgid "Quarterly" +msgstr "crwdns8698:0crwdne8698:0" + +#. Option for a Select field in DocType 'Auto Repeat' +#: automation/doctype/auto_repeat/auto_repeat.json +msgctxt "Auto Repeat" +msgid "Quarterly" +msgstr "crwdns8700:0crwdne8700:0" + +#. Option for a Select field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "Quarterly" +msgstr "crwdns8702:0crwdne8702:0" + +#. Label of a Data field in DocType 'Recorder Query' +#: core/doctype/recorder_query/recorder_query.json +msgctxt "Recorder Query" +msgid "Query" +msgstr "crwdns8704:0crwdne8704:0" + +#. Label of a Code field in DocType 'Report' +#: core/doctype/report/report.json +msgctxt "Report" +msgid "Query" +msgstr "crwdns8706:0crwdne8706:0" + +#. Label of a Section Break field in DocType 'Report' +#: core/doctype/report/report.json +msgctxt "Report" +msgid "Query / Script" +msgstr "crwdns8708:0crwdne8708:0" + +#. Label of a Small Text field in DocType 'Contact Us Settings' +#: website/doctype/contact_us_settings/contact_us_settings.json +msgctxt "Contact Us Settings" +msgid "Query Options" +msgstr "crwdns8710:0crwdne8710:0" + +#. Name of a DocType +#: integrations/doctype/query_parameters/query_parameters.json +msgid "Query Parameters" +msgstr "crwdns8712:0crwdne8712:0" + +#. Label of a Table field in DocType 'Connected App' +#: integrations/doctype/connected_app/connected_app.json +msgctxt "Connected App" +msgid "Query Parameters" +msgstr "crwdns8714:0crwdne8714:0" + +#: public/js/frappe/views/reports/query_report.js:17 +msgid "Query Report" +msgstr "crwdns8716:0crwdne8716:0" + +#. Option for a Select field in DocType 'Report' +#: core/doctype/report/report.json +msgctxt "Report" +msgid "Query Report" +msgstr "crwdns8718:0crwdne8718:0" + +#: utils/safe_exec.py:437 +msgid "Query must be of SELECT or read-only WITH type." +msgstr "crwdns8720:0crwdne8720:0" + +#. Label of a Select field in DocType 'RQ Job' +#: core/doctype/rq_job/rq_job.json +msgctxt "RQ Job" +msgid "Queue" +msgstr "crwdns8722:0crwdne8722:0" + +#. Label of a Select field in DocType 'RQ Worker' +#: core/doctype/rq_worker/rq_worker.json +msgctxt "RQ Worker" +msgid "Queue Type(s)" +msgstr "crwdns8724:0crwdne8724:0" + +#. Label of a Check field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Queue in Background (BETA)" +msgstr "crwdns8726:0crwdne8726:0" + +#. Label of a Check field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Queue in Background (BETA)" +msgstr "crwdns8728:0crwdne8728:0" + +#: utils/background_jobs.py:473 +msgid "Queue should be one of {0}" +msgstr "crwdns8730:0{0}crwdne8730:0" + +#. Label of a Data field in DocType 'RQ Worker' +#: core/doctype/rq_worker/rq_worker.json +msgctxt "RQ Worker" +msgid "Queue(s)" +msgstr "crwdns8732:0crwdne8732:0" + +#: email/doctype/newsletter/newsletter.js:208 +msgid "Queued" +msgstr "crwdns8734:0crwdne8734:0" + +#. Option for a Select field in DocType 'Integration Request' +#: integrations/doctype/integration_request/integration_request.json +msgctxt "Integration Request" +msgid "Queued" +msgstr "crwdns8736:0crwdne8736:0" + +#. Option for a Select field in DocType 'Prepared Report' +#: core/doctype/prepared_report/prepared_report.json +msgctxt "Prepared Report" +msgid "Queued" +msgstr "crwdns8738:0crwdne8738:0" + +#. Option for a Select field in DocType 'Submission Queue' +#: core/doctype/submission_queue/submission_queue.json +msgctxt "Submission Queue" +msgid "Queued" +msgstr "crwdns8740:0crwdne8740:0" + +#. Label of a Datetime field in DocType 'Prepared Report' +#: core/doctype/prepared_report/prepared_report.json +msgctxt "Prepared Report" +msgid "Queued At" +msgstr "crwdns8742:0crwdne8742:0" + +#. Label of a Data field in DocType 'Prepared Report' +#: core/doctype/prepared_report/prepared_report.json +msgctxt "Prepared Report" +msgid "Queued By" +msgstr "crwdns8744:0crwdne8744:0" + +#: core/doctype/submission_queue/submission_queue.py:173 +msgid "Queued for Submission. You can track the progress over {0}." +msgstr "crwdns8746:0{0}crwdne8746:0" + +#: integrations/doctype/dropbox_settings/dropbox_settings.py:64 +#: integrations/doctype/google_drive/google_drive.py:156 +#: integrations/doctype/s3_backup_settings/s3_backup_settings.py:81 +msgid "Queued for backup. It may take a few minutes to an hour." +msgstr "crwdns8748:0crwdne8748:0" + +#: desk/page/backups/backups.py:96 +msgid "Queued for backup. You will receive an email with the download link" +msgstr "crwdns8750:0crwdne8750:0" + +#: email/doctype/newsletter/newsletter.js:95 +msgid "Queued {0} emails" +msgstr "crwdns8752:0{0}crwdne8752:0" + +#: email/doctype/newsletter/newsletter.js:90 +msgid "Queuing emails..." +msgstr "crwdns8754:0crwdne8754:0" + +#: desk/doctype/bulk_update/bulk_update.py:88 +msgid "Queuing {0} for Submission" +msgstr "crwdns8756:0{0}crwdne8756:0" + +#. Label of a Check field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Quick Entry" +msgstr "crwdns8758:0crwdne8758:0" + +#. Label of a Check field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Quick Entry" +msgstr "crwdns8760:0crwdne8760:0" + +#. Label of a Code field in DocType 'Workspace Quick List' +#: desk/doctype/workspace_quick_list/workspace_quick_list.json +msgctxt "Workspace Quick List" +msgid "Quick List Filter" +msgstr "crwdns8762:0crwdne8762:0" + +#. Label of a Tab Break field in DocType 'Workspace' +#. Label of a Table field in DocType 'Workspace' +#: desk/doctype/workspace/workspace.json +msgctxt "Workspace" +msgid "Quick Lists" +msgstr "crwdns8764:0crwdne8764:0" + +#: public/js/frappe/views/reports/report_utils.js:280 +msgid "Quoting must be between 0 and 3" +msgstr "crwdns8766:0crwdne8766:0" + +#. Label of a Section Break field in DocType 'Access Log' +#: core/doctype/access_log/access_log.json +msgctxt "Access Log" +msgid "RAW Information Log" +msgstr "crwdns8768:0crwdne8768:0" + +#. Name of a DocType +#: core/doctype/rq_job/rq_job.json +msgid "RQ Job" +msgstr "crwdns8770:0crwdne8770:0" + +#. Name of a DocType +#: core/doctype/rq_worker/rq_worker.json +msgid "RQ Worker" +msgstr "crwdns8772:0crwdne8772:0" + +#. Option for a Select field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Random" +msgstr "crwdns8774:0crwdne8774:0" + +#. Option for a Select field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Random" +msgstr "crwdns8776:0crwdne8776:0" + +#: website/report/website_analytics/website_analytics.js:20 +msgid "Range" +msgstr "crwdns8778:0crwdne8778:0" + +#. Label of a Section Break field in DocType 'Server Script' +#: core/doctype/server_script/server_script.json +msgctxt "Server Script" +msgid "Rate Limiting" +msgstr "crwdns8780:0crwdne8780:0" + +#. Label of a Section Break field in DocType 'Blog Settings' +#: website/doctype/blog_settings/blog_settings.json +msgctxt "Blog Settings" +msgid "Rate Limits" +msgstr "crwdns8782:0crwdne8782:0" + +#. Label of a Int field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Rating" +msgstr "crwdns8784:0crwdne8784:0" + +#. Option for a Select field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Rating" +msgstr "crwdns8786:0crwdne8786:0" + +#. Option for a Select field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Rating" +msgstr "crwdns8788:0crwdne8788:0" + +#. Option for a Select field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Rating" +msgstr "crwdns8790:0crwdne8790:0" + +#. Option for a Select field in DocType 'Web Form Field' +#: website/doctype/web_form_field/web_form_field.json +msgctxt "Web Form Field" +msgid "Rating" +msgstr "crwdns8792:0crwdne8792:0" + +#: printing/doctype/print_format/print_format.py:89 +msgid "Raw Commands" +msgstr "crwdns8794:0crwdne8794:0" + +#. Label of a Code field in DocType 'Print Format' +#: printing/doctype/print_format/print_format.json +msgctxt "Print Format" +msgid "Raw Commands" +msgstr "crwdns8796:0crwdne8796:0" + +#. Label of a Code field in DocType 'Unhandled Email' +#: email/doctype/unhandled_email/unhandled_email.json +msgctxt "Unhandled Email" +msgid "Raw Email" +msgstr "crwdns8798:0crwdne8798:0" + +#. Label of a Check field in DocType 'Print Format' +#: printing/doctype/print_format/print_format.json +msgctxt "Print Format" +msgid "Raw Printing" +msgstr "crwdns8800:0crwdne8800:0" + +#. Label of a Section Break field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "Raw Printing" +msgstr "crwdns8802:0crwdne8802:0" + +#: printing/page/print/print.js:165 +msgid "Raw Printing Setting" +msgstr "crwdns8804:0crwdne8804:0" + +#: desk/doctype/console_log/console_log.js:6 +msgid "Re-Run in Console" +msgstr "crwdns8806:0crwdne8806:0" + +#: email/doctype/email_account/email_account.py:630 +msgid "Re:" +msgstr "crwdns8808:0crwdne8808:0" + +#: core/doctype/communication/communication.js:268 +#: public/js/frappe/form/footer/form_timeline.js:564 +#: public/js/frappe/views/communication.js:253 +msgid "Re: {0}" +msgstr "crwdns8810:0{0}crwdne8810:0" + +#: client.py:459 +msgid "Read" +msgstr "crwdns8812:0crwdne8812:0" + +#. Option for a Select field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Read" +msgstr "crwdns8814:0crwdne8814:0" + +#. Label of a Check field in DocType 'Custom DocPerm' +#: core/doctype/custom_docperm/custom_docperm.json +msgctxt "Custom DocPerm" +msgid "Read" +msgstr "crwdns8816:0crwdne8816:0" + +#. Label of a Check field in DocType 'DocPerm' +#: core/doctype/docperm/docperm.json +msgctxt "DocPerm" +msgid "Read" +msgstr "crwdns8818:0crwdne8818:0" + +#. Label of a Check field in DocType 'DocShare' +#: core/doctype/docshare/docshare.json +msgctxt "DocShare" +msgid "Read" +msgstr "crwdns8820:0crwdne8820:0" + +#. Option for a Select field in DocType 'Email Flag Queue' +#: email/doctype/email_flag_queue/email_flag_queue.json +msgctxt "Email Flag Queue" +msgid "Read" +msgstr "crwdns8822:0crwdne8822:0" + +#. Label of a Check field in DocType 'Notification Log' +#: desk/doctype/notification_log/notification_log.json +msgctxt "Notification Log" +msgid "Read" +msgstr "crwdns8824:0crwdne8824:0" + +#. Label of a Check field in DocType 'User Document Type' +#: core/doctype/user_document_type/user_document_type.json +msgctxt "User Document Type" +msgid "Read" +msgstr "crwdns8826:0crwdne8826:0" + +#: public/js/form_builder/form_builder.bundle.js:83 +msgid "Read Only" +msgstr "crwdns8828:0crwdne8828:0" + +#. Option for a Select field in DocType 'Custom Field' +#. Label of a Check field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Read Only" +msgstr "crwdns8830:0crwdne8830:0" + +#. Option for a Select field in DocType 'Customize Form Field' +#. Label of a Check field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Read Only" +msgstr "crwdns8832:0crwdne8832:0" + +#. Option for a Select field in DocType 'DocField' +#. Label of a Check field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Read Only" +msgstr "crwdns8834:0crwdne8834:0" + +#. Label of a Check field in DocType 'Web Form Field' +#: website/doctype/web_form_field/web_form_field.json +msgctxt "Web Form Field" +msgid "Read Only" +msgstr "crwdns8836:0crwdne8836:0" + +#. Label of a Code field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Read Only Depends On" +msgstr "crwdns8838:0crwdne8838:0" + +#. Label of a Code field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Read Only Depends On" +msgstr "crwdns8840:0crwdne8840:0" + +#. Label of a Code field in DocType 'Web Form Field' +#: website/doctype/web_form_field/web_form_field.json +msgctxt "Web Form Field" +msgid "Read Only Depends On" +msgstr "crwdns8842:0crwdne8842:0" + +#. Label of a Code field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Read Only Depends On (JS)" +msgstr "crwdns8844:0crwdne8844:0" + +#: templates/includes/navbar/navbar_items.html:97 +msgid "Read Only Mode" +msgstr "crwdns8846:0crwdne8846:0" + +#. Label of a Int field in DocType 'Blog Post' +#: website/doctype/blog_post/blog_post.json +msgctxt "Blog Post" +msgid "Read Time" +msgstr "crwdns8848:0crwdne8848:0" + +#. Label of a Check field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Read by Recipient" +msgstr "crwdns8850:0crwdne8850:0" + +#. Label of a Datetime field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Read by Recipient On" +msgstr "crwdns8852:0crwdne8852:0" + +#: desk/doctype/note/note.js:10 +msgid "Read mode" +msgstr "crwdns8854:0crwdne8854:0" + +#: utils/safe_exec.py:91 +msgid "Read the documentation to know more" +msgstr "crwdns8856:0crwdne8856:0" + +#. Label of a Markdown Editor field in DocType 'Package' +#: core/doctype/package/package.json +msgctxt "Package" +msgid "Readme" +msgstr "crwdns8858:0crwdne8858:0" + +#: public/js/frappe/form/sidebar/review.js:85 +#: social/doctype/energy_point_log/energy_point_log.js:20 +msgid "Reason" +msgstr "crwdns8860:0crwdne8860:0" + +#. Label of a Text field in DocType 'Energy Point Log' +#: social/doctype/energy_point_log/energy_point_log.json +msgctxt "Energy Point Log" +msgid "Reason" +msgstr "crwdns8862:0crwdne8862:0" + +#. Label of a Long Text field in DocType 'Unhandled Email' +#: email/doctype/unhandled_email/unhandled_email.json +msgctxt "Unhandled Email" +msgid "Reason" +msgstr "crwdns8864:0crwdne8864:0" + +#: public/js/frappe/views/reports/query_report.js:815 +msgid "Rebuild" +msgstr "crwdns8866:0crwdne8866:0" + +#: public/js/frappe/views/treeview.js:492 +msgid "Rebuild Tree" +msgstr "crwdns8868:0crwdne8868:0" + +#: utils/nestedset.py:180 +msgid "Rebuilding of tree is not supported for {}" +msgstr "crwdns8870:0crwdne8870:0" + +#. Description of a Check field in DocType 'Web Form' +#: website/doctype/web_form/web_form.json +msgctxt "Web Form" +msgid "Receive anonymous response" +msgstr "crwdns8872:0crwdne8872:0" + +#. Option for a Select field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Received" +msgstr "crwdns8874:0crwdne8874:0" + +#: integrations/doctype/token_cache/token_cache.py:49 +msgid "Received an invalid token type." +msgstr "crwdns8876:0crwdne8876:0" + +#. Label of a Select field in DocType 'Notification Recipient' +#: email/doctype/notification_recipient/notification_recipient.json +msgctxt "Notification Recipient" +msgid "Receiver By Document Field" +msgstr "crwdns8878:0crwdne8878:0" + +#. Label of a Link field in DocType 'Notification Recipient' +#: email/doctype/notification_recipient/notification_recipient.json +msgctxt "Notification Recipient" +msgid "Receiver By Role" +msgstr "crwdns8880:0crwdne8880:0" + +#. Label of a Data field in DocType 'SMS Settings' +#: core/doctype/sms_settings/sms_settings.json +msgctxt "SMS Settings" +msgid "Receiver Parameter" +msgstr "crwdns8882:0crwdne8882:0" + +#: utils/password_strength.py:125 +msgid "Recent years are easy to guess." +msgstr "crwdns8884:0crwdne8884:0" + +#: public/js/frappe/ui/toolbar/search_utils.js:516 +msgid "Recents" +msgstr "crwdns8886:0crwdne8886:0" + +#. Label of a Table field in DocType 'Email Queue' +#: email/doctype/email_queue/email_queue.json +msgctxt "Email Queue" +msgid "Recipient" +msgstr "crwdns8888:0crwdne8888:0" + +#. Label of a Data field in DocType 'Email Queue Recipient' +#: email/doctype/email_queue_recipient/email_queue_recipient.json +msgctxt "Email Queue Recipient" +msgid "Recipient" +msgstr "crwdns8890:0crwdne8890:0" + +#. Option for a Select field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Recipient Unsubscribed" +msgstr "crwdns8892:0crwdne8892:0" + +#. Label of a Small Text field in DocType 'Auto Repeat' +#: automation/doctype/auto_repeat/auto_repeat.json +msgctxt "Auto Repeat" +msgid "Recipients" +msgstr "crwdns8894:0crwdne8894:0" + +#. Label of a Section Break field in DocType 'Notification' +#. Label of a Table field in DocType 'Notification' +#: email/doctype/notification/notification.json +msgctxt "Notification" +msgid "Recipients" +msgstr "crwdns8896:0crwdne8896:0" + +#. Name of a DocType +#: core/doctype/recorder/recorder.json +msgid "Recorder" +msgstr "crwdns8898:0crwdne8898:0" + +#. Name of a DocType +#: core/doctype/recorder_query/recorder_query.json +msgid "Recorder Query" +msgstr "crwdns8900:0crwdne8900:0" + +#. Option for a Select field in DocType 'DocType State' +#: core/doctype/doctype_state/doctype_state.json +msgctxt "DocType State" +msgid "Red" +msgstr "crwdns8902:0crwdne8902:0" + +#. Option for a Select field in DocType 'Kanban Board Column' +#: desk/doctype/kanban_board_column/kanban_board_column.json +msgctxt "Kanban Board Column" +msgid "Red" +msgstr "crwdns8904:0crwdne8904:0" + +#. Label of a Select field in DocType 'Website Route Redirect' +#: website/doctype/website_route_redirect/website_route_redirect.json +msgctxt "Website Route Redirect" +msgid "Redirect HTTP Status" +msgstr "crwdns8906:0crwdne8906:0" + +#. Label of a Data field in DocType 'Connected App' +#: integrations/doctype/connected_app/connected_app.json +msgctxt "Connected App" +msgid "Redirect URI" +msgstr "crwdns8908:0crwdne8908:0" + +#. Label of a Data field in DocType 'OAuth Authorization Code' +#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +msgctxt "OAuth Authorization Code" +msgid "Redirect URI Bound To Auth Code" +msgstr "crwdns8910:0crwdne8910:0" + +#. Label of a Text field in DocType 'OAuth Client' +#: integrations/doctype/oauth_client/oauth_client.json +msgctxt "OAuth Client" +msgid "Redirect URIs" +msgstr "crwdns8912:0crwdne8912:0" + +#. Label of a Data field in DocType 'Social Login Key' +#: integrations/doctype/social_login_key/social_login_key.json +msgctxt "Social Login Key" +msgid "Redirect URL" +msgstr "crwdns8914:0crwdne8914:0" + +#. Label of a Small Text field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Redirect URL" +msgstr "crwdns8916:0crwdne8916:0" + +#. Description of a Data field in DocType 'Email Group' +#: email/doctype/email_group/email_group.json +msgctxt "Email Group" +msgid "Redirect to this URL after successful confirmation." +msgstr "crwdns8918:0crwdne8918:0" + +#. Label of a Tab Break field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Redirects" +msgstr "crwdns8920:0crwdne8920:0" + +#: sessions.py:148 +msgid "Redis cache server not running. Please contact Administrator / Tech support" +msgstr "crwdns8922:0crwdne8922:0" + +#: public/js/frappe/form/toolbar.js:462 +msgid "Redo" +msgstr "crwdns8924:0crwdne8924:0" + +#: public/js/frappe/form/form.js:164 public/js/frappe/form/toolbar.js:470 +msgid "Redo last action" +msgstr "crwdns8926:0crwdne8926:0" + +#. Label of a Link field in DocType 'Report' +#: core/doctype/report/report.json +msgctxt "Report" +msgid "Ref DocType" +msgstr "crwdns8928:0crwdne8928:0" + +#: desk/doctype/form_tour/form_tour.js:38 +msgid "Referance Doctype and Dashboard Name both can't be used at the same time." +msgstr "crwdns8930:0crwdne8930:0" + +#: core/doctype/user_type/user_type_dashboard.py:5 desk/report/todo/todo.py:42 +#: public/js/frappe/views/interaction.js:54 +msgid "Reference" +msgstr "crwdns8932:0crwdne8932:0" + +#. Label of a Section Break field in DocType 'Activity Log' +#: core/doctype/activity_log/activity_log.json +msgctxt "Activity Log" +msgid "Reference" +msgstr "crwdns8934:0crwdne8934:0" + +#. Label of a Section Break field in DocType 'Address' +#: contacts/doctype/address/address.json +msgctxt "Address" +msgid "Reference" +msgstr "crwdns8936:0crwdne8936:0" + +#. Label of a Section Break field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Reference" +msgstr "crwdns8938:0crwdne8938:0" + +#. Label of a Section Break field in DocType 'Contact' +#: contacts/doctype/contact/contact.json +msgctxt "Contact" +msgid "Reference" +msgstr "crwdns8940:0crwdne8940:0" + +#. Label of a Section Break field in DocType 'Integration Request' +#: integrations/doctype/integration_request/integration_request.json +msgctxt "Integration Request" +msgid "Reference" +msgstr "crwdns8942:0crwdne8942:0" + +#. Label of a Section Break field in DocType 'ToDo' +#: desk/doctype/todo/todo.json +msgctxt "ToDo" +msgid "Reference" +msgstr "crwdns8944:0crwdne8944:0" + +#. Label of a Select field in DocType 'Notification' +#: email/doctype/notification/notification.json +msgctxt "Notification" +msgid "Reference Date" +msgstr "crwdns8946:0crwdne8946:0" + +#. Label of a Data field in DocType 'Email Queue' +#: email/doctype/email_queue/email_queue.json +msgctxt "Email Queue" +msgid "Reference DocName" +msgstr "crwdns8948:0crwdne8948:0" + +#. Label of a Link field in DocType 'Error Log' +#: core/doctype/error_log/error_log.json +msgctxt "Error Log" +msgid "Reference DocType" +msgstr "crwdns8950:0crwdne8950:0" + +#. Label of a Link field in DocType 'Submission Queue' +#: core/doctype/submission_queue/submission_queue.json +msgctxt "Submission Queue" +msgid "Reference DocType" +msgstr "crwdns8952:0crwdne8952:0" + +#: email/doctype/email_unsubscribe/email_unsubscribe.py:25 +msgid "Reference DocType and Reference Name are required" +msgstr "crwdns8954:0crwdne8954:0" + +#. Label of a Dynamic Link field in DocType 'Discussion Topic' +#: website/doctype/discussion_topic/discussion_topic.json +msgctxt "Discussion Topic" +msgid "Reference Docname" +msgstr "crwdns8956:0crwdne8956:0" + +#. Label of a Dynamic Link field in DocType 'Submission Queue' +#: core/doctype/submission_queue/submission_queue.json +msgctxt "Submission Queue" +msgid "Reference Docname" +msgstr "crwdns8958:0crwdne8958:0" + +#: core/doctype/communication/communication.js:143 +#: core/report/transaction_log_report/transaction_log_report.py:88 +msgid "Reference Doctype" +msgstr "crwdns8960:0crwdne8960:0" + +#. Label of a Link field in DocType 'Discussion Topic' +#: website/doctype/discussion_topic/discussion_topic.json +msgctxt "Discussion Topic" +msgid "Reference Doctype" +msgstr "crwdns8962:0crwdne8962:0" + +#. Label of a Data field in DocType 'Access Log' +#: core/doctype/access_log/access_log.json +msgctxt "Access Log" +msgid "Reference Document" +msgstr "crwdns8964:0crwdne8964:0" + +#. Label of a Dynamic Link field in DocType 'Auto Repeat' +#: automation/doctype/auto_repeat/auto_repeat.json +msgctxt "Auto Repeat" +msgid "Reference Document" +msgstr "crwdns8966:0crwdne8966:0" + +#. Label of a Link field in DocType 'Form Tour' +#: desk/doctype/form_tour/form_tour.json +msgctxt "Form Tour" +msgid "Reference Document" +msgstr "crwdns8968:0crwdne8968:0" + +#. Label of a Link field in DocType 'Onboarding Step' +#: desk/doctype/onboarding_step/onboarding_step.json +msgctxt "Onboarding Step" +msgid "Reference Document" +msgstr "crwdns8970:0crwdne8970:0" + +#. Label of a Data field in DocType 'Webhook Request Log' +#: integrations/doctype/webhook_request_log/webhook_request_log.json +msgctxt "Webhook Request Log" +msgid "Reference Document" +msgstr "crwdns8972:0crwdne8972:0" + +#. Label of a Dynamic Link field in DocType 'Document Share Key' +#: core/doctype/document_share_key/document_share_key.json +msgctxt "Document Share Key" +msgid "Reference Document Name" +msgstr "crwdns8974:0crwdne8974:0" + +#. Label of a Dynamic Link field in DocType 'Integration Request' +#: integrations/doctype/integration_request/integration_request.json +msgctxt "Integration Request" +msgid "Reference Document Name" +msgstr "crwdns8976:0crwdne8976:0" + +#. Label of a Link field in DocType 'Activity Log' +#: core/doctype/activity_log/activity_log.json +msgctxt "Activity Log" +msgid "Reference Document Type" +msgstr "crwdns8978:0crwdne8978:0" + +#. Label of a Link field in DocType 'Auto Repeat' +#: automation/doctype/auto_repeat/auto_repeat.json +msgctxt "Auto Repeat" +msgid "Reference Document Type" +msgstr "crwdns8980:0crwdne8980:0" + +#. Label of a Link field in DocType 'Calendar View' +#: desk/doctype/calendar_view/calendar_view.json +msgctxt "Calendar View" +msgid "Reference Document Type" +msgstr "crwdns8982:0crwdne8982:0" + +#. Label of a Link field in DocType 'Comment' +#: core/doctype/comment/comment.json +msgctxt "Comment" +msgid "Reference Document Type" +msgstr "crwdns8984:0crwdne8984:0" + +#. Label of a Link field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Reference Document Type" +msgstr "crwdns8986:0crwdne8986:0" + +#. Label of a Data field in DocType 'Custom DocPerm' +#: core/doctype/custom_docperm/custom_docperm.json +msgctxt "Custom DocPerm" +msgid "Reference Document Type" +msgstr "crwdns8988:0crwdne8988:0" + +#. Label of a Data field in DocType 'Custom Role' +#: core/doctype/custom_role/custom_role.json +msgctxt "Custom Role" +msgid "Reference Document Type" +msgstr "crwdns8990:0crwdne8990:0" + +#. Label of a Link field in DocType 'Document Share Key' +#: core/doctype/document_share_key/document_share_key.json +msgctxt "Document Share Key" +msgid "Reference Document Type" +msgstr "crwdns8992:0crwdne8992:0" + +#. Label of a Link field in DocType 'Email Queue' +#: email/doctype/email_queue/email_queue.json +msgctxt "Email Queue" +msgid "Reference Document Type" +msgstr "crwdns8994:0crwdne8994:0" + +#. Label of a Link field in DocType 'Email Unsubscribe' +#: email/doctype/email_unsubscribe/email_unsubscribe.json +msgctxt "Email Unsubscribe" +msgid "Reference Document Type" +msgstr "crwdns8996:0crwdne8996:0" + +#. Label of a Link field in DocType 'Energy Point Log' +#: social/doctype/energy_point_log/energy_point_log.json +msgctxt "Energy Point Log" +msgid "Reference Document Type" +msgstr "crwdns8998:0crwdne8998:0" + +#. Label of a Link field in DocType 'Energy Point Rule' +#: social/doctype/energy_point_rule/energy_point_rule.json +msgctxt "Energy Point Rule" +msgid "Reference Document Type" +msgstr "crwdns9000:0crwdne9000:0" + +#. Label of a Link field in DocType 'Event Participants' +#: desk/doctype/event_participants/event_participants.json +msgctxt "Event Participants" +msgid "Reference Document Type" +msgstr "crwdns9002:0crwdne9002:0" + +#. Label of a Link field in DocType 'Integration Request' +#: integrations/doctype/integration_request/integration_request.json +msgctxt "Integration Request" +msgid "Reference Document Type" +msgstr "crwdns9004:0crwdne9004:0" + +#. Label of a Link field in DocType 'Kanban Board' +#: desk/doctype/kanban_board/kanban_board.json +msgctxt "Kanban Board" +msgid "Reference Document Type" +msgstr "crwdns9006:0crwdne9006:0" + +#. Label of a Link field in DocType 'List Filter' +#: desk/doctype/list_filter/list_filter.json +msgctxt "List Filter" +msgid "Reference Document Type" +msgstr "crwdns9008:0crwdne9008:0" + +#. Label of a Link field in DocType 'Portal Menu Item' +#: website/doctype/portal_menu_item/portal_menu_item.json +msgctxt "Portal Menu Item" +msgid "Reference Document Type" +msgstr "crwdns9010:0crwdne9010:0" + +#. Label of a Link field in DocType 'Server Script' +#: core/doctype/server_script/server_script.json +msgctxt "Server Script" +msgid "Reference Document Type" +msgstr "crwdns9012:0crwdne9012:0" + +#. Label of a Link field in DocType 'Success Action' +#: core/doctype/success_action/success_action.json +msgctxt "Success Action" +msgid "Reference Document Type" +msgstr "crwdns9014:0crwdne9014:0" + +#. Label of a Data field in DocType 'Transaction Log' +#: core/doctype/transaction_log/transaction_log.json +msgctxt "Transaction Log" +msgid "Reference Document Type" +msgstr "crwdns9016:0crwdne9016:0" + +#. Label of a Link field in DocType 'View Log' +#: core/doctype/view_log/view_log.json +msgctxt "View Log" +msgid "Reference Document Type" +msgstr "crwdns9018:0crwdne9018:0" + +#. Label of a Link field in DocType 'Workflow Action' +#: workflow/doctype/workflow_action/workflow_action.json +msgctxt "Workflow Action" +msgid "Reference Document Type" +msgstr "crwdns9020:0crwdne9020:0" + +#: core/doctype/communication/communication.js:152 +#: core/report/transaction_log_report/transaction_log_report.py:94 +msgid "Reference Name" +msgstr "crwdns9022:0crwdne9022:0" + +#. Label of a Dynamic Link field in DocType 'Activity Log' +#: core/doctype/activity_log/activity_log.json +msgctxt "Activity Log" +msgid "Reference Name" +msgstr "crwdns9024:0crwdne9024:0" + +#. Label of a Dynamic Link field in DocType 'Comment' +#: core/doctype/comment/comment.json +msgctxt "Comment" +msgid "Reference Name" +msgstr "crwdns9026:0crwdne9026:0" + +#. Label of a Dynamic Link field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Reference Name" +msgstr "crwdns9028:0crwdne9028:0" + +#. Label of a Data field in DocType 'Data Import Log' +#: core/doctype/data_import_log/data_import_log.json +msgctxt "Data Import Log" +msgid "Reference Name" +msgstr "crwdns9030:0crwdne9030:0" + +#. Label of a Dynamic Link field in DocType 'Email Unsubscribe' +#: email/doctype/email_unsubscribe/email_unsubscribe.json +msgctxt "Email Unsubscribe" +msgid "Reference Name" +msgstr "crwdns9032:0crwdne9032:0" + +#. Label of a Data field in DocType 'Energy Point Log' +#: social/doctype/energy_point_log/energy_point_log.json +msgctxt "Energy Point Log" +msgid "Reference Name" +msgstr "crwdns9034:0crwdne9034:0" + +#. Label of a Data field in DocType 'Error Log' +#: core/doctype/error_log/error_log.json +msgctxt "Error Log" +msgid "Reference Name" +msgstr "crwdns9036:0crwdne9036:0" + +#. Label of a Dynamic Link field in DocType 'Event Participants' +#: desk/doctype/event_participants/event_participants.json +msgctxt "Event Participants" +msgid "Reference Name" +msgstr "crwdns9038:0crwdne9038:0" + +#. Label of a Dynamic Link field in DocType 'ToDo' +#: desk/doctype/todo/todo.json +msgctxt "ToDo" +msgid "Reference Name" +msgstr "crwdns9040:0crwdne9040:0" + +#. Label of a Dynamic Link field in DocType 'Workflow Action' +#: workflow/doctype/workflow_action/workflow_action.json +msgctxt "Workflow Action" +msgid "Reference Name" +msgstr "crwdns9042:0crwdne9042:0" + +#. Label of a Read Only field in DocType 'Activity Log' +#: core/doctype/activity_log/activity_log.json +msgctxt "Activity Log" +msgid "Reference Owner" +msgstr "crwdns9044:0crwdne9044:0" + +#. Label of a Data field in DocType 'Comment' +#: core/doctype/comment/comment.json +msgctxt "Comment" +msgid "Reference Owner" +msgstr "crwdns9046:0crwdne9046:0" + +#. Label of a Read Only field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Reference Owner" +msgstr "crwdns9048:0crwdne9048:0" + +#. Label of a Data field in DocType 'Auto Email Report' +#: email/doctype/auto_email_report/auto_email_report.json +msgctxt "Auto Email Report" +msgid "Reference Report" +msgstr "crwdns9050:0crwdne9050:0" + +#. Label of a Link field in DocType 'Onboarding Step' +#: desk/doctype/onboarding_step/onboarding_step.json +msgctxt "Onboarding Step" +msgid "Reference Report" +msgstr "crwdns9052:0crwdne9052:0" + +#. Label of a Data field in DocType 'Report' +#: core/doctype/report/report.json +msgctxt "Report" +msgid "Reference Report" +msgstr "crwdns9054:0crwdne9054:0" + +#. Label of a Link field in DocType 'ToDo' +#: desk/doctype/todo/todo.json +msgctxt "ToDo" +msgid "Reference Type" +msgstr "crwdns9056:0crwdne9056:0" + +#: social/doctype/energy_point_rule/energy_point_rule.py:144 +msgid "Reference document has been cancelled" +msgstr "crwdns9058:0crwdne9058:0" + +#. Label of a Dynamic Link field in DocType 'View Log' +#: core/doctype/view_log/view_log.json +msgctxt "View Log" +msgid "Reference name" +msgstr "crwdns9060:0crwdne9060:0" + +#: templates/emails/auto_reply.html:3 +msgid "Reference: {0} {1}" +msgstr "crwdns9062:0{0}crwdnd9062:0{1}crwdne9062:0" + +#: website/report/website_analytics/website_analytics.js:37 +msgid "Referrer" +msgstr "crwdns9064:0crwdne9064:0" + +#. Label of a Data field in DocType 'Web Page View' +#: website/doctype/web_page_view/web_page_view.json +msgctxt "Web Page View" +msgid "Referrer" +msgstr "crwdns9066:0crwdne9066:0" + +#: printing/page/print/print.js:73 public/js/frappe/desk.js:133 +#: public/js/frappe/form/form.js:1174 public/js/frappe/list/base_list.js:65 +#: public/js/frappe/views/reports/query_report.js:1612 +#: public/js/frappe/views/treeview.js:479 +#: public/js/frappe/widgets/chart_widget.js:290 +#: public/js/frappe/widgets/number_card_widget.js:307 +msgid "Refresh" +msgstr "crwdns9068:0crwdne9068:0" + +#: core/page/dashboard_view/dashboard_view.js:177 +msgid "Refresh All" +msgstr "crwdns9070:0crwdne9070:0" + +#. Label of a Button field in DocType 'Data Import' +#: core/doctype/data_import/data_import.json +msgctxt "Data Import" +msgid "Refresh Google Sheet" +msgstr "crwdns9072:0crwdne9072:0" + +#. Label of a Password field in DocType 'Google Calendar' +#: integrations/doctype/google_calendar/google_calendar.json +msgctxt "Google Calendar" +msgid "Refresh Token" +msgstr "crwdns9074:0crwdne9074:0" + +#. Label of a Password field in DocType 'Google Contacts' +#: integrations/doctype/google_contacts/google_contacts.json +msgctxt "Google Contacts" +msgid "Refresh Token" +msgstr "crwdns9076:0crwdne9076:0" + +#. Label of a Data field in DocType 'Google Drive' +#: integrations/doctype/google_drive/google_drive.json +msgctxt "Google Drive" +msgid "Refresh Token" +msgstr "crwdns9078:0crwdne9078:0" + +#. Label of a Data field in DocType 'OAuth Bearer Token' +#: integrations/doctype/oauth_bearer_token/oauth_bearer_token.json +msgctxt "OAuth Bearer Token" +msgid "Refresh Token" +msgstr "crwdns9080:0crwdne9080:0" + +#. Label of a Password field in DocType 'Token Cache' +#: integrations/doctype/token_cache/token_cache.json +msgctxt "Token Cache" +msgid "Refresh Token" +msgstr "crwdns9082:0crwdne9082:0" + +#: core/doctype/system_settings/system_settings.js:52 +#: core/doctype/user/user.js:345 desk/page/setup_wizard/setup_wizard.js:204 +msgid "Refreshing..." +msgstr "crwdns9084:0crwdne9084:0" + +#: core/doctype/user/user.py:979 +msgid "Registered but disabled" +msgstr "crwdns9086:0crwdne9086:0" + +#. Option for a Select field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Rejected" +msgstr "crwdns9088:0crwdne9088:0" + +#. Option for a Select field in DocType 'Translation' +#: core/doctype/translation/translation.json +msgctxt "Translation" +msgid "Rejected" +msgstr "crwdns9090:0crwdne9090:0" + +#. Group in Package's connections +#: core/doctype/package/package.json +msgctxt "Package" +msgid "Release" +msgstr "crwdns9092:0crwdne9092:0" + +#. Label of a Markdown Editor field in DocType 'Package Release' +#: core/doctype/package_release/package_release.json +msgctxt "Package Release" +msgid "Release Notes" +msgstr "crwdns9094:0crwdne9094:0" + +#: core/doctype/communication/communication.js:48 +#: core/doctype/communication/communication.js:159 +msgid "Relink" +msgstr "crwdns9096:0crwdne9096:0" + +#: core/doctype/communication/communication.js:138 +msgid "Relink Communication" +msgstr "crwdns9098:0crwdne9098:0" + +#. Option for a Select field in DocType 'Comment' +#: core/doctype/comment/comment.json +msgctxt "Comment" +msgid "Relinked" +msgstr "crwdns9100:0crwdne9100:0" + +#. Option for a Select field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Relinked" +msgstr "crwdns9102:0crwdne9102:0" + +#. Label of a standard navbar item +#. Type: Action +#: custom/doctype/customize_form/customize_form.js:120 hooks.py +#: public/js/frappe/form/toolbar.js:408 +msgid "Reload" +msgstr "crwdns9104:0crwdne9104:0" + +#: public/js/frappe/list/base_list.js:239 +msgid "Reload List" +msgstr "crwdns9106:0crwdne9106:0" + +#: public/js/frappe/views/reports/query_report.js:99 +msgid "Reload Report" +msgstr "crwdns9108:0crwdne9108:0" + +#. Label of a Check field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Remember Last Selected Value" +msgstr "crwdns9110:0crwdne9110:0" + +#. Label of a Check field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Remember Last Selected Value" +msgstr "crwdns9112:0crwdne9112:0" + +#: public/js/frappe/form/reminders.js:33 +msgid "Remind At" +msgstr "crwdns9114:0crwdne9114:0" + +#. Label of a Datetime field in DocType 'Reminder' +#: automation/doctype/reminder/reminder.json +msgctxt "Reminder" +msgid "Remind At" +msgstr "crwdns9116:0crwdne9116:0" + +#: public/js/frappe/form/toolbar.js:436 +msgid "Remind Me" +msgstr "crwdns9118:0crwdne9118:0" + +#: public/js/frappe/form/reminders.js:13 +msgid "Remind Me In" +msgstr "crwdns9120:0crwdne9120:0" + +#. Name of a DocType +#: automation/doctype/reminder/reminder.json +msgid "Reminder" +msgstr "crwdns9122:0crwdne9122:0" + +#: automation/doctype/reminder/reminder.py:38 +msgid "Reminder cannot be created in past." +msgstr "crwdns9124:0crwdne9124:0" + +#: public/js/frappe/form/reminders.js:96 +msgid "Reminder set at {0}" +msgstr "crwdns9126:0{0}crwdne9126:0" + +#: core/doctype/rq_job/rq_job_list.js:8 +msgid "Remove Failed Jobs" +msgstr "crwdns9128:0crwdne9128:0" + +#: printing/page/print_format_builder/print_format_builder.js:488 +msgid "Remove Field" +msgstr "crwdns9130:0crwdne9130:0" + +#: printing/page/print_format_builder/print_format_builder.js:427 +msgid "Remove Section" +msgstr "crwdns9132:0crwdne9132:0" + +#: custom/doctype/customize_form/customize_form.js:138 +msgid "Remove all customizations?" +msgstr "crwdns9134:0crwdne9134:0" + +#: public/js/frappe/utils/datatable.js:9 +msgid "Remove column" +msgstr "crwdns9136:0crwdne9136:0" + +#: core/doctype/file/file.py:155 +msgid "Removed {0}" +msgstr "crwdns9138:0{0}crwdne9138:0" + +#: custom/doctype/custom_field/custom_field.js:133 +#: public/js/frappe/form/toolbar.js:234 public/js/frappe/form/toolbar.js:238 +#: public/js/frappe/form/toolbar.js:398 public/js/frappe/model/model.js:737 +#: public/js/frappe/views/treeview.js:295 +msgid "Rename" +msgstr "crwdns9140:0crwdne9140:0" + +#: custom/doctype/custom_field/custom_field.js:115 +#: custom/doctype/custom_field/custom_field.js:132 +msgid "Rename Fieldname" +msgstr "crwdns9142:0crwdne9142:0" + +#: public/js/frappe/model/model.js:724 +msgid "Rename {0}" +msgstr "crwdns9144:0{0}crwdne9144:0" + +#: core/doctype/doctype/doctype.py:688 +msgid "Renamed files and replaced code in controllers, please check!" +msgstr "crwdns9146:0crwdne9146:0" + +#: core/doctype/communication/communication.js:43 desk/doctype/todo/todo.js:36 +msgid "Reopen" +msgstr "crwdns9148:0crwdne9148:0" + +#: public/js/frappe/form/toolbar.js:479 +msgid "Repeat" +msgstr "crwdns9150:0crwdne9150:0" + +#. Label of a Check field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "Repeat Header and Footer" +msgstr "crwdns9152:0crwdne9152:0" + +#. Label of a Select field in DocType 'Event' +#: desk/doctype/event/event.json +msgctxt "Event" +msgid "Repeat On" +msgstr "crwdns9154:0crwdne9154:0" + +#. Label of a Date field in DocType 'Event' +#: desk/doctype/event/event.json +msgctxt "Event" +msgid "Repeat Till" +msgstr "crwdns9156:0crwdne9156:0" + +#. Label of a Int field in DocType 'Auto Repeat' +#: automation/doctype/auto_repeat/auto_repeat.json +msgctxt "Auto Repeat" +msgid "Repeat on Day" +msgstr "crwdns9158:0crwdne9158:0" + +#. Label of a Table field in DocType 'Auto Repeat' +#: automation/doctype/auto_repeat/auto_repeat.json +msgctxt "Auto Repeat" +msgid "Repeat on Days" +msgstr "crwdns9160:0crwdne9160:0" + +#. Label of a Check field in DocType 'Auto Repeat' +#: automation/doctype/auto_repeat/auto_repeat.json +msgctxt "Auto Repeat" +msgid "Repeat on Last Day of the Month" +msgstr "crwdns9162:0crwdne9162:0" + +#. Label of a Check field in DocType 'Event' +#: desk/doctype/event/event.json +msgctxt "Event" +msgid "Repeat this Event" +msgstr "crwdns9164:0crwdne9164:0" + +#: utils/password_strength.py:112 +msgid "Repeats like \"aaa\" are easy to guess" +msgstr "crwdns9166:0crwdne9166:0" + +#: utils/password_strength.py:107 +msgid "Repeats like \"abcabcabc\" are only slightly harder to guess than \"abc\"" +msgstr "crwdns9168:0crwdne9168:0" + +#: public/js/frappe/form/sidebar/form_sidebar.js:135 +msgid "Repeats {0}" +msgstr "crwdns9170:0{0}crwdne9170:0" + +#. Option for a Select field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Replied" +msgstr "crwdns9172:0crwdne9172:0" + +#. Option for a Select field in DocType 'Contact' +#: contacts/doctype/contact/contact.json +msgctxt "Contact" +msgid "Replied" +msgstr "crwdns9174:0crwdne9174:0" + +#: core/doctype/communication/communication.js:57 +#: public/js/frappe/form/footer/form_timeline.js:550 +msgid "Reply" +msgstr "crwdns9176:0crwdne9176:0" + +#. Label of a Text Editor field in DocType 'Discussion Reply' +#: website/doctype/discussion_reply/discussion_reply.json +msgctxt "Discussion Reply" +msgid "Reply" +msgstr "crwdns9178:0crwdne9178:0" + +#: core/doctype/communication/communication.js:62 +msgid "Reply All" +msgstr "crwdns9180:0crwdne9180:0" + +#. Name of a DocType +#: core/doctype/report/report.json public/js/frappe/request.js:610 +msgid "Report" +msgstr "crwdns9182:0crwdne9182:0" + +#. Label of a Link field in DocType 'Auto Email Report' +#: email/doctype/auto_email_report/auto_email_report.json +msgctxt "Auto Email Report" +msgid "Report" +msgstr "crwdns9184:0crwdne9184:0" + +#. Label of a Check field in DocType 'Custom DocPerm' +#: core/doctype/custom_docperm/custom_docperm.json +msgctxt "Custom DocPerm" +msgid "Report" +msgstr "crwdns9186:0crwdne9186:0" + +#. Label of a Link field in DocType 'Custom Role' +#: core/doctype/custom_role/custom_role.json +msgctxt "Custom Role" +msgid "Report" +msgstr "crwdns9188:0crwdne9188:0" + +#. Option for a Select field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "Report" +msgstr "crwdns9190:0crwdne9190:0" + +#. Label of a Check field in DocType 'DocPerm' +#: core/doctype/docperm/docperm.json +msgctxt "DocPerm" +msgid "Report" +msgstr "crwdns9192:0crwdne9192:0" + +#. Linked DocType in DocType's connections +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Report" +msgstr "crwdns9194:0crwdne9194:0" + +#. Option for a Select field in DocType 'Form Tour' +#: desk/doctype/form_tour/form_tour.json +msgctxt "Form Tour" +msgid "Report" +msgstr "crwdns9196:0crwdne9196:0" + +#. Option for a Select field in DocType 'Number Card' +#: desk/doctype/number_card/number_card.json +msgctxt "Number Card" +msgid "Report" +msgstr "crwdns9198:0crwdne9198:0" + +#. Label of a Link in the Build Workspace +#. Label of a shortcut in the Build Workspace +#: core/workspace/build/build.json +msgctxt "Report" +msgid "Report" +msgstr "crwdns9200:0crwdne9200:0" + +#. Option for a Select field in DocType 'Role Permission for Page and Report' +#. Label of a Link field in DocType 'Role Permission for Page and Report' +#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json +msgctxt "Role Permission for Page and Report" +msgid "Report" +msgstr "crwdns9202:0crwdne9202:0" + +#. Option for a Select field in DocType 'Workspace Link' +#: desk/doctype/workspace_link/workspace_link.json +msgctxt "Workspace Link" +msgid "Report" +msgstr "crwdns9204:0crwdne9204:0" + +#. Option for a Select field in DocType 'Workspace Shortcut' +#: desk/doctype/workspace_shortcut/workspace_shortcut.json +msgctxt "Workspace Shortcut" +msgid "Report" +msgstr "crwdns9206:0crwdne9206:0" + +#: public/js/frappe/list/list_view_select.js:66 +msgid "Report Builder" +msgstr "crwdns9208:0crwdne9208:0" + +#. Option for a Select field in DocType 'Report' +#: core/doctype/report/report.json +msgctxt "Report" +msgid "Report Builder" +msgstr "crwdns9210:0crwdne9210:0" + +#. Option for a Select field in DocType 'Workspace Shortcut' +#: desk/doctype/workspace_shortcut/workspace_shortcut.json +msgctxt "Workspace Shortcut" +msgid "Report Builder" +msgstr "crwdns9212:0crwdne9212:0" + +#. Name of a DocType +#: core/doctype/report_column/report_column.json +msgid "Report Column" +msgstr "crwdns9214:0crwdne9214:0" + +#. Label of a Data field in DocType 'Onboarding Step' +#: desk/doctype/onboarding_step/onboarding_step.json +msgctxt "Onboarding Step" +msgid "Report Description" +msgstr "crwdns9216:0crwdne9216:0" + +#: core/doctype/report/report.py:148 +msgid "Report Document Error" +msgstr "crwdns9218:0crwdne9218:0" + +#. Name of a DocType +#: core/doctype/report_filter/report_filter.json +msgid "Report Filter" +msgstr "crwdns9220:0crwdne9220:0" + +#. Label of a Section Break field in DocType 'Auto Email Report' +#: email/doctype/auto_email_report/auto_email_report.json +msgctxt "Auto Email Report" +msgid "Report Filters" +msgstr "crwdns9222:0crwdne9222:0" + +#. Label of a Check field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Report Hide" +msgstr "crwdns9224:0crwdne9224:0" + +#. Label of a Check field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Report Hide" +msgstr "crwdns9226:0crwdne9226:0" + +#. Label of a Check field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Report Hide" +msgstr "crwdns9228:0crwdne9228:0" + +#. Label of a Section Break field in DocType 'Access Log' +#: core/doctype/access_log/access_log.json +msgctxt "Access Log" +msgid "Report Information" +msgstr "crwdns9230:0crwdne9230:0" + +#. Name of a role +#: core/doctype/report/report.json +#: email/doctype/auto_email_report/auto_email_report.json +msgid "Report Manager" +msgstr "crwdns9232:0crwdne9232:0" + +#: public/js/frappe/views/reports/query_report.js:1793 +msgid "Report Name" +msgstr "crwdns9234:0crwdne9234:0" + +#. Label of a Data field in DocType 'Access Log' +#: core/doctype/access_log/access_log.json +msgctxt "Access Log" +msgid "Report Name" +msgstr "crwdns9236:0crwdne9236:0" + +#. Label of a Link field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "Report Name" +msgstr "crwdns9238:0crwdne9238:0" + +#. Label of a Link field in DocType 'Number Card' +#: desk/doctype/number_card/number_card.json +msgctxt "Number Card" +msgid "Report Name" +msgstr "crwdns9240:0crwdne9240:0" + +#. Label of a Data field in DocType 'Prepared Report' +#: core/doctype/prepared_report/prepared_report.json +msgctxt "Prepared Report" +msgid "Report Name" +msgstr "crwdns9242:0crwdne9242:0" + +#. Label of a Data field in DocType 'Report' +#: core/doctype/report/report.json +msgctxt "Report" +msgid "Report Name" +msgstr "crwdns9244:0crwdne9244:0" + +#: desk/doctype/number_card/number_card.py:65 +msgid "Report Name, Report Field and Fucntion are required to create a number card" +msgstr "crwdns9246:0crwdne9246:0" + +#. Label of a Data field in DocType 'Onboarding Step' +#: desk/doctype/onboarding_step/onboarding_step.json +msgctxt "Onboarding Step" +msgid "Report Reference Doctype" +msgstr "crwdns9248:0crwdne9248:0" + +#. Label of a Read Only field in DocType 'Auto Email Report' +#: email/doctype/auto_email_report/auto_email_report.json +msgctxt "Auto Email Report" +msgid "Report Type" +msgstr "crwdns9250:0crwdne9250:0" + +#. Label of a Data field in DocType 'Onboarding Step' +#: desk/doctype/onboarding_step/onboarding_step.json +msgctxt "Onboarding Step" +msgid "Report Type" +msgstr "crwdns9252:0crwdne9252:0" + +#. Label of a Select field in DocType 'Report' +#: core/doctype/report/report.json +msgctxt "Report" +msgid "Report Type" +msgstr "crwdns9254:0crwdne9254:0" + +#: core/doctype/doctype/doctype.py:1750 +msgid "Report cannot be set for Single types" +msgstr "crwdns9256:0crwdne9256:0" + +#: desk/doctype/dashboard_chart/dashboard_chart.js:208 +#: desk/doctype/number_card/number_card.js:191 +msgid "Report has no data, please modify the filters or change the Report Name" +msgstr "crwdns9258:0crwdne9258:0" + +#: desk/doctype/dashboard_chart/dashboard_chart.js:196 +#: desk/doctype/number_card/number_card.js:186 +msgid "Report has no numeric fields, please change the Report Name" +msgstr "crwdns9260:0crwdne9260:0" + +#: public/js/frappe/views/reports/query_report.js:935 +msgid "Report initiated, click to view status" +msgstr "crwdns9262:0crwdne9262:0" + +#: email/doctype/auto_email_report/auto_email_report.py:102 +msgid "Report limit reached" +msgstr "crwdns9264:0crwdne9264:0" + +#: core/doctype/prepared_report/prepared_report.py:202 +msgid "Report timed out." +msgstr "crwdns9266:0crwdne9266:0" + +#: desk/query_report.py:568 +msgid "Report updated successfully" +msgstr "crwdns9268:0crwdne9268:0" + +#: public/js/frappe/views/reports/report_view.js:1283 +msgid "Report was not saved (there were errors)" +msgstr "crwdns9270:0crwdne9270:0" + +#: public/js/frappe/views/reports/query_report.js:1831 +msgid "Report with more than 10 columns looks better in Landscape mode." +msgstr "crwdns9272:0crwdne9272:0" + +#: public/js/frappe/ui/toolbar/search_utils.js:235 +#: public/js/frappe/ui/toolbar/search_utils.js:236 +msgid "Report {0}" +msgstr "crwdns9274:0{0}crwdne9274:0" + +#: desk/reportview.py:326 +msgid "Report {0} deleted" +msgstr "crwdns9276:0{0}crwdne9276:0" + +#: desk/query_report.py:50 +msgid "Report {0} is disabled" +msgstr "crwdns9278:0{0}crwdne9278:0" + +#: desk/reportview.py:303 +msgid "Report {0} saved" +msgstr "crwdns9280:0{0}crwdne9280:0" + +#: public/js/frappe/views/reports/report_view.js:20 +msgid "Report:" +msgstr "crwdns9282:0crwdne9282:0" + +#: public/js/frappe/ui/toolbar/search_utils.js:531 +msgid "Reports" +msgstr "crwdns9284:0crwdne9284:0" + +#. Label of a Section Break field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Reports" +msgstr "crwdns9286:0crwdne9286:0" + +#: patches/v14_0/update_workspace2.py:50 +msgid "Reports & Masters" +msgstr "crwdns9288:0crwdne9288:0" + +#: public/js/frappe/views/reports/query_report.js:851 +msgid "Reports already in Queue" +msgstr "crwdns9290:0crwdne9290:0" + +#: www/me.html:66 +msgid "Request Account Deletion" +msgstr "crwdns9292:0crwdne9292:0" + +#. Label of a Code field in DocType 'Webhook' +#: integrations/doctype/webhook/webhook.json +msgctxt "Webhook" +msgid "Request Body" +msgstr "crwdns9294:0crwdne9294:0" + +#. Label of a Code field in DocType 'Integration Request' +#: integrations/doctype/integration_request/integration_request.json +msgctxt "Integration Request" +msgid "Request Data" +msgstr "crwdns9296:0crwdne9296:0" + +#. Label of a Data field in DocType 'Integration Request' +#: integrations/doctype/integration_request/integration_request.json +msgctxt "Integration Request" +msgid "Request Description" +msgstr "crwdns9298:0crwdne9298:0" + +#. Label of a Code field in DocType 'Integration Request' +#: integrations/doctype/integration_request/integration_request.json +msgctxt "Integration Request" +msgid "Request Headers" +msgstr "crwdns9300:0crwdne9300:0" + +#. Label of a Code field in DocType 'Recorder' +#: core/doctype/recorder/recorder.json +msgctxt "Recorder" +msgid "Request Headers" +msgstr "crwdns9302:0crwdne9302:0" + +#. Label of a Data field in DocType 'Integration Request' +#: integrations/doctype/integration_request/integration_request.json +msgctxt "Integration Request" +msgid "Request ID" +msgstr "crwdns9304:0crwdne9304:0" + +#. Label of a Int field in DocType 'Server Script' +#: core/doctype/server_script/server_script.json +msgctxt "Server Script" +msgid "Request Limit" +msgstr "crwdns9306:0crwdne9306:0" + +#. Label of a Select field in DocType 'Webhook' +#: integrations/doctype/webhook/webhook.json +msgctxt "Webhook" +msgid "Request Method" +msgstr "crwdns9308:0crwdne9308:0" + +#. Label of a Select field in DocType 'Webhook' +#: integrations/doctype/webhook/webhook.json +msgctxt "Webhook" +msgid "Request Structure" +msgstr "crwdns9310:0crwdne9310:0" + +#: public/js/frappe/request.js:228 +msgid "Request Timed Out" +msgstr "crwdns9312:0crwdne9312:0" + +#: public/js/frappe/request.js:241 +msgid "Request Timeout" +msgstr "crwdns9314:0crwdne9314:0" + +#. Label of a Int field in DocType 'Webhook' +#: integrations/doctype/webhook/webhook.json +msgctxt "Webhook" +msgid "Request Timeout" +msgstr "crwdns9316:0crwdne9316:0" + +#. Label of a Data field in DocType 'Webhook' +#: integrations/doctype/webhook/webhook.json +msgctxt "Webhook" +msgid "Request URL" +msgstr "crwdns9318:0crwdne9318:0" + +#. Label of a Code field in DocType 'SMS Log' +#: core/doctype/sms_log/sms_log.json +msgctxt "SMS Log" +msgid "Requested Numbers" +msgstr "crwdns9320:0crwdne9320:0" + +#. Label of a Select field in DocType 'LDAP Settings' +#: integrations/doctype/ldap_settings/ldap_settings.json +msgctxt "LDAP Settings" +msgid "Require Trusted Certificate" +msgstr "crwdns9322:0crwdne9322:0" + +#. Description of a Data field in DocType 'LDAP Settings' +#: integrations/doctype/ldap_settings/ldap_settings.json +msgctxt "LDAP Settings" +msgid "Requires any valid fdn path. i.e. ou=groups,dc=example,dc=com" +msgstr "crwdns9324:0crwdne9324:0" + +#. Description of a Data field in DocType 'LDAP Settings' +#: integrations/doctype/ldap_settings/ldap_settings.json +msgctxt "LDAP Settings" +msgid "Requires any valid fdn path. i.e. ou=users,dc=example,dc=com" +msgstr "crwdns9326:0crwdne9326:0" + +#: core/doctype/communication/communication.js:279 +msgid "Res: {0}" +msgstr "crwdns9328:0{0}crwdne9328:0" + +#: desk/doctype/form_tour/form_tour.js:101 +#: desk/doctype/global_search_settings/global_search_settings.js:19 +#: desk/doctype/module_onboarding/module_onboarding.js:17 +#: website/doctype/portal_settings/portal_settings.js:19 +msgid "Reset" +msgstr "crwdns9330:0crwdne9330:0" + +#: custom/doctype/customize_form/customize_form.js:136 +msgid "Reset All Customizations" +msgstr "crwdns9332:0crwdne9332:0" + +#: public/js/print_format_builder/print_format_builder.bundle.js:21 +#: public/js/workflow_builder/workflow_builder.bundle.js:37 +msgid "Reset Changes" +msgstr "crwdns9334:0crwdne9334:0" + +#: public/js/frappe/widgets/chart_widget.js:305 +msgid "Reset Chart" +msgstr "crwdns9336:0crwdne9336:0" + +#: public/js/frappe/views/dashboard/dashboard_view.js:38 +msgid "Reset Dashboard Customizations" +msgstr "crwdns9338:0crwdne9338:0" + +#: public/js/frappe/list/list_settings.js:227 +msgid "Reset Fields" +msgstr "crwdns9340:0crwdne9340:0" + +#: core/doctype/user/user.js:161 core/doctype/user/user.js:164 +msgid "Reset LDAP Password" +msgstr "crwdns9342:0crwdne9342:0" + +#: custom/doctype/customize_form/customize_form.js:128 +msgid "Reset Layout" +msgstr "crwdns9344:0crwdne9344:0" + +#: core/doctype/user/user.js:212 +msgid "Reset OTP Secret" +msgstr "crwdns9346:0crwdne9346:0" + +#: core/doctype/user/user.js:145 www/login.html:179 www/me.html:35 +#: www/me.html:44 www/update-password.html:3 www/update-password.html:9 +msgid "Reset Password" +msgstr "crwdns9348:0crwdne9348:0" + +#. Label of a Data field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Reset Password Key" +msgstr "crwdns9350:0crwdne9350:0" + +#. Label of a Duration field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Reset Password Link Expiry Duration" +msgstr "crwdns9352:0crwdne9352:0" + +#. Label of a Link field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Reset Password Template" +msgstr "crwdns9354:0crwdne9354:0" + +#: core/page/permission_manager/permission_manager.js:109 +msgid "Reset Permissions for {0}?" +msgstr "crwdns9356:0{0}crwdne9356:0" + +#: public/js/frappe/utils/datatable.js:8 +msgid "Reset sorting" +msgstr "crwdns9358:0crwdne9358:0" + +#: www/me.html:36 +msgid "Reset the password for your account" +msgstr "crwdns9360:0crwdne9360:0" + +#: public/js/frappe/form/grid_row.js:409 +msgid "Reset to default" +msgstr "crwdns9362:0crwdne9362:0" + +#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:19 +msgid "Reset to defaults" +msgstr "crwdns9364:0crwdne9364:0" + +#: templates/emails/password_reset.html:3 +msgid "Reset your password" +msgstr "crwdns9366:0crwdne9366:0" + +#. Label of a Text Editor field in DocType 'Email Template' +#: email/doctype/email_template/email_template.json +msgctxt "Email Template" +msgid "Response" +msgstr "crwdns9368:0crwdne9368:0" + +#. Label of a Section Break field in DocType 'Integration Request' +#: integrations/doctype/integration_request/integration_request.json +msgctxt "Integration Request" +msgid "Response" +msgstr "crwdns9370:0crwdne9370:0" + +#. Label of a Code field in DocType 'Webhook Request Log' +#: integrations/doctype/webhook_request_log/webhook_request_log.json +msgctxt "Webhook Request Log" +msgid "Response" +msgstr "crwdns9372:0crwdne9372:0" + +#. Label of a Code field in DocType 'Email Template' +#: email/doctype/email_template/email_template.json +msgctxt "Email Template" +msgid "Response " +msgstr "crwdns9374:0crwdne9374:0" + +#. Label of a Select field in DocType 'OAuth Client' +#: integrations/doctype/oauth_client/oauth_client.json +msgctxt "OAuth Client" +msgid "Response Type" +msgstr "crwdns9376:0crwdne9376:0" + +#: public/js/frappe/ui/notifications/notifications.js:400 +msgid "Rest of the day" +msgstr "crwdns9378:0crwdne9378:0" + +#: core/doctype/deleted_document/deleted_document.js:11 +#: core/doctype/deleted_document/deleted_document_list.js:48 +msgid "Restore" +msgstr "crwdns9380:0crwdne9380:0" + +#: core/page/permission_manager/permission_manager.js:492 +msgid "Restore Original Permissions" +msgstr "crwdns9382:0crwdne9382:0" + +#: website/doctype/portal_settings/portal_settings.js:20 +msgid "Restore to default settings?" +msgstr "crwdns9384:0crwdne9384:0" + +#. Label of a Check field in DocType 'Deleted Document' +#: core/doctype/deleted_document/deleted_document.json +msgctxt "Deleted Document" +msgid "Restored" +msgstr "crwdns9386:0crwdne9386:0" + +#: core/doctype/deleted_document/deleted_document.py:73 +msgid "Restoring Deleted Document" +msgstr "crwdns9388:0crwdne9388:0" + +#. Label of a Small Text field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Restrict IP" +msgstr "crwdns9390:0crwdne9390:0" + +#. Label of a Link field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Restrict To Domain" +msgstr "crwdns9392:0crwdne9392:0" + +#. Label of a Link field in DocType 'Module Def' +#: core/doctype/module_def/module_def.json +msgctxt "Module Def" +msgid "Restrict To Domain" +msgstr "crwdns9394:0crwdne9394:0" + +#. Label of a Link field in DocType 'Page' +#: core/doctype/page/page.json +msgctxt "Page" +msgid "Restrict To Domain" +msgstr "crwdns9396:0crwdne9396:0" + +#. Label of a Link field in DocType 'Role' +#: core/doctype/role/role.json +msgctxt "Role" +msgid "Restrict To Domain" +msgstr "crwdns9398:0crwdne9398:0" + +#. Label of a Link field in DocType 'Workspace' +#: desk/doctype/workspace/workspace.json +msgctxt "Workspace" +msgid "Restrict to Domain" +msgstr "crwdns9400:0crwdne9400:0" + +#. Label of a Link field in DocType 'Workspace Shortcut' +#: desk/doctype/workspace_shortcut/workspace_shortcut.json +msgctxt "Workspace Shortcut" +msgid "Restrict to Domain" +msgstr "crwdns9402:0crwdne9402:0" + +#. Description of a Small Text field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +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 "crwdns9404:0crwdne9404:0" + +#: public/js/frappe/list/list_view.js:172 +msgctxt "Title of message showing restrictions in list view" +msgid "Restrictions" +msgstr "crwdns9406:0crwdne9406:0" + +#: public/js/frappe/ui/toolbar/awesome_bar.js:354 +#: public/js/frappe/ui/toolbar/awesome_bar.js:369 +msgid "Result" +msgstr "crwdns9408:0crwdne9408:0" + +#: email/doctype/email_queue/email_queue_list.js:27 +msgid "Resume Sending" +msgstr "crwdns9410:0crwdne9410:0" + +#: core/doctype/data_import/data_import.js:110 +msgid "Retry" +msgstr "crwdns9412:0crwdne9412:0" + +#. Label of a Int field in DocType 'Email Queue' +#: email/doctype/email_queue/email_queue.json +msgctxt "Email Queue" +msgid "Retry" +msgstr "crwdns9414:0crwdne9414:0" + +#: email/doctype/email_queue/email_queue_list.js:47 +msgid "Retry Sending" +msgstr "crwdns9416:0crwdne9416:0" + +#: www/qrcode.html:15 +msgid "Return to the Verification screen and enter the code displayed by your authentication app" +msgstr "crwdns9418:0crwdne9418:0" + +#. Label of a Check field in DocType 'Desktop Icon' +#: desk/doctype/desktop_icon/desktop_icon.json +msgctxt "Desktop Icon" +msgid "Reverse Icon Color" +msgstr "crwdns9420:0crwdne9420:0" + +#: social/doctype/energy_point_log/energy_point_log.js:10 +#: social/doctype/energy_point_log/energy_point_log.js:15 +msgid "Revert" +msgstr "crwdns9422:0crwdne9422:0" + +#. Option for a Select field in DocType 'Energy Point Log' +#: social/doctype/energy_point_log/energy_point_log.json +msgctxt "Energy Point Log" +msgid "Revert" +msgstr "crwdns9424:0crwdne9424:0" + +#. Label of a Link field in DocType 'Energy Point Log' +#: social/doctype/energy_point_log/energy_point_log.json +msgctxt "Energy Point Log" +msgid "Revert Of" +msgstr "crwdns9426:0crwdne9426:0" + +#. Label of a Check field in DocType 'Energy Point Log' +#: social/doctype/energy_point_log/energy_point_log.json +msgctxt "Energy Point Log" +msgid "Reverted" +msgstr "crwdns9428:0crwdne9428:0" + +#: database/schema.py:162 +msgid "Reverting length to {0} for '{1}' in '{2}'. Setting the length as {3} will cause truncation of data." +msgstr "crwdns9430:0{0}crwdnd9430:0{1}crwdnd9430:0{2}crwdnd9430:0{3}crwdne9430:0" + +#. Option for a Select field in DocType 'Energy Point Log' +#: social/doctype/energy_point_log/energy_point_log.json +msgctxt "Energy Point Log" +msgid "Review" +msgstr "crwdns9432:0crwdne9432:0" + +#. Name of a DocType +#: social/doctype/review_level/review_level.json +msgid "Review Level" +msgstr "crwdns9434:0crwdne9434:0" + +#. Label of a Table field in DocType 'Energy Point Settings' +#: social/doctype/energy_point_settings/energy_point_settings.json +msgctxt "Energy Point Settings" +msgid "Review Levels" +msgstr "crwdns9436:0crwdne9436:0" + +#. Label of a Int field in DocType 'Review Level' +#: social/doctype/review_level/review_level.json +msgctxt "Review Level" +msgid "Review Points" +msgstr "crwdns9438:0crwdne9438:0" + +#. Label of a Data field in DocType 'Connected App' +#: integrations/doctype/connected_app/connected_app.json +msgctxt "Connected App" +msgid "Revocation URI" +msgstr "crwdns9440:0crwdne9440:0" + +#: www/third_party_apps.html:45 +msgid "Revoke" +msgstr "crwdns9442:0crwdne9442:0" + +#. Option for a Select field in DocType 'OAuth Bearer Token' +#: integrations/doctype/oauth_bearer_token/oauth_bearer_token.json +msgctxt "OAuth Bearer Token" +msgid "Revoked" +msgstr "crwdns9444:0crwdne9444:0" + +#. Option for a Select field in DocType 'Blog Post' +#: website/doctype/blog_post/blog_post.json +msgctxt "Blog Post" +msgid "Rich Text" +msgstr "crwdns9446:0crwdne9446:0" + +#. Option for a Select field in DocType 'Newsletter' +#: email/doctype/newsletter/newsletter.json +msgctxt "Newsletter" +msgid "Rich Text" +msgstr "crwdns9448:0crwdne9448:0" + +#. Option for a Select field in DocType 'Web Page' +#: website/doctype/web_page/web_page.json +msgctxt "Web Page" +msgid "Rich Text" +msgstr "crwdns9450:0crwdne9450:0" + +#. Option for a Select field in DocType 'Form Tour Step' +#: desk/doctype/form_tour_step/form_tour_step.json +msgctxt "Form Tour Step" +msgid "Right" +msgstr "crwdns9452:0crwdne9452:0" + +#. Option for a Select field in DocType 'Letter Head' +#: printing/doctype/letter_head/letter_head.json +msgctxt "Letter Head" +msgid "Right" +msgstr "crwdns9454:0crwdne9454:0" + +#. Option for a Select field in DocType 'Web Page' +#: website/doctype/web_page/web_page.json +msgctxt "Web Page" +msgid "Right" +msgstr "crwdns9456:0crwdne9456:0" + +#: printing/page/print_format_builder/print_format_builder.js:484 +msgctxt "alignment" +msgid "Right" +msgstr "crwdns9458:0crwdne9458:0" + +#. Option for a Select field in DocType 'Form Tour Step' +#: desk/doctype/form_tour_step/form_tour_step.json +msgctxt "Form Tour Step" +msgid "Right Bottom" +msgstr "crwdns9460:0crwdne9460:0" + +#. Option for a Select field in DocType 'Form Tour Step' +#: desk/doctype/form_tour_step/form_tour_step.json +msgctxt "Form Tour Step" +msgid "Right Center" +msgstr "crwdns9462:0crwdne9462:0" + +#. Label of a Code field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Robots.txt" +msgstr "crwdns9464:0crwdne9464:0" + +#. Name of a DocType +#: core/doctype/role/role.json core/doctype/user_type/user_type.py:109 +#: core/page/permission_manager/permission_manager.js:212 +#: core/page/permission_manager/permission_manager.js:439 +msgid "Role" +msgstr "crwdns9466:0crwdne9466:0" + +#. Label of a Link field in DocType 'Custom DocPerm' +#: core/doctype/custom_docperm/custom_docperm.json +msgctxt "Custom DocPerm" +msgid "Role" +msgstr "crwdns9468:0crwdne9468:0" + +#. Label of a Table field in DocType 'Custom Role' +#: core/doctype/custom_role/custom_role.json +msgctxt "Custom Role" +msgid "Role" +msgstr "crwdns9470:0crwdne9470:0" + +#. Label of a Link field in DocType 'DocPerm' +#: core/doctype/docperm/docperm.json +msgctxt "DocPerm" +msgid "Role" +msgstr "crwdns9472:0crwdne9472:0" + +#. Label of a Link field in DocType 'Has Role' +#: core/doctype/has_role/has_role.json +msgctxt "Has Role" +msgid "Role" +msgstr "crwdns9474:0crwdne9474:0" + +#. Label of a Link field in DocType 'Onboarding Permission' +#: desk/doctype/onboarding_permission/onboarding_permission.json +msgctxt "Onboarding Permission" +msgid "Role" +msgstr "crwdns9476:0crwdne9476:0" + +#. Label of a Link field in DocType 'Portal Menu Item' +#: website/doctype/portal_menu_item/portal_menu_item.json +msgctxt "Portal Menu Item" +msgid "Role" +msgstr "crwdns9478:0crwdne9478:0" + +#. Label of a Link field in DocType 'Review Level' +#: social/doctype/review_level/review_level.json +msgctxt "Review Level" +msgid "Role" +msgstr "crwdns9480:0crwdne9480:0" + +#. Label of a Link in the Users Workspace +#. Label of a shortcut in the Users Workspace +#: core/workspace/users/users.json +msgctxt "Role" +msgid "Role" +msgstr "crwdns9482:0crwdne9482:0" + +#. Label of a Link field in DocType 'ToDo' +#: desk/doctype/todo/todo.json +msgctxt "ToDo" +msgid "Role" +msgstr "crwdns9484:0crwdne9484:0" + +#. Label of a Link field in DocType 'User Type' +#: core/doctype/user_type/user_type.json +msgctxt "User Type" +msgid "Role" +msgstr "crwdns9486:0crwdne9486:0" + +#. Label of a Link field in DocType 'Workflow Action Permitted Role' +#: workflow/doctype/workflow_action_permitted_role/workflow_action_permitted_role.json +msgctxt "Workflow Action Permitted Role" +msgid "Role" +msgstr "crwdns9488:0crwdne9488:0" + +#: core/doctype/role/role.js:8 +msgid "Role 'All' will be given to all system + website users." +msgstr "crwdns9490:0crwdne9490:0" + +#: core/doctype/role/role.js:13 +msgid "Role 'Desk User' will be given to all system users." +msgstr "crwdns9492:0crwdne9492:0" + +#. Label of a Data field in DocType 'Role' +#: core/doctype/role/role.json +msgctxt "Role" +msgid "Role Name" +msgstr "crwdns9494:0crwdne9494:0" + +#. Label of a Data field in DocType 'Role Profile' +#: core/doctype/role_profile/role_profile.json +msgctxt "Role Profile" +msgid "Role Name" +msgstr "crwdns9496:0crwdne9496:0" + +#. Name of a DocType +#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json +msgid "Role Permission for Page and Report" +msgstr "crwdns9498:0crwdne9498:0" + +#. Label of a Link in the Users Workspace +#: core/workspace/users/users.json +msgctxt "Role Permission for Page and Report" +msgid "Role Permission for Page and Report" +msgstr "crwdns9500:0crwdne9500:0" + +#: public/js/frappe/roles_editor.js:100 +msgid "Role Permissions" +msgstr "crwdns9502:0crwdne9502:0" + +#. Label of a Section Break field in DocType 'User Document Type' +#: core/doctype/user_document_type/user_document_type.json +msgctxt "User Document Type" +msgid "Role Permissions" +msgstr "crwdns9504:0crwdne9504:0" + +#. Label of a Link in the Users Workspace +#: core/page/permission_manager/permission_manager.js:4 +#: core/workspace/users/users.json +msgid "Role Permissions Manager" +msgstr "crwdns9506:0crwdne9506:0" + +#: public/js/frappe/list/list_view.js:1650 +msgctxt "Button in list view menu" +msgid "Role Permissions Manager" +msgstr "crwdns9508:0crwdne9508:0" + +#. Name of a DocType +#: core/doctype/role_profile/role_profile.json +msgid "Role Profile" +msgstr "crwdns9510:0crwdne9510:0" + +#. Label of a Link in the Users Workspace +#: core/workspace/users/users.json +msgctxt "Role Profile" +msgid "Role Profile" +msgstr "crwdns9512:0crwdne9512:0" + +#. Label of a Link field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Role Profile" +msgstr "crwdns9514:0crwdne9514:0" + +#. Label of a Section Break field in DocType 'Custom DocPerm' +#: core/doctype/custom_docperm/custom_docperm.json +msgctxt "Custom DocPerm" +msgid "Role and Level" +msgstr "crwdns9516:0crwdne9516:0" + +#. Label of a Section Break field in DocType 'DocPerm' +#: core/doctype/docperm/docperm.json +msgctxt "DocPerm" +msgid "Role and Level" +msgstr "crwdns9518:0crwdne9518:0" + +#: core/doctype/user/user.py:314 +msgid "Role has been set as per the user type {0}" +msgstr "crwdns9520:0{0}crwdne9520:0" + +#: core/page/permission_manager/permission_manager.js:59 +msgid "Roles" +msgstr "crwdns9522:0crwdne9522:0" + +#. Label of a Section Break field in DocType 'Custom HTML Block' +#. Label of a Table field in DocType 'Custom HTML Block' +#: desk/doctype/custom_html_block/custom_html_block.json +msgctxt "Custom HTML Block" +msgid "Roles" +msgstr "crwdns9524:0crwdne9524:0" + +#. Label of a Table field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "Roles" +msgstr "crwdns9526:0crwdne9526:0" + +#. Label of a Table field in DocType 'Page' +#: core/doctype/page/page.json +msgctxt "Page" +msgid "Roles" +msgstr "crwdns9528:0crwdne9528:0" + +#. Label of a Table field in DocType 'Report' +#: core/doctype/report/report.json +msgctxt "Report" +msgid "Roles" +msgstr "crwdns9530:0crwdne9530:0" + +#. Label of a Table field in DocType 'Role Permission for Page and Report' +#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json +msgctxt "Role Permission for Page and Report" +msgid "Roles" +msgstr "crwdns9532:0crwdne9532:0" + +#. Label of a Section Break field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Roles" +msgstr "crwdns9534:0crwdne9534:0" + +#. Label of a Table field in DocType 'Workspace' +#. Label of a Tab Break field in DocType 'Workspace' +#: desk/doctype/workspace/workspace.json +msgctxt "Workspace" +msgid "Roles" +msgstr "crwdns9536:0crwdne9536:0" + +#. Label of a Tab Break field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Roles & Permissions" +msgstr "crwdns9538:0crwdne9538:0" + +#. Label of a Table field in DocType 'Role Profile' +#: core/doctype/role_profile/role_profile.json +msgctxt "Role Profile" +msgid "Roles Assigned" +msgstr "crwdns9540:0crwdne9540:0" + +#. Label of a Table field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Roles Assigned" +msgstr "crwdns9542:0crwdne9542:0" + +#. Label of a HTML field in DocType 'Role Profile' +#: core/doctype/role_profile/role_profile.json +msgctxt "Role Profile" +msgid "Roles HTML" +msgstr "crwdns9544:0crwdne9544:0" + +#. Label of a HTML field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Roles HTML" +msgstr "crwdns9546:0crwdne9546:0" + +#. Label of a HTML field in DocType 'Role Permission for Page and Report' +#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json +msgctxt "Role Permission for Page and Report" +msgid "Roles Html" +msgstr "crwdns9548:0crwdne9548:0" + +#: utils/nestedset.py:283 +msgid "Root {0} cannot be deleted" +msgstr "crwdns9550:0{0}crwdne9550:0" + +#. Option for a Select field in DocType 'Assignment Rule' +#: automation/doctype/assignment_rule/assignment_rule.json +msgctxt "Assignment Rule" +msgid "Round Robin" +msgstr "crwdns9552:0crwdne9552:0" + +#. Label of a Select field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Rounding Method" +msgstr "crwdns9554:0crwdne9554:0" + +#. Label of a Data field in DocType 'Blog Category' +#: website/doctype/blog_category/blog_category.json +msgctxt "Blog Category" +msgid "Route" +msgstr "crwdns9556:0crwdne9556:0" + +#. Label of a Data field in DocType 'Blog Post' +#: website/doctype/blog_post/blog_post.json +msgctxt "Blog Post" +msgid "Route" +msgstr "crwdns9558:0crwdne9558:0" + +#. Label of a Data field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Route" +msgstr "crwdns9560:0crwdne9560:0" + +#. Option for a Select field in DocType 'DocType Action' +#: core/doctype/doctype_action/doctype_action.json +msgctxt "DocType Action" +msgid "Route" +msgstr "crwdns9562:0crwdne9562:0" + +#. Label of a Data field in DocType 'DocType Layout' +#: custom/doctype/doctype_layout/doctype_layout.json +msgctxt "DocType Layout" +msgid "Route" +msgstr "crwdns9564:0crwdne9564:0" + +#. Label of a Data field in DocType 'Help Article' +#: website/doctype/help_article/help_article.json +msgctxt "Help Article" +msgid "Route" +msgstr "crwdns9566:0crwdne9566:0" + +#. Label of a Data field in DocType 'Help Category' +#: website/doctype/help_category/help_category.json +msgctxt "Help Category" +msgid "Route" +msgstr "crwdns9568:0crwdne9568:0" + +#. Option for a Select field in DocType 'Navbar Item' +#. Label of a Data field in DocType 'Navbar Item' +#: core/doctype/navbar_item/navbar_item.json +msgctxt "Navbar Item" +msgid "Route" +msgstr "crwdns9570:0crwdne9570:0" + +#. Label of a Data field in DocType 'Newsletter' +#: email/doctype/newsletter/newsletter.json +msgctxt "Newsletter" +msgid "Route" +msgstr "crwdns9572:0crwdne9572:0" + +#. Label of a Data field in DocType 'Portal Menu Item' +#: website/doctype/portal_menu_item/portal_menu_item.json +msgctxt "Portal Menu Item" +msgid "Route" +msgstr "crwdns9574:0crwdne9574:0" + +#. Label of a Data field in DocType 'Route History' +#: desk/doctype/route_history/route_history.json +msgctxt "Route History" +msgid "Route" +msgstr "crwdns9576:0crwdne9576:0" + +#. Label of a Data field in DocType 'Web Form' +#: website/doctype/web_form/web_form.json +msgctxt "Web Form" +msgid "Route" +msgstr "crwdns9578:0crwdne9578:0" + +#. Label of a Data field in DocType 'Web Page' +#: website/doctype/web_page/web_page.json +msgctxt "Web Page" +msgid "Route" +msgstr "crwdns9580:0crwdne9580:0" + +#. Label of a Data field in DocType 'Website Sidebar Item' +#: website/doctype/website_sidebar_item/website_sidebar_item.json +msgctxt "Website Sidebar Item" +msgid "Route" +msgstr "crwdns9582:0crwdne9582:0" + +#. Name of a DocType +#: desk/doctype/route_history/route_history.json +msgid "Route History" +msgstr "crwdns9584:0crwdne9584:0" + +#. Linked DocType in User's connections +#: core/doctype/user/user.json +msgctxt "User" +msgid "Route History" +msgstr "crwdns9586:0crwdne9586:0" + +#. Label of a Table field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Route Redirects" +msgstr "crwdns9588:0crwdne9588:0" + +#. Description of a Data field in DocType 'Role' +#: core/doctype/role/role.json +msgctxt "Role" +msgid "Route: Example \"/desk\"" +msgstr "crwdns9590:0crwdne9590:0" + +#: model/base_document.py:710 model/base_document.py:751 model/document.py:591 +msgid "Row" +msgstr "crwdns9592:0crwdne9592:0" + +#: core/doctype/doctype/doctype.py:1772 core/doctype/doctype/doctype.py:1782 +msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype" +msgstr "crwdns9594:0{0}crwdnd9594:0{1}crwdne9594:0" + +#: model/base_document.py:868 +msgid "Row #{0}:" +msgstr "crwdns9596:0#{0}crwdne9596:0" + +#: core/doctype/doctype/doctype.py:492 +msgid "Row #{}: Fieldname is required" +msgstr "crwdns9598:0crwdne9598:0" + +#. Label of a Data field in DocType 'Transaction Log' +#: core/doctype/transaction_log/transaction_log.json +msgctxt "Transaction Log" +msgid "Row Index" +msgstr "crwdns9600:0crwdne9600:0" + +#. Label of a Code field in DocType 'Data Import Log' +#: core/doctype/data_import_log/data_import_log.json +msgctxt "Data Import Log" +msgid "Row Indexes" +msgstr "crwdns9602:0crwdne9602:0" + +#. Label of a Data field in DocType 'Property Setter' +#: custom/doctype/property_setter/property_setter.json +msgctxt "Property Setter" +msgid "Row Name" +msgstr "crwdns9604:0crwdne9604:0" + +#: custom/doctype/customize_form/customize_form.py:349 +msgid "Row {0}: Not allowed to disable Mandatory for standard fields" +msgstr "crwdns9606:0{0}crwdne9606:0" + +#: custom/doctype/customize_form/customize_form.py:337 +msgid "Row {0}: Not allowed to enable Allow on Submit for standard fields" +msgstr "crwdns9608:0{0}crwdne9608:0" + +#. Label of a Section Break field in DocType 'Audit Trail' +#: core/doctype/audit_trail/audit_trail.json +msgctxt "Audit Trail" +msgid "Rows Added" +msgstr "crwdns9610:0crwdne9610:0" + +#. Label of a Section Break field in DocType 'Audit Trail' +#: core/doctype/audit_trail/audit_trail.json +msgctxt "Audit Trail" +msgid "Rows Removed" +msgstr "crwdns9612:0crwdne9612:0" + +#. Label of a Select field in DocType 'Assignment Rule' +#: automation/doctype/assignment_rule/assignment_rule.json +msgctxt "Assignment Rule" +msgid "Rule" +msgstr "crwdns9614:0crwdne9614:0" + +#. Label of a Link field in DocType 'Energy Point Log' +#: social/doctype/energy_point_log/energy_point_log.json +msgctxt "Energy Point Log" +msgid "Rule" +msgstr "crwdns9616:0crwdne9616:0" + +#. Label of a Section Break field in DocType 'Document Naming Rule' +#: core/doctype/document_naming_rule/document_naming_rule.json +msgctxt "Document Naming Rule" +msgid "Rule Conditions" +msgstr "crwdns9618:0crwdne9618:0" + +#. Label of a Data field in DocType 'Energy Point Rule' +#: social/doctype/energy_point_rule/energy_point_rule.json +msgctxt "Energy Point Rule" +msgid "Rule Name" +msgstr "crwdns9620:0crwdne9620:0" + +#: permissions.py:660 +msgid "Rule for this doctype, role, permlevel and if-owner combination already exists." +msgstr "crwdns9622:0crwdne9622:0" + +#. Group in DocType's connections +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Rules" +msgstr "crwdns9624:0crwdne9624:0" + +#. Description of a Table field in DocType 'Workflow' +#: workflow/doctype/workflow/workflow.json +msgctxt "Workflow" +msgid "Rules defining transition of state in the workflow." +msgstr "crwdns9626:0crwdne9626:0" + +#. Description of a Section Break field in DocType 'Workflow' +#: workflow/doctype/workflow/workflow.json +msgctxt "Workflow" +msgid "Rules for how states are transitions, like next state and which role is allowed to change state etc." +msgstr "crwdns9628:0crwdne9628:0" + +#. Description of a Int field in DocType 'Document Naming Rule' +#: core/doctype/document_naming_rule/document_naming_rule.json +msgctxt "Document Naming Rule" +msgid "Rules with higher priority number will be applied first." +msgstr "crwdns9630:0crwdne9630:0" + +#. Label of a Int field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Run Jobs only Daily if Inactive For (Days)" +msgstr "crwdns9632:0crwdne9632:0" + +#. Description of a Check field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Run scheduled jobs only if checked" +msgstr "crwdns9634:0crwdne9634:0" + +#. Name of a DocType +#: integrations/doctype/s3_backup_settings/s3_backup_settings.json +msgid "S3 Backup Settings" +msgstr "crwdns9636:0crwdne9636:0" + +#. Label of a Link in the Integrations Workspace +#: integrations/workspace/integrations/integrations.json +msgctxt "S3 Backup Settings" +msgid "S3 Backup Settings" +msgstr "crwdns9638:0crwdne9638:0" + +#: integrations/doctype/s3_backup_settings/s3_backup_settings.js:18 +msgid "S3 Backup complete!" +msgstr "crwdns9640:0crwdne9640:0" + +#. Label of a Section Break field in DocType 'S3 Backup Settings' +#: integrations/doctype/s3_backup_settings/s3_backup_settings.json +msgctxt "S3 Backup Settings" +msgid "S3 Bucket Details" +msgstr "crwdns9642:0crwdne9642:0" + +#. Option for a Select field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "SMS" +msgstr "crwdns9644:0crwdne9644:0" + +#. Option for a Select field in DocType 'Notification' +#: email/doctype/notification/notification.json +msgctxt "Notification" +msgid "SMS" +msgstr "crwdns9646:0crwdne9646:0" + +#. Option for a Select field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "SMS" +msgstr "crwdns9648:0crwdne9648:0" + +#. Label of a Small Text field in DocType 'SMS Settings' +#: core/doctype/sms_settings/sms_settings.json +msgctxt "SMS Settings" +msgid "SMS Gateway URL" +msgstr "crwdns9650:0crwdne9650:0" + +#. Name of a DocType +#: core/doctype/sms_log/sms_log.json +msgid "SMS Log" +msgstr "crwdns9652:0crwdne9652:0" + +#. Name of a DocType +#: core/doctype/sms_parameter/sms_parameter.json +msgid "SMS Parameter" +msgstr "crwdns9654:0crwdne9654:0" + +#. Name of a DocType +#: core/doctype/sms_settings/sms_settings.json +msgid "SMS Settings" +msgstr "crwdns9656:0crwdne9656:0" + +#. Label of a Link in the Integrations Workspace +#: integrations/workspace/integrations/integrations.json +msgctxt "SMS Settings" +msgid "SMS Settings" +msgstr "crwdns9658:0crwdne9658:0" + +#: core/doctype/sms_settings/sms_settings.py:110 +msgid "SMS sent to following numbers: {0}" +msgstr "crwdns9660:0{0}crwdne9660:0" + +#: email/doctype/email_account/email_account.py:182 +msgid "SMTP Server is required" +msgstr "crwdns9662:0crwdne9662:0" + +#. Description of a Check field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "SMTP Settings for outgoing emails" +msgstr "crwdns9664:0crwdne9664:0" + +#. Option for a Select field in DocType 'System Console' +#: desk/doctype/system_console/system_console.json +msgctxt "System Console" +msgid "SQL" +msgstr "crwdns9666:0crwdne9666:0" + +#. Description of a Small Text field in DocType 'Bulk Update' +#: desk/doctype/bulk_update/bulk_update.json +msgctxt "Bulk Update" +msgid "SQL Conditions. Example: status=\"Open\"" +msgstr "crwdns9668:0crwdne9668:0" + +#: core/doctype/recorder/recorder.js:36 +msgid "SQL Explain" +msgstr "crwdns9670:0crwdne9670:0" + +#. Label of a HTML field in DocType 'Recorder Query' +#: core/doctype/recorder_query/recorder_query.json +msgctxt "Recorder Query" +msgid "SQL Explain" +msgstr "crwdns9672:0crwdne9672:0" + +#. Label of a HTML field in DocType 'System Console' +#: desk/doctype/system_console/system_console.json +msgctxt "System Console" +msgid "SQL Output" +msgstr "crwdns9674:0crwdne9674:0" + +#. Label of a Table field in DocType 'Recorder' +#: core/doctype/recorder/recorder.json +msgctxt "Recorder" +msgid "SQL Queries" +msgstr "crwdns9676:0crwdne9676:0" + +#. Label of a Select field in DocType 'LDAP Settings' +#: integrations/doctype/ldap_settings/ldap_settings.json +msgctxt "LDAP Settings" +msgid "SSL/TLS Mode" +msgstr "crwdns9678:0crwdne9678:0" + +#. Name of a role +#: contacts/doctype/contact/contact.json +msgid "Sales Manager" +msgstr "crwdns9680:0crwdne9680:0" + +#. Name of a role +#: contacts/doctype/contact/contact.json +msgid "Sales Master Manager" +msgstr "crwdns9682:0crwdne9682:0" + +#. Name of a role +#: contacts/doctype/address/address.json contacts/doctype/contact/contact.json +#: geo/doctype/currency/currency.json +msgid "Sales User" +msgstr "crwdns9684:0crwdne9684:0" + +#. Option for a Select field in DocType 'Social Login Key' +#: integrations/doctype/social_login_key/social_login_key.json +msgctxt "Social Login Key" +msgid "Salesforce" +msgstr "crwdns9686:0crwdne9686:0" + +#. Name of a DocType +#: contacts/doctype/salutation/salutation.json +msgid "Salutation" +msgstr "crwdns9688:0crwdne9688:0" + +#. Label of a Link field in DocType 'Contact' +#: contacts/doctype/contact/contact.json +msgctxt "Contact" +msgid "Salutation" +msgstr "crwdns9690:0crwdne9690:0" + +#. Label of a Data field in DocType 'Salutation' +#: contacts/doctype/salutation/salutation.json +msgctxt "Salutation" +msgid "Salutation" +msgstr "crwdns9692:0crwdne9692:0" + +#: integrations/doctype/webhook/webhook.py:109 +msgid "Same Field is entered more than once" +msgstr "crwdns9694:0crwdne9694:0" + +#. Label of a HTML field in DocType 'Client Script' +#: custom/doctype/client_script/client_script.json +msgctxt "Client Script" +msgid "Sample" +msgstr "crwdns9696:0crwdne9696:0" + +#. Option for a Select field in DocType 'Assignment Rule Day' +#: automation/doctype/assignment_rule_day/assignment_rule_day.json +msgctxt "Assignment Rule Day" +msgid "Saturday" +msgstr "crwdns9698:0crwdne9698:0" + +#. Option for a Select field in DocType 'Auto Email Report' +#: email/doctype/auto_email_report/auto_email_report.json +msgctxt "Auto Email Report" +msgid "Saturday" +msgstr "crwdns9700:0crwdne9700:0" + +#. Option for a Select field in DocType 'Auto Repeat Day' +#: automation/doctype/auto_repeat_day/auto_repeat_day.json +msgctxt "Auto Repeat Day" +msgid "Saturday" +msgstr "crwdns9702:0crwdne9702:0" + +#. Label of a Check field in DocType 'Event' +#: desk/doctype/event/event.json +msgctxt "Event" +msgid "Saturday" +msgstr "crwdns9704:0crwdne9704:0" + +#. Option for a Select field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Saturday" +msgstr "crwdns9706:0crwdne9706:0" + +#: core/doctype/data_import/data_import.js:113 +#: desk/page/user_profile/user_profile_controller.js:319 +#: printing/page/print/print.js:831 +#: printing/page/print_format_builder/print_format_builder.js:160 +#: public/js/frappe/form/footer/form_timeline.js:638 +#: public/js/frappe/form/quick_entry.js:156 +#: public/js/frappe/list/list_settings.js:36 +#: public/js/frappe/list/list_settings.js:244 +#: public/js/frappe/list/list_sidebar_group_by.js:25 +#: public/js/frappe/ui/toolbar/toolbar.js:297 +#: public/js/frappe/utils/common.js:443 +#: public/js/frappe/views/kanban/kanban_settings.js:45 +#: public/js/frappe/views/kanban/kanban_settings.js:189 +#: public/js/frappe/views/kanban/kanban_view.js:340 +#: public/js/frappe/views/reports/query_report.js:1785 +#: public/js/frappe/views/reports/report_view.js:1631 +#: public/js/frappe/views/workspace/workspace.js:487 +#: public/js/frappe/widgets/base_widget.js:140 +#: public/js/frappe/widgets/quick_list_widget.js:117 +#: public/js/print_format_builder/print_format_builder.bundle.js:15 +#: public/js/workflow_builder/workflow_builder.bundle.js:33 +msgid "Save" +msgstr "crwdns9708:0crwdne9708:0" + +#. Option for a Select field in DocType 'Notification' +#: email/doctype/notification/notification.json +msgctxt "Notification" +msgid "Save" +msgstr "crwdns9710:0crwdne9710:0" + +#: core/doctype/user/user.js:316 +msgid "Save API Secret: {0}" +msgstr "crwdns9712:0{0}crwdne9712:0" + +#: workflow/doctype/workflow/workflow.js:143 +msgid "Save Anyway" +msgstr "crwdns9714:0crwdne9714:0" + +#: public/js/frappe/views/reports/report_view.js:1314 +#: public/js/frappe/views/reports/report_view.js:1638 +msgid "Save As" +msgstr "crwdns9716:0crwdne9716:0" + +#: public/js/frappe/views/dashboard/dashboard_view.js:62 +msgid "Save Customizations" +msgstr "crwdns9718:0crwdne9718:0" + +#: public/js/frappe/views/reports/query_report.js:1788 +msgid "Save Report" +msgstr "crwdns9720:0crwdne9720:0" + +#: public/js/frappe/views/kanban/kanban_view.js:94 +msgid "Save filters" +msgstr "crwdns9722:0crwdne9722:0" + +#. Label of a Check field in DocType 'Form Tour' +#: desk/doctype/form_tour/form_tour.json +msgctxt "Form Tour" +msgid "Save on Completion" +msgstr "crwdns9724:0crwdne9724:0" + +#: public/js/frappe/form/form_tour.js:287 +msgid "Save the document." +msgstr "crwdns9726:0crwdne9726:0" + +#: desk/form/save.py:46 model/rename_doc.py:107 +#: printing/page/print_format_builder/print_format_builder.js:845 +#: public/js/frappe/form/toolbar.js:260 +#: public/js/frappe/views/kanban/kanban_board.bundle.js:910 +msgid "Saved" +msgstr "crwdns9728:0crwdne9728:0" + +#: public/js/frappe/list/list_settings.js:40 +#: public/js/frappe/views/kanban/kanban_settings.js:47 +#: public/js/frappe/views/workspace/workspace.js:499 +msgid "Saving" +msgstr "crwdns9730:0crwdne9730:0" + +#: public/js/frappe/form/save.js:9 +msgctxt "Freeze message while saving a document" +msgid "Saving" +msgstr "crwdns9732:0crwdne9732:0" + +#: custom/doctype/customize_form/customize_form.js:343 +msgid "Saving Customization..." +msgstr "crwdns9734:0crwdne9734:0" + +#: 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 "crwdns9736:0crwdne9736:0" + +#: public/js/form_builder/store.js:228 +#: public/js/print_format_builder/store.js:36 +#: public/js/workflow_builder/store.js:73 +msgid "Saving..." +msgstr "crwdns9738:0crwdne9738:0" + +#: public/js/frappe/scanner/index.js:72 +msgid "Scan QRCode" +msgstr "crwdns9740:0crwdne9740:0" + +#: www/qrcode.html:14 +msgid "Scan the QR Code and enter the resulting code displayed." +msgstr "crwdns9742:0crwdne9742:0" + +#: email/doctype/newsletter/newsletter.js:125 +msgid "Schedule" +msgstr "crwdns9744:0crwdne9744:0" + +#: email/doctype/newsletter/newsletter.js:106 +msgid "Schedule Newsletter" +msgstr "crwdns9746:0crwdne9746:0" + +#: public/js/frappe/views/communication.js:81 +msgid "Schedule Send At" +msgstr "crwdns9748:0crwdne9748:0" + +#: email/doctype/newsletter/newsletter.js:70 +msgid "Schedule sending" +msgstr "crwdns9750:0crwdne9750:0" + +#. Label of a Check field in DocType 'Newsletter' +#: email/doctype/newsletter/newsletter.json +msgctxt "Newsletter" +msgid "Schedule sending at a later time" +msgstr "crwdns9752:0crwdne9752:0" + +#: email/doctype/newsletter/newsletter_list.js:7 +msgid "Scheduled" +msgstr "crwdns9754:0crwdne9754:0" + +#. Option for a Select field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Scheduled" +msgstr "crwdns9756:0crwdne9756:0" + +#. Option for a Select field in DocType 'Scheduled Job Log' +#: core/doctype/scheduled_job_log/scheduled_job_log.json +msgctxt "Scheduled Job Log" +msgid "Scheduled" +msgstr "crwdns9758:0crwdne9758:0" + +#. Label of a Link field in DocType 'Scheduled Job Log' +#: core/doctype/scheduled_job_log/scheduled_job_log.json +msgctxt "Scheduled Job Log" +msgid "Scheduled Job" +msgstr "crwdns9760:0crwdne9760:0" + +#. Name of a DocType +#: core/doctype/scheduled_job_log/scheduled_job_log.json +msgid "Scheduled Job Log" +msgstr "crwdns9762:0crwdne9762:0" + +#. Linked DocType in Scheduled Job Type's connections +#: core/doctype/scheduled_job_type/scheduled_job_type.json +msgctxt "Scheduled Job Type" +msgid "Scheduled Job Log" +msgstr "crwdns9764:0crwdne9764:0" + +#. Name of a DocType +#: core/doctype/scheduled_job_type/scheduled_job_type.json +msgid "Scheduled Job Type" +msgstr "crwdns9766:0crwdne9766:0" + +#. Label of a Link in the Build Workspace +#: core/workspace/build/build.json +msgctxt "Scheduled Job Type" +msgid "Scheduled Job Type" +msgstr "crwdns9768:0crwdne9768:0" + +#. Linked DocType in Server Script's connections +#: core/doctype/server_script/server_script.json +msgctxt "Server Script" +msgid "Scheduled Job Type" +msgstr "crwdns9770:0crwdne9770:0" + +#. Label of a Link in the Build Workspace +#: core/workspace/build/build.json +msgctxt "Scheduled Job Log" +msgid "Scheduled Jobs Logs" +msgstr "crwdns9772:0crwdne9772:0" + +#. Label of a Section Break field in DocType 'Newsletter' +#: email/doctype/newsletter/newsletter.json +msgctxt "Newsletter" +msgid "Scheduled Sending" +msgstr "crwdns9774:0crwdne9774:0" + +#. Label of a Int field in DocType 'Newsletter' +#: email/doctype/newsletter/newsletter.json +msgctxt "Newsletter" +msgid "Scheduled To Send" +msgstr "crwdns9776:0crwdne9776:0" + +#: core/doctype/server_script/server_script.py:274 +msgid "Scheduled execution for script {0} has updated" +msgstr "crwdns9778:0{0}crwdne9778:0" + +#: email/doctype/auto_email_report/auto_email_report.js:26 +msgid "Scheduled to send" +msgstr "crwdns9780:0crwdne9780:0" + +#. Option for a Select field in DocType 'Server Script' +#: core/doctype/server_script/server_script.json +msgctxt "Server Script" +msgid "Scheduler Event" +msgstr "crwdns9782:0crwdne9782:0" + +#: core/doctype/data_import/data_import.py:97 +msgid "Scheduler Inactive" +msgstr "crwdns9784:0crwdne9784:0" + +#: utils/scheduler.py:196 +msgid "Scheduler can not be re-enabled when maintenance mode is active." +msgstr "crwdns9786:0crwdne9786:0" + +#: core/doctype/data_import/data_import.py:97 +msgid "Scheduler is inactive. Cannot import data." +msgstr "crwdns9788:0crwdne9788:0" + +#: core/doctype/rq_job/rq_job_list.js:19 +msgid "Scheduler: Active" +msgstr "crwdns9790:0crwdne9790:0" + +#: core/doctype/rq_job/rq_job_list.js:21 +msgid "Scheduler: Inactive" +msgstr "crwdns9792:0crwdne9792:0" + +#. Label of a Data field in DocType 'OAuth Scope' +#: integrations/doctype/oauth_scope/oauth_scope.json +msgctxt "OAuth Scope" +msgid "Scope" +msgstr "crwdns9794:0crwdne9794:0" + +#. Label of a Section Break field in DocType 'Connected App' +#. Label of a Table field in DocType 'Connected App' +#: integrations/doctype/connected_app/connected_app.json +msgctxt "Connected App" +msgid "Scopes" +msgstr "crwdns9796:0crwdne9796:0" + +#. Label of a Text field in DocType 'OAuth Authorization Code' +#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +msgctxt "OAuth Authorization Code" +msgid "Scopes" +msgstr "crwdns9798:0crwdne9798:0" + +#. Label of a Text field in DocType 'OAuth Bearer Token' +#: integrations/doctype/oauth_bearer_token/oauth_bearer_token.json +msgctxt "OAuth Bearer Token" +msgid "Scopes" +msgstr "crwdns9800:0crwdne9800:0" + +#. Label of a Text field in DocType 'OAuth Client' +#: integrations/doctype/oauth_client/oauth_client.json +msgctxt "OAuth Client" +msgid "Scopes" +msgstr "crwdns9802:0crwdne9802:0" + +#. Label of a Table field in DocType 'Token Cache' +#: integrations/doctype/token_cache/token_cache.json +msgctxt "Token Cache" +msgid "Scopes" +msgstr "crwdns9804:0crwdne9804:0" + +#. Label of a Code field in DocType 'Client Script' +#: custom/doctype/client_script/client_script.json +msgctxt "Client Script" +msgid "Script" +msgstr "crwdns9806:0crwdne9806:0" + +#. Label of a Code field in DocType 'Console Log' +#: desk/doctype/console_log/console_log.json +msgctxt "Console Log" +msgid "Script" +msgstr "crwdns9808:0crwdne9808:0" + +#. Label of a Code field in DocType 'Report' +#: core/doctype/report/report.json +msgctxt "Report" +msgid "Script" +msgstr "crwdns9810:0crwdne9810:0" + +#. Label of a Code field in DocType 'Server Script' +#: core/doctype/server_script/server_script.json +msgctxt "Server Script" +msgid "Script" +msgstr "crwdns9812:0crwdne9812:0" + +#. Label of a Section Break field in DocType 'Web Page' +#: website/doctype/web_page/web_page.json +msgctxt "Web Page" +msgid "Script" +msgstr "crwdns9814:0crwdne9814:0" + +#. Label of a Tab Break field in DocType 'Website Theme' +#: website/doctype/website_theme/website_theme.json +msgctxt "Website Theme" +msgid "Script" +msgstr "crwdns9816:0crwdne9816:0" + +#. Name of a role +#: core/doctype/server_script/server_script.json +msgid "Script Manager" +msgstr "crwdns9818:0crwdne9818:0" + +#. Option for a Select field in DocType 'Report' +#: core/doctype/report/report.json +msgctxt "Report" +msgid "Script Report" +msgstr "crwdns9820:0crwdne9820:0" + +#. Label of a Select field in DocType 'Server Script' +#: core/doctype/server_script/server_script.json +msgctxt "Server Script" +msgid "Script Type" +msgstr "crwdns9822:0crwdne9822:0" + +#. Label of a Card Break in the Build Workspace +#: core/workspace/build/build.json +msgid "Scripting" +msgstr "crwdns9824:0crwdne9824:0" + +#. Label of a Tab Break field in DocType 'Web Page' +#: website/doctype/web_page/web_page.json +msgctxt "Web Page" +msgid "Scripting" +msgstr "crwdns9826:0crwdne9826:0" + +#. Label of a Section Break field in DocType 'Web Form' +#: website/doctype/web_form/web_form.json +msgctxt "Web Form" +msgid "Scripting / Style" +msgstr "crwdns9828:0crwdne9828:0" + +#: public/js/frappe/form/link_selector.js:46 +#: public/js/frappe/ui/toolbar/search.js:49 +#: public/js/frappe/ui/toolbar/search.js:68 +#: templates/includes/search_template.html:26 www/search.py:19 +msgid "Search" +msgstr "crwdns9830:0crwdne9830:0" + +#. Label of a Check field in DocType 'Role' +#: core/doctype/role/role.json +msgctxt "Role" +msgid "Search Bar" +msgstr "crwdns9832:0crwdne9832:0" + +#. Label of a Data field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Search Fields" +msgstr "crwdns9834:0crwdne9834:0" + +#. Label of a Data field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Search Fields" +msgstr "crwdns9836:0crwdne9836:0" + +#: public/js/frappe/ui/toolbar/awesome_bar.js:186 +msgid "Search Help" +msgstr "crwdns9838:0crwdne9838:0" + +#. Label of a Table field in DocType 'Global Search Settings' +#: desk/doctype/global_search_settings/global_search_settings.json +msgctxt "Global Search Settings" +msgid "Search Priorities" +msgstr "crwdns9840:0crwdne9840:0" + +#: www/search.py:14 +msgid "Search Results for" +msgstr "crwdns9842:0crwdne9842:0" + +#: core/doctype/doctype/doctype.py:1418 +msgid "Search field {0} is not valid" +msgstr "crwdns9844:0{0}crwdne9844:0" + +#: public/js/frappe/ui/toolbar/search.js:50 +#: public/js/frappe/ui/toolbar/search.js:69 +msgid "Search for anything" +msgstr "crwdns9846:0crwdne9846:0" + +#: public/js/frappe/ui/toolbar/awesome_bar.js:306 +msgid "Search for {0}" +msgstr "crwdns9848:0{0}crwdne9848:0" + +#: public/js/frappe/ui/toolbar/awesome_bar.js:166 +msgid "Search in a document type" +msgstr "crwdns9850:0crwdne9850:0" + +#: templates/includes/search_box.html:8 +msgid "Search results for" +msgstr "crwdns9852:0crwdne9852:0" + +#: templates/includes/navbar/navbar_search.html:6 +#: templates/includes/search_box.html:2 +#: templates/includes/search_template.html:23 +msgid "Search..." +msgstr "crwdns9854:0crwdne9854:0" + +#: public/js/frappe/ui/toolbar/search.js:210 +msgid "Searching ..." +msgstr "crwdns9856:0crwdne9856:0" + +#. Option for a Select field in DocType 'Web Template' +#: website/doctype/web_template/web_template.json +msgctxt "Web Template" +msgid "Section" +msgstr "crwdns9858:0crwdne9858:0" + +#. Option for a Select field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Section Break" +msgstr "crwdns9860:0crwdne9860:0" + +#. Option for a Select field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Section Break" +msgstr "crwdns9862:0crwdne9862:0" + +#. Option for a Select field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Section Break" +msgstr "crwdns9864:0crwdne9864:0" + +#. Option for a Select field in DocType 'Web Form Field' +#: website/doctype/web_form_field/web_form_field.json +msgctxt "Web Form Field" +msgid "Section Break" +msgstr "crwdns9866:0crwdne9866:0" + +#. Option for a Select field in DocType 'Web Template Field' +#: website/doctype/web_template_field/web_template_field.json +msgctxt "Web Template Field" +msgid "Section Break" +msgstr "crwdns9868:0crwdne9868:0" + +#: printing/page/print_format_builder/print_format_builder.js:421 +msgid "Section Heading" +msgstr "crwdns9870:0crwdne9870:0" + +#. Label of a Data field in DocType 'Web Page Block' +#: website/doctype/web_page_block/web_page_block.json +msgctxt "Web Page Block" +msgid "Section ID" +msgstr "crwdns9872:0crwdne9872:0" + +#. Label of a Section Break field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Security Settings" +msgstr "crwdns9874:0crwdne9874:0" + +#: public/js/frappe/views/reports/query_report.js:784 +msgid "See all past reports." +msgstr "crwdns9876:0crwdne9876:0" + +#: public/js/frappe/form/form.js:1208 +#: website/doctype/contact_us_settings/contact_us_settings.js:4 +msgid "See on Website" +msgstr "crwdns9878:0crwdne9878:0" + +#: website/doctype/web_form/templates/web_form.html:150 +msgid "See previous responses" +msgstr "crwdns9880:0crwdne9880:0" + +#: integrations/doctype/slack_webhook_url/slack_webhook_url.py:48 +msgid "See the document at {0}" +msgstr "crwdns9882:0{0}crwdne9882:0" + +#: core/doctype/error_log/error_log_list.js:5 +msgid "Seen" +msgstr "crwdns9884:0crwdne9884:0" + +#. Label of a Check field in DocType 'Comment' +#: core/doctype/comment/comment.json +msgctxt "Comment" +msgid "Seen" +msgstr "crwdns9886:0crwdne9886:0" + +#. Label of a Check field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Seen" +msgstr "crwdns9888:0crwdne9888:0" + +#. Label of a Check field in DocType 'Energy Point Log' +#: social/doctype/energy_point_log/energy_point_log.json +msgctxt "Energy Point Log" +msgid "Seen" +msgstr "crwdns9890:0crwdne9890:0" + +#. Label of a Check field in DocType 'Error Log' +#: core/doctype/error_log/error_log.json +msgctxt "Error Log" +msgid "Seen" +msgstr "crwdns9892:0crwdne9892:0" + +#. Label of a Check field in DocType 'Notification Settings' +#: desk/doctype/notification_settings/notification_settings.json +msgctxt "Notification Settings" +msgid "Seen" +msgstr "crwdns9894:0crwdne9894:0" + +#. Label of a Section Break field in DocType 'Note' +#: desk/doctype/note/note.json +msgctxt "Note" +msgid "Seen By" +msgstr "crwdns9896:0crwdne9896:0" + +#. Label of a Table field in DocType 'Note' +#: desk/doctype/note/note.json +msgctxt "Note" +msgid "Seen By Table" +msgstr "crwdns9898:0crwdne9898:0" + +#: printing/page/print/print.js:592 +msgid "Select" +msgstr "crwdns9900:0crwdne9900:0" + +#. Label of a Check field in DocType 'Custom DocPerm' +#: core/doctype/custom_docperm/custom_docperm.json +msgctxt "Custom DocPerm" +msgid "Select" +msgstr "crwdns9902:0crwdne9902:0" + +#. Option for a Select field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Select" +msgstr "crwdns9904:0crwdne9904:0" + +#. Option for a Select field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Select" +msgstr "crwdns9906:0crwdne9906:0" + +#. Option for a Select field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Select" +msgstr "crwdns9908:0crwdne9908:0" + +#. Label of a Check field in DocType 'DocPerm' +#: core/doctype/docperm/docperm.json +msgctxt "DocPerm" +msgid "Select" +msgstr "crwdns9910:0crwdne9910:0" + +#. Option for a Select field in DocType 'Report Column' +#: core/doctype/report_column/report_column.json +msgctxt "Report Column" +msgid "Select" +msgstr "crwdns9912:0crwdne9912:0" + +#. Option for a Select field in DocType 'Report Filter' +#: core/doctype/report_filter/report_filter.json +msgctxt "Report Filter" +msgid "Select" +msgstr "crwdns9914:0crwdne9914:0" + +#. Option for a Select field in DocType 'Web Form Field' +#: website/doctype/web_form_field/web_form_field.json +msgctxt "Web Form Field" +msgid "Select" +msgstr "crwdns9916:0crwdne9916:0" + +#. Option for a Select field in DocType 'Web Template Field' +#: website/doctype/web_template_field/web_template_field.json +msgctxt "Web Template Field" +msgid "Select" +msgstr "crwdns9918:0crwdne9918:0" + +#: public/js/frappe/views/communication.js:150 +#: public/js/frappe/views/interaction.js:93 +#: public/js/frappe/views/interaction.js:155 +msgid "Select Attachments" +msgstr "crwdns9920:0crwdne9920:0" + +#: custom/doctype/client_script/client_script.js:25 +#: custom/doctype/client_script/client_script.js:28 +msgid "Select Child Table" +msgstr "crwdns9922:0crwdne9922:0" + +#: public/js/frappe/views/reports/report_view.js:357 +msgid "Select Column" +msgstr "crwdns9924:0crwdne9924:0" + +#: public/js/frappe/form/print_utils.js:43 +msgid "Select Columns" +msgstr "crwdns9926:0crwdne9926:0" + +#: desk/page/setup_wizard/setup_wizard.js:387 +msgid "Select Country" +msgstr "crwdns9928:0crwdne9928:0" + +#: desk/page/setup_wizard/setup_wizard.js:404 +msgid "Select Currency" +msgstr "crwdns9930:0crwdne9930:0" + +#: public/js/frappe/utils/dashboard_utils.js:240 +msgid "Select Dashboard" +msgstr "crwdns9932:0crwdne9932:0" + +#. Label of a Link field in DocType 'Form Tour' +#: desk/doctype/form_tour/form_tour.json +msgctxt "Form Tour" +msgid "Select Dashboard" +msgstr "crwdns9934:0crwdne9934:0" + +#. Option for a Select field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "Select Date Range" +msgstr "crwdns9936:0crwdne9936:0" + +#: public/js/frappe/doctype/index.js:170 +msgid "Select DocType" +msgstr "crwdns9938:0crwdne9938:0" + +#. Label of a Link field in DocType 'Web Form' +#: website/doctype/web_form/web_form.json +msgctxt "Web Form" +msgid "Select DocType" +msgstr "crwdns9940:0crwdne9940:0" + +#. Label of a Link field in DocType 'Data Export' +#: core/doctype/data_export/data_export.json +msgctxt "Data Export" +msgid "Select Doctype" +msgstr "crwdns9942:0crwdne9942:0" + +#. Label of a Dynamic Link field in DocType 'Webhook' +#: integrations/doctype/webhook/webhook.json +msgctxt "Webhook" +msgid "Select Document" +msgstr "crwdns9944:0crwdne9944:0" + +#: printing/page/print_format_builder_beta/print_format_builder_beta.js:50 +#: workflow/page/workflow_builder/workflow_builder.js:50 +msgid "Select Document Type" +msgstr "crwdns9946:0crwdne9946:0" + +#: core/page/permission_manager/permission_manager.js:172 +msgid "Select Document Type or Role to start." +msgstr "crwdns9948:0crwdne9948:0" + +#: public/js/frappe/doctype/index.js:199 public/js/frappe/form/toolbar.js:762 +msgid "Select Field" +msgstr "crwdns9950:0crwdne9950:0" + +#: public/js/frappe/form/grid_row.js:459 +#: public/js/frappe/list/list_settings.js:233 +#: public/js/frappe/views/kanban/kanban_settings.js:181 +msgid "Select Fields" +msgstr "crwdns9952:0crwdne9952:0" + +#: public/js/frappe/data_import/data_exporter.js:143 +msgid "Select Fields To Insert" +msgstr "crwdns9954:0crwdne9954:0" + +#: public/js/frappe/data_import/data_exporter.js:144 +msgid "Select Fields To Update" +msgstr "crwdns9956:0crwdne9956:0" + +#: public/js/frappe/list/list_sidebar_group_by.js:21 +msgid "Select Filters" +msgstr "crwdns9958:0crwdne9958:0" + +#: desk/doctype/event/event.py:96 +msgid "Select Google Calendar to which event should be synced." +msgstr "crwdns9960:0crwdne9960:0" + +#: contacts/doctype/contact/contact.py:75 +msgid "Select Google Contacts to which contact should be synced." +msgstr "crwdns9962:0crwdne9962:0" + +#: public/js/frappe/list/list_view_select.js:185 +msgid "Select Kanban" +msgstr "crwdns9964:0crwdne9964:0" + +#: desk/page/setup_wizard/setup_wizard.js:379 +msgid "Select Language" +msgstr "crwdns9966:0crwdne9966:0" + +#. Label of a Select field in DocType 'Form Tour' +#: desk/doctype/form_tour/form_tour.json +msgctxt "Form Tour" +msgid "Select List View" +msgstr "crwdns9968:0crwdne9968:0" + +#: public/js/frappe/data_import/data_exporter.js:154 +msgid "Select Mandatory" +msgstr "crwdns9970:0crwdne9970:0" + +#: custom/doctype/customize_form/customize_form.js:235 +msgid "Select Module" +msgstr "crwdns9972:0crwdne9972:0" + +#: printing/page/print/print.js:175 printing/page/print/print.js:575 +msgid "Select Network Printer" +msgstr "crwdns9974:0crwdne9974:0" + +#. Label of a Link field in DocType 'Form Tour' +#: desk/doctype/form_tour/form_tour.json +msgctxt "Form Tour" +msgid "Select Page" +msgstr "crwdns9976:0crwdne9976:0" + +#: printing/page/print_format_builder_beta/print_format_builder_beta.js:68 +#: public/js/frappe/views/communication.js:144 +msgid "Select Print Format" +msgstr "crwdns9978:0crwdne9978:0" + +#: printing/page/print_format_builder/print_format_builder.js:82 +msgid "Select Print Format to Edit" +msgstr "crwdns9980:0crwdne9980:0" + +#. Label of a Link field in DocType 'Form Tour' +#: desk/doctype/form_tour/form_tour.json +msgctxt "Form Tour" +msgid "Select Report" +msgstr "crwdns9982:0crwdne9982:0" + +#: printing/page/print_format_builder/print_format_builder.js:623 +msgid "Select Table Columns for {0}" +msgstr "crwdns9984:0{0}crwdne9984:0" + +#: desk/page/setup_wizard/setup_wizard.js:396 +msgid "Select Time Zone" +msgstr "crwdns9986:0crwdne9986:0" + +#. Label of a Autocomplete field in DocType 'Document Naming Settings' +#: core/doctype/document_naming_settings/document_naming_settings.json +msgctxt "Document Naming Settings" +msgid "Select Transaction" +msgstr "crwdns9988:0crwdne9988:0" + +#: workflow/page/workflow_builder/workflow_builder.js:68 +msgid "Select Workflow" +msgstr "crwdns9990:0crwdne9990:0" + +#. Label of a Link field in DocType 'Form Tour' +#: desk/doctype/form_tour/form_tour.json +msgctxt "Form Tour" +msgid "Select Workspace" +msgstr "crwdns9992:0crwdne9992:0" + +#: website/doctype/website_settings/website_settings.js:23 +msgid "Select a Brand Image first." +msgstr "crwdns9994:0crwdne9994:0" + +#: printing/page/print_format_builder/print_format_builder.js:108 +msgid "Select a DocType to make a new format" +msgstr "crwdns9996:0crwdne9996:0" + +#: integrations/doctype/webhook/webhook.py:130 +msgid "Select a document to check if it meets conditions." +msgstr "crwdns9998:0crwdne9998:0" + +#: integrations/doctype/webhook/webhook.py:142 +msgid "Select a document to preview request data" +msgstr "crwdns10000:0crwdne10000:0" + +#: public/js/frappe/views/treeview.js:342 +msgid "Select a group node first." +msgstr "crwdns10002:0crwdne10002:0" + +#: core/doctype/doctype/doctype.py:1885 +msgid "Select a valid Sender Field for creating documents from Email" +msgstr "crwdns10004:0crwdne10004:0" + +#: core/doctype/doctype/doctype.py:1869 +msgid "Select a valid Subject field for creating documents from Email" +msgstr "crwdns10006:0crwdne10006:0" + +#: public/js/frappe/form/form_tour.js:313 +msgid "Select an Image" +msgstr "crwdns10008:0crwdne10008:0" + +#. Description of a Attach Image field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Select an image of approx width 150px with a transparent background for best results." +msgstr "crwdns10010:0crwdne10010:0" + +#: public/js/frappe/list/bulk_operations.js:34 +msgid "Select atleast 1 record for printing" +msgstr "crwdns10012:0crwdne10012:0" + +#: core/doctype/success_action/success_action.js:18 +msgid "Select atleast 2 actions" +msgstr "crwdns10014:0crwdne10014:0" + +#: public/js/frappe/list/list_view.js:1201 +msgctxt "Description of a list view shortcut" +msgid "Select list item" +msgstr "crwdns10016:0crwdne10016:0" + +#: public/js/frappe/list/list_view.js:1153 +#: public/js/frappe/list/list_view.js:1169 +msgctxt "Description of a list view shortcut" +msgid "Select multiple list items" +msgstr "crwdns10018:0crwdne10018:0" + +#: public/js/frappe/views/calendar/calendar.js:174 +msgid "Select or drag across time slots to create a new event." +msgstr "crwdns10020:0crwdne10020:0" + +#: public/js/frappe/list/bulk_operations.js:195 +msgid "Select records for assignment" +msgstr "crwdns10022:0crwdne10022:0" + +#. Description of a Select field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Select the label after which you want to insert new field." +msgstr "crwdns10024:0crwdne10024:0" + +#: public/js/frappe/utils/diffview.js:101 +msgid "Select two versions to view the diff." +msgstr "crwdns10026:0crwdne10026:0" + +#: public/js/frappe/form/link_selector.js:24 +#: public/js/frappe/form/multi_select_dialog.js:79 +#: public/js/frappe/form/multi_select_dialog.js:279 +#: public/js/frappe/list/list_view_select.js:153 +msgid "Select {0}" +msgstr "crwdns10028:0{0}crwdne10028:0" + +#: model/workflow.py:121 +msgid "Self approval is not allowed" +msgstr "crwdns10030:0crwdne10030:0" + +#: email/doctype/newsletter/newsletter.js:66 +#: email/doctype/newsletter/newsletter.js:74 +#: email/doctype/newsletter/newsletter.js:162 +#: public/js/frappe/views/communication.js:26 www/contact.html:41 +msgid "Send" +msgstr "crwdns10032:0crwdne10032:0" + +#. Label of a Datetime field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Send After" +msgstr "crwdns10034:0crwdne10034:0" + +#. Label of a Datetime field in DocType 'Email Queue' +#: email/doctype/email_queue/email_queue.json +msgctxt "Email Queue" +msgid "Send After" +msgstr "crwdns10036:0crwdne10036:0" + +#. Label of a Select field in DocType 'Notification' +#: email/doctype/notification/notification.json +msgctxt "Notification" +msgid "Send Alert On" +msgstr "crwdns10038:0crwdne10038:0" + +#. Label of a Check field in DocType 'Workflow' +#: workflow/doctype/workflow/workflow.json +msgctxt "Workflow" +msgid "Send Email Alert" +msgstr "crwdns10040:0crwdne10040:0" + +#. Label of a Datetime field in DocType 'Newsletter' +#: email/doctype/newsletter/newsletter.json +msgctxt "Newsletter" +msgid "Send Email At" +msgstr "crwdns10042:0crwdne10042:0" + +#. Description of a Check field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "Send Email Print Attachments as PDF (Recommended)" +msgstr "crwdns10044:0crwdne10044:0" + +#. Label of a Check field in DocType 'Dropbox Settings' +#: integrations/doctype/dropbox_settings/dropbox_settings.json +msgctxt "Dropbox Settings" +msgid "Send Email for Successful Backup" +msgstr "crwdns10046:0crwdne10046:0" + +#. Label of a Check field in DocType 'S3 Backup Settings' +#: integrations/doctype/s3_backup_settings/s3_backup_settings.json +msgctxt "S3 Backup Settings" +msgid "Send Email for Successful Backup" +msgstr "crwdns10048:0crwdne10048:0" + +#. Label of a Check field in DocType 'Google Drive' +#: integrations/doctype/google_drive/google_drive.json +msgctxt "Google Drive" +msgid "Send Email for Successful backup" +msgstr "crwdns10050:0crwdne10050:0" + +#. Label of a Check field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Send Me A Copy of Outgoing Emails" +msgstr "crwdns10052:0crwdne10052:0" + +#. Label of a Data field in DocType 'Google Drive' +#: integrations/doctype/google_drive/google_drive.json +msgctxt "Google Drive" +msgid "Send Notification To" +msgstr "crwdns10054:0crwdne10054:0" + +#. Label of a Small Text field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Send Notification to" +msgstr "crwdns10056:0crwdne10056:0" + +#. Label of a Check field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Send Notifications For Documents Followed By Me" +msgstr "crwdns10058:0crwdne10058:0" + +#. Label of a Check field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Send Notifications For Email Threads" +msgstr "crwdns10060:0crwdne10060:0" + +#. Label of a Data field in DocType 'Dropbox Settings' +#: integrations/doctype/dropbox_settings/dropbox_settings.json +msgctxt "Dropbox Settings" +msgid "Send Notifications To" +msgstr "crwdns10062:0crwdne10062:0" + +#. Label of a Data field in DocType 'S3 Backup Settings' +#: integrations/doctype/s3_backup_settings/s3_backup_settings.json +msgctxt "S3 Backup Settings" +msgid "Send Notifications To" +msgstr "crwdns10064:0crwdne10064:0" + +#: email/doctype/auto_email_report/auto_email_report.js:21 +msgid "Send Now" +msgstr "crwdns10066:0crwdne10066:0" + +#. Label of a Check field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "Send Print as PDF" +msgstr "crwdns10068:0crwdne10068:0" + +#: public/js/frappe/views/communication.js:134 +msgid "Send Read Receipt" +msgstr "crwdns10070:0crwdne10070:0" + +#. Label of a Check field in DocType 'Notification' +#: email/doctype/notification/notification.json +msgctxt "Notification" +msgid "Send System Notification" +msgstr "crwdns10072:0crwdne10072:0" + +#: email/doctype/newsletter/newsletter.js:153 +msgid "Send Test Email" +msgstr "crwdns10074:0crwdne10074:0" + +#. Label of a Check field in DocType 'Notification' +#: email/doctype/notification/notification.json +msgctxt "Notification" +msgid "Send To All Assignees" +msgstr "crwdns10076:0crwdne10076:0" + +#. Label of a Check field in DocType 'Newsletter' +#: email/doctype/newsletter/newsletter.json +msgctxt "Newsletter" +msgid "Send Unsubscribe Link" +msgstr "crwdns10078:0crwdne10078:0" + +#. Label of a Check field in DocType 'Newsletter' +#: email/doctype/newsletter/newsletter.json +msgctxt "Newsletter" +msgid "Send Web View Link" +msgstr "crwdns10080:0crwdne10080:0" + +#. Label of a Check field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Send Welcome Email" +msgstr "crwdns10082:0crwdne10082:0" + +#: www/me.html:67 +msgid "Send a request to delete your account" +msgstr "crwdns10084:0crwdne10084:0" + +#: email/doctype/newsletter/newsletter.js:10 +msgid "Send a test email" +msgstr "crwdns10086:0crwdne10086:0" + +#: email/doctype/newsletter/newsletter.js:166 +msgid "Send again" +msgstr "crwdns10088:0crwdne10088:0" + +#. Description of a Select field in DocType 'Notification' +#: email/doctype/notification/notification.json +msgctxt "Notification" +msgid "Send alert if date matches this field's value" +msgstr "crwdns10090:0crwdne10090:0" + +#. Description of a Select field in DocType 'Notification' +#: email/doctype/notification/notification.json +msgctxt "Notification" +msgid "Send alert if this field's value changes" +msgstr "crwdns10092:0crwdne10092:0" + +#. Label of a Check field in DocType 'Event' +#: desk/doctype/event/event.json +msgctxt "Event" +msgid "Send an email reminder in the morning" +msgstr "crwdns10094:0crwdne10094:0" + +#. Description of a Int field in DocType 'Notification' +#: email/doctype/notification/notification.json +msgctxt "Notification" +msgid "Send days before or after the reference date" +msgstr "crwdns10096:0crwdne10096:0" + +#. Description of a Data field in DocType 'Contact Us Settings' +#: website/doctype/contact_us_settings/contact_us_settings.json +msgctxt "Contact Us Settings" +msgid "Send enquiries to this email address" +msgstr "crwdns10098:0crwdne10098:0" + +#: www/login.html:210 +msgid "Send login link" +msgstr "crwdns10100:0crwdne10100:0" + +#: public/js/frappe/views/communication.js:128 +msgid "Send me a copy" +msgstr "crwdns10102:0crwdne10102:0" + +#: email/doctype/newsletter/newsletter.js:46 +msgid "Send now" +msgstr "crwdns10104:0crwdne10104:0" + +#. Label of a Check field in DocType 'Auto Email Report' +#: email/doctype/auto_email_report/auto_email_report.json +msgctxt "Auto Email Report" +msgid "Send only if there is any data" +msgstr "crwdns10106:0crwdne10106:0" + +#. Label of a Check field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Send unsubscribe message in email" +msgstr "crwdns10108:0crwdne10108:0" + +#. Label of a Link field in DocType 'Auto Email Report' +#: email/doctype/auto_email_report/auto_email_report.json +msgctxt "Auto Email Report" +msgid "Sender" +msgstr "crwdns10110:0crwdne10110:0" + +#. Label of a Data field in DocType 'Email Queue' +#: email/doctype/email_queue/email_queue.json +msgctxt "Email Queue" +msgid "Sender" +msgstr "crwdns10112:0crwdne10112:0" + +#. Label of a Data field in DocType 'Event' +#: desk/doctype/event/event.json +msgctxt "Event" +msgid "Sender" +msgstr "crwdns10114:0crwdne10114:0" + +#. Label of a Data field in DocType 'Newsletter' +#: email/doctype/newsletter/newsletter.json +msgctxt "Newsletter" +msgid "Sender" +msgstr "crwdns10116:0crwdne10116:0" + +#. Label of a Link field in DocType 'Notification' +#: email/doctype/notification/notification.json +msgctxt "Notification" +msgid "Sender" +msgstr "crwdns10118:0crwdne10118:0" + +#. Label of a Data field in DocType 'ToDo' +#: desk/doctype/todo/todo.json +msgctxt "ToDo" +msgid "Sender" +msgstr "crwdns10120:0crwdne10120:0" + +#. Label of a Data field in DocType 'Newsletter' +#: email/doctype/newsletter/newsletter.json +msgctxt "Newsletter" +msgid "Sender Email" +msgstr "crwdns10122:0crwdne10122:0" + +#. Label of a Data field in DocType 'Notification' +#: email/doctype/notification/notification.json +msgctxt "Notification" +msgid "Sender Email" +msgstr "crwdns10124:0crwdne10124:0" + +#. Label of a Data field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Sender Email Field" +msgstr "crwdns10126:0crwdne10126:0" + +#. Label of a Data field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Sender Email Field" +msgstr "crwdns10128:0crwdne10128:0" + +#: core/doctype/doctype/doctype.py:1888 +msgid "Sender Field should have Email in options" +msgstr "crwdns10130:0crwdne10130:0" + +#. Label of a Data field in DocType 'Newsletter' +#: email/doctype/newsletter/newsletter.json +msgctxt "Newsletter" +msgid "Sender Name" +msgstr "crwdns10132:0crwdne10132:0" + +#. Label of a Data field in DocType 'SMS Log' +#: core/doctype/sms_log/sms_log.json +msgctxt "SMS Log" +msgid "Sender Name" +msgstr "crwdns10134:0crwdne10134:0" + +#. Label of a Data field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Sender Name Field" +msgstr "crwdns10136:0crwdne10136:0" + +#. Label of a Data field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Sender Name Field" +msgstr "crwdns10138:0crwdne10138:0" + +#. Option for a Select field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Sendgrid" +msgstr "crwdns10140:0crwdne10140:0" + +#: email/doctype/newsletter/newsletter.js:201 +msgid "Sending" +msgstr "crwdns10142:0crwdne10142:0" + +#. Option for a Select field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Sending" +msgstr "crwdns10144:0crwdne10144:0" + +#. Option for a Select field in DocType 'Email Queue' +#: email/doctype/email_queue/email_queue.json +msgctxt "Email Queue" +msgid "Sending" +msgstr "crwdns10146:0crwdne10146:0" + +#: email/doctype/newsletter/newsletter.js:203 +msgid "Sending emails" +msgstr "crwdns10148:0crwdne10148:0" + +#: email/doctype/newsletter/newsletter.js:164 +msgid "Sending..." +msgstr "crwdns10150:0crwdne10150:0" + +#: email/doctype/newsletter/newsletter.js:196 +#: email/doctype/newsletter/newsletter_list.js:5 +msgid "Sent" +msgstr "crwdns10152:0crwdne10152:0" + +#. Option for a Select field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Sent" +msgstr "crwdns10154:0crwdne10154:0" + +#. Option for a Select field in DocType 'Email Queue' +#: email/doctype/email_queue/email_queue.json +msgctxt "Email Queue" +msgid "Sent" +msgstr "crwdns10156:0crwdne10156:0" + +#. Option for a Select field in DocType 'Email Queue Recipient' +#: email/doctype/email_queue_recipient/email_queue_recipient.json +msgctxt "Email Queue Recipient" +msgid "Sent" +msgstr "crwdns10158:0crwdne10158:0" + +#. Label of a Date field in DocType 'SMS Log' +#: core/doctype/sms_log/sms_log.json +msgctxt "SMS Log" +msgid "Sent On" +msgstr "crwdns10160:0crwdne10160:0" + +#. Label of a Check field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Sent Read Receipt" +msgstr "crwdns10162:0crwdne10162:0" + +#. Label of a Code field in DocType 'SMS Log' +#: core/doctype/sms_log/sms_log.json +msgctxt "SMS Log" +msgid "Sent To" +msgstr "crwdns10164:0crwdne10164:0" + +#. Label of a Select field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Sent or Received" +msgstr "crwdns10166:0crwdne10166:0" + +#. Option for a Select field in DocType 'Event' +#: desk/doctype/event/event.json +msgctxt "Event" +msgid "Sent/Received Email" +msgstr "crwdns10168:0crwdne10168:0" + +#. Option for a Select field in DocType 'Navbar Item' +#: core/doctype/navbar_item/navbar_item.json +msgctxt "Navbar Item" +msgid "Separator" +msgstr "crwdns10170:0crwdne10170:0" + +#. Label of a Float field in DocType 'Workspace' +#: desk/doctype/workspace/workspace.json +msgctxt "Workspace" +msgid "Sequence Id" +msgstr "crwdns10172:0crwdne10172:0" + +#. Label of a Text field in DocType 'Document Naming Settings' +#: core/doctype/document_naming_settings/document_naming_settings.json +msgctxt "Document Naming Settings" +msgid "Series List for this Transaction" +msgstr "crwdns10174:0crwdne10174:0" + +#: core/doctype/document_naming_settings/document_naming_settings.py:116 +msgid "Series Updated for {}" +msgstr "crwdns10176:0crwdne10176:0" + +#: core/doctype/document_naming_settings/document_naming_settings.py:226 +msgid "Series counter for {} updated to {} successfully" +msgstr "crwdns10178:0crwdne10178:0" + +#: core/doctype/doctype/doctype.py:1073 +#: core/doctype/document_naming_settings/document_naming_settings.py:171 +msgid "Series {0} already used in {1}" +msgstr "crwdns10180:0{0}crwdnd10180:0{1}crwdne10180:0" + +#. Option for a Select field in DocType 'DocType Action' +#: core/doctype/doctype_action/doctype_action.json +msgctxt "DocType Action" +msgid "Server Action" +msgstr "crwdns10182:0crwdne10182:0" + +#: public/js/frappe/request.js:606 +msgid "Server Error" +msgstr "crwdns10184:0crwdne10184:0" + +#. Label of a Data field in DocType 'Network Printer Settings' +#: printing/doctype/network_printer_settings/network_printer_settings.json +msgctxt "Network Printer Settings" +msgid "Server IP" +msgstr "crwdns10186:0crwdne10186:0" + +#. Name of a DocType +#: core/doctype/server_script/server_script.json +msgid "Server Script" +msgstr "crwdns10188:0crwdne10188:0" + +#. Linked DocType in DocType's connections +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Server Script" +msgstr "crwdns10190:0crwdne10190:0" + +#. Linked DocType in Module Def's connections +#: core/doctype/module_def/module_def.json +msgctxt "Module Def" +msgid "Server Script" +msgstr "crwdns10192:0crwdne10192:0" + +#. Label of a Link field in DocType 'Scheduled Job Type' +#: core/doctype/scheduled_job_type/scheduled_job_type.json +msgctxt "Scheduled Job Type" +msgid "Server Script" +msgstr "crwdns10194:0crwdne10194:0" + +#. Label of a Link in the Build Workspace +#. Label of a shortcut in the Build Workspace +#: core/workspace/build/build.json +msgctxt "Server Script" +msgid "Server Script" +msgstr "crwdns10196:0crwdne10196:0" + +#: utils/safe_exec.py:90 +msgid "Server Scripts are disabled. Please enable server scripts from bench configuration." +msgstr "crwdns10198:0crwdne10198:0" + +#: core/doctype/server_script/server_script.js:32 +msgid "Server Scripts feature is not available on this site." +msgstr "crwdns10200:0crwdne10200:0" + +#: public/js/frappe/request.js:243 public/js/frappe/request.js:251 +msgid "Server was too busy to process this request. Please try again." +msgstr "crwdns10202:0crwdne10202:0" + +#. Label of a Select field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Service" +msgstr "crwdns10204:0crwdne10204:0" + +#. Label of a Data field in DocType 'Integration Request' +#: integrations/doctype/integration_request/integration_request.json +msgctxt "Integration Request" +msgid "Service" +msgstr "crwdns10206:0crwdne10206:0" + +#. Name of a DocType +#: core/doctype/session_default/session_default.json +msgid "Session Default" +msgstr "crwdns10208:0crwdne10208:0" + +#. Name of a DocType +#: core/doctype/session_default_settings/session_default_settings.json +msgid "Session Default Settings" +msgstr "crwdns10210:0crwdne10210:0" + +#. Label of a standard navbar item +#. Type: Action +#: hooks.py public/js/frappe/ui/toolbar/toolbar.js:296 +msgid "Session Defaults" +msgstr "crwdns10212:0crwdne10212:0" + +#. Label of a Table field in DocType 'Session Default Settings' +#: core/doctype/session_default_settings/session_default_settings.json +msgctxt "Session Default Settings" +msgid "Session Defaults" +msgstr "crwdns10214:0crwdne10214:0" + +#: public/js/frappe/ui/toolbar/toolbar.js:281 +msgid "Session Defaults Saved" +msgstr "crwdns10216:0crwdne10216:0" + +#: app.py:345 +msgid "Session Expired" +msgstr "crwdns10218:0crwdne10218:0" + +#. Label of a Data field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Session Expiry (idle timeout)" +msgstr "crwdns10220:0crwdne10220:0" + +#: core/doctype/system_settings/system_settings.py:110 +msgid "Session Expiry must be in format {0}" +msgstr "crwdns10222:0{0}crwdne10222:0" + +#: public/js/frappe/ui/filters/filter.js:562 +msgctxt "Field value is set" +msgid "Set" +msgstr "crwdns10224:0crwdne10224:0" + +#. Label of a Button field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Set Banner from Image" +msgstr "crwdns10226:0crwdne10226:0" + +#: public/js/frappe/views/reports/query_report.js:199 +msgid "Set Chart" +msgstr "crwdns10228:0crwdne10228:0" + +#. Description of a Code field in DocType 'Dashboard' +#: desk/doctype/dashboard/dashboard.json +msgctxt "Dashboard" +msgid "Set Default Options for all charts on this Dashboard (Ex: \"colors\": [\"#d1d8dd\", \"#ff5858\"])" +msgstr "crwdns10230:0crwdne10230:0" + +#: desk/doctype/dashboard_chart/dashboard_chart.js:467 +#: desk/doctype/number_card/number_card.js:361 +msgid "Set Dynamic Filters" +msgstr "crwdns10232:0crwdne10232:0" + +#: desk/doctype/dashboard_chart/dashboard_chart.js:381 +#: desk/doctype/number_card/number_card.js:277 +#: website/doctype/web_form/web_form.js:260 +msgid "Set Filters" +msgstr "crwdns10234:0crwdne10234:0" + +#: public/js/frappe/widgets/chart_widget.js:395 +#: public/js/frappe/widgets/quick_list_widget.js:102 +msgid "Set Filters for {0}" +msgstr "crwdns10236:0{0}crwdne10236:0" + +#: core/doctype/user_type/user_type.py:91 +msgid "Set Limit" +msgstr "crwdns10238:0crwdne10238:0" + +#. Description of a Section Break field in DocType 'Document Naming Settings' +#: core/doctype/document_naming_settings/document_naming_settings.json +msgctxt "Document Naming Settings" +msgid "Set Naming Series options on your transactions." +msgstr "crwdns10240:0crwdne10240:0" + +#. Label of a Password field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Set New Password" +msgstr "crwdns10242:0crwdne10242:0" + +#: desk/page/backups/backups.js:8 +msgid "Set Number of Backups" +msgstr "crwdns10244:0crwdne10244:0" + +#: www/update-password.html:9 +msgid "Set Password" +msgstr "crwdns10246:0crwdne10246:0" + +#: custom/doctype/customize_form/customize_form.js:112 +msgid "Set Permissions" +msgstr "crwdns10248:0crwdne10248:0" + +#: printing/page/print_format_builder/print_format_builder.js:471 +msgid "Set Properties" +msgstr "crwdns10250:0crwdne10250:0" + +#. Label of a Section Break field in DocType 'Notification' +#. Label of a Select field in DocType 'Notification' +#: email/doctype/notification/notification.json +msgctxt "Notification" +msgid "Set Property After Alert" +msgstr "crwdns10252:0crwdne10252:0" + +#: public/js/frappe/form/link_selector.js:207 +#: public/js/frappe/form/link_selector.js:208 +msgid "Set Quantity" +msgstr "crwdns10254:0crwdne10254:0" + +#. Label of a Select field in DocType 'Role Permission for Page and Report' +#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json +msgctxt "Role Permission for Page and Report" +msgid "Set Role For" +msgstr "crwdns10256:0crwdne10256:0" + +#: core/doctype/user/user.js:122 +#: core/page/permission_manager/permission_manager.js:65 +msgid "Set User Permissions" +msgstr "crwdns10258:0crwdne10258:0" + +#. Label of a Small Text field in DocType 'Property Setter' +#: custom/doctype/property_setter/property_setter.json +msgctxt "Property Setter" +msgid "Set Value" +msgstr "crwdns10260:0crwdne10260:0" + +#: public/js/frappe/file_uploader/file_uploader.bundle.js:72 +#: public/js/frappe/file_uploader/file_uploader.bundle.js:124 +msgid "Set all private" +msgstr "crwdns10262:0crwdne10262:0" + +#: public/js/frappe/file_uploader/file_uploader.bundle.js:72 +msgid "Set all public" +msgstr "crwdns10264:0crwdne10264:0" + +#: printing/doctype/print_format/print_format.js:49 +msgid "Set as Default" +msgstr "crwdns10266:0crwdne10266:0" + +#: website/doctype/website_theme/website_theme.js:33 +msgid "Set as Default Theme" +msgstr "crwdns10268:0crwdne10268:0" + +#. Option for a Select field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Set by user" +msgstr "crwdns10270:0crwdne10270:0" + +#. Option for a Select field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Set by user" +msgstr "crwdns10272:0crwdne10272:0" + +#. Description of a Select field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Set non-standard precision for a Float or Currency field" +msgstr "crwdns10274:0crwdne10274:0" + +#. Description of a Select field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Set non-standard precision for a Float or Currency field" +msgstr "crwdns10276:0crwdne10276:0" + +#. Description of a Select field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Set non-standard precision for a Float or Currency field" +msgstr "crwdns10278:0crwdne10278:0" + +#. Description of a Select field in DocType 'Web Form Field' +#: website/doctype/web_form_field/web_form_field.json +msgctxt "Web Form Field" +msgid "Set non-standard precision for a Float or Currency field" +msgstr "crwdns10280:0crwdne10280:0" + +#. Label of a Check field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Set only once" +msgstr "crwdns10282:0crwdne10282:0" + +#. Description of a Code field in DocType 'Number Card' +#: desk/doctype/number_card/number_card.json +msgctxt "Number Card" +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 "crwdns10284:0crwdne10284:0" + +#. Description of a Data field in DocType 'Number Card' +#: desk/doctype/number_card/number_card.json +msgctxt "Number Card" +msgid "Set the path to a whitelisted function that will return the data for the number card in the format:\n\n" +"
\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 "crwdns10286:0crwdne10286:0" + +#: contacts/doctype/address_template/address_template.py:32 +msgid "Setting this Address Template as default as there is no other default" +msgstr "crwdns10288:0crwdne10288:0" + +#: desk/doctype/global_search_settings/global_search_settings.py:85 +msgid "Setting up Global Search documents." +msgstr "crwdns10290:0crwdne10290:0" + +#: desk/page/setup_wizard/setup_wizard.js:273 +msgid "Setting up your system" +msgstr "crwdns10292:0crwdne10292:0" + +#. Label of a Card Break in the Integrations Workspace +#: integrations/workspace/integrations/integrations.json +#: public/js/frappe/ui/toolbar/toolbar.js:254 +#: public/js/frappe/views/workspace/workspace.js:515 +msgid "Settings" +msgstr "crwdns10294:0crwdne10294:0" + +#. Label of a Tab Break field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Settings" +msgstr "crwdns10296:0crwdne10296:0" + +#. Label of a Tab Break field in DocType 'User' +#. Group in User's connections +#: core/doctype/user/user.json +msgctxt "User" +msgid "Settings" +msgstr "crwdns10298:0crwdne10298:0" + +#. Label of a Tab Break field in DocType 'Web Form' +#: website/doctype/web_form/web_form.json +msgctxt "Web Form" +msgid "Settings" +msgstr "crwdns10300:0crwdne10300:0" + +#. Label of a Tab Break field in DocType 'Web Page' +#: website/doctype/web_page/web_page.json +msgctxt "Web Page" +msgid "Settings" +msgstr "crwdns10302:0crwdne10302:0" + +#. Label of a Table field in DocType 'Navbar Settings' +#: core/doctype/navbar_settings/navbar_settings.json +msgctxt "Navbar Settings" +msgid "Settings Dropdown" +msgstr "crwdns10304:0crwdne10304:0" + +#. Label of a Card Break in the Website Workspace +#: public/js/frappe/ui/toolbar/search_utils.js:551 +#: website/workspace/website/website.json +msgid "Setup" +msgstr "crwdns10306:0crwdne10306:0" + +#. Option for a Select field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Setup" +msgstr "crwdns10308:0crwdne10308:0" + +#. Title of an Onboarding Step +#: custom/onboarding_step/workflows/workflows.json +msgid "Setup Approval Workflows" +msgstr "crwdns10310:0crwdne10310:0" + +#: public/js/frappe/views/reports/query_report.js:1658 +#: public/js/frappe/views/reports/report_view.js:1609 +msgid "Setup Auto Email" +msgstr "crwdns10312:0crwdne10312:0" + +#: desk/page/setup_wizard/setup_wizard.js:204 +msgid "Setup Complete" +msgstr "crwdns10314:0crwdne10314:0" + +#. Label of a Check field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Setup Complete" +msgstr "crwdns10316:0crwdne10316:0" + +#. Title of an Onboarding Step +#: custom/onboarding_step/role_permissions/role_permissions.json +msgid "Setup Limited Access for a User" +msgstr "crwdns10318:0crwdne10318:0" + +#. Title of an Onboarding Step +#: custom/onboarding_step/naming_series/naming_series.json +msgid "Setup Naming Series" +msgstr "crwdns10320:0crwdne10320:0" + +#. Label of a Section Break field in DocType 'Document Naming Settings' +#: core/doctype/document_naming_settings/document_naming_settings.json +msgctxt "Document Naming Settings" +msgid "Setup Series for transactions" +msgstr "crwdns10322:0crwdne10322:0" + +#. Label of a Check field in DocType 'Custom DocPerm' +#: core/doctype/custom_docperm/custom_docperm.json +msgctxt "Custom DocPerm" +msgid "Share" +msgstr "crwdns10324:0crwdne10324:0" + +#. Label of a Check field in DocType 'DocPerm' +#: core/doctype/docperm/docperm.json +msgctxt "DocPerm" +msgid "Share" +msgstr "crwdns10326:0crwdne10326:0" + +#. Label of a Check field in DocType 'DocShare' +#: core/doctype/docshare/docshare.json +msgctxt "DocShare" +msgid "Share" +msgstr "crwdns10328:0crwdne10328:0" + +#. Option for a Select field in DocType 'Notification Log' +#: desk/doctype/notification_log/notification_log.json +msgctxt "Notification Log" +msgid "Share" +msgstr "crwdns10330:0crwdne10330:0" + +#: public/js/frappe/form/sidebar/share.js:107 +msgid "Share With" +msgstr "crwdns10332:0crwdne10332:0" + +#: public/js/frappe/form/sidebar/share.js:45 +msgid "Share {0} with" +msgstr "crwdns10334:0{0}crwdne10334:0" + +#. Option for a Select field in DocType 'Comment' +#: core/doctype/comment/comment.json +msgctxt "Comment" +msgid "Shared" +msgstr "crwdns10336:0crwdne10336:0" + +#. Option for a Select field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Shared" +msgstr "crwdns10338:0crwdne10338:0" + +#: desk/form/assign_to.py:127 +msgid "Shared with the following Users with Read access:{0}" +msgstr "crwdns10340:0{0}crwdne10340:0" + +#. Option for a Select field in DocType 'Address' +#: contacts/doctype/address/address.json +msgctxt "Address" +msgid "Shipping" +msgstr "crwdns10342:0crwdne10342:0" + +#. Option for a Select field in DocType 'Address' +#: contacts/doctype/address/address.json +msgctxt "Address" +msgid "Shop" +msgstr "crwdns10344:0crwdne10344:0" + +#. Label of a Data field in DocType 'Blogger' +#: website/doctype/blogger/blogger.json +msgctxt "Blogger" +msgid "Short Name" +msgstr "crwdns10346:0crwdne10346:0" + +#: utils/password_strength.py:93 +msgid "Short keyboard patterns are easy to guess" +msgstr "crwdns10348:0crwdne10348:0" + +#. Label of a Table field in DocType 'Workspace' +#. Label of a Tab Break field in DocType 'Workspace' +#: desk/doctype/workspace/workspace.json +msgctxt "Workspace" +msgid "Shortcuts" +msgstr "crwdns10350:0crwdne10350:0" + +#: public/js/frappe/widgets/base_widget.js:46 +#: public/js/frappe/widgets/base_widget.js:176 www/login.html:30 +msgid "Show" +msgstr "crwdns10352:0crwdne10352:0" + +#. Label of a Check field in DocType 'Blog Settings' +#: website/doctype/blog_settings/blog_settings.json +msgctxt "Blog Settings" +msgid "Show \"Call to Action\" in Blog" +msgstr "crwdns10354:0crwdne10354:0" + +#. Label of a Check field in DocType 'Print Format' +#: printing/doctype/print_format/print_format.json +msgctxt "Print Format" +msgid "Show Absolute Values" +msgstr "crwdns10356:0crwdne10356:0" + +#. Label of a Check field in DocType 'Web Form' +#: website/doctype/web_form/web_form.json +msgctxt "Web Form" +msgid "Show Attachments" +msgstr "crwdns10358:0crwdne10358:0" + +#: desk/doctype/calendar_view/calendar_view.js:10 +msgid "Show Calendar" +msgstr "crwdns10360:0crwdne10360:0" + +#. Label of a Check field in DocType 'Currency' +#: geo/doctype/currency/currency.json +msgctxt "Currency" +msgid "Show Currency Symbol on Right Side" +msgstr "crwdns10362:0crwdne10362:0" + +#: desk/doctype/dashboard/dashboard.js:6 +msgid "Show Dashboard" +msgstr "crwdns10364:0crwdne10364:0" + +#. Label of a Check field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Show Dashboard" +msgstr "crwdns10366:0crwdne10366:0" + +#. Label of a Check field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Show Dashboard" +msgstr "crwdns10368:0crwdne10368:0" + +#. Label of a Button field in DocType 'Access Log' +#: core/doctype/access_log/access_log.json +msgctxt "Access Log" +msgid "Show Document" +msgstr "crwdns10370:0crwdne10370:0" + +#: www/error.html:41 www/error.html:59 +msgid "Show Error" +msgstr "crwdns10372:0crwdne10372:0" + +#. Label of a Check field in DocType 'Data Import' +#: core/doctype/data_import/data_import.json +msgctxt "Data Import" +msgid "Show Failed Logs" +msgstr "crwdns10374:0crwdne10374:0" + +#: public/js/frappe/form/layout.js:545 +msgid "Show Fieldname (click to copy on clipboard)" +msgstr "crwdns10376:0crwdne10376:0" + +#. Label of a Check field in DocType 'Form Tour' +#: desk/doctype/form_tour/form_tour.json +msgctxt "Form Tour" +msgid "Show First Document Tour" +msgstr "crwdns10378:0crwdne10378:0" + +#. Option for a Select field in DocType 'Onboarding Step' +#. Label of a Check field in DocType 'Onboarding Step' +#: desk/doctype/onboarding_step/onboarding_step.json +msgctxt "Onboarding Step" +msgid "Show Form Tour" +msgstr "crwdns10380:0crwdne10380:0" + +#. Label of a Check field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Show Full Error and Allow Reporting of Issues to the Developer" +msgstr "crwdns10382:0crwdne10382:0" + +#. Label of a Check field in DocType 'Onboarding Step' +#: desk/doctype/onboarding_step/onboarding_step.json +msgctxt "Onboarding Step" +msgid "Show Full Form?" +msgstr "crwdns10384:0crwdne10384:0" + +#: public/js/frappe/ui/keyboard.js:228 +msgid "Show Keyboard Shortcuts" +msgstr "crwdns10386:0crwdne10386:0" + +#: public/js/frappe/views/kanban/kanban_settings.js:30 +msgid "Show Labels" +msgstr "crwdns10388:0crwdne10388:0" + +#. Label of a Check field in DocType 'Kanban Board' +#: desk/doctype/kanban_board/kanban_board.json +msgctxt "Kanban Board" +msgid "Show Labels" +msgstr "crwdns10390:0crwdne10390:0" + +#. Label of a Check field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Show Language Picker" +msgstr "crwdns10392:0crwdne10392:0" + +#. Label of a Check field in DocType 'Print Format' +#: printing/doctype/print_format/print_format.json +msgctxt "Print Format" +msgid "Show Line Breaks after Sections" +msgstr "crwdns10394:0crwdne10394:0" + +#. Label of a Check field in DocType 'Web Form' +#: website/doctype/web_form/web_form.json +msgctxt "Web Form" +msgid "Show List" +msgstr "crwdns10396:0crwdne10396:0" + +#. Label of a Check field in DocType 'Number Card' +#: desk/doctype/number_card/number_card.json +msgctxt "Number Card" +msgid "Show Percentage Stats" +msgstr "crwdns10398:0crwdne10398:0" + +#: core/report/permitted_documents_for_user/permitted_documents_for_user.js:30 +msgid "Show Permissions" +msgstr "crwdns10400:0crwdne10400:0" + +#: public/js/form_builder/form_builder.bundle.js:31 +#: public/js/form_builder/form_builder.bundle.js:43 +#: public/js/print_format_builder/print_format_builder.bundle.js:18 +#: public/js/print_format_builder/print_format_builder.bundle.js:54 +msgid "Show Preview" +msgstr "crwdns10402:0crwdne10402:0" + +#. Label of a Check field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Show Preview Popup" +msgstr "crwdns10404:0crwdne10404:0" + +#. Label of a Check field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Show Preview Popup" +msgstr "crwdns10406:0crwdne10406:0" + +#. Label of a Check field in DocType 'System Console' +#: desk/doctype/system_console/system_console.json +msgctxt "System Console" +msgid "Show Processlist" +msgstr "crwdns10408:0crwdne10408:0" + +#: core/doctype/error_log/error_log.js:9 +msgid "Show Related Errors" +msgstr "crwdns10410:0crwdne10410:0" + +#: core/doctype/prepared_report/prepared_report.js:43 +#: core/doctype/report/report.js:13 +msgid "Show Report" +msgstr "crwdns10412:0crwdne10412:0" + +#. Label of a Button field in DocType 'Access Log' +#: core/doctype/access_log/access_log.json +msgctxt "Access Log" +msgid "Show Report" +msgstr "crwdns10414:0crwdne10414:0" + +#: public/js/frappe/list/list_filter.js:87 +msgid "Show Saved" +msgstr "crwdns10416:0crwdne10416:0" + +#. Label of a Check field in DocType 'Print Format' +#: printing/doctype/print_format/print_format.json +msgctxt "Print Format" +msgid "Show Section Headings" +msgstr "crwdns10418:0crwdne10418:0" + +#. Label of a Check field in DocType 'Web Form' +#: website/doctype/web_form/web_form.json +msgctxt "Web Form" +msgid "Show Sidebar" +msgstr "crwdns10420:0crwdne10420:0" + +#. Label of a Check field in DocType 'Web Page' +#: website/doctype/web_page/web_page.json +msgctxt "Web Page" +msgid "Show Sidebar" +msgstr "crwdns10422:0crwdne10422:0" + +#: public/js/frappe/list/list_view.js:1566 +msgid "Show Tags" +msgstr "crwdns10424:0crwdne10424:0" + +#. Label of a Check field in DocType 'Web Page' +#: website/doctype/web_page/web_page.json +msgctxt "Web Page" +msgid "Show Title" +msgstr "crwdns10426:0crwdne10426:0" + +#. Label of a Check field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Show Title in Link Fields" +msgstr "crwdns10428:0crwdne10428:0" + +#. Label of a Check field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Show Title in Link Fields" +msgstr "crwdns10430:0crwdne10430:0" + +#: public/js/frappe/views/reports/report_view.js:1453 +msgid "Show Totals" +msgstr "crwdns10432:0crwdne10432:0" + +#: desk/doctype/form_tour/form_tour.js:116 +msgid "Show Tour" +msgstr "crwdns10434:0crwdne10434:0" + +#: public/js/frappe/data_import/import_preview.js:200 +msgid "Show Warnings" +msgstr "crwdns10436:0crwdne10436:0" + +#: public/js/frappe/views/calendar/calendar.js:184 +msgid "Show Weekends" +msgstr "crwdns10438:0crwdne10438:0" + +#. Label of a Check field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Show account deletion link in My Account page" +msgstr "crwdns10440:0crwdne10440:0" + +#: core/doctype/version/version.js:6 +msgid "Show all Versions" +msgstr "crwdns10442:0crwdne10442:0" + +#: website/doctype/blog_post/templates/blog_post_list.html:24 +msgid "Show all blogs" +msgstr "crwdns10444:0crwdne10444:0" + +#. Label of a Small Text field in DocType 'Email Queue' +#: email/doctype/email_queue/email_queue.json +msgctxt "Email Queue" +msgid "Show as cc" +msgstr "crwdns10446:0crwdne10446:0" + +#. Label of a Check field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Show footer on login" +msgstr "crwdns10448:0crwdne10448:0" + +#. Description of a Check field in DocType 'Onboarding Step' +#: desk/doctype/onboarding_step/onboarding_step.json +msgctxt "Onboarding Step" +msgid "Show full form instead of a quick entry modal" +msgstr "crwdns10450:0crwdne10450:0" + +#. Label of a Select field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Show in Module Section" +msgstr "crwdns10452:0crwdne10452:0" + +#. Label of a Check field in DocType 'Web Form Field' +#: website/doctype/web_form_field/web_form_field.json +msgctxt "Web Form Field" +msgid "Show in filter" +msgstr "crwdns10454:0crwdne10454:0" + +#. Label of a Check field in DocType 'Slack Webhook URL' +#: integrations/doctype/slack_webhook_url/slack_webhook_url.json +msgctxt "Slack Webhook URL" +msgid "Show link to document" +msgstr "crwdns10456:0crwdne10456:0" + +#: public/js/frappe/form/layout.js:265 +msgid "Show more details" +msgstr "crwdns10458:0crwdne10458:0" + +#. Description of a Select field in DocType 'Number Card' +#: desk/doctype/number_card/number_card.json +msgctxt "Number Card" +msgid "Show percentage difference according to this time interval" +msgstr "crwdns10460:0crwdne10460:0" + +#. Description of a Data field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Show title in browser window as \"Prefix - title\"" +msgstr "crwdns10462:0crwdne10462:0" + +#: public/js/frappe/views/reports/report_view.js:475 +msgid "Showing only Numeric fields from Report" +msgstr "crwdns10464:0crwdne10464:0" + +#. Label of a Check field in DocType 'Role' +#: core/doctype/role/role.json +msgctxt "Role" +msgid "Sidebar" +msgstr "crwdns10466:0crwdne10466:0" + +#. Label of a Table field in DocType 'Website Sidebar' +#: website/doctype/website_sidebar/website_sidebar.json +msgctxt "Website Sidebar" +msgid "Sidebar Items" +msgstr "crwdns10468:0crwdne10468:0" + +#. Label of a Section Break field in DocType 'Web Form' +#: website/doctype/web_form/web_form.json +msgctxt "Web Form" +msgid "Sidebar Settings" +msgstr "crwdns10470:0crwdne10470:0" + +#. Label of a Section Break field in DocType 'Web Page' +#: website/doctype/web_page/web_page.json +msgctxt "Web Page" +msgid "Sidebar and Comments" +msgstr "crwdns10472:0crwdne10472:0" + +#. Label of a Section Break field in DocType 'Email Group' +#: email/doctype/email_group/email_group.json +msgctxt "Email Group" +msgid "Sign Up and Confirmation" +msgstr "crwdns10474:0crwdne10474:0" + +#: core/doctype/user/user.py:972 +msgid "Sign Up is disabled" +msgstr "crwdns10476:0crwdne10476:0" + +#: templates/signup.html:16 www/login.html:120 www/login.html:136 +#: www/update-password.html:35 +msgid "Sign up" +msgstr "crwdns10478:0crwdne10478:0" + +#. Label of a Select field in DocType 'Social Login Key' +#: integrations/doctype/social_login_key/social_login_key.json +msgctxt "Social Login Key" +msgid "Sign ups" +msgstr "crwdns10480:0crwdne10480:0" + +#. Option for a Select field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Signature" +msgstr "crwdns10482:0crwdne10482:0" + +#. Option for a Select field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Signature" +msgstr "crwdns10484:0crwdne10484:0" + +#. Option for a Select field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Signature" +msgstr "crwdns10486:0crwdne10486:0" + +#. Label of a Section Break field in DocType 'Email Account' +#. Label of a Text Editor field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Signature" +msgstr "crwdns10488:0crwdne10488:0" + +#. Option for a Select field in DocType 'Web Form Field' +#: website/doctype/web_form_field/web_form_field.json +msgctxt "Web Form Field" +msgid "Signature" +msgstr "crwdns10490:0crwdne10490:0" + +#: www/login.html:148 +msgid "Signup Disabled" +msgstr "crwdns10492:0crwdne10492:0" + +#: www/login.html:149 +msgid "Signups have been disabled for this website." +msgstr "crwdns10494:0crwdne10494:0" + +#. Description of a Code field in DocType 'Assignment Rule' +#: automation/doctype/assignment_rule/assignment_rule.json +msgctxt "Assignment Rule" +msgid "Simple Python Expression, Example: Status in (\"Closed\", \"Cancelled\")" +msgstr "crwdns10496:0crwdne10496:0" + +#. Description of a Code field in DocType 'Assignment Rule' +#: automation/doctype/assignment_rule/assignment_rule.json +msgctxt "Assignment Rule" +msgid "Simple Python Expression, Example: Status in (\"Invalid\")" +msgstr "crwdns10498:0crwdne10498:0" + +#. Description of a Code field in DocType 'Assignment Rule' +#: automation/doctype/assignment_rule/assignment_rule.json +msgctxt "Assignment Rule" +msgid "Simple Python Expression, Example: status == 'Open' and type == 'Bug'" +msgstr "crwdns10500:0crwdne10500:0" + +#. Label of a Int field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Simultaneous Sessions" +msgstr "crwdns10502:0crwdne10502:0" + +#: custom/doctype/customize_form/customize_form.py:121 +msgid "Single DocTypes cannot be customized." +msgstr "crwdns10504:0crwdne10504:0" + +#: core/doctype/doctype/doctype_list.js:51 +msgid "Single Types have only one record no tables associated. Values are stored in tabSingles" +msgstr "crwdns10506:0crwdne10506:0" + +#. Description of a Check field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Single Types have only one record no tables associated. Values are stored in tabSingles" +msgstr "crwdns10508:0crwdne10508:0" + +#: database/database.py:230 +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 "crwdns10510:0crwdne10510:0" + +#: public/js/onboarding_tours/onboarding_tours.js:18 +msgid "Skip" +msgstr "crwdns10512:0crwdne10512:0" + +#. Label of a Check field in DocType 'OAuth Client' +#: integrations/doctype/oauth_client/oauth_client.json +msgctxt "OAuth Client" +msgid "Skip Authorization" +msgstr "crwdns10514:0crwdne10514:0" + +#. Label of a Select field in DocType 'OAuth Provider Settings' +#: integrations/doctype/oauth_provider_settings/oauth_provider_settings.json +msgctxt "OAuth Provider Settings" +msgid "Skip Authorization" +msgstr "crwdns10516:0crwdne10516:0" + +#: public/js/frappe/widgets/onboarding_widget.js:337 +msgid "Skip Step" +msgstr "crwdns10518:0crwdne10518:0" + +#. Label of a Check field in DocType 'Patch Log' +#: core/doctype/patch_log/patch_log.json +msgctxt "Patch Log" +msgid "Skipped" +msgstr "crwdns10520:0crwdne10520:0" + +#: core/doctype/data_import/importer.py:905 +msgid "Skipping Duplicate Column {0}" +msgstr "crwdns10522:0{0}crwdne10522:0" + +#: core/doctype/data_import/importer.py:930 +msgid "Skipping Untitled Column" +msgstr "crwdns10524:0crwdne10524:0" + +#: core/doctype/data_import/importer.py:916 +msgid "Skipping column {0}" +msgstr "crwdns10526:0{0}crwdne10526:0" + +#: modules/utils.py:162 +msgid "Skipping fixture syncing for doctype {0} from file {1}" +msgstr "crwdns10528:0{0}crwdnd10528:0{1}crwdne10528:0" + +#: core/doctype/data_import/data_import.js:39 +msgid "Skipping {0} of {1}, {2}" +msgstr "crwdns10530:0{0}crwdnd10530:0{1}crwdnd10530:0{2}crwdne10530:0" + +#. Label of a Data field in DocType 'Contact Us Settings' +#: website/doctype/contact_us_settings/contact_us_settings.json +msgctxt "Contact Us Settings" +msgid "Skype" +msgstr "crwdns10532:0crwdne10532:0" + +#. Option for a Select field in DocType 'Notification' +#: email/doctype/notification/notification.json +msgctxt "Notification" +msgid "Slack" +msgstr "crwdns10534:0crwdne10534:0" + +#. Label of a Link field in DocType 'Notification' +#: email/doctype/notification/notification.json +msgctxt "Notification" +msgid "Slack Channel" +msgstr "crwdns10536:0crwdne10536:0" + +#: integrations/doctype/slack_webhook_url/slack_webhook_url.py:64 +msgid "Slack Webhook Error" +msgstr "crwdns10538:0crwdne10538:0" + +#. Name of a DocType +#: integrations/doctype/slack_webhook_url/slack_webhook_url.json +msgid "Slack Webhook URL" +msgstr "crwdns10540:0crwdne10540:0" + +#. Label of a Link in the Integrations Workspace +#: integrations/workspace/integrations/integrations.json +msgctxt "Slack Webhook URL" +msgid "Slack Webhook URL" +msgstr "crwdns10542:0crwdne10542:0" + +#. Label of a Link field in DocType 'Web Page' +#. Option for a Select field in DocType 'Web Page' +#: website/doctype/web_page/web_page.json +msgctxt "Web Page" +msgid "Slideshow" +msgstr "crwdns10544:0crwdne10544:0" + +#. Label of a Table field in DocType 'Website Slideshow' +#: website/doctype/website_slideshow/website_slideshow.json +msgctxt "Website Slideshow" +msgid "Slideshow Items" +msgstr "crwdns10546:0crwdne10546:0" + +#. Label of a Data field in DocType 'Website Slideshow' +#: website/doctype/website_slideshow/website_slideshow.json +msgctxt "Website Slideshow" +msgid "Slideshow Name" +msgstr "crwdns10548:0crwdne10548:0" + +#. Option for a Select field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Small Text" +msgstr "crwdns10550:0crwdne10550:0" + +#. Option for a Select field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Small Text" +msgstr "crwdns10552:0crwdne10552:0" + +#. Option for a Select field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Small Text" +msgstr "crwdns10554:0crwdne10554:0" + +#. Option for a Select field in DocType 'Web Form Field' +#: website/doctype/web_form_field/web_form_field.json +msgctxt "Web Form Field" +msgid "Small Text" +msgstr "crwdns10556:0crwdne10556:0" + +#. Option for a Select field in DocType 'Web Template Field' +#: website/doctype/web_template_field/web_template_field.json +msgctxt "Web Template Field" +msgid "Small Text" +msgstr "crwdns10558:0crwdne10558:0" + +#. Label of a Currency field in DocType 'Currency' +#: geo/doctype/currency/currency.json +msgctxt "Currency" +msgid "Smallest Currency Fraction Value" +msgstr "crwdns10560:0crwdne10560:0" + +#. Description of a Currency field in DocType 'Currency' +#: geo/doctype/currency/currency.json +msgctxt "Currency" +msgid "Smallest circulating fraction unit (coin). For e.g. 1 cent for USD and it should be entered as 0.01" +msgstr "crwdns10562:0crwdne10562:0" + +#. Name of a DocType +#: website/doctype/social_link_settings/social_link_settings.json +msgid "Social Link Settings" +msgstr "crwdns10564:0crwdne10564:0" + +#. Label of a Select field in DocType 'Social Link Settings' +#: website/doctype/social_link_settings/social_link_settings.json +msgctxt "Social Link Settings" +msgid "Social Link Type" +msgstr "crwdns10566:0crwdne10566:0" + +#. Name of a DocType +#: integrations/doctype/social_login_key/social_login_key.json +msgid "Social Login Key" +msgstr "crwdns10568:0crwdne10568:0" + +#. Label of a Link in the Integrations Workspace +#: integrations/workspace/integrations/integrations.json +msgctxt "Social Login Key" +msgid "Social Login Key" +msgstr "crwdns10570:0crwdne10570:0" + +#. Label of a Select field in DocType 'Social Login Key' +#: integrations/doctype/social_login_key/social_login_key.json +msgctxt "Social Login Key" +msgid "Social Login Provider" +msgstr "crwdns10572:0crwdne10572:0" + +#. Label of a Table field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Social Logins" +msgstr "crwdns10574:0crwdne10574:0" + +#. Option for a Select field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Soft-Bounced" +msgstr "crwdns10576:0crwdne10576:0" + +#: 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 "crwdns10578:0crwdne10578:0" + +#: public/js/frappe/views/translation_manager.js:101 +msgid "Something went wrong" +msgstr "crwdns10580:0crwdne10580:0" + +#: integrations/doctype/google_calendar/google_calendar.py:116 +msgid "Something went wrong during the token generation. Click on {0} to generate a new one." +msgstr "crwdns10582:0{0}crwdne10582:0" + +#: public/js/frappe/views/pageview.js:110 +msgid "Sorry! I could not find what you were looking for." +msgstr "crwdns10584:0crwdne10584:0" + +#: public/js/frappe/views/pageview.js:118 +msgid "Sorry! You are not permitted to view this page." +msgstr "crwdns10586:0crwdne10586:0" + +#: public/js/frappe/utils/datatable.js:6 +msgid "Sort Ascending" +msgstr "crwdns10588:0crwdne10588:0" + +#: public/js/frappe/utils/datatable.js:7 +msgid "Sort Descending" +msgstr "crwdns10590:0crwdne10590:0" + +#. Label of a Select field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Sort Field" +msgstr "crwdns10592:0crwdne10592:0" + +#. Label of a Check field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Sort Options" +msgstr "crwdns10594:0crwdne10594:0" + +#. Label of a Check field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Sort Options" +msgstr "crwdns10596:0crwdne10596:0" + +#. Label of a Check field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Sort Options" +msgstr "crwdns10598:0crwdne10598:0" + +#. Label of a Select field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Sort Order" +msgstr "crwdns10600:0crwdne10600:0" + +#: core/doctype/doctype/doctype.py:1501 +msgid "Sort field {0} must be a valid fieldname" +msgstr "crwdns10602:0{0}crwdne10602:0" + +#: public/js/frappe/utils/utils.js:1705 +#: website/report/website_analytics/website_analytics.js:38 +msgid "Source" +msgstr "crwdns10604:0crwdne10604:0" + +#. Label of a Data field in DocType 'Web Page View' +#: website/doctype/web_page_view/web_page_view.json +msgctxt "Web Page View" +msgid "Source" +msgstr "crwdns10606:0crwdne10606:0" + +#. Label of a Small Text field in DocType 'Website Route Redirect' +#: website/doctype/website_route_redirect/website_route_redirect.json +msgctxt "Website Route Redirect" +msgid "Source" +msgstr "crwdns10608:0crwdne10608:0" + +#. Label of a Data field in DocType 'Dashboard Chart Source' +#: desk/doctype/dashboard_chart_source/dashboard_chart_source.json +msgctxt "Dashboard Chart Source" +msgid "Source Name" +msgstr "crwdns10610:0crwdne10610:0" + +#: public/js/frappe/views/translation_manager.js:38 +msgid "Source Text" +msgstr "crwdns10612:0crwdne10612:0" + +#. Label of a Code field in DocType 'Translation' +#: core/doctype/translation/translation.json +msgctxt "Translation" +msgid "Source Text" +msgstr "crwdns10614:0crwdne10614:0" + +#. Option for a Select field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Spam" +msgstr "crwdns10616:0crwdne10616:0" + +#. Option for a Select field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "SparkPost" +msgstr "crwdns10618:0crwdne10618:0" + +#: custom/doctype/custom_field/custom_field.js:83 +msgid "Special Characters are not allowed" +msgstr "crwdns10620:0crwdne10620:0" + +#: model/naming.py:58 +msgid "Special Characters except '-', '#', '.', '/', '{{' and '}}' not allowed in naming series {0}" +msgstr "crwdns10622:0{{' and '}}crwdnd10622:0{0}crwdne10622:0" + +#. Label of a Attach Image field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Splash Image" +msgstr "crwdns10624:0crwdne10624:0" + +#: desk/reportview.py:365 templates/print_formats/standard_macros.html:44 +msgid "Sr" +msgstr "crwdns10626:0crwdne10626:0" + +#: core/doctype/recorder/recorder.js:33 +msgid "Stack Trace" +msgstr "crwdns10628:0crwdne10628:0" + +#. Label of a HTML field in DocType 'Recorder Query' +#: core/doctype/recorder_query/recorder_query.json +msgctxt "Recorder Query" +msgid "Stack Trace" +msgstr "crwdns10630:0crwdne10630:0" + +#: core/doctype/user_type/user_type_list.js:5 +msgid "Standard" +msgstr "crwdns10632:0crwdne10632:0" + +#. Label of a Check field in DocType 'Desktop Icon' +#: desk/doctype/desktop_icon/desktop_icon.json +msgctxt "Desktop Icon" +msgid "Standard" +msgstr "crwdns10634:0crwdne10634:0" + +#. Label of a Select field in DocType 'Page' +#: core/doctype/page/page.json +msgctxt "Page" +msgid "Standard" +msgstr "crwdns10636:0crwdne10636:0" + +#. Label of a Select field in DocType 'Print Format' +#: printing/doctype/print_format/print_format.json +msgctxt "Print Format" +msgid "Standard" +msgstr "crwdns10638:0crwdne10638:0" + +#. Label of a Check field in DocType 'Print Format Field Template' +#: printing/doctype/print_format_field_template/print_format_field_template.json +msgctxt "Print Format Field Template" +msgid "Standard" +msgstr "crwdns10640:0crwdne10640:0" + +#. Label of a Check field in DocType 'Print Style' +#: printing/doctype/print_style/print_style.json +msgctxt "Print Style" +msgid "Standard" +msgstr "crwdns10642:0crwdne10642:0" + +#. Label of a Check field in DocType 'Web Template' +#: website/doctype/web_template/web_template.json +msgctxt "Web Template" +msgid "Standard" +msgstr "crwdns10644:0crwdne10644:0" + +#: model/delete_doc.py:79 +msgid "Standard DocType can not be deleted." +msgstr "crwdns10646:0crwdne10646:0" + +#: core/doctype/doctype/doctype.py:228 +msgid "Standard DocType cannot have default print format, use Customize Form" +msgstr "crwdns10648:0crwdne10648:0" + +#: desk/doctype/dashboard/dashboard.py:59 +msgid "Standard Not Set" +msgstr "crwdns10650:0crwdne10650:0" + +#: printing/doctype/print_format/print_format.py:74 +msgid "Standard Print Format cannot be updated" +msgstr "crwdns10652:0crwdne10652:0" + +#: printing/doctype/print_style/print_style.py:31 +msgid "Standard Print Style cannot be changed. Please duplicate to edit." +msgstr "crwdns10654:0crwdne10654:0" + +#: desk/reportview.py:316 +msgid "Standard Reports cannot be deleted" +msgstr "crwdns10656:0crwdne10656:0" + +#: desk/reportview.py:287 +msgid "Standard Reports cannot be edited" +msgstr "crwdns10658:0crwdne10658:0" + +#. Label of a Section Break field in DocType 'Portal Settings' +#: website/doctype/portal_settings/portal_settings.json +msgctxt "Portal Settings" +msgid "Standard Sidebar Menu" +msgstr "crwdns10660:0crwdne10660:0" + +#: core/doctype/role/role.py:61 +msgid "Standard roles cannot be disabled" +msgstr "crwdns10662:0crwdne10662:0" + +#: core/doctype/role/role.py:48 +msgid "Standard roles cannot be renamed" +msgstr "crwdns10664:0crwdne10664:0" + +#: core/doctype/user_type/user_type.py:60 +msgid "Standard user type {0} can not be deleted." +msgstr "crwdns10666:0{0}crwdne10666:0" + +#: templates/emails/energy_points_summary.html:33 +msgid "Standings" +msgstr "crwdns10668:0crwdne10668:0" + +#: core/doctype/recorder/recorder_list.js:91 printing/page/print/print.js:289 +#: printing/page/print/print.js:336 +msgid "Start" +msgstr "crwdns10670:0crwdne10670:0" + +#: public/js/frappe/utils/common.js:409 +msgid "Start Date" +msgstr "crwdns10672:0crwdne10672:0" + +#. Label of a Date field in DocType 'Audit Trail' +#: core/doctype/audit_trail/audit_trail.json +msgctxt "Audit Trail" +msgid "Start Date" +msgstr "crwdns10674:0crwdne10674:0" + +#. Label of a Date field in DocType 'Auto Repeat' +#: automation/doctype/auto_repeat/auto_repeat.json +msgctxt "Auto Repeat" +msgid "Start Date" +msgstr "crwdns10676:0crwdne10676:0" + +#. Label of a Datetime field in DocType 'Web Page' +#: website/doctype/web_page/web_page.json +msgctxt "Web Page" +msgid "Start Date" +msgstr "crwdns10678:0crwdne10678:0" + +#. Label of a Select field in DocType 'Calendar View' +#: desk/doctype/calendar_view/calendar_view.json +msgctxt "Calendar View" +msgid "Start Date Field" +msgstr "crwdns10680:0crwdne10680:0" + +#: core/doctype/data_import/data_import.js:110 +msgid "Start Import" +msgstr "crwdns10682:0crwdne10682:0" + +#. Label of a Datetime field in DocType 'RQ Worker' +#: core/doctype/rq_worker/rq_worker.json +msgctxt "RQ Worker" +msgid "Start Time" +msgstr "crwdns10684:0crwdne10684:0" + +#: templates/includes/comments/comments.html:8 +msgid "Start a new discussion" +msgstr "crwdns10686:0crwdne10686:0" + +#: core/doctype/data_export/exporter.py:22 +msgid "Start entering data below this line" +msgstr "crwdns10688:0crwdne10688:0" + +#: printing/page/print_format_builder/print_format_builder.js:165 +msgid "Start new Format" +msgstr "crwdns10690:0crwdne10690:0" + +#. Option for a Select field in DocType 'LDAP Settings' +#: integrations/doctype/ldap_settings/ldap_settings.json +msgctxt "LDAP Settings" +msgid "StartTLS" +msgstr "crwdns10692:0crwdne10692:0" + +#. Option for a Select field in DocType 'Prepared Report' +#: core/doctype/prepared_report/prepared_report.json +msgctxt "Prepared Report" +msgid "Started" +msgstr "crwdns10694:0crwdne10694:0" + +#. Label of a Datetime field in DocType 'RQ Job' +#: core/doctype/rq_job/rq_job.json +msgctxt "RQ Job" +msgid "Started At" +msgstr "crwdns10696:0crwdne10696:0" + +#: desk/page/setup_wizard/setup_wizard.js:274 +msgid "Starting Frappe ..." +msgstr "crwdns10698:0crwdne10698:0" + +#. Label of a Datetime field in DocType 'Event' +#: desk/doctype/event/event.json +msgctxt "Event" +msgid "Starts on" +msgstr "crwdns10700:0crwdne10700:0" + +#. Label of a Data field in DocType 'Contact Us Settings' +#: website/doctype/contact_us_settings/contact_us_settings.json +msgctxt "Contact Us Settings" +msgid "State" +msgstr "crwdns10702:0crwdne10702:0" + +#. Label of a Data field in DocType 'Token Cache' +#: integrations/doctype/token_cache/token_cache.json +msgctxt "Token Cache" +msgid "State" +msgstr "crwdns10704:0crwdne10704:0" + +#. Label of a Link field in DocType 'Workflow Document State' +#: workflow/doctype/workflow_document_state/workflow_document_state.json +msgctxt "Workflow Document State" +msgid "State" +msgstr "crwdns10706:0crwdne10706:0" + +#. Label of a Data field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "State" +msgstr "crwdns10708:0crwdne10708:0" + +#. Label of a Link field in DocType 'Workflow Transition' +#: workflow/doctype/workflow_transition/workflow_transition.json +msgctxt "Workflow Transition" +msgid "State" +msgstr "crwdns10710:0crwdne10710:0" + +#. Label of a Data field in DocType 'Address' +#: contacts/doctype/address/address.json +msgctxt "Address" +msgid "State/Province" +msgstr "crwdns10712:0crwdne10712:0" + +#. Label of a Table field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "States" +msgstr "crwdns10714:0crwdne10714:0" + +#. Label of a Table field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "States" +msgstr "crwdns10716:0crwdne10716:0" + +#. Label of a Section Break field in DocType 'Workflow' +#: workflow/doctype/workflow/workflow.json +msgctxt "Workflow" +msgid "States" +msgstr "crwdns10718:0crwdne10718:0" + +#. Label of a Table field in DocType 'SMS Settings' +#: core/doctype/sms_settings/sms_settings.json +msgctxt "SMS Settings" +msgid "Static Parameters" +msgstr "crwdns10720:0crwdne10720:0" + +#. Label of a Section Break field in DocType 'RQ Worker' +#: core/doctype/rq_worker/rq_worker.json +msgctxt "RQ Worker" +msgid "Statistics" +msgstr "crwdns10722:0crwdne10722:0" + +#: public/js/frappe/form/dashboard.js:43 +msgid "Stats" +msgstr "crwdns10724:0crwdne10724:0" + +#. Label of a Section Break field in DocType 'Number Card' +#: desk/doctype/number_card/number_card.json +msgctxt "Number Card" +msgid "Stats" +msgstr "crwdns10726:0crwdne10726:0" + +#. Label of a Select field in DocType 'Number Card' +#: desk/doctype/number_card/number_card.json +msgctxt "Number Card" +msgid "Stats Time Interval" +msgstr "crwdns10728:0crwdne10728:0" + +#: social/doctype/energy_point_log/energy_point_log.py:391 +msgid "Stats based on last month's performance (from {0} to {1})" +msgstr "crwdns10730:0{0}crwdnd10730:0{1}crwdne10730:0" + +#: social/doctype/energy_point_log/energy_point_log.py:393 +msgid "Stats based on last week's performance (from {0} to {1})" +msgstr "crwdns10732:0{0}crwdnd10732:0{1}crwdne10732:0" + +#: public/js/frappe/views/reports/report_view.js:911 +msgid "Status" +msgstr "crwdns10734:0crwdne10734:0" + +#. Label of a Select field in DocType 'Activity Log' +#: core/doctype/activity_log/activity_log.json +msgctxt "Activity Log" +msgid "Status" +msgstr "crwdns10736:0crwdne10736:0" + +#. Label of a Select field in DocType 'Auto Repeat' +#: automation/doctype/auto_repeat/auto_repeat.json +msgctxt "Auto Repeat" +msgid "Status" +msgstr "crwdns10738:0crwdne10738:0" + +#. Label of a Section Break field in DocType 'Communication' +#. Label of a Select field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Status" +msgstr "crwdns10740:0crwdne10740:0" + +#. Label of a Select field in DocType 'Contact' +#: contacts/doctype/contact/contact.json +msgctxt "Contact" +msgid "Status" +msgstr "crwdns10742:0crwdne10742:0" + +#. Label of a Select field in DocType 'Data Import' +#: core/doctype/data_import/data_import.json +msgctxt "Data Import" +msgid "Status" +msgstr "crwdns10744:0crwdne10744:0" + +#. Label of a Select field in DocType 'Email Queue' +#: email/doctype/email_queue/email_queue.json +msgctxt "Email Queue" +msgid "Status" +msgstr "crwdns10746:0crwdne10746:0" + +#. Label of a Select field in DocType 'Email Queue Recipient' +#: email/doctype/email_queue_recipient/email_queue_recipient.json +msgctxt "Email Queue Recipient" +msgid "Status" +msgstr "crwdns10748:0crwdne10748:0" + +#. Label of a Select field in DocType 'Event' +#: desk/doctype/event/event.json +msgctxt "Event" +msgid "Status" +msgstr "crwdns10750:0crwdne10750:0" + +#. Label of a Select field in DocType 'Integration Request' +#: integrations/doctype/integration_request/integration_request.json +msgctxt "Integration Request" +msgid "Status" +msgstr "crwdns10752:0crwdne10752:0" + +#. Label of a Select field in DocType 'Kanban Board Column' +#: desk/doctype/kanban_board_column/kanban_board_column.json +msgctxt "Kanban Board Column" +msgid "Status" +msgstr "crwdns10754:0crwdne10754:0" + +#. Label of a Section Break field in DocType 'Newsletter' +#: email/doctype/newsletter/newsletter.json +msgctxt "Newsletter" +msgid "Status" +msgstr "crwdns10756:0crwdne10756:0" + +#. Label of a Select field in DocType 'OAuth Bearer Token' +#: integrations/doctype/oauth_bearer_token/oauth_bearer_token.json +msgctxt "OAuth Bearer Token" +msgid "Status" +msgstr "crwdns10758:0crwdne10758:0" + +#. Label of a Select field in DocType 'Personal Data Deletion Request' +#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +msgctxt "Personal Data Deletion Request" +msgid "Status" +msgstr "crwdns10760:0crwdne10760:0" + +#. Label of a Select field in DocType 'Personal Data Deletion Step' +#: website/doctype/personal_data_deletion_step/personal_data_deletion_step.json +msgctxt "Personal Data Deletion Step" +msgid "Status" +msgstr "crwdns10762:0crwdne10762:0" + +#. Label of a Select field in DocType 'Prepared Report' +#: core/doctype/prepared_report/prepared_report.json +msgctxt "Prepared Report" +msgid "Status" +msgstr "crwdns10764:0crwdne10764:0" + +#. Label of a Select field in DocType 'RQ Job' +#: core/doctype/rq_job/rq_job.json +msgctxt "RQ Job" +msgid "Status" +msgstr "crwdns10766:0crwdne10766:0" + +#. Label of a Data field in DocType 'RQ Worker' +#: core/doctype/rq_worker/rq_worker.json +msgctxt "RQ Worker" +msgid "Status" +msgstr "crwdns10768:0crwdne10768:0" + +#. Label of a Select field in DocType 'Scheduled Job Log' +#: core/doctype/scheduled_job_log/scheduled_job_log.json +msgctxt "Scheduled Job Log" +msgid "Status" +msgstr "crwdns10770:0crwdne10770:0" + +#. Label of a Section Break field in DocType 'Scheduled Job Type' +#: core/doctype/scheduled_job_type/scheduled_job_type.json +msgctxt "Scheduled Job Type" +msgid "Status" +msgstr "crwdns10772:0crwdne10772:0" + +#. Label of a Select field in DocType 'Submission Queue' +#: core/doctype/submission_queue/submission_queue.json +msgctxt "Submission Queue" +msgid "Status" +msgstr "crwdns10774:0crwdne10774:0" + +#. Label of a Select field in DocType 'ToDo' +#: desk/doctype/todo/todo.json +msgctxt "ToDo" +msgid "Status" +msgstr "crwdns10776:0crwdne10776:0" + +#. Label of a Select field in DocType 'Workflow Action' +#: workflow/doctype/workflow_action/workflow_action.json +msgctxt "Workflow Action" +msgid "Status" +msgstr "crwdns10778:0crwdne10778:0" + +#: www/update-password.html:161 +msgid "Status Updated" +msgstr "crwdns10780:0crwdne10780:0" + +#: www/message.html:40 +msgid "Status: {0}" +msgstr "crwdns10782:0{0}crwdne10782:0" + +#. Label of a Link field in DocType 'Onboarding Step Map' +#: desk/doctype/onboarding_step_map/onboarding_step_map.json +msgctxt "Onboarding Step Map" +msgid "Step" +msgstr "crwdns10784:0crwdne10784:0" + +#. Label of a Table field in DocType 'Form Tour' +#: desk/doctype/form_tour/form_tour.json +msgctxt "Form Tour" +msgid "Steps" +msgstr "crwdns10786:0crwdne10786:0" + +#. Label of a Table field in DocType 'Module Onboarding' +#: desk/doctype/module_onboarding/module_onboarding.json +msgctxt "Module Onboarding" +msgid "Steps" +msgstr "crwdns10788:0crwdne10788:0" + +#: www/qrcode.html:11 +msgid "Steps to verify your login" +msgstr "crwdns10790:0crwdne10790:0" + +#: core/doctype/recorder/recorder_list.js:91 +msgid "Stop" +msgstr "crwdns10792:0crwdne10792:0" + +#. Label of a Check field in DocType 'Scheduled Job Type' +#: core/doctype/scheduled_job_type/scheduled_job_type.json +msgctxt "Scheduled Job Type" +msgid "Stopped" +msgstr "crwdns10794:0crwdne10794:0" + +#. Description of a Text field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Stores the JSON of last known versions of various installed apps. It is used to show release notes." +msgstr "crwdns10796:0crwdne10796:0" + +#. Description of a Datetime field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Stores the datetime when the last reset password key was generated." +msgstr "crwdns10798:0crwdne10798:0" + +#: utils/password_strength.py:99 +msgid "Straight rows of keys are easy to guess" +msgstr "crwdns10800:0crwdne10800:0" + +#. Label of a Check field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Strip EXIF tags from uploaded images" +msgstr "crwdns10802:0crwdne10802:0" + +#: public/js/frappe/form/controls/password.js:90 +msgid "Strong" +msgstr "crwdns10804:0crwdne10804:0" + +#. Label of a Tab Break field in DocType 'Web Page' +#: website/doctype/web_page/web_page.json +msgctxt "Web Page" +msgid "Style" +msgstr "crwdns10806:0crwdne10806:0" + +#. Label of a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "Style" +msgstr "crwdns10808:0crwdne10808:0" + +#. Label of a Section Break field in DocType 'Print Format' +#: printing/doctype/print_format/print_format.json +msgctxt "Print Format" +msgid "Style Settings" +msgstr "crwdns10810:0crwdne10810:0" + +#. Description of a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "Style represents the button color: Success - Green, Danger - Red, Inverse - Black, Primary - Dark Blue, Info - Light Blue, Warning - Orange" +msgstr "crwdns10812:0crwdne10812:0" + +#. Label of a Tab Break field in DocType 'Website Theme' +#: website/doctype/website_theme/website_theme.json +msgctxt "Website Theme" +msgid "Stylesheet" +msgstr "crwdns10814:0crwdne10814:0" + +#. Description of a Data field in DocType 'Currency' +#: geo/doctype/currency/currency.json +msgctxt "Currency" +msgid "Sub-currency. For e.g. \"Cent\"" +msgstr "crwdns10816:0crwdne10816:0" + +#. Description of a Small Text field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Sub-domain provided by erpnext.com" +msgstr "crwdns10818:0crwdne10818:0" + +#. Label of a Small Text field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Subdomain" +msgstr "crwdns10820:0crwdne10820:0" + +#: public/js/frappe/views/communication.js:103 +#: public/js/frappe/views/inbox/inbox_view.js:63 +msgid "Subject" +msgstr "crwdns10822:0crwdne10822:0" + +#. Label of a Small Text field in DocType 'Activity Log' +#: core/doctype/activity_log/activity_log.json +msgctxt "Activity Log" +msgid "Subject" +msgstr "crwdns10824:0crwdne10824:0" + +#. Label of a Data field in DocType 'Auto Repeat' +#: automation/doctype/auto_repeat/auto_repeat.json +msgctxt "Auto Repeat" +msgid "Subject" +msgstr "crwdns10826:0crwdne10826:0" + +#. Label of a Text field in DocType 'Comment' +#: core/doctype/comment/comment.json +msgctxt "Comment" +msgid "Subject" +msgstr "crwdns10828:0crwdne10828:0" + +#. Label of a Small Text field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Subject" +msgstr "crwdns10830:0crwdne10830:0" + +#. Label of a Data field in DocType 'Email Template' +#: email/doctype/email_template/email_template.json +msgctxt "Email Template" +msgid "Subject" +msgstr "crwdns10832:0crwdne10832:0" + +#. Label of a Small Text field in DocType 'Event' +#: desk/doctype/event/event.json +msgctxt "Event" +msgid "Subject" +msgstr "crwdns10834:0crwdne10834:0" + +#. Label of a Small Text field in DocType 'Newsletter' +#. Label of a Section Break field in DocType 'Newsletter' +#: email/doctype/newsletter/newsletter.json +msgctxt "Newsletter" +msgid "Subject" +msgstr "crwdns10836:0crwdne10836:0" + +#. Label of a Data field in DocType 'Notification' +#: email/doctype/notification/notification.json +msgctxt "Notification" +msgid "Subject" +msgstr "crwdns10838:0crwdne10838:0" + +#. Label of a Text field in DocType 'Notification Log' +#: desk/doctype/notification_log/notification_log.json +msgctxt "Notification Log" +msgid "Subject" +msgstr "crwdns10840:0crwdne10840:0" + +#. Label of a Select field in DocType 'Calendar View' +#: desk/doctype/calendar_view/calendar_view.json +msgctxt "Calendar View" +msgid "Subject Field" +msgstr "crwdns10842:0crwdne10842:0" + +#. Label of a Data field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Subject Field" +msgstr "crwdns10844:0crwdne10844:0" + +#. Label of a Data field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Subject Field" +msgstr "crwdns10846:0crwdne10846:0" + +#: core/doctype/doctype/doctype.py:1878 +msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor" +msgstr "crwdns10848:0crwdne10848:0" + +#. Name of a DocType +#: core/doctype/submission_queue/submission_queue.json +msgid "Submission Queue" +msgstr "crwdns10850:0crwdne10850:0" + +#: core/doctype/user_permission/user_permission_list.js:138 +#: public/js/frappe/form/quick_entry.js:193 +#: public/js/frappe/form/sidebar/review.js:116 +#: public/js/frappe/ui/capture.js:299 +#: social/doctype/energy_point_log/energy_point_log.js:39 +#: social/doctype/energy_point_settings/energy_point_settings.js:47 +#: website/doctype/web_form/templates/web_form.html:44 +msgid "Submit" +msgstr "crwdns10852:0crwdne10852:0" + +#: public/js/frappe/list/list_view.js:1916 +msgctxt "Button in list view actions menu" +msgid "Submit" +msgstr "crwdns10854:0crwdne10854:0" + +#. Label of a Check field in DocType 'Custom DocPerm' +#: core/doctype/custom_docperm/custom_docperm.json +msgctxt "Custom DocPerm" +msgid "Submit" +msgstr "crwdns10856:0crwdne10856:0" + +#. Label of a Check field in DocType 'DocPerm' +#: core/doctype/docperm/docperm.json +msgctxt "DocPerm" +msgid "Submit" +msgstr "crwdns10858:0crwdne10858:0" + +#. Label of a Check field in DocType 'DocShare' +#: core/doctype/docshare/docshare.json +msgctxt "DocShare" +msgid "Submit" +msgstr "crwdns10860:0crwdne10860:0" + +#. Option for a Select field in DocType 'Energy Point Rule' +#: social/doctype/energy_point_rule/energy_point_rule.json +msgctxt "Energy Point Rule" +msgid "Submit" +msgstr "crwdns10862:0crwdne10862:0" + +#. Option for a Select field in DocType 'Notification' +#: email/doctype/notification/notification.json +msgctxt "Notification" +msgid "Submit" +msgstr "crwdns10864:0crwdne10864:0" + +#: public/js/frappe/ui/dialog.js:60 +msgctxt "Primary action in dialog" +msgid "Submit" +msgstr "crwdns10866:0crwdne10866:0" + +#: public/js/frappe/ui/messages.js:97 +msgctxt "Primary action of prompt dialog" +msgid "Submit" +msgstr "crwdns10868:0crwdne10868:0" + +#: public/js/frappe/desk.js:206 +msgctxt "Submit password for Email Account" +msgid "Submit" +msgstr "crwdns10870:0crwdne10870:0" + +#. Label of a Check field in DocType 'User Document Type' +#: core/doctype/user_document_type/user_document_type.json +msgctxt "User Document Type" +msgid "Submit" +msgstr "crwdns10872:0crwdne10872:0" + +#. Label of a Check field in DocType 'Data Import' +#: core/doctype/data_import/data_import.json +msgctxt "Data Import" +msgid "Submit After Import" +msgstr "crwdns10874:0crwdne10874:0" + +#. Label of a Data field in DocType 'Web Form' +#: website/doctype/web_form/web_form.json +msgctxt "Web Form" +msgid "Submit Button Label" +msgstr "crwdns10876:0crwdne10876:0" + +#: website/doctype/web_form/templates/web_form.html:153 +msgid "Submit another response" +msgstr "crwdns10878:0crwdne10878:0" + +#. Label of a Check field in DocType 'Auto Repeat' +#: automation/doctype/auto_repeat/auto_repeat.json +msgctxt "Auto Repeat" +msgid "Submit on Creation" +msgstr "crwdns10880:0crwdne10880:0" + +#: public/js/frappe/widgets/onboarding_widget.js:400 +msgid "Submit this document to complete this step." +msgstr "crwdns10882:0crwdne10882:0" + +#: public/js/frappe/form/form.js:1194 +msgid "Submit this document to confirm" +msgstr "crwdns10884:0crwdne10884:0" + +#: public/js/frappe/list/list_view.js:1921 +msgctxt "Title of confirmation dialog" +msgid "Submit {0} documents?" +msgstr "crwdns10886:0{0}crwdne10886:0" + +#: public/js/frappe/model/indicator.js:95 +#: public/js/frappe/ui/filters/filter.js:494 +#: website/doctype/web_form/templates/web_form.html:133 +msgid "Submitted" +msgstr "crwdns10888:0crwdne10888:0" + +#. Option for a Select field in DocType 'Comment' +#: core/doctype/comment/comment.json +msgctxt "Comment" +msgid "Submitted" +msgstr "crwdns10890:0crwdne10890:0" + +#. Option for a Select field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Submitted" +msgstr "crwdns10892:0crwdne10892:0" + +#: workflow/doctype/workflow/workflow.py:106 +msgid "Submitted Document cannot be converted back to draft. Transition row {0}" +msgstr "crwdns10894:0{0}crwdne10894:0" + +#: 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 "crwdns10896:0{0}crwdnd10896:0{1}crwdne10896:0" + +#: public/js/frappe/form/save.js:10 +msgctxt "Freeze message while submitting a document" +msgid "Submitting" +msgstr "crwdns10898:0crwdne10898:0" + +#: desk/doctype/bulk_update/bulk_update.py:91 +msgid "Submitting {0}" +msgstr "crwdns10900:0{0}crwdne10900:0" + +#. Option for a Select field in DocType 'Address' +#: contacts/doctype/address/address.json +msgctxt "Address" +msgid "Subsidiary" +msgstr "crwdns10902:0crwdne10902:0" + +#. Label of a Data field in DocType 'Blog Settings' +#: website/doctype/blog_settings/blog_settings.json +msgctxt "Blog Settings" +msgid "Subtitle" +msgstr "crwdns10904:0crwdne10904:0" + +#. Label of a Data field in DocType 'Module Onboarding' +#: desk/doctype/module_onboarding/module_onboarding.json +msgctxt "Module Onboarding" +msgid "Subtitle" +msgstr "crwdns10906:0crwdne10906:0" + +#: core/doctype/data_import/data_import.js:470 +#: desk/doctype/bulk_update/bulk_update.js:31 +#: desk/doctype/desktop_icon/desktop_icon.py:452 +#: public/js/frappe/form/grid.js:1133 +#: public/js/frappe/views/translation_manager.js:21 +#: templates/pages/integrations/gcalendar-success.html:9 +#: workflow/doctype/workflow_action/workflow_action.py:171 +msgid "Success" +msgstr "crwdns10908:0crwdne10908:0" + +#. Option for a Select field in DocType 'Activity Log' +#: core/doctype/activity_log/activity_log.json +msgctxt "Activity Log" +msgid "Success" +msgstr "crwdns10910:0crwdne10910:0" + +#. Option for a Select field in DocType 'Data Import' +#: core/doctype/data_import/data_import.json +msgctxt "Data Import" +msgid "Success" +msgstr "crwdns10912:0crwdne10912:0" + +#. Label of a Check field in DocType 'Data Import Log' +#: core/doctype/data_import_log/data_import_log.json +msgctxt "Data Import Log" +msgid "Success" +msgstr "crwdns10914:0crwdne10914:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "Success" +msgstr "crwdns10916:0crwdne10916:0" + +#. Name of a DocType +#: core/doctype/success_action/success_action.json +msgid "Success Action" +msgstr "crwdns10918:0crwdne10918:0" + +#. Label of a Data field in DocType 'Module Onboarding' +#: desk/doctype/module_onboarding/module_onboarding.json +msgctxt "Module Onboarding" +msgid "Success Message" +msgstr "crwdns10920:0crwdne10920:0" + +#. Label of a Text field in DocType 'Web Form' +#: website/doctype/web_form/web_form.json +msgctxt "Web Form" +msgid "Success Message" +msgstr "crwdns10922:0crwdne10922:0" + +#. Label of a Data field in DocType 'Web Form' +#: website/doctype/web_form/web_form.json +msgctxt "Web Form" +msgid "Success Title" +msgstr "crwdns10924:0crwdne10924:0" + +#. Label of a Data field in DocType 'Token Cache' +#: integrations/doctype/token_cache/token_cache.json +msgctxt "Token Cache" +msgid "Success URI" +msgstr "crwdns10926:0crwdne10926:0" + +#. Label of a Data field in DocType 'Web Form' +#: website/doctype/web_form/web_form.json +msgctxt "Web Form" +msgid "Success URL" +msgstr "crwdns10928:0crwdne10928:0" + +#: www/update-password.html:79 +msgid "Success! You are good to go 👍" +msgstr "crwdns10930:0crwdne10930:0" + +#. Label of a Int field in DocType 'RQ Worker' +#: core/doctype/rq_worker/rq_worker.json +msgctxt "RQ Worker" +msgid "Successful Job Count" +msgstr "crwdns10932:0crwdne10932:0" + +#: model/workflow.py:306 +msgid "Successful Transactions" +msgstr "crwdns10934:0crwdne10934:0" + +#: model/rename_doc.py:683 +msgid "Successful: {0} to {1}" +msgstr "crwdns10936:0{0}crwdnd10936:0{1}crwdne10936:0" + +#: social/doctype/energy_point_settings/energy_point_settings.js:41 +msgid "Successfully Done" +msgstr "crwdns10938:0crwdne10938:0" + +#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:100 +#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:113 +msgid "Successfully Updated" +msgstr "crwdns10940:0crwdne10940:0" + +#: core/doctype/data_import/data_import.js:434 +msgid "Successfully imported {0}" +msgstr "crwdns10942:0{0}crwdne10942:0" + +#: desk/doctype/form_tour/form_tour.py:86 +msgid "Successfully reset onboarding status for all users." +msgstr "crwdns10944:0crwdne10944:0" + +#: public/js/frappe/views/translation_manager.js:22 +msgid "Successfully updated translations" +msgstr "crwdns10946:0crwdne10946:0" + +#: core/doctype/data_import/data_import.js:442 +msgid "Successfully updated {0}" +msgstr "crwdns10948:0{0}crwdne10948:0" + +#: core/doctype/data_import/data_import.js:149 +msgid "Successfully {0} 1 record." +msgstr "crwdns10950:0{0}crwdne10950:0" + +#: core/doctype/data_import/data_import.js:156 +msgid "Successfully {0} {1} record out of {2}. Click on Export Errored Rows, fix the errors and import again." +msgstr "crwdns10952:0{0}crwdnd10952:0{1}crwdnd10952:0{2}crwdne10952:0" + +#: core/doctype/data_import/data_import.js:161 +msgid "Successfully {0} {1} records out of {2}. Click on Export Errored Rows, fix the errors and import again." +msgstr "crwdns10954:0{0}crwdnd10954:0{1}crwdnd10954:0{2}crwdne10954:0" + +#: core/doctype/data_import/data_import.js:151 +msgid "Successfully {0} {1} records." +msgstr "crwdns10956:0{0}crwdnd10956:0{1}crwdne10956:0" + +#: core/doctype/user/user.py:679 +msgid "Suggested Username: {0}" +msgstr "crwdns10958:0{0}crwdne10958:0" + +#: public/js/frappe/ui/group_by/group_by.js:20 +msgid "Sum" +msgstr "crwdns10960:0crwdne10960:0" + +#. Option for a Select field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "Sum" +msgstr "crwdns10962:0crwdne10962:0" + +#. Option for a Select field in DocType 'Number Card' +#: desk/doctype/number_card/number_card.json +msgctxt "Number Card" +msgid "Sum" +msgstr "crwdns10964:0crwdne10964:0" + +#: public/js/frappe/ui/group_by/group_by.js:330 +msgid "Sum of {0}" +msgstr "crwdns10966:0{0}crwdne10966:0" + +#: public/js/frappe/views/interaction.js:88 +msgid "Summary" +msgstr "crwdns10968:0crwdne10968:0" + +#. Option for a Select field in DocType 'Assignment Rule Day' +#: automation/doctype/assignment_rule_day/assignment_rule_day.json +msgctxt "Assignment Rule Day" +msgid "Sunday" +msgstr "crwdns10970:0crwdne10970:0" + +#. Option for a Select field in DocType 'Auto Email Report' +#: email/doctype/auto_email_report/auto_email_report.json +msgctxt "Auto Email Report" +msgid "Sunday" +msgstr "crwdns10972:0crwdne10972:0" + +#. Option for a Select field in DocType 'Auto Repeat Day' +#: automation/doctype/auto_repeat_day/auto_repeat_day.json +msgctxt "Auto Repeat Day" +msgid "Sunday" +msgstr "crwdns10974:0crwdne10974:0" + +#. Label of a Check field in DocType 'Event' +#: desk/doctype/event/event.json +msgctxt "Event" +msgid "Sunday" +msgstr "crwdns10976:0crwdne10976:0" + +#. Option for a Select field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Sunday" +msgstr "crwdns10978:0crwdne10978:0" + +#: email/doctype/email_queue/email_queue_list.js:27 +msgid "Suspend Sending" +msgstr "crwdns10980:0crwdne10980:0" + +#: public/js/frappe/ui/capture.js:268 +msgid "Switch Camera" +msgstr "crwdns10982:0crwdne10982:0" + +#: public/js/frappe/desk.js:50 public/js/frappe/ui/theme_switcher.js:11 +msgid "Switch Theme" +msgstr "crwdns10984:0crwdne10984:0" + +#: templates/includes/navbar/navbar_login.html:17 +msgid "Switch To Desk" +msgstr "crwdns10986:0crwdne10986:0" + +#: public/js/frappe/ui/capture.js:273 +msgid "Switching Camera" +msgstr "crwdns10988:0crwdne10988:0" + +#. Label of a Data field in DocType 'Currency' +#: geo/doctype/currency/currency.json +msgctxt "Currency" +msgid "Symbol" +msgstr "crwdns10990:0crwdne10990:0" + +#. Label of a Section Break field in DocType 'Google Calendar' +#: integrations/doctype/google_calendar/google_calendar.json +msgctxt "Google Calendar" +msgid "Sync" +msgstr "crwdns10992:0crwdne10992:0" + +#. Label of a Section Break field in DocType 'Google Contacts' +#: integrations/doctype/google_contacts/google_contacts.json +msgctxt "Google Contacts" +msgid "Sync" +msgstr "crwdns10994:0crwdne10994:0" + +#: integrations/doctype/google_calendar/google_calendar.js:28 +msgid "Sync Calendar" +msgstr "crwdns10996:0crwdne10996:0" + +#: integrations/doctype/google_contacts/google_contacts.js:28 +msgid "Sync Contacts" +msgstr "crwdns10998:0crwdne10998:0" + +#: custom/doctype/customize_form/customize_form.js:214 +msgid "Sync on Migrate" +msgstr "crwdns11000:0crwdne11000:0" + +#: integrations/doctype/google_calendar/google_calendar.py:295 +msgid "Sync token was invalid and has been reset, Retry syncing." +msgstr "crwdns11002:0crwdne11002:0" + +#. Label of a Check field in DocType 'Event' +#: desk/doctype/event/event.json +msgctxt "Event" +msgid "Sync with Google Calendar" +msgstr "crwdns11004:0crwdne11004:0" + +#. Label of a Check field in DocType 'Contact' +#: contacts/doctype/contact/contact.json +msgctxt "Contact" +msgid "Sync with Google Contacts" +msgstr "crwdns11006:0crwdne11006:0" + +#: custom/doctype/doctype_layout/doctype_layout.js:46 +msgid "Sync {0} Fields" +msgstr "crwdns11008:0{0}crwdne11008:0" + +#: custom/doctype/doctype_layout/doctype_layout.js:100 +msgid "Synced Fields" +msgstr "crwdns11010:0crwdne11010:0" + +#: integrations/doctype/google_calendar/google_calendar.js:31 +#: integrations/doctype/google_contacts/google_contacts.js:31 +msgid "Syncing" +msgstr "crwdns11012:0crwdne11012:0" + +#: integrations/doctype/google_calendar/google_calendar.js:19 +msgid "Syncing {0} of {1}" +msgstr "crwdns11014:0{0}crwdnd11014:0{1}crwdne11014:0" + +#: utils/data.py:2424 +msgid "Syntax Error" +msgstr "crwdns11016:0crwdne11016:0" + +#. Option for a Select field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "System" +msgstr "crwdns11018:0crwdne11018:0" + +#. Name of a DocType +#: desk/doctype/system_console/system_console.json +msgid "System Console" +msgstr "crwdns11020:0crwdne11020:0" + +#: custom/doctype/custom_field/custom_field.py:358 +msgid "System Generated Fields can not be renamed" +msgstr "crwdns11022:0crwdne11022:0" + +#. Label of a Card Break in the Build Workspace +#: core/workspace/build/build.json +msgid "System Logs" +msgstr "crwdns11024:0crwdne11024:0" + +#. Name of a role +#: automation/doctype/assignment_rule/assignment_rule.json +#: automation/doctype/auto_repeat/auto_repeat.json +#: automation/doctype/milestone/milestone.json +#: automation/doctype/milestone_tracker/milestone_tracker.json +#: contacts/doctype/address/address.json +#: contacts/doctype/address_template/address_template.json +#: contacts/doctype/contact/contact.json contacts/doctype/gender/gender.json +#: contacts/doctype/salutation/salutation.json +#: core/doctype/access_log/access_log.json +#: core/doctype/activity_log/activity_log.json +#: core/doctype/audit_trail/audit_trail.json core/doctype/comment/comment.json +#: core/doctype/communication/communication.json +#: core/doctype/custom_docperm/custom_docperm.json +#: core/doctype/custom_role/custom_role.json +#: core/doctype/data_export/data_export.json +#: core/doctype/data_import/data_import.json +#: core/doctype/data_import_log/data_import_log.json +#: core/doctype/deleted_document/deleted_document.json +#: core/doctype/docshare/docshare.json core/doctype/doctype/doctype.json +#: core/doctype/document_naming_rule/document_naming_rule.json +#: core/doctype/document_naming_settings/document_naming_settings.json +#: core/doctype/document_share_key/document_share_key.json +#: core/doctype/domain/domain.json +#: core/doctype/domain_settings/domain_settings.json +#: core/doctype/error_log/error_log.json core/doctype/file/file.json +#: core/doctype/installed_applications/installed_applications.json +#: core/doctype/language/language.json +#: core/doctype/log_settings/log_settings.json +#: core/doctype/module_def/module_def.json +#: core/doctype/module_profile/module_profile.json +#: core/doctype/navbar_settings/navbar_settings.json +#: core/doctype/package/package.json +#: core/doctype/package_import/package_import.json +#: core/doctype/package_release/package_release.json +#: core/doctype/page/page.json core/doctype/patch_log/patch_log.json +#: core/doctype/permission_debugger/permission_debugger.json +#: core/doctype/prepared_report/prepared_report.json +#: core/doctype/report/report.json core/doctype/role/role.json +#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json +#: core/doctype/role_profile/role_profile.json core/doctype/rq_job/rq_job.json +#: core/doctype/rq_worker/rq_worker.json +#: core/doctype/scheduled_job_log/scheduled_job_log.json +#: core/doctype/scheduled_job_type/scheduled_job_type.json +#: core/doctype/session_default_settings/session_default_settings.json +#: core/doctype/sms_log/sms_log.json +#: core/doctype/sms_settings/sms_settings.json +#: core/doctype/submission_queue/submission_queue.json +#: core/doctype/success_action/success_action.json +#: core/doctype/system_settings/system_settings.json +#: core/doctype/translation/translation.json core/doctype/user/user.json +#: core/doctype/user_group/user_group.json +#: core/doctype/user_permission/user_permission.json +#: core/doctype/user_type/user_type.json core/doctype/version/version.json +#: core/doctype/view_log/view_log.json +#: custom/doctype/client_script/client_script.json +#: custom/doctype/custom_field/custom_field.json +#: custom/doctype/customize_form/customize_form.json +#: custom/doctype/doctype_layout/doctype_layout.json +#: custom/doctype/property_setter/property_setter.json +#: desk/doctype/bulk_update/bulk_update.json +#: desk/doctype/calendar_view/calendar_view.json +#: desk/doctype/console_log/console_log.json +#: desk/doctype/custom_html_block/custom_html_block.json +#: desk/doctype/dashboard/dashboard.json +#: desk/doctype/dashboard_chart/dashboard_chart.json +#: desk/doctype/dashboard_chart_source/dashboard_chart_source.json +#: desk/doctype/desktop_icon/desktop_icon.json desk/doctype/event/event.json +#: desk/doctype/form_tour/form_tour.json +#: desk/doctype/global_search_settings/global_search_settings.json +#: desk/doctype/kanban_board/kanban_board.json +#: desk/doctype/list_view_settings/list_view_settings.json +#: desk/doctype/module_onboarding/module_onboarding.json +#: desk/doctype/note/note.json desk/doctype/number_card/number_card.json +#: desk/doctype/route_history/route_history.json +#: desk/doctype/system_console/system_console.json desk/doctype/tag/tag.json +#: desk/doctype/tag_link/tag_link.json desk/doctype/todo/todo.json +#: email/doctype/auto_email_report/auto_email_report.json +#: email/doctype/document_follow/document_follow.json +#: email/doctype/email_account/email_account.json +#: email/doctype/email_domain/email_domain.json +#: email/doctype/email_flag_queue/email_flag_queue.json +#: email/doctype/email_queue/email_queue.json +#: email/doctype/email_rule/email_rule.json +#: email/doctype/email_template/email_template.json +#: email/doctype/email_unsubscribe/email_unsubscribe.json +#: email/doctype/notification/notification.json +#: email/doctype/unhandled_email/unhandled_email.json +#: geo/doctype/country/country.json geo/doctype/currency/currency.json +#: integrations/doctype/connected_app/connected_app.json +#: integrations/doctype/dropbox_settings/dropbox_settings.json +#: integrations/doctype/google_calendar/google_calendar.json +#: integrations/doctype/google_contacts/google_contacts.json +#: integrations/doctype/google_drive/google_drive.json +#: integrations/doctype/google_settings/google_settings.json +#: integrations/doctype/integration_request/integration_request.json +#: integrations/doctype/ldap_settings/ldap_settings.json +#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +#: integrations/doctype/oauth_bearer_token/oauth_bearer_token.json +#: integrations/doctype/oauth_client/oauth_client.json +#: integrations/doctype/oauth_provider_settings/oauth_provider_settings.json +#: integrations/doctype/s3_backup_settings/s3_backup_settings.json +#: integrations/doctype/slack_webhook_url/slack_webhook_url.json +#: integrations/doctype/social_login_key/social_login_key.json +#: integrations/doctype/token_cache/token_cache.json +#: integrations/doctype/webhook/webhook.json +#: integrations/doctype/webhook_request_log/webhook_request_log.json +#: printing/doctype/letter_head/letter_head.json +#: printing/doctype/network_printer_settings/network_printer_settings.json +#: printing/doctype/print_format/print_format.json +#: printing/doctype/print_format_field_template/print_format_field_template.json +#: printing/doctype/print_heading/print_heading.json +#: printing/doctype/print_settings/print_settings.json +#: printing/doctype/print_style/print_style.json +#: social/doctype/energy_point_log/energy_point_log.json +#: social/doctype/energy_point_rule/energy_point_rule.json +#: social/doctype/energy_point_settings/energy_point_settings.json +#: website/doctype/discussion_reply/discussion_reply.json +#: website/doctype/discussion_topic/discussion_topic.json +#: website/doctype/marketing_campaign/marketing_campaign.json +#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +#: website/doctype/personal_data_download_request/personal_data_download_request.json +#: website/doctype/web_page_view/web_page_view.json +#: website/doctype/web_template/web_template.json +#: website/doctype/website_route_meta/website_route_meta.json +#: workflow/doctype/workflow/workflow.json +#: workflow/doctype/workflow_action_master/workflow_action_master.json +#: workflow/doctype/workflow_state/workflow_state.json +msgid "System Manager" +msgstr "crwdns11026:0crwdne11026:0" + +#: desk/page/backups/backups.js:36 +msgid "System Manager privileges required." +msgstr "crwdns11028:0crwdne11028:0" + +#. Option for a Select field in DocType 'Notification' +#: email/doctype/notification/notification.json +msgctxt "Notification" +msgid "System Notification" +msgstr "crwdns11030:0crwdne11030:0" + +#. Label of a Section Break field in DocType 'Notification Settings' +#: desk/doctype/notification_settings/notification_settings.json +msgctxt "Notification Settings" +msgid "System Notifications" +msgstr "crwdns11032:0crwdne11032:0" + +#. Label of a Check field in DocType 'Page' +#: core/doctype/page/page.json +msgctxt "Page" +msgid "System Page" +msgstr "crwdns11034:0crwdne11034:0" + +#. Name of a DocType +#: core/doctype/system_settings/system_settings.json +msgid "System Settings" +msgstr "crwdns11036:0crwdne11036:0" + +#. Label of a shortcut in the Build Workspace +#: core/workspace/build/build.json +msgctxt "System Settings" +msgid "System Settings" +msgstr "crwdns11038:0crwdne11038:0" + +#. Description of a Table MultiSelect field in DocType 'Module Onboarding' +#: desk/doctype/module_onboarding/module_onboarding.json +msgctxt "Module Onboarding" +msgid "System managers are allowed by default" +msgstr "crwdns11040:0crwdne11040:0" + +#: public/js/frappe/utils/number_systems.js:5 +msgctxt "Number system" +msgid "T" +msgstr "crwdns11042:0crwdne11042:0" + +#. Option for a Select field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Tab Break" +msgstr "crwdns11044:0crwdne11044:0" + +#. Option for a Select field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Tab Break" +msgstr "crwdns11046:0crwdne11046:0" + +#. Option for a Select field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Tab Break" +msgstr "crwdns11048:0crwdne11048:0" + +#: core/doctype/data_export/exporter.py:23 +msgid "Table" +msgstr "crwdns11050:0crwdne11050:0" + +#. Option for a Select field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Table" +msgstr "crwdns11052:0crwdne11052:0" + +#. Option for a Select field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Table" +msgstr "crwdns11054:0crwdne11054:0" + +#. Option for a Select field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Table" +msgstr "crwdns11056:0crwdne11056:0" + +#. Option for a Select field in DocType 'Web Form Field' +#: website/doctype/web_form_field/web_form_field.json +msgctxt "Web Form Field" +msgid "Table" +msgstr "crwdns11058:0crwdne11058:0" + +#. Option for a Select field in DocType 'Web Template Field' +#: website/doctype/web_template_field/web_template_field.json +msgctxt "Web Template Field" +msgid "Table Break" +msgstr "crwdns11060:0crwdne11060:0" + +#. Label of a Data field in DocType 'DocType Link' +#: core/doctype/doctype_link/doctype_link.json +msgctxt "DocType Link" +msgid "Table Fieldname" +msgstr "crwdns11062:0crwdne11062:0" + +#: core/doctype/doctype/doctype.py:1154 +msgid "Table Fieldname Missing" +msgstr "crwdns11064:0crwdne11064:0" + +#. Label of a HTML field in DocType 'Version' +#: core/doctype/version/version.json +msgctxt "Version" +msgid "Table HTML" +msgstr "crwdns11066:0crwdne11066:0" + +#. Option for a Select field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Table MultiSelect" +msgstr "crwdns11068:0crwdne11068:0" + +#. Option for a Select field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Table MultiSelect" +msgstr "crwdns11070:0crwdne11070:0" + +#. Option for a Select field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Table MultiSelect" +msgstr "crwdns11072:0crwdne11072:0" + +#: public/js/frappe/form/grid.js:1132 +msgid "Table updated" +msgstr "crwdns11074:0crwdne11074:0" + +#: model/document.py:1366 +msgid "Table {0} cannot be empty" +msgstr "crwdns11076:0{0}crwdne11076:0" + +#. Option for a Select field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "Tabloid" +msgstr "crwdns11078:0crwdne11078:0" + +#. Name of a DocType +#: desk/doctype/tag/tag.json +msgid "Tag" +msgstr "crwdns11080:0crwdne11080:0" + +#. Name of a DocType +#: desk/doctype/tag_link/tag_link.json +msgid "Tag Link" +msgstr "crwdns11082:0crwdne11082:0" + +#: model/__init__.py:148 model/meta.py:51 +#: public/js/frappe/list/bulk_operations.js:365 +#: public/js/frappe/list/list_sidebar.js:226 public/js/frappe/model/meta.js:204 +#: public/js/frappe/model/model.js:123 +#: public/js/frappe/ui/toolbar/awesome_bar.js:171 +msgid "Tags" +msgstr "crwdns11084:0crwdne11084:0" + +#: integrations/doctype/google_drive/google_drive.js:28 +msgid "Take Backup" +msgstr "crwdns11086:0crwdne11086:0" + +#: integrations/doctype/dropbox_settings/dropbox_settings.js:39 +#: integrations/doctype/s3_backup_settings/s3_backup_settings.js:12 +msgid "Take Backup Now" +msgstr "crwdns11088:0crwdne11088:0" + +#: public/js/frappe/ui/capture.js:212 +msgid "Take Photo" +msgstr "crwdns11090:0crwdne11090:0" + +#. Label of a Data field in DocType 'Portal Menu Item' +#: website/doctype/portal_menu_item/portal_menu_item.json +msgctxt "Portal Menu Item" +msgid "Target" +msgstr "crwdns11092:0crwdne11092:0" + +#. Label of a Small Text field in DocType 'Website Route Redirect' +#: website/doctype/website_route_redirect/website_route_redirect.json +msgctxt "Website Route Redirect" +msgid "Target" +msgstr "crwdns11094:0crwdne11094:0" + +#: desk/doctype/todo/todo_calendar.js:19 desk/doctype/todo/todo_calendar.js:25 +msgid "Task" +msgstr "crwdns11096:0crwdne11096:0" + +#: www/about.html:45 +msgid "Team Members" +msgstr "crwdns11098:0crwdne11098:0" + +#. Label of a Section Break field in DocType 'About Us Settings' +#. Label of a Table field in DocType 'About Us Settings' +#: website/doctype/about_us_settings/about_us_settings.json +msgctxt "About Us Settings" +msgid "Team Members" +msgstr "crwdns11100:0crwdne11100:0" + +#. Label of a Data field in DocType 'About Us Settings' +#: website/doctype/about_us_settings/about_us_settings.json +msgctxt "About Us Settings" +msgid "Team Members Heading" +msgstr "crwdns11102:0crwdne11102:0" + +#. Label of a Small Text field in DocType 'About Us Settings' +#: website/doctype/about_us_settings/about_us_settings.json +msgctxt "About Us Settings" +msgid "Team Members Subtitle" +msgstr "crwdns11104:0crwdne11104:0" + +#. Label of a Section Break field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Telemetry" +msgstr "crwdns11106:0crwdne11106:0" + +#. Label of a Code field in DocType 'Address Template' +#: contacts/doctype/address_template/address_template.json +msgctxt "Address Template" +msgid "Template" +msgstr "crwdns11108:0crwdne11108:0" + +#. Label of a Link field in DocType 'Auto Repeat' +#: automation/doctype/auto_repeat/auto_repeat.json +msgctxt "Auto Repeat" +msgid "Template" +msgstr "crwdns11110:0crwdne11110:0" + +#. Label of a Code field in DocType 'Print Format Field Template' +#: printing/doctype/print_format_field_template/print_format_field_template.json +msgctxt "Print Format Field Template" +msgid "Template" +msgstr "crwdns11112:0crwdne11112:0" + +#. Label of a Code field in DocType 'Web Template' +#: website/doctype/web_template/web_template.json +msgctxt "Web Template" +msgid "Template" +msgstr "crwdns11114:0crwdne11114:0" + +#: core/doctype/data_import/importer.py:468 +#: core/doctype/data_import/importer.py:596 +msgid "Template Error" +msgstr "crwdns11116:0crwdne11116:0" + +#. Label of a Data field in DocType 'Print Format Field Template' +#: printing/doctype/print_format_field_template/print_format_field_template.json +msgctxt "Print Format Field Template" +msgid "Template File" +msgstr "crwdns11118:0crwdne11118:0" + +#. Label of a Code field in DocType 'Data Import' +#: core/doctype/data_import/data_import.json +msgctxt "Data Import" +msgid "Template Options" +msgstr "crwdns11120:0crwdne11120:0" + +#. Label of a Code field in DocType 'Data Import' +#: core/doctype/data_import/data_import.json +msgctxt "Data Import" +msgid "Template Warnings" +msgstr "crwdns11122:0crwdne11122:0" + +#: public/js/frappe/views/workspace/blocks/paragraph.js:78 +msgid "Templates" +msgstr "crwdns11124:0crwdne11124:0" + +#: core/doctype/user/user.py:983 +msgid "Temporarily Disabled" +msgstr "crwdns11126:0crwdne11126:0" + +#: email/doctype/newsletter/newsletter.py:94 +msgid "Test email sent to {0}" +msgstr "crwdns11128:0{0}crwdne11128:0" + +#: core/doctype/file/test_file.py:357 +msgid "Test_Folder" +msgstr "crwdns11130:0crwdne11130:0" + +#. Option for a Select field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Text" +msgstr "crwdns11132:0crwdne11132:0" + +#. Option for a Select field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Text" +msgstr "crwdns11134:0crwdne11134:0" + +#. Option for a Select field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Text" +msgstr "crwdns11136:0crwdne11136:0" + +#. Option for a Select field in DocType 'Web Form Field' +#: website/doctype/web_form_field/web_form_field.json +msgctxt "Web Form Field" +msgid "Text" +msgstr "crwdns11138:0crwdne11138:0" + +#. Option for a Select field in DocType 'Web Template Field' +#: website/doctype/web_template_field/web_template_field.json +msgctxt "Web Template Field" +msgid "Text" +msgstr "crwdns11140:0crwdne11140:0" + +#. Label of a Select field in DocType 'Web Page' +#: website/doctype/web_page/web_page.json +msgctxt "Web Page" +msgid "Text Align" +msgstr "crwdns11142:0crwdne11142:0" + +#. Label of a Link field in DocType 'Website Theme' +#: website/doctype/website_theme/website_theme.json +msgctxt "Website Theme" +msgid "Text Color" +msgstr "crwdns11144:0crwdne11144:0" + +#. Label of a Code field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Text Content" +msgstr "crwdns11146:0crwdne11146:0" + +#. Option for a Select field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Text Editor" +msgstr "crwdns11148:0crwdne11148:0" + +#. Option for a Select field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Text Editor" +msgstr "crwdns11150:0crwdne11150:0" + +#. Option for a Select field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Text Editor" +msgstr "crwdns11152:0crwdne11152:0" + +#. Option for a Select field in DocType 'Web Form Field' +#: website/doctype/web_form_field/web_form_field.json +msgctxt "Web Form Field" +msgid "Text Editor" +msgstr "crwdns11154:0crwdne11154:0" + +#: templates/emails/password_reset.html:5 +msgid "Thank you" +msgstr "crwdns11156:0crwdne11156:0" + +#: website/doctype/web_form/templates/web_form.html:137 +msgid "Thank you for spending your valuable time to fill this form" +msgstr "crwdns11158:0crwdne11158:0" + +#: templates/emails/auto_reply.html:1 +msgid "Thank you for your email" +msgstr "crwdns11160:0crwdne11160:0" + +#: website/doctype/help_article/templates/help_article.html:27 +msgid "Thank you for your feedback!" +msgstr "crwdns11162:0crwdne11162:0" + +#: email/doctype/newsletter/newsletter.py:332 +msgid "Thank you for your interest in subscribing to our updates" +msgstr "crwdns11164:0crwdne11164:0" + +#: templates/emails/new_user.html:16 +msgid "Thanks" +msgstr "crwdns11166:0crwdne11166:0" + +#: templates/emails/auto_repeat_fail.html:3 +msgid "The Auto Repeat for this document has been disabled." +msgstr "crwdns11168:0crwdne11168:0" + +#: public/js/frappe/form/grid.js:1155 +msgid "The CSV format is case sensitive" +msgstr "crwdns11170:0crwdne11170:0" + +#. Description of a Data field in DocType 'Google Settings' +#: integrations/doctype/google_settings/google_settings.json +msgctxt "Google Settings" +msgid "The Client ID obtained from the Google Cloud Console under \n" +"\"APIs & Services\" > \"Credentials\"\n" +"" +msgstr "crwdns11172:0crwdne11172:0" + +#: email/doctype/notification/notification.py:129 +msgid "The Condition '{0}' is invalid" +msgstr "crwdns11174:0{0}crwdne11174:0" + +#: core/doctype/file/file.py:205 +msgid "The File URL you've entered is incorrect" +msgstr "crwdns11176:0crwdne11176:0" + +#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:364 +msgid "The User record for this request has been auto-deleted due to inactivity by system admins." +msgstr "crwdns11178:0crwdne11178:0" + +#: public/js/frappe/desk.js:127 +msgid "The application has been updated to a new version, please refresh this page" +msgstr "crwdns11180:0crwdne11180:0" + +#. Description of a Data field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "The application name will be used in the Login page." +msgstr "crwdns11182:0crwdne11182:0" + +#: public/js/frappe/views/interaction.js:324 +msgid "The attachments could not be correctly linked to the new document" +msgstr "crwdns11184:0crwdne11184:0" + +#. Description of a Data field in DocType 'Google Settings' +#: integrations/doctype/google_settings/google_settings.json +msgctxt "Google Settings" +msgid "The browser API key obtained from the Google Cloud Console under \n" +"\"APIs & Services\" > \"Credentials\"\n" +"" +msgstr "crwdns11186:0crwdne11186:0" + +#: database/database.py:388 +msgid "The changes have been reverted." +msgstr "crwdns11188:0crwdne11188:0" + +#: core/doctype/data_import/importer.py:962 +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 "crwdns11190:0{0}crwdnd11190:0{1}crwdnd11190:0{2}crwdne11190:0" + +#: templates/includes/comments/comments.py:34 +msgid "The comment cannot be empty" +msgstr "crwdns11192:0crwdne11192:0" + +#: public/js/frappe/views/interaction.js:301 +msgid "The document could not be correctly assigned" +msgstr "crwdns11194:0crwdne11194:0" + +#: public/js/frappe/views/interaction.js:295 +msgid "The document has been assigned to {0}" +msgstr "crwdns11196:0{0}crwdne11196:0" + +#. Description of a Link field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "The document type selected is a child table, so the parent document type is required." +msgstr "crwdns11198:0crwdne11198:0" + +#. Description of a Link field in DocType 'Number Card' +#: desk/doctype/number_card/number_card.json +msgctxt "Number Card" +msgid "The document type selected is a child table, so the parent document type is required." +msgstr "crwdns11200:0crwdne11200:0" + +#: core/doctype/user_type/user_type.py:109 +msgid "The field {0} is mandatory" +msgstr "crwdns11202:0{0}crwdne11202:0" + +#: core/doctype/file/file.py:143 +msgid "The fieldname you've specified in Attached To Field is invalid" +msgstr "crwdns11204:0crwdne11204:0" + +#: core/doctype/data_import/importer.py:1035 +msgid "The following values are invalid: {0}. Values must be one of {1}" +msgstr "crwdns11206:0{0}crwdnd11206:0{1}crwdne11206:0" + +#: core/doctype/data_import/importer.py:998 +msgid "The following values do not exist for {0}: {1}" +msgstr "crwdns11208:0{0}crwdnd11208:0{1}crwdne11208:0" + +#: core/doctype/user_type/user_type.py:88 +msgid "The limit has not set for the user type {0} in the site config file." +msgstr "crwdns11210:0{0}crwdne11210:0" + +#: templates/emails/login_with_email_link.html:21 +msgid "The link will expire in {0} minutes" +msgstr "crwdns11212:0{0}crwdne11212:0" + +#: www/login.py:178 +msgid "The link you trying to login is invalid or expired." +msgstr "crwdns11214:0crwdne11214:0" + +#: 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 "crwdns11216:0crwdne11216:0" + +#: 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 "crwdns11218:0crwdne11218:0" + +#. Description of a Data field in DocType 'Google Calendar' +#: integrations/doctype/google_calendar/google_calendar.json +msgctxt "Google Calendar" +msgid "The name that will appear in Google Calendar" +msgstr "crwdns11220:0crwdne11220:0" + +#. Description of a Check field in DocType 'Form Tour' +#: desk/doctype/form_tour/form_tour.json +msgctxt "Form Tour" +msgid "The next tour will start from where the user left off." +msgstr "crwdns11222:0crwdne11222:0" + +#. Description of a Int field in DocType 'Webhook' +#: integrations/doctype/webhook/webhook.json +msgctxt "Webhook" +msgid "The number of seconds until the request expires" +msgstr "crwdns11224:0crwdne11224:0" + +#: www/404.html:18 +msgid "The page you are looking for has gone missing." +msgstr "crwdns11226:0crwdne11226:0" + +#: www/update-password.html:86 +msgid "The password of your account has expired." +msgstr "crwdns11228:0crwdne11228:0" + +#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:395 +msgid "The process for deletion of {0} data associated with {1} has been initiated." +msgstr "crwdns11230:0{0}crwdnd11230:0{1}crwdne11230:0" + +#. Description of a Data field in DocType 'Google Settings' +#: integrations/doctype/google_settings/google_settings.json +msgctxt "Google Settings" +msgid "The project number obtained from Google Cloud Console under \n" +"\"IAM & Admin\" > \"Settings\"\n" +"" +msgstr "crwdns11232:0crwdne11232:0" + +#: core/doctype/user/user.py:943 +msgid "The reset password link has been expired" +msgstr "crwdns11234:0crwdne11234:0" + +#: core/doctype/user/user.py:945 +msgid "The reset password link has either been used before or is invalid" +msgstr "crwdns11236:0crwdne11236:0" + +#: app.py:364 public/js/frappe/request.js:147 +msgid "The resource you are looking for is not available" +msgstr "crwdns11238:0crwdne11238:0" + +#: core/doctype/user_type/user_type.py:113 +msgid "The role {0} should be a custom role." +msgstr "crwdns11240:0{0}crwdne11240:0" + +#: core/doctype/audit_trail/audit_trail.py:45 +msgid "The selected document {0} is not a {1}." +msgstr "crwdns11242:0{0}crwdnd11242:0{1}crwdne11242:0" + +#: utils/response.py:317 +msgid "The system is being updated. Please refresh again after a few moments." +msgstr "crwdns11244:0crwdne11244:0" + +#: public/js/frappe/form/grid_row.js:615 +msgid "The total column width cannot be more than 10." +msgstr "crwdns11246:0crwdne11246:0" + +#: core/doctype/user_type/user_type.py:96 +msgid "The total number of user document types limit has been crossed." +msgstr "crwdns11248:0crwdne11248:0" + +#. Description of a Select field in DocType 'Energy Point Rule' +#: social/doctype/energy_point_rule/energy_point_rule.json +msgctxt "Energy Point Rule" +msgid "The user from this field will be rewarded points" +msgstr "crwdns11250:0crwdne11250:0" + +#: public/js/frappe/form/controls/data.js:24 +msgid "The value you pasted was {0} characters long. Max allowed characters is {1}." +msgstr "crwdns11252:0{0}crwdnd11252:0{1}crwdne11252:0" + +#. Description of a Small Text field in DocType 'Webhook' +#: integrations/doctype/webhook/webhook.json +msgctxt "Webhook" +msgid "The webhook will be triggered if this expression is true" +msgstr "crwdns11254:0crwdne11254:0" + +#: automation/doctype/auto_repeat/auto_repeat.py:168 +msgid "The {0} is already on auto repeat {1}" +msgstr "crwdns11256:0{0}crwdnd11256:0{1}crwdne11256:0" + +#. Label of a Section Break field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Theme" +msgstr "crwdns11258:0crwdne11258:0" + +#. Label of a Data field in DocType 'Website Theme' +#. Label of a Code field in DocType 'Website Theme' +#: website/doctype/website_theme/website_theme.json +msgctxt "Website Theme" +msgid "Theme" +msgstr "crwdns11260:0crwdne11260:0" + +#: public/js/frappe/ui/theme_switcher.js:130 +msgid "Theme Changed" +msgstr "crwdns11262:0crwdne11262:0" + +#. Label of a Tab Break field in DocType 'Website Theme' +#: website/doctype/website_theme/website_theme.json +msgctxt "Website Theme" +msgid "Theme Configuration" +msgstr "crwdns11264:0crwdne11264:0" + +#. Label of a Data field in DocType 'Website Theme' +#: website/doctype/website_theme/website_theme.json +msgctxt "Website Theme" +msgid "Theme URL" +msgstr "crwdns11266:0crwdne11266:0" + +#: website/web_template/discussions/discussions.html:3 +msgid "There are no {0} for this {1}, why don't you start one!" +msgstr "crwdns11268:0{0}crwdnd11268:0{1}crwdne11268:0" + +#: website/doctype/web_form/web_form.js:72 +#: website/doctype/web_form/web_form.js:308 +msgid "There can be only 9 Page Break fields in a Web Form" +msgstr "crwdns11270:0crwdne11270:0" + +#: core/doctype/doctype/doctype.py:1394 +msgid "There can be only one Fold in a form" +msgstr "crwdns11272:0crwdne11272:0" + +#: contacts/doctype/address/address.py:185 +msgid "There is an error in your Address Template {0}" +msgstr "crwdns11274:0{0}crwdne11274:0" + +#: core/doctype/data_export/exporter.py:162 +msgid "There is no data to be exported" +msgstr "crwdns11276:0crwdne11276:0" + +#: core/doctype/file/file.py:571 utils/file_manager.py:376 +msgid "There is some problem with the file url: {0}" +msgstr "crwdns11278:0{0}crwdne11278:0" + +#: core/page/permission_manager/permission_manager.py:150 +msgid "There must be atleast one permission rule." +msgstr "crwdns11280:0crwdne11280:0" + +#: core/doctype/user/user.py:499 +msgid "There should remain at least one System Manager" +msgstr "crwdns11282:0crwdne11282:0" + +#: www/error.py:16 +msgid "There was an error building this page" +msgstr "crwdns11284:0crwdne11284:0" + +#: public/js/frappe/views/kanban/kanban_view.js:180 +msgid "There was an error saving filters" +msgstr "crwdns11286:0crwdne11286:0" + +#: public/js/frappe/form/sidebar/attachments.js:201 +msgid "There were errors" +msgstr "crwdns11288:0crwdne11288:0" + +#: public/js/frappe/views/interaction.js:276 +msgid "There were errors while creating the document. Please try again." +msgstr "crwdns11290:0crwdne11290:0" + +#: public/js/frappe/views/communication.js:724 +msgid "There were errors while sending email. Please try again." +msgstr "crwdns11292:0crwdne11292:0" + +#: model/naming.py:449 +msgid "There were some errors setting the name, please contact the administrator" +msgstr "crwdns11294:0crwdne11294:0" + +#: www/404.html:15 +msgid "There's nothing here" +msgstr "crwdns11296:0crwdne11296:0" + +#. Description of a Section Break field in DocType 'LDAP Settings' +#: integrations/doctype/ldap_settings/ldap_settings.json +msgctxt "LDAP Settings" +msgid "These settings are required if 'Custom' LDAP Directory is used" +msgstr "crwdns11298:0crwdne11298:0" + +#. Description of a Section Break field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +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 "crwdns11300:0crwdne11300:0" + +#: www/third_party_apps.html:3 www/third_party_apps.html:13 +msgid "Third Party Apps" +msgstr "crwdns11302:0crwdne11302:0" + +#. Label of a Section Break field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Third Party Authentication" +msgstr "crwdns11304:0crwdne11304:0" + +#: geo/doctype/currency/currency.js:8 +msgid "This Currency is disabled. Enable to use in transactions" +msgstr "crwdns11306:0crwdne11306:0" + +#: geo/utils.py:84 +msgid "This Doctype does not contain latitude and longitude fields" +msgstr "crwdns11308:0crwdne11308:0" + +#: geo/utils.py:67 +msgid "This Doctype does not contain location fields" +msgstr "crwdns11310:0crwdne11310:0" + +#: public/js/frappe/views/kanban/kanban_view.js:388 +msgid "This Kanban Board will be private" +msgstr "crwdns11312:0crwdne11312:0" + +#: __init__.py:900 +msgid "This action is only allowed for {}" +msgstr "crwdns11314:0crwdne11314:0" + +#: public/js/frappe/form/toolbar.js:107 public/js/frappe/model/model.js:720 +msgid "This cannot be undone" +msgstr "crwdns11316:0crwdne11316:0" + +#. Description of a Check field in DocType 'Number Card' +#: desk/doctype/number_card/number_card.json +msgctxt "Number Card" +msgid "This card will be available to all Users if this is set" +msgstr "crwdns11318:0crwdne11318:0" + +#. Description of a Check field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "This chart will be available to all Users if this is set" +msgstr "crwdns11320:0crwdne11320:0" + +#: desk/doctype/workspace/workspace.js:23 +msgid "This document allows you to edit limited fields. For all kinds of workspace customization, use the Edit button located on the workspace page" +msgstr "crwdns11322:0crwdne11322:0" + +#: social/doctype/energy_point_log/energy_point_log.py:90 +msgid "This document cannot be reverted" +msgstr "crwdns11324:0crwdne11324:0" + +#: www/confirm_workflow_action.html:8 +msgid "This document has been modified after the email was sent." +msgstr "crwdns11326:0crwdne11326:0" + +#: social/doctype/energy_point_log/energy_point_log.js:8 +msgid "This document has been reverted" +msgstr "crwdns11328:0crwdne11328:0" + +#: public/js/frappe/form/form.js:1075 +msgid "This document is already amended, you cannot ammend it again" +msgstr "crwdns11330:0crwdne11330:0" + +#: model/document.py:1518 +msgid "This document is currently queued for execution. Please try again" +msgstr "crwdns11332:0crwdne11332:0" + +#: templates/emails/auto_repeat_fail.html:7 +msgid "This email is autogenerated" +msgstr "crwdns11334:0crwdne11334:0" + +#: printing/doctype/network_printer_settings/network_printer_settings.py:29 +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 "crwdns11336:0crwdne11336:0" + +#. Description of a Code field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "This field will appear only if the fieldname defined here has value OR the rules are true (examples):\n" +"myfield\n" +"eval:doc.myfield=='My Value'\n" +"eval:doc.age>18" +msgstr "crwdns11338:0crwdne11338:0" + +#: core/doctype/file/file.js:10 +msgid "This file is public. It can be accessed without authentication." +msgstr "crwdns11340:0crwdne11340:0" + +#: public/js/frappe/form/form.js:1172 +msgid "This form has been modified after you have loaded it" +msgstr "crwdns11342:0crwdne11342:0" + +#: public/js/frappe/form/form.js:457 +msgid "This form is not editable due to a Workflow." +msgstr "crwdns11344:0crwdne11344:0" + +#. Description of a Check field in DocType 'Address Template' +#: contacts/doctype/address_template/address_template.json +msgctxt "Address Template" +msgid "This format is used if country specific format is not found" +msgstr "crwdns11346:0crwdne11346:0" + +#. Description of a HTML Editor field in DocType 'Website Slideshow' +#: website/doctype/website_slideshow/website_slideshow.json +msgctxt "Website Slideshow" +msgid "This goes above the slideshow." +msgstr "crwdns11348:0crwdne11348:0" + +#: public/js/frappe/views/reports/query_report.js:1995 +msgid "This is a background report. Please set the appropriate filters and then generate a new one." +msgstr "crwdns11350:0crwdne11350:0" + +#: utils/password_strength.py:162 +msgid "This is a top-10 common password." +msgstr "crwdns11352:0crwdne11352:0" + +#: utils/password_strength.py:164 +msgid "This is a top-100 common password." +msgstr "crwdns11354:0crwdne11354:0" + +#: utils/password_strength.py:166 +msgid "This is a very common password." +msgstr "crwdns11356:0crwdne11356:0" + +#: core/doctype/rq_job/rq_job.js:9 +msgid "This is a virtual doctype and data is cleared periodically." +msgstr "crwdns11358:0crwdne11358:0" + +#: templates/emails/auto_reply.html:5 +msgid "This is an automatically generated reply" +msgstr "crwdns11360:0crwdne11360:0" + +#. Description of a HTML field in DocType 'Blog Post' +#: website/doctype/blog_post/blog_post.json +msgctxt "Blog Post" +msgid "This is an example Google SERP Preview." +msgstr "crwdns11362:0crwdne11362:0" + +#: utils/password_strength.py:168 +msgid "This is similar to a commonly used password." +msgstr "crwdns11364:0crwdne11364:0" + +#. Description of a Int field in DocType 'Document Naming Settings' +#: core/doctype/document_naming_settings/document_naming_settings.json +msgctxt "Document Naming Settings" +msgid "This is the number of the last created transaction with this prefix" +msgstr "crwdns11366:0crwdne11366:0" + +#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:404 +msgid "This link has already been activated for verification." +msgstr "crwdns11368:0crwdne11368:0" + +#: utils/verified_command.py:49 +msgid "This link is invalid or expired. Please make sure you have pasted correctly." +msgstr "crwdns11370:0crwdne11370:0" + +#: printing/page/print/print.js:403 +msgid "This may get printed on multiple pages" +msgstr "crwdns11372:0crwdne11372:0" + +#: utils/goal.py:109 +msgid "This month" +msgstr "crwdns11374:0crwdne11374:0" + +#: email/doctype/newsletter/newsletter.js:223 +msgid "This newsletter is scheduled to be sent on {0}" +msgstr "crwdns11376:0{0}crwdne11376:0" + +#: email/doctype/newsletter/newsletter.js:50 +msgid "This newsletter was scheduled to send on a later date. Are you sure you want to send it now?" +msgstr "crwdns11378:0crwdne11378:0" + +#: templates/emails/auto_email_report.html:57 +msgid "This report was generated on {0}" +msgstr "crwdns11380:0{0}crwdne11380:0" + +#: public/js/frappe/views/reports/query_report.js:782 +msgid "This report was generated {0}." +msgstr "crwdns11382:0{0}crwdne11382:0" + +#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:118 +msgid "This request has not yet been approved by the user." +msgstr "crwdns11384:0crwdne11384:0" + +#: templates/includes/navbar/navbar_items.html:95 +msgid "This site is in read only mode, full functionality will be restored soon." +msgstr "crwdns11386:0crwdne11386:0" + +#: core/doctype/doctype/doctype.js:76 +msgid "This site is running in developer mode. Any change made here will be updated in code." +msgstr "crwdns11388:0crwdne11388:0" + +#: 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 "crwdns11390:0crwdne11390:0" + +#: public/js/frappe/form/controls/base_input.js:120 +msgid "This value is fetched from {0}'s {1} field" +msgstr "crwdns11392:0{0}crwdnd11392:0{1}crwdne11392:0" + +#: 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 "crwdns11394:0crwdne11394:0" + +#. Description of a Small Text field in DocType 'Onboarding Step' +#: desk/doctype/onboarding_step/onboarding_step.json +msgctxt "Onboarding Step" +msgid "This will be shown in a modal after routing" +msgstr "crwdns11396:0crwdne11396:0" + +#. Description of a Data field in DocType 'Onboarding Step' +#: desk/doctype/onboarding_step/onboarding_step.json +msgctxt "Onboarding Step" +msgid "This will be shown to the user in a dialog after routing to the report" +msgstr "crwdns11398:0crwdne11398:0" + +#: www/third_party_apps.html:21 +msgid "This will log out {0} from all other devices" +msgstr "crwdns11400:0{0}crwdne11400:0" + +#: templates/emails/delete_data_confirmation.html:3 +msgid "This will permanently remove your data." +msgstr "crwdns11402:0crwdne11402:0" + +#: desk/doctype/form_tour/form_tour.js:103 +msgid "This will reset this tour and show it to all users. Are you sure?" +msgstr "crwdns11404:0crwdne11404:0" + +#: core/doctype/rq_job/rq_job.js:15 +msgid "This will terminate the job immediately and might be dangerous, are you sure? " +msgstr "crwdns11406:0crwdne11406:0" + +#: core/doctype/user/user.py:1208 +msgid "Throttled" +msgstr "crwdns11408:0crwdne11408:0" + +#. Label of a Small Text field in DocType 'File' +#: core/doctype/file/file.json +msgctxt "File" +msgid "Thumbnail URL" +msgstr "crwdns11410:0crwdne11410:0" + +#. Option for a Select field in DocType 'Assignment Rule Day' +#: automation/doctype/assignment_rule_day/assignment_rule_day.json +msgctxt "Assignment Rule Day" +msgid "Thursday" +msgstr "crwdns11412:0crwdne11412:0" + +#. Option for a Select field in DocType 'Auto Email Report' +#: email/doctype/auto_email_report/auto_email_report.json +msgctxt "Auto Email Report" +msgid "Thursday" +msgstr "crwdns11414:0crwdne11414:0" + +#. Option for a Select field in DocType 'Auto Repeat Day' +#: automation/doctype/auto_repeat_day/auto_repeat_day.json +msgctxt "Auto Repeat Day" +msgid "Thursday" +msgstr "crwdns11416:0crwdne11416:0" + +#. Label of a Check field in DocType 'Event' +#: desk/doctype/event/event.json +msgctxt "Event" +msgid "Thursday" +msgstr "crwdns11418:0crwdne11418:0" + +#. Option for a Select field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Thursday" +msgstr "crwdns11420:0crwdne11420:0" + +#: email/doctype/newsletter/newsletter.js:118 +msgid "Time" +msgstr "crwdns11422:0crwdne11422:0" + +#. Option for a Select field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Time" +msgstr "crwdns11424:0crwdne11424:0" + +#. Option for a Select field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Time" +msgstr "crwdns11426:0crwdne11426:0" + +#. Option for a Select field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Time" +msgstr "crwdns11428:0crwdne11428:0" + +#. Label of a Datetime field in DocType 'Recorder' +#: core/doctype/recorder/recorder.json +msgctxt "Recorder" +msgid "Time" +msgstr "crwdns11430:0crwdne11430:0" + +#. Option for a Select field in DocType 'Report Column' +#: core/doctype/report_column/report_column.json +msgctxt "Report Column" +msgid "Time" +msgstr "crwdns11432:0crwdne11432:0" + +#. Option for a Select field in DocType 'Report Filter' +#: core/doctype/report_filter/report_filter.json +msgctxt "Report Filter" +msgid "Time" +msgstr "crwdns11434:0crwdne11434:0" + +#. Option for a Select field in DocType 'Web Form Field' +#: website/doctype/web_form_field/web_form_field.json +msgctxt "Web Form Field" +msgid "Time" +msgstr "crwdns11436:0crwdne11436:0" + +#. Label of a Select field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Time Format" +msgstr "crwdns11438:0crwdne11438:0" + +#. Label of a Select field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "Time Interval" +msgstr "crwdns11440:0crwdne11440:0" + +#. Label of a Check field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "Time Series" +msgstr "crwdns11442:0crwdne11442:0" + +#. Label of a Select field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "Time Series Based On" +msgstr "crwdns11444:0crwdne11444:0" + +#. Label of a Duration field in DocType 'RQ Job' +#: core/doctype/rq_job/rq_job.json +msgctxt "RQ Job" +msgid "Time Taken" +msgstr "crwdns11446:0crwdne11446:0" + +#. Label of a Int field in DocType 'Server Script' +#: core/doctype/server_script/server_script.json +msgctxt "Server Script" +msgid "Time Window (Seconds)" +msgstr "crwdns11448:0crwdne11448:0" + +#: desk/page/setup_wizard/setup_wizard.js:395 +msgid "Time Zone" +msgstr "crwdns11450:0crwdne11450:0" + +#. Label of a Select field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Time Zone" +msgstr "crwdns11452:0crwdne11452:0" + +#. Label of a Autocomplete field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Time Zone" +msgstr "crwdns11454:0crwdne11454:0" + +#. Label of a Data field in DocType 'Web Page View' +#: website/doctype/web_page_view/web_page_view.json +msgctxt "Web Page View" +msgid "Time Zone" +msgstr "crwdns11456:0crwdne11456:0" + +#. Label of a Text field in DocType 'Country' +#: geo/doctype/country/country.json +msgctxt "Country" +msgid "Time Zones" +msgstr "crwdns11458:0crwdne11458:0" + +#. Label of a Data field in DocType 'Country' +#: geo/doctype/country/country.json +msgctxt "Country" +msgid "Time format" +msgstr "crwdns11460:0crwdne11460:0" + +#. Label of a Float field in DocType 'Recorder' +#: core/doctype/recorder/recorder.json +msgctxt "Recorder" +msgid "Time in Queries" +msgstr "crwdns11462:0crwdne11462:0" + +#. Description of a Int field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Time in seconds to retain QR code image on server. Min:240" +msgstr "crwdns11464:0crwdne11464:0" + +#: desk/doctype/dashboard_chart/dashboard_chart.py:413 +msgid "Time series based on is required to create a dashboard chart" +msgstr "crwdns11466:0crwdne11466:0" + +#: public/js/frappe/form/controls/time.js:104 +msgid "Time {0} must be in format: {1}" +msgstr "crwdns11468:0{0}crwdnd11468:0{1}crwdne11468:0" + +#. Option for a Select field in DocType 'Data Import' +#: core/doctype/data_import/data_import.json +msgctxt "Data Import" +msgid "Timed Out" +msgstr "crwdns11470:0crwdne11470:0" + +#: public/js/frappe/ui/theme_switcher.js:64 +msgid "Timeless Night" +msgstr "crwdns11472:0crwdne11472:0" + +#. Label of a Check field in DocType 'Role' +#: core/doctype/role/role.json +msgctxt "Role" +msgid "Timeline" +msgstr "crwdns11474:0crwdne11474:0" + +#. Label of a Link field in DocType 'Activity Log' +#: core/doctype/activity_log/activity_log.json +msgctxt "Activity Log" +msgid "Timeline DocType" +msgstr "crwdns11476:0crwdne11476:0" + +#. Label of a Data field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Timeline Field" +msgstr "crwdns11478:0crwdne11478:0" + +#. Label of a Section Break field in DocType 'Communication' +#. Label of a Table field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Timeline Links" +msgstr "crwdns11480:0crwdne11480:0" + +#. Label of a Dynamic Link field in DocType 'Activity Log' +#: core/doctype/activity_log/activity_log.json +msgctxt "Activity Log" +msgid "Timeline Name" +msgstr "crwdns11482:0crwdne11482:0" + +#: core/doctype/doctype/doctype.py:1489 +msgid "Timeline field must be a Link or Dynamic Link" +msgstr "crwdns11484:0crwdne11484:0" + +#: core/doctype/doctype/doctype.py:1485 +msgid "Timeline field must be a valid fieldname" +msgstr "crwdns11486:0crwdne11486:0" + +#. Label of a Duration field in DocType 'RQ Job' +#: core/doctype/rq_job/rq_job.json +msgctxt "RQ Job" +msgid "Timeout" +msgstr "crwdns11488:0crwdne11488:0" + +#. Label of a Check field in DocType 'Dashboard Chart Source' +#: desk/doctype/dashboard_chart_source/dashboard_chart_source.json +msgctxt "Dashboard Chart Source" +msgid "Timeseries" +msgstr "crwdns11490:0crwdne11490:0" + +#: desk/page/leaderboard/leaderboard.js:123 +#: public/js/frappe/ui/filters/filter.js:28 +msgid "Timespan" +msgstr "crwdns11492:0crwdne11492:0" + +#. Label of a Select field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "Timespan" +msgstr "crwdns11494:0crwdne11494:0" + +#: core/report/transaction_log_report/transaction_log_report.py:112 +msgid "Timestamp" +msgstr "crwdns11496:0crwdne11496:0" + +#. Label of a Datetime field in DocType 'Access Log' +#: core/doctype/access_log/access_log.json +msgctxt "Access Log" +msgid "Timestamp" +msgstr "crwdns11498:0crwdne11498:0" + +#. Label of a Datetime field in DocType 'Transaction Log' +#: core/doctype/transaction_log/transaction_log.json +msgctxt "Transaction Log" +msgid "Timestamp" +msgstr "crwdns11500:0crwdne11500:0" + +#: public/js/form_builder/store.js:89 +#: public/js/frappe/views/workspace/workspace.js:599 +#: public/js/frappe/views/workspace/workspace.js:928 +#: public/js/frappe/views/workspace/workspace.js:1175 +msgid "Title" +msgstr "crwdns11502:0crwdne11502:0" + +#. Label of a Data field in DocType 'Blog Category' +#: website/doctype/blog_category/blog_category.json +msgctxt "Blog Category" +msgid "Title" +msgstr "crwdns11504:0crwdne11504:0" + +#. Label of a Data field in DocType 'Blog Post' +#: website/doctype/blog_post/blog_post.json +msgctxt "Blog Post" +msgid "Title" +msgstr "crwdns11506:0crwdne11506:0" + +#. Label of a Data field in DocType 'Blog Settings' +#: website/doctype/blog_settings/blog_settings.json +msgctxt "Blog Settings" +msgid "Title" +msgstr "crwdns11508:0crwdne11508:0" + +#. Label of a Data field in DocType 'Discussion Topic' +#: website/doctype/discussion_topic/discussion_topic.json +msgctxt "Discussion Topic" +msgid "Title" +msgstr "crwdns11510:0crwdne11510:0" + +#. Label of a Data field in DocType 'DocType State' +#: core/doctype/doctype_state/doctype_state.json +msgctxt "DocType State" +msgid "Title" +msgstr "crwdns11512:0crwdne11512:0" + +#. Label of a Data field in DocType 'Email Group' +#: email/doctype/email_group/email_group.json +msgctxt "Email Group" +msgid "Title" +msgstr "crwdns11514:0crwdne11514:0" + +#. Label of a Data field in DocType 'Error Log' +#: core/doctype/error_log/error_log.json +msgctxt "Error Log" +msgid "Title" +msgstr "crwdns11516:0crwdne11516:0" + +#. Label of a Data field in DocType 'Form Tour' +#: desk/doctype/form_tour/form_tour.json +msgctxt "Form Tour" +msgid "Title" +msgstr "crwdns11518:0crwdne11518:0" + +#. Label of a Data field in DocType 'Form Tour Step' +#: desk/doctype/form_tour_step/form_tour_step.json +msgctxt "Form Tour Step" +msgid "Title" +msgstr "crwdns11520:0crwdne11520:0" + +#. Label of a Data field in DocType 'Help Article' +#: website/doctype/help_article/help_article.json +msgctxt "Help Article" +msgid "Title" +msgstr "crwdns11522:0crwdne11522:0" + +#. Label of a Data field in DocType 'Module Onboarding' +#: desk/doctype/module_onboarding/module_onboarding.json +msgctxt "Module Onboarding" +msgid "Title" +msgstr "crwdns11524:0crwdne11524:0" + +#. Label of a Data field in DocType 'Note' +#: desk/doctype/note/note.json +msgctxt "Note" +msgid "Title" +msgstr "crwdns11526:0crwdne11526:0" + +#. Label of a Data field in DocType 'Onboarding Step' +#: desk/doctype/onboarding_step/onboarding_step.json +msgctxt "Onboarding Step" +msgid "Title" +msgstr "crwdns11528:0crwdne11528:0" + +#. Label of a Data field in DocType 'Page' +#: core/doctype/page/page.json +msgctxt "Page" +msgid "Title" +msgstr "crwdns11530:0crwdne11530:0" + +#. Label of a Data field in DocType 'Portal Menu Item' +#: website/doctype/portal_menu_item/portal_menu_item.json +msgctxt "Portal Menu Item" +msgid "Title" +msgstr "crwdns11532:0crwdne11532:0" + +#. Label of a Data field in DocType 'Web Form' +#: website/doctype/web_form/web_form.json +msgctxt "Web Form" +msgid "Title" +msgstr "crwdns11534:0crwdne11534:0" + +#. Label of a Data field in DocType 'Web Page' +#: website/doctype/web_page/web_page.json +msgctxt "Web Page" +msgid "Title" +msgstr "crwdns11536:0crwdne11536:0" + +#. Label of a Data field in DocType 'Website Sidebar' +#: website/doctype/website_sidebar/website_sidebar.json +msgctxt "Website Sidebar" +msgid "Title" +msgstr "crwdns11538:0crwdne11538:0" + +#. Label of a Data field in DocType 'Website Sidebar Item' +#: website/doctype/website_sidebar_item/website_sidebar_item.json +msgctxt "Website Sidebar Item" +msgid "Title" +msgstr "crwdns11540:0crwdne11540:0" + +#. Label of a Data field in DocType 'Workspace' +#: desk/doctype/workspace/workspace.json +msgctxt "Workspace" +msgid "Title" +msgstr "crwdns11542:0crwdne11542:0" + +#. Label of a Data field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Title Field" +msgstr "crwdns11544:0crwdne11544:0" + +#. Label of a Data field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Title Field" +msgstr "crwdns11546:0crwdne11546:0" + +#. Label of a Data field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Title Prefix" +msgstr "crwdns11548:0crwdne11548:0" + +#: core/doctype/doctype/doctype.py:1426 +msgid "Title field must be a valid fieldname" +msgstr "crwdns11550:0crwdne11550:0" + +#: website/doctype/web_page/web_page.js:70 +msgid "Title of the page" +msgstr "crwdns11552:0crwdne11552:0" + +#: public/js/frappe/views/communication.js:52 +#: public/js/frappe/views/inbox/inbox_view.js:70 +msgid "To" +msgstr "crwdns11554:0crwdne11554:0" + +#. Label of a Code field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "To" +msgstr "crwdns11556:0crwdne11556:0" + +#. Label of a Section Break field in DocType 'Newsletter' +#: email/doctype/newsletter/newsletter.json +msgctxt "Newsletter" +msgid "To" +msgstr "crwdns11558:0crwdne11558:0" + +#: website/report/website_analytics/website_analytics.js:14 +msgid "To Date" +msgstr "crwdns11560:0crwdne11560:0" + +#. Label of a Date field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "To Date" +msgstr "crwdns11562:0crwdne11562:0" + +#. Label of a Select field in DocType 'Auto Email Report' +#: email/doctype/auto_email_report/auto_email_report.json +msgctxt "Auto Email Report" +msgid "To Date Field" +msgstr "crwdns11564:0crwdne11564:0" + +#: desk/doctype/todo/todo_list.js:12 +msgid "To Do" +msgstr "crwdns11566:0crwdne11566:0" + +#. Label of a Link in the Tools Workspace +#: automation/workspace/tools/tools.json +msgctxt "ToDo" +msgid "To Do" +msgstr "crwdns11568:0crwdne11568:0" + +#: public/js/frappe/form/sidebar/review.js:50 +msgid "To User" +msgstr "crwdns11570:0crwdne11570:0" + +#. Description of a Data field in DocType 'Auto Repeat' +#: automation/doctype/auto_repeat/auto_repeat.json +msgctxt "Auto Repeat" +msgid "To add dynamic subject, use jinja tags like\n\n" +"
New {{ doc.doctype }} #{{ doc.name }}
" +msgstr "crwdns11572:0{{ doc.doctype }}crwdnd11572:0{{ doc.name }}crwdne11572:0" + +#. Description of a Data field in DocType 'Notification' +#: email/doctype/notification/notification.json +msgctxt "Notification" +msgid "To add dynamic subject, use jinja tags like\n\n" +"
{{ doc.name }} Delivered
" +msgstr "crwdns11574:0{{ doc.name }}crwdne11574:0" + +#. Description of a Code field in DocType 'Webhook' +#: integrations/doctype/webhook/webhook.json +msgctxt "Webhook" +msgid "To add dynamic values from the document, use jinja tags like\n\n" +"
\n" +"
{ \"id\": \"{{ doc.name }}\" }\n"
+"
\n" +"
" +msgstr "crwdns11576:0{{ doc.name }}crwdne11576:0" + +#: email/doctype/auto_email_report/auto_email_report.py:101 +msgid "To allow more reports update limit in System Settings." +msgstr "crwdns11578:0crwdne11578:0" + +#. Label of a Section Break field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "To and CC" +msgstr "crwdns11580:0crwdne11580:0" + +#: automation/doctype/auto_repeat/auto_repeat.js:35 +msgid "To configure Auto Repeat, enable \"Allow Auto Repeat\" from {0}." +msgstr "crwdns11582:0{0}crwdne11582:0" + +#: www/login.html:73 +msgid "To enable it follow the instructions in the following link: {0}" +msgstr "crwdns11584:0{0}crwdne11584:0" + +#: 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 "crwdns11586:0crwdne11586:0" + +#: public/js/frappe/views/reports/query_report.js:783 +msgid "To get the updated report, click on {0}." +msgstr "crwdns11588:0{0}crwdne11588:0" + +#: www/me.html:51 +msgid "To manage your authorized third party apps" +msgstr "crwdns11590:0crwdne11590:0" + +#. Description of a Code field in DocType 'System Console' +#: desk/doctype/system_console/system_console.json +msgctxt "System Console" +msgid "To print output use print(text)" +msgstr "crwdns11592:0crwdne11592:0" + +#: core/doctype/user_type/user_type.py:295 +msgid "To set the role {0} in the user {1}, kindly set the {2} field as {3} in one of the {4} record." +msgstr "crwdns11594:0{0}crwdnd11594:0{1}crwdnd11594:0{2}crwdnd11594:0{3}crwdnd11594:0{4}crwdne11594:0" + +#: integrations/doctype/google_calendar/google_calendar.js:8 +msgid "To use Google Calendar, enable {0}." +msgstr "crwdns11596:0{0}crwdne11596:0" + +#: integrations/doctype/google_contacts/google_contacts.js:8 +msgid "To use Google Contacts, enable {0}." +msgstr "crwdns11598:0{0}crwdne11598:0" + +#: integrations/doctype/google_drive/google_drive.js:8 +msgid "To use Google Drive, enable {0}." +msgstr "crwdns11600:0{0}crwdne11600:0" + +#. Description of a Check field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "To use Google Indexing, enable Google Settings." +msgstr "crwdns11602:0crwdne11602:0" + +#. Description of a Link field in DocType 'Notification' +#: email/doctype/notification/notification.json +msgctxt "Notification" +msgid "To use Slack Channel, add a Slack Webhook URL." +msgstr "crwdns11604:0%20crwdnd11604:0%20crwdne11604:0" + +#: public/js/frappe/utils/diffview.js:43 +msgid "To version" +msgstr "crwdns11606:0crwdne11606:0" + +#. Name of a DocType +#. Name of a report +#: desk/doctype/todo/todo.json desk/report/todo/todo.json +msgid "ToDo" +msgstr "crwdns11608:0crwdne11608:0" + +#. Label of a shortcut in the Tools Workspace +#: automation/workspace/tools/tools.json +msgctxt "ToDo" +msgid "ToDo" +msgstr "crwdns11610:0crwdne11610:0" + +#. Linked DocType in User's connections +#: core/doctype/user/user.json +msgctxt "User" +msgid "ToDo" +msgstr "crwdns11612:0crwdne11612:0" + +#: public/js/frappe/form/controls/date.js:58 +#: public/js/frappe/views/calendar/calendar.js:267 +msgid "Today" +msgstr "crwdns11614:0crwdne11614:0" + +#: public/js/frappe/ui/notifications/notifications.js:55 +msgid "Today's Events" +msgstr "crwdns11616:0crwdne11616:0" + +#: public/js/frappe/views/reports/report_view.js:1495 +msgid "Toggle Chart" +msgstr "crwdns11618:0crwdne11618:0" + +#. Label of a standard navbar item +#. Type: Action +#: hooks.py +msgid "Toggle Full Width" +msgstr "crwdns11620:0crwdne11620:0" + +#: public/js/frappe/views/file/file_view.js:33 +msgid "Toggle Grid View" +msgstr "crwdns11622:0crwdne11622:0" + +#: public/js/frappe/ui/page.js:193 public/js/frappe/ui/page.js:195 +#: public/js/frappe/views/reports/report_view.js:1499 +msgid "Toggle Sidebar" +msgstr "crwdns11624:0crwdne11624:0" + +#: public/js/frappe/list/list_view.js:1681 +msgctxt "Button in list view menu" +msgid "Toggle Sidebar" +msgstr "crwdns11626:0crwdne11626:0" + +#. Label of a standard navbar item +#. Type: Action +#: hooks.py +msgid "Toggle Theme" +msgstr "crwdns11628:0crwdne11628:0" + +#. Option for a Select field in DocType 'OAuth Client' +#: integrations/doctype/oauth_client/oauth_client.json +msgctxt "OAuth Client" +msgid "Token" +msgstr "crwdns11630:0crwdne11630:0" + +#. Name of a DocType +#: integrations/doctype/token_cache/token_cache.json +msgid "Token Cache" +msgstr "crwdns11632:0crwdne11632:0" + +#. Linked DocType in Connected App's connections +#: integrations/doctype/connected_app/connected_app.json +msgctxt "Connected App" +msgid "Token Cache" +msgstr "crwdns11634:0crwdne11634:0" + +#. Linked DocType in User's connections +#: core/doctype/user/user.json +msgctxt "User" +msgid "Token Cache" +msgstr "crwdns11636:0crwdne11636:0" + +#. Label of a Data field in DocType 'Token Cache' +#: integrations/doctype/token_cache/token_cache.json +msgctxt "Token Cache" +msgid "Token Type" +msgstr "crwdns11638:0crwdne11638:0" + +#. Label of a Data field in DocType 'Connected App' +#: integrations/doctype/connected_app/connected_app.json +msgctxt "Connected App" +msgid "Token URI" +msgstr "crwdns11640:0crwdne11640:0" + +#: utils/oauth.py:184 +msgid "Token is missing" +msgstr "crwdns11642:0crwdne11642:0" + +#: desk/doctype/bulk_update/bulk_update.py:70 model/workflow.py:253 +msgid "Too Many Documents" +msgstr "crwdns11644:0crwdne11644:0" + +#: rate_limiter.py:88 +msgid "Too Many Requests" +msgstr "crwdns11646:0crwdne11646:0" + +#: database/database.py:387 +msgid "Too many changes to database in single action." +msgstr "crwdns11648:0crwdne11648:0" + +#: core/doctype/user/user.py:984 +msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour" +msgstr "crwdns11650:0crwdne11650:0" + +#. Name of a Workspace +#. Label of a Card Break in the Tools Workspace +#: automation/workspace/tools/tools.json +msgid "Tools" +msgstr "crwdns11652:0crwdne11652:0" + +#. Option for a Select field in DocType 'Form Tour Step' +#: desk/doctype/form_tour_step/form_tour_step.json +msgctxt "Form Tour Step" +msgid "Top" +msgstr "crwdns11654:0crwdne11654:0" + +#. Name of a DocType +#: website/doctype/top_bar_item/top_bar_item.json +msgid "Top Bar Item" +msgstr "crwdns11656:0crwdne11656:0" + +#. Label of a Table field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Top Bar Items" +msgstr "crwdns11658:0crwdne11658:0" + +#. Option for a Select field in DocType 'Form Tour Step' +#: desk/doctype/form_tour_step/form_tour_step.json +msgctxt "Form Tour Step" +msgid "Top Center" +msgstr "crwdns11660:0crwdne11660:0" + +#. Option for a Select field in DocType 'Print Format' +#: printing/doctype/print_format/print_format.json +msgctxt "Print Format" +msgid "Top Center" +msgstr "crwdns11662:0crwdne11662:0" + +#. Option for a Select field in DocType 'Print Format' +#: printing/doctype/print_format/print_format.json +msgctxt "Print Format" +msgid "Top Left" +msgstr "crwdns11664:0crwdne11664:0" + +#: templates/emails/energy_points_summary.html:3 +msgid "Top Performer" +msgstr "crwdns11666:0crwdne11666:0" + +#: templates/emails/energy_points_summary.html:18 +msgid "Top Reviewer" +msgstr "crwdns11668:0crwdne11668:0" + +#. Option for a Select field in DocType 'Form Tour Step' +#: desk/doctype/form_tour_step/form_tour_step.json +msgctxt "Form Tour Step" +msgid "Top Right" +msgstr "crwdns11670:0crwdne11670:0" + +#. Option for a Select field in DocType 'Print Format' +#: printing/doctype/print_format/print_format.json +msgctxt "Print Format" +msgid "Top Right" +msgstr "crwdns11672:0crwdne11672:0" + +#: templates/emails/energy_points_summary.html:33 +msgid "Top {0}" +msgstr "crwdns11674:0{0}crwdne11674:0" + +#. Label of a Link field in DocType 'Discussion Reply' +#: website/doctype/discussion_reply/discussion_reply.json +msgctxt "Discussion Reply" +msgid "Topic" +msgstr "crwdns11676:0crwdne11676:0" + +#: desk/query_report.py:503 +msgid "Total" +msgstr "crwdns11678:0crwdne11678:0" + +#. Label of a Int field in DocType 'Newsletter' +#: email/doctype/newsletter/newsletter.json +msgctxt "Newsletter" +msgid "Total Recipients" +msgstr "crwdns11680:0crwdne11680:0" + +#. Label of a Int field in DocType 'Email Group' +#: email/doctype/email_group/email_group.json +msgctxt "Email Group" +msgid "Total Subscribers" +msgstr "crwdns11682:0crwdne11682:0" + +#. Label of a Read Only field in DocType 'Newsletter Email Group' +#: email/doctype/newsletter_email_group/newsletter_email_group.json +msgctxt "Newsletter Email Group" +msgid "Total Subscribers" +msgstr "crwdns11684:0crwdne11684:0" + +#. Label of a Int field in DocType 'Newsletter' +#: email/doctype/newsletter/newsletter.json +msgctxt "Newsletter" +msgid "Total Views" +msgstr "crwdns11686:0crwdne11686:0" + +#. Label of a Duration field in DocType 'RQ Worker' +#: core/doctype/rq_worker/rq_worker.json +msgctxt "RQ Worker" +msgid "Total Working Time" +msgstr "crwdns11688:0crwdne11688:0" + +#. Description of a Select field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Total number of emails to sync in initial sync process " +msgstr "crwdns11690:0crwdne11690:0" + +#: public/js/frappe/views/reports/report_view.js:1181 +#: public/js/frappe/views/reports/report_view.js:1477 +msgid "Totals" +msgstr "crwdns11692:0crwdne11692:0" + +#: public/js/frappe/views/reports/report_view.js:1156 +msgid "Totals Row" +msgstr "crwdns11694:0crwdne11694:0" + +#. Label of a Data field in DocType 'Error Log' +#: core/doctype/error_log/error_log.json +msgctxt "Error Log" +msgid "Trace ID" +msgstr "crwdns11696:0crwdne11696:0" + +#. Label of a Code field in DocType 'Patch Log' +#: core/doctype/patch_log/patch_log.json +msgctxt "Patch Log" +msgid "Traceback" +msgstr "crwdns11698:0crwdne11698:0" + +#. Label of a Check field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Track Changes" +msgstr "crwdns11700:0crwdne11700:0" + +#. Label of a Check field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Track Changes" +msgstr "crwdns11702:0crwdne11702:0" + +#. Label of a Check field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Track Email Status" +msgstr "crwdns11704:0crwdne11704:0" + +#. Label of a Data field in DocType 'Milestone' +#: automation/doctype/milestone/milestone.json +msgctxt "Milestone" +msgid "Track Field" +msgstr "crwdns11706:0crwdne11706:0" + +#. Label of a Check field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Track Seen" +msgstr "crwdns11708:0crwdne11708:0" + +#. Label of a Check field in DocType 'Form Tour' +#: desk/doctype/form_tour/form_tour.json +msgctxt "Form Tour" +msgid "Track Steps" +msgstr "crwdns11710:0crwdne11710:0" + +#. Label of a Check field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Track Views" +msgstr "crwdns11712:0crwdne11712:0" + +#. Label of a Check field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Track Views" +msgstr "crwdns11714:0crwdne11714:0" + +#. Description of a Check field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Track if your email has been opened by the recipient.\n" +"
\n" +"Note: If you're sending to multiple recipients, even if 1 recipient reads the email, it'll be considered \"Opened\"" +msgstr "crwdns11716:0crwdne11716:0" + +#: public/js/frappe/utils/utils.js:1744 +msgid "Tracking URL generated and copied to clipboard" +msgstr "crwdns11718:0crwdne11718:0" + +#. Label of a Small Text field in DocType 'Transaction Log' +#: core/doctype/transaction_log/transaction_log.json +msgctxt "Transaction Log" +msgid "Transaction Hash" +msgstr "crwdns11720:0crwdne11720:0" + +#. Name of a DocType +#: core/doctype/transaction_log/transaction_log.json +msgid "Transaction Log" +msgstr "crwdns11722:0crwdne11722:0" + +#. Name of a report +#: core/report/transaction_log_report/transaction_log_report.json +msgid "Transaction Log Report" +msgstr "crwdns11724:0crwdne11724:0" + +#. Label of a Section Break field in DocType 'Workflow' +#: workflow/doctype/workflow/workflow.json +msgctxt "Workflow" +msgid "Transition Rules" +msgstr "crwdns11726:0crwdne11726:0" + +#. Label of a Table field in DocType 'Workflow' +#: workflow/doctype/workflow/workflow.json +msgctxt "Workflow" +msgid "Transitions" +msgstr "crwdns11728:0crwdne11728:0" + +#. Label of a Check field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Translatable" +msgstr "crwdns11730:0crwdne11730:0" + +#. Label of a Check field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Translatable" +msgstr "crwdns11732:0crwdne11732:0" + +#. Label of a Check field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Translatable" +msgstr "crwdns11734:0crwdne11734:0" + +#. Label of a Check field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Translate Link Fields" +msgstr "crwdns11736:0crwdne11736:0" + +#. Label of a Check field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Translate Link Fields" +msgstr "crwdns11738:0crwdne11738:0" + +#: public/js/frappe/views/translation_manager.js:11 +msgid "Translate {0}" +msgstr "crwdns11740:0{0}crwdne11740:0" + +#. Label of a Code field in DocType 'Translation' +#: core/doctype/translation/translation.json +msgctxt "Translation" +msgid "Translated Text" +msgstr "crwdns11742:0crwdne11742:0" + +#. Name of a DocType +#: core/doctype/translation/translation.json +msgid "Translation" +msgstr "crwdns11744:0crwdne11744:0" + +#: public/js/frappe/views/translation_manager.js:46 +msgid "Translations" +msgstr "crwdns11746:0crwdne11746:0" + +#. Option for a Select field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Trash" +msgstr "crwdns11748:0crwdne11748:0" + +#. Option for a Select field in DocType 'Form Tour' +#: desk/doctype/form_tour/form_tour.json +msgctxt "Form Tour" +msgid "Tree" +msgstr "crwdns11750:0crwdne11750:0" + +#. Option for a Select field in DocType 'Workspace Shortcut' +#: desk/doctype/workspace_shortcut/workspace_shortcut.json +msgctxt "Workspace Shortcut" +msgid "Tree" +msgstr "crwdns11752:0crwdne11752:0" + +#. Description of a Check field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Tree structures are implemented using Nested Set" +msgstr "crwdns11754:0crwdne11754:0" + +#: public/js/frappe/views/treeview.js:20 +msgid "Tree view is not available for {0}" +msgstr "crwdns11756:0{0}crwdne11756:0" + +#. Label of a Data field in DocType 'Notification' +#: email/doctype/notification/notification.json +msgctxt "Notification" +msgid "Trigger Method" +msgstr "crwdns11758:0crwdne11758:0" + +#: public/js/frappe/ui/keyboard.js:191 +msgid "Trigger Primary Action" +msgstr "crwdns11760:0crwdne11760:0" + +#: tests/test_translate.py:51 +msgid "Trigger caching" +msgstr "crwdns11762:0crwdne11762:0" + +#. Description of a Data field in DocType 'Notification' +#: email/doctype/notification/notification.json +msgctxt "Notification" +msgid "Trigger on valid methods like \"before_insert\", \"after_update\", etc (will depend on the DocType selected)" +msgstr "crwdns11764:0crwdne11764:0" + +#: public/js/frappe/widgets/onboarding_widget.js:323 +msgid "Try Again" +msgstr "crwdns11766:0crwdne11766:0" + +#. Label of a Data field in DocType 'Document Naming Settings' +#: core/doctype/document_naming_settings/document_naming_settings.json +msgctxt "Document Naming Settings" +msgid "Try a Naming Series" +msgstr "crwdns11768:0crwdne11768:0" + +#: utils/password_strength.py:108 +msgid "Try to avoid repeated words and characters" +msgstr "crwdns11770:0crwdne11770:0" + +#: utils/password_strength.py:100 +msgid "Try to use a longer keyboard pattern with more turns" +msgstr "crwdns11772:0crwdne11772:0" + +#. Option for a Select field in DocType 'Assignment Rule Day' +#: automation/doctype/assignment_rule_day/assignment_rule_day.json +msgctxt "Assignment Rule Day" +msgid "Tuesday" +msgstr "crwdns11774:0crwdne11774:0" + +#. Option for a Select field in DocType 'Auto Email Report' +#: email/doctype/auto_email_report/auto_email_report.json +msgctxt "Auto Email Report" +msgid "Tuesday" +msgstr "crwdns11776:0crwdne11776:0" + +#. Option for a Select field in DocType 'Auto Repeat Day' +#: automation/doctype/auto_repeat_day/auto_repeat_day.json +msgctxt "Auto Repeat Day" +msgid "Tuesday" +msgstr "crwdns11778:0crwdne11778:0" + +#. Label of a Check field in DocType 'Event' +#: desk/doctype/event/event.json +msgctxt "Event" +msgid "Tuesday" +msgstr "crwdns11780:0crwdne11780:0" + +#. Option for a Select field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Tuesday" +msgstr "crwdns11782:0crwdne11782:0" + +#. Label of a Check field in DocType 'Role' +#: core/doctype/role/role.json +msgctxt "Role" +msgid "Two Factor Authentication" +msgstr "crwdns11784:0crwdne11784:0" + +#. Label of a Section Break field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Two Factor Authentication" +msgstr "crwdns11786:0crwdne11786:0" + +#. Label of a Select field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Two Factor Authentication method" +msgstr "crwdns11788:0crwdne11788:0" + +#. Label of a Select field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Type" +msgstr "crwdns11790:0crwdne11790:0" + +#. Label of a Data field in DocType 'Console Log' +#: desk/doctype/console_log/console_log.json +msgctxt "Console Log" +msgid "Type" +msgstr "crwdns11792:0crwdne11792:0" + +#. Label of a Select field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Type" +msgstr "crwdns11794:0crwdne11794:0" + +#. Label of a Select field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "Type" +msgstr "crwdns11796:0crwdne11796:0" + +#. Label of a Select field in DocType 'Desktop Icon' +#: desk/doctype/desktop_icon/desktop_icon.json +msgctxt "Desktop Icon" +msgid "Type" +msgstr "crwdns11798:0crwdne11798:0" + +#. Label of a Select field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Type" +msgstr "crwdns11800:0crwdne11800:0" + +#. Label of a Select field in DocType 'Energy Point Log' +#: social/doctype/energy_point_log/energy_point_log.json +msgctxt "Energy Point Log" +msgid "Type" +msgstr "crwdns11802:0crwdne11802:0" + +#. Label of a Select field in DocType 'Notification Log' +#: desk/doctype/notification_log/notification_log.json +msgctxt "Notification Log" +msgid "Type" +msgstr "crwdns11804:0crwdne11804:0" + +#. Label of a Select field in DocType 'Number Card' +#: desk/doctype/number_card/number_card.json +msgctxt "Number Card" +msgid "Type" +msgstr "crwdns11806:0crwdne11806:0" + +#. Label of a Select field in DocType 'System Console' +#: desk/doctype/system_console/system_console.json +msgctxt "System Console" +msgid "Type" +msgstr "crwdns11808:0crwdne11808:0" + +#. Label of a Select field in DocType 'Web Template' +#: website/doctype/web_template/web_template.json +msgctxt "Web Template" +msgid "Type" +msgstr "crwdns11810:0crwdne11810:0" + +#. Label of a Select field in DocType 'Workspace Link' +#: desk/doctype/workspace_link/workspace_link.json +msgctxt "Workspace Link" +msgid "Type" +msgstr "crwdns11812:0crwdne11812:0" + +#. Label of a Select field in DocType 'Workspace Shortcut' +#: desk/doctype/workspace_shortcut/workspace_shortcut.json +msgctxt "Workspace Shortcut" +msgid "Type" +msgstr "crwdns11814:0crwdne11814:0" + +#: public/js/frappe/form/controls/comment.js:78 +msgid "Type a reply / comment" +msgstr "crwdns11816:0crwdne11816:0" + +#: templates/includes/search_template.html:51 +msgid "Type something in the search box to search" +msgstr "crwdns11818:0crwdne11818:0" + +#: templates/discussions/comment_box.html:8 +msgid "Type title" +msgstr "crwdns11820:0crwdne11820:0" + +#: templates/discussions/discussions.js:341 +msgid "Type your reply here..." +msgstr "crwdns11822:0crwdne11822:0" + +#: core/doctype/data_export/exporter.py:143 +msgid "Type:" +msgstr "crwdns11824:0crwdne11824:0" + +#. Label of a Check field in DocType 'Form Tour' +#: desk/doctype/form_tour/form_tour.json +msgctxt "Form Tour" +msgid "UI Tour" +msgstr "crwdns11826:0crwdne11826:0" + +#. Label of a Check field in DocType 'Form Tour Step' +#: desk/doctype/form_tour_step/form_tour_step.json +msgctxt "Form Tour Step" +msgid "UI Tour" +msgstr "crwdns11828:0crwdne11828:0" + +#. Label of a Int field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "UID" +msgstr "crwdns11830:0crwdne11830:0" + +#. Label of a Data field in DocType 'Email Flag Queue' +#: email/doctype/email_flag_queue/email_flag_queue.json +msgctxt "Email Flag Queue" +msgid "UID" +msgstr "crwdns11832:0crwdne11832:0" + +#. Label of a Data field in DocType 'Unhandled Email' +#: email/doctype/unhandled_email/unhandled_email.json +msgctxt "Unhandled Email" +msgid "UID" +msgstr "crwdns11834:0crwdne11834:0" + +#. Label of a Int field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "UIDNEXT" +msgstr "crwdns11836:0crwdne11836:0" + +#. Label of a Data field in DocType 'IMAP Folder' +#: email/doctype/imap_folder/imap_folder.json +msgctxt "IMAP Folder" +msgid "UIDNEXT" +msgstr "crwdns11838:0crwdne11838:0" + +#. Label of a Data field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "UIDVALIDITY" +msgstr "crwdns11840:0crwdne11840:0" + +#. Label of a Data field in DocType 'IMAP Folder' +#: email/doctype/imap_folder/imap_folder.json +msgctxt "IMAP Folder" +msgid "UIDVALIDITY" +msgstr "crwdns11842:0crwdne11842:0" + +#. Option for a Select field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "UNSEEN" +msgstr "crwdns11844:0crwdne11844:0" + +#. Description of a Text field in DocType 'OAuth Client' +#: integrations/doctype/oauth_client/oauth_client.json +msgctxt "OAuth Client" +msgid "URIs for receiving authorization code once the user allows access, as well as failure responses. Typically a REST endpoint exposed by the Client App.\n" +"
e.g. http://hostname/api/method/frappe.integrations.oauth2_logins.login_via_facebook" +msgstr "crwdns11846:0crwdne11846:0" + +#. Label of a Small Text field in DocType 'Integration Request' +#: integrations/doctype/integration_request/integration_request.json +msgctxt "Integration Request" +msgid "URL" +msgstr "crwdns11848:0crwdne11848:0" + +#. Label of a Data field in DocType 'Top Bar Item' +#: website/doctype/top_bar_item/top_bar_item.json +msgctxt "Top Bar Item" +msgid "URL" +msgstr "crwdns11850:0crwdne11850:0" + +#. Label of a Data field in DocType 'Webhook Request Log' +#: integrations/doctype/webhook_request_log/webhook_request_log.json +msgctxt "Webhook Request Log" +msgid "URL" +msgstr "crwdns11852:0crwdne11852:0" + +#. Label of a Data field in DocType 'Website Slideshow Item' +#: website/doctype/website_slideshow_item/website_slideshow_item.json +msgctxt "Website Slideshow Item" +msgid "URL" +msgstr "crwdns11854:0crwdne11854:0" + +#. Option for a Select field in DocType 'Workspace Shortcut' +#. Label of a Data field in DocType 'Workspace Shortcut' +#: desk/doctype/workspace_shortcut/workspace_shortcut.json +msgctxt "Workspace Shortcut" +msgid "URL" +msgstr "crwdns11856:0crwdne11856:0" + +#. Description of a Data field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "URL for documentation or help" +msgstr "crwdns11858:0crwdne11858:0" + +#: core/doctype/file/file.py:216 +msgid "URL must start with http:// or https://" +msgstr "crwdns11860:0crwdne11860:0" + +#: website/doctype/web_page/web_page.js:84 +msgid "URL of the page" +msgstr "crwdns11862:0crwdne11862:0" + +#. Description of a Data field in DocType 'Website Slideshow Item' +#: website/doctype/website_slideshow_item/website_slideshow_item.json +msgctxt "Website Slideshow Item" +msgid "URL to go to on clicking the slideshow image" +msgstr "crwdns11864:0crwdne11864:0" + +#: core/doctype/document_naming_settings/document_naming_settings.py:68 +msgid "Unable to find DocType {0}" +msgstr "crwdns11866:0{0}crwdne11866:0" + +#: public/js/frappe/ui/capture.js:330 +msgid "Unable to load camera." +msgstr "crwdns11868:0crwdne11868:0" + +#: public/js/frappe/model/model.js:258 +msgid "Unable to load: {0}" +msgstr "crwdns11870:0{0}crwdne11870:0" + +#: utils/csvutils.py:35 +msgid "Unable to open attached file. Did you export it as CSV?" +msgstr "crwdns11872:0crwdne11872:0" + +#: core/doctype/file/utils.py:99 core/doctype/file/utils.py:128 +msgid "Unable to read file format for {0}" +msgstr "crwdns11874:0{0}crwdne11874:0" + +#: core/doctype/communication/email.py:173 +msgid "Unable to send mail because of a missing email account. Please setup default Email Account from Settings > Email Account" +msgstr "crwdns11876:0crwdne11876:0" + +#: public/js/frappe/views/calendar/calendar.js:439 +msgid "Unable to update event" +msgstr "crwdns11878:0crwdne11878:0" + +#: core/doctype/file/file.py:458 +msgid "Unable to write file format for {0}" +msgstr "crwdns11880:0{0}crwdne11880:0" + +#. Label of a Code field in DocType 'Assignment Rule' +#: automation/doctype/assignment_rule/assignment_rule.json +msgctxt "Assignment Rule" +msgid "Unassign Condition" +msgstr "crwdns11882:0crwdne11882:0" + +#: www/error.py:15 +msgid "Uncaught Server Exception" +msgstr "crwdns11884:0crwdne11884:0" + +#: public/js/frappe/form/toolbar.js:93 +msgid "Unchanged" +msgstr "crwdns11886:0crwdne11886:0" + +#: public/js/frappe/form/toolbar.js:450 +msgid "Undo" +msgstr "crwdns11888:0crwdne11888:0" + +#: public/js/frappe/form/toolbar.js:458 +msgid "Undo last action" +msgstr "crwdns11890:0crwdne11890:0" + +#: public/js/frappe/form/sidebar/form_sidebar.js:232 +msgid "Unfollow" +msgstr "crwdns11892:0crwdne11892:0" + +#. Name of a DocType +#: email/doctype/unhandled_email/unhandled_email.json +msgid "Unhandled Email" +msgstr "crwdns11894:0crwdne11894:0" + +#: public/js/frappe/views/workspace/workspace.js:556 +msgid "Unhide Workspace" +msgstr "crwdns11896:0crwdne11896:0" + +#. Label of a Check field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Unique" +msgstr "crwdns11898:0crwdne11898:0" + +#. Label of a Check field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Unique" +msgstr "crwdns11900:0crwdne11900:0" + +#. Label of a Check field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Unique" +msgstr "crwdns11902:0crwdne11902:0" + +#: public/js/frappe/model/model.js:199 +msgid "Unknown Column: {0}" +msgstr "crwdns11904:0{0}crwdne11904:0" + +#: utils/data.py:1215 +msgid "Unknown Rounding Method: {}" +msgstr "crwdns11906:0crwdne11906:0" + +#: auth.py:299 +msgid "Unknown User" +msgstr "crwdns11908:0crwdne11908:0" + +#: utils/csvutils.py:52 +msgid "Unknown file encoding. Tried utf-8, windows-1250, windows-1252." +msgstr "crwdns11910:0crwdne11910:0" + +#: core/doctype/submission_queue/submission_queue.js:7 +msgid "Unlock Reference Document" +msgstr "crwdns11912:0crwdne11912:0" + +#: website/doctype/blog_post/blog_post.js:36 +#: website/doctype/web_form/web_form.js:77 +msgid "Unpublish" +msgstr "crwdns11914:0crwdne11914:0" + +#. Option for a Select field in DocType 'Email Flag Queue' +#: email/doctype/email_flag_queue/email_flag_queue.json +msgctxt "Email Flag Queue" +msgid "Unread" +msgstr "crwdns11916:0crwdne11916:0" + +#. Label of a Check field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Unread Notification Sent" +msgstr "crwdns11918:0crwdne11918:0" + +#: utils/safe_exec.py:438 +msgid "Unsafe SQL query" +msgstr "crwdns11920:0crwdne11920:0" + +#. Option for a Select field in DocType 'Comment' +#: core/doctype/comment/comment.json +msgctxt "Comment" +msgid "Unshared" +msgstr "crwdns11922:0crwdne11922:0" + +#. Option for a Select field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Unshared" +msgstr "crwdns11924:0crwdne11924:0" + +#: email/queue.py:68 +msgid "Unsubscribe" +msgstr "crwdns11926:0crwdne11926:0" + +#. Label of a Data field in DocType 'Email Queue' +#: email/doctype/email_queue/email_queue.json +msgctxt "Email Queue" +msgid "Unsubscribe Method" +msgstr "crwdns11928:0crwdne11928:0" + +#. Label of a Data field in DocType 'Email Queue' +#: email/doctype/email_queue/email_queue.json +msgctxt "Email Queue" +msgid "Unsubscribe Param" +msgstr "crwdns11930:0crwdne11930:0" + +#: email/queue.py:126 +msgid "Unsubscribed" +msgstr "crwdns11932:0crwdne11932:0" + +#. Label of a Check field in DocType 'Contact' +#: contacts/doctype/contact/contact.json +msgctxt "Contact" +msgid "Unsubscribed" +msgstr "crwdns11934:0crwdne11934:0" + +#. Label of a Check field in DocType 'Email Group Member' +#: email/doctype/email_group_member/email_group_member.json +msgctxt "Email Group Member" +msgid "Unsubscribed" +msgstr "crwdns11936:0crwdne11936:0" + +#. Label of a Check field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Unsubscribed" +msgstr "crwdns11938:0crwdne11938:0" + +#: public/js/frappe/data_import/import_preview.js:72 +msgid "Untitled Column" +msgstr "crwdns11940:0crwdne11940:0" + +#: core/doctype/file/file.js:28 +msgid "Unzip" +msgstr "crwdns11942:0crwdne11942:0" + +#: public/js/frappe/views/file/file_view.js:132 +msgid "Unzipped {0} files" +msgstr "crwdns11944:0{0}crwdne11944:0" + +#: public/js/frappe/views/file/file_view.js:125 +msgid "Unzipping files..." +msgstr "crwdns11946:0crwdne11946:0" + +#: desk/doctype/event/event.py:258 +msgid "Upcoming Events for Today" +msgstr "crwdns11948:0crwdne11948:0" + +#: core/doctype/data_import/data_import_list.js:40 +#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:23 +#: custom/doctype/customize_form/customize_form.js:370 +#: desk/doctype/bulk_update/bulk_update.js:15 +#: printing/page/print_format_builder/print_format_builder.js:447 +#: printing/page/print_format_builder/print_format_builder.js:501 +#: printing/page/print_format_builder/print_format_builder.js:670 +#: printing/page/print_format_builder/print_format_builder.js:757 +#: public/js/frappe/form/grid_row.js:402 +#: public/js/frappe/views/workspace/workspace.js:647 +msgid "Update" +msgstr "crwdns11950:0crwdne11950:0" + +#. Label of a Button field in DocType 'Document Naming Settings' +#: core/doctype/document_naming_settings/document_naming_settings.json +msgctxt "Document Naming Settings" +msgid "Update" +msgstr "crwdns11952:0crwdne11952:0" + +#. Label of a Button field in DocType 'Document Naming Settings' +#: core/doctype/document_naming_settings/document_naming_settings.json +msgctxt "Document Naming Settings" +msgid "Update Amendment Naming" +msgstr "crwdns11954:0crwdne11954:0" + +#: public/js/frappe/views/workspace/workspace.js:596 +msgid "Update Details" +msgstr "crwdns11956:0crwdne11956:0" + +#. Option for a Select field in DocType 'Data Import' +#: core/doctype/data_import/data_import.json +msgctxt "Data Import" +msgid "Update Existing Records" +msgstr "crwdns11958:0crwdne11958:0" + +#. Label of a Select field in DocType 'Workflow Document State' +#: workflow/doctype/workflow_document_state/workflow_document_state.json +msgctxt "Workflow Document State" +msgid "Update Field" +msgstr "crwdns11960:0crwdne11960:0" + +#: core/doctype/installed_applications/installed_applications.js:6 +#: core/doctype/installed_applications/installed_applications.js:13 +msgid "Update Hooks Resolution Order" +msgstr "crwdns11962:0crwdne11962:0" + +#: core/doctype/installed_applications/installed_applications.js:45 +msgid "Update Order" +msgstr "crwdns11964:0crwdne11964:0" + +#. Label of a Section Break field in DocType 'Document Naming Settings' +#: core/doctype/document_naming_settings/document_naming_settings.json +msgctxt "Document Naming Settings" +msgid "Update Series Counter" +msgstr "crwdns11966:0crwdne11966:0" + +#. Label of a Button field in DocType 'Document Naming Settings' +#: core/doctype/document_naming_settings/document_naming_settings.json +msgctxt "Document Naming Settings" +msgid "Update Series Number" +msgstr "crwdns11968:0crwdne11968:0" + +#. Option for a Select field in DocType 'Onboarding Step' +#: desk/doctype/onboarding_step/onboarding_step.json +msgctxt "Onboarding Step" +msgid "Update Settings" +msgstr "crwdns11970:0crwdne11970:0" + +#: public/js/frappe/views/translation_manager.js:13 +msgid "Update Translations" +msgstr "crwdns11972:0crwdne11972:0" + +#. Label of a Small Text field in DocType 'Bulk Update' +#: desk/doctype/bulk_update/bulk_update.json +msgctxt "Bulk Update" +msgid "Update Value" +msgstr "crwdns11974:0crwdne11974:0" + +#. Label of a Data field in DocType 'Workflow Document State' +#: workflow/doctype/workflow_document_state/workflow_document_state.json +msgctxt "Workflow Document State" +msgid "Update Value" +msgstr "crwdns11976:0crwdne11976:0" + +#: public/js/frappe/list/bulk_operations.js:310 +msgid "Update {0} records" +msgstr "crwdns11978:0{0}crwdne11978:0" + +#: desk/doctype/desktop_icon/desktop_icon.py:452 +#: public/js/frappe/web_form/web_form.js:423 +msgid "Updated" +msgstr "crwdns11980:0crwdne11980:0" + +#. Option for a Select field in DocType 'Comment' +#: core/doctype/comment/comment.json +msgctxt "Comment" +msgid "Updated" +msgstr "crwdns11982:0crwdne11982:0" + +#. Option for a Select field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Updated" +msgstr "crwdns11984:0crwdne11984:0" + +#: desk/doctype/bulk_update/bulk_update.js:32 +msgid "Updated Successfully" +msgstr "crwdns11986:0crwdne11986:0" + +#: public/js/frappe/desk.js:420 +msgid "Updated To A New Version 🎉" +msgstr "crwdns11988:0crwdne11988:0" + +#: public/js/frappe/list/bulk_operations.js:307 +msgid "Updated successfully" +msgstr "crwdns11990:0crwdne11990:0" + +#. Label of a Tab Break field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Updates" +msgstr "crwdns11992:0crwdne11992:0" + +#: utils/response.py:316 +msgid "Updating" +msgstr "crwdns11994:0crwdne11994:0" + +#: public/js/frappe/form/save.js:11 +msgctxt "Freeze message while updating a document" +msgid "Updating" +msgstr "crwdns11996:0crwdne11996:0" + +#: email/doctype/email_queue/email_queue.py:403 +msgid "Updating Email Queue Statuses. The emails will be picked up in the next scheduled run." +msgstr "crwdns11998:0crwdne11998:0" + +#: core/doctype/document_naming_rule/document_naming_rule.js:17 +msgid "Updating counter may lead to document name conflicts if not done properly" +msgstr "crwdns12000:0crwdne12000:0" + +#: desk/page/setup_wizard/setup_wizard.py:23 +msgid "Updating global settings" +msgstr "crwdns12002:0crwdne12002:0" + +#: core/doctype/document_naming_settings/document_naming_settings.js:59 +msgid "Updating naming series options" +msgstr "crwdns12004:0crwdne12004:0" + +#: public/js/frappe/form/toolbar.js:126 +msgid "Updating related fields..." +msgstr "crwdns12006:0crwdne12006:0" + +#: desk/doctype/bulk_update/bulk_update.py:98 +msgid "Updating {0}" +msgstr "crwdns12008:0{0}crwdne12008:0" + +#: core/doctype/data_import/data_import.js:36 +msgid "Updating {0} of {1}, {2}" +msgstr "crwdns12010:0{0}crwdnd12010:0{1}crwdnd12010:0{2}crwdne12010:0" + +#: public/js/frappe/file_uploader/file_uploader.bundle.js:121 +#: public/js/frappe/file_uploader/file_uploader.bundle.js:122 +msgid "Upload" +msgstr "crwdns12012:0crwdne12012:0" + +#. Label of a Check field in DocType 'File' +#: core/doctype/file/file.json +msgctxt "File" +msgid "Uploaded To Dropbox" +msgstr "crwdns12014:0crwdne12014:0" + +#. Label of a Check field in DocType 'File' +#: core/doctype/file/file.json +msgctxt "File" +msgid "Uploaded To Google Drive" +msgstr "crwdns12016:0crwdne12016:0" + +#. Description of a Data field in DocType 'Onboarding Step' +#: desk/doctype/onboarding_step/onboarding_step.json +#, python-format +msgctxt "Onboarding Step" +msgid "Use % for any non empty value." +msgstr "crwdns12018:0crwdne12018:0" + +#. Label of a Check field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Use ASCII encoding for password" +msgstr "crwdns12020:0crwdne12020:0" + +#. Label of a Check field in DocType 'Email Template' +#: email/doctype/email_template/email_template.json +msgctxt "Email Template" +msgid "Use HTML" +msgstr "crwdns12022:0crwdne12022:0" + +#. Label of a Check field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Use IMAP" +msgstr "crwdns12024:0crwdne12024:0" + +#. Label of a Check field in DocType 'Email Domain' +#: email/doctype/email_domain/email_domain.json +msgctxt "Email Domain" +msgid "Use IMAP" +msgstr "crwdns12026:0crwdne12026:0" + +#. Label of a Check field in DocType 'SMS Settings' +#: core/doctype/sms_settings/sms_settings.json +msgctxt "SMS Settings" +msgid "Use POST" +msgstr "crwdns12028:0crwdne12028:0" + +#. Label of a Check field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "Use Report Chart" +msgstr "crwdns12030:0crwdne12030:0" + +#. Label of a Check field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Use SSL" +msgstr "crwdns12032:0crwdne12032:0" + +#. Label of a Check field in DocType 'Email Domain' +#: email/doctype/email_domain/email_domain.json +msgctxt "Email Domain" +msgid "Use SSL" +msgstr "crwdns12034:0crwdne12034:0" + +#. Label of a Check field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Use STARTTLS" +msgstr "crwdns12036:0crwdne12036:0" + +#. Label of a Check field in DocType 'Email Domain' +#: email/doctype/email_domain/email_domain.json +msgctxt "Email Domain" +msgid "Use STARTTLS" +msgstr "crwdns12038:0crwdne12038:0" + +#. Label of a Check field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Use TLS" +msgstr "crwdns12040:0crwdne12040:0" + +#. Label of a Check field in DocType 'Email Domain' +#: email/doctype/email_domain/email_domain.json +msgctxt "Email Domain" +msgid "Use TLS" +msgstr "crwdns12042:0crwdne12042:0" + +#: utils/password_strength.py:44 +msgid "Use a few words, avoid common phrases." +msgstr "crwdns12044:0crwdne12044:0" + +#. Label of a Check field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Use different Email ID" +msgstr "crwdns12046:0crwdne12046:0" + +#: model/db_query.py:434 +msgid "Use of function {0} in field is restricted" +msgstr "crwdns12048:0{0}crwdne12048:0" + +#: model/db_query.py:413 +msgid "Use of sub-query or function is restricted" +msgstr "crwdns12050:0crwdne12050:0" + +#: printing/page/print/print.js:272 +msgid "Use the new Print Format Builder" +msgstr "crwdns12052:0crwdne12052:0" + +#. Description of a Data field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Use this fieldname to generate title" +msgstr "crwdns12054:0crwdne12054:0" + +#. Label of a Check field in DocType 'User Email' +#: core/doctype/user_email/user_email.json +msgctxt "User Email" +msgid "Used OAuth" +msgstr "crwdns12056:0crwdne12056:0" + +#. Name of a DocType +#: core/doctype/user/user.json +#: core/report/permitted_documents_for_user/permitted_documents_for_user.js:8 +#: desk/page/user_profile/user_profile_controller.js:65 +#: templates/emails/energy_points_summary.html:38 +msgid "User" +msgstr "crwdns12058:0crwdne12058:0" + +#. Label of a Link field in DocType 'Activity Log' +#: core/doctype/activity_log/activity_log.json +msgctxt "Activity Log" +msgid "User" +msgstr "crwdns12060:0crwdne12060:0" + +#. Label of a Link field in DocType 'Assignment Rule User' +#: automation/doctype/assignment_rule_user/assignment_rule_user.json +msgctxt "Assignment Rule User" +msgid "User" +msgstr "crwdns12062:0crwdne12062:0" + +#. Label of a Link field in DocType 'Blogger' +#: website/doctype/blogger/blogger.json +msgctxt "Blogger" +msgid "User" +msgstr "crwdns12064:0crwdne12064:0" + +#. Label of a Link field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "User" +msgstr "crwdns12066:0crwdne12066:0" + +#. Label of a Link field in DocType 'Dashboard Settings' +#: desk/doctype/dashboard_settings/dashboard_settings.json +msgctxt "Dashboard Settings" +msgid "User" +msgstr "crwdns12068:0crwdne12068:0" + +#. Label of a Link field in DocType 'DocShare' +#: core/doctype/docshare/docshare.json +msgctxt "DocShare" +msgid "User" +msgstr "crwdns12070:0crwdne12070:0" + +#. Label of a Link field in DocType 'Document Follow' +#: email/doctype/document_follow/document_follow.json +msgctxt "Document Follow" +msgid "User" +msgstr "crwdns12072:0crwdne12072:0" + +#. Label of a Link field in DocType 'Energy Point Log' +#: social/doctype/energy_point_log/energy_point_log.json +msgctxt "Energy Point Log" +msgid "User" +msgstr "crwdns12074:0crwdne12074:0" + +#. Label of a Link field in DocType 'Google Calendar' +#: integrations/doctype/google_calendar/google_calendar.json +msgctxt "Google Calendar" +msgid "User" +msgstr "crwdns12076:0crwdne12076:0" + +#. Label of a Link field in DocType 'Log Setting User' +#: core/doctype/log_setting_user/log_setting_user.json +msgctxt "Log Setting User" +msgid "User" +msgstr "crwdns12078:0crwdne12078:0" + +#. Linked DocType in Module Profile's connections +#: core/doctype/module_profile/module_profile.json +msgctxt "Module Profile" +msgid "User" +msgstr "crwdns12080:0crwdne12080:0" + +#. Label of a Link field in DocType 'Note Seen By' +#: desk/doctype/note_seen_by/note_seen_by.json +msgctxt "Note Seen By" +msgid "User" +msgstr "crwdns12082:0crwdne12082:0" + +#. Label of a Link field in DocType 'Notification Settings' +#: desk/doctype/notification_settings/notification_settings.json +msgctxt "Notification Settings" +msgid "User" +msgstr "crwdns12084:0crwdne12084:0" + +#. Label of a Link field in DocType 'OAuth Authorization Code' +#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +msgctxt "OAuth Authorization Code" +msgid "User" +msgstr "crwdns12086:0crwdne12086:0" + +#. Label of a Link field in DocType 'OAuth Bearer Token' +#: integrations/doctype/oauth_bearer_token/oauth_bearer_token.json +msgctxt "OAuth Bearer Token" +msgid "User" +msgstr "crwdns12088:0crwdne12088:0" + +#. Label of a Link field in DocType 'OAuth Client' +#: integrations/doctype/oauth_client/oauth_client.json +msgctxt "OAuth Client" +msgid "User" +msgstr "crwdns12090:0crwdne12090:0" + +#. Label of a Link field in DocType 'Permission Debugger' +#: core/doctype/permission_debugger/permission_debugger.json +msgctxt "Permission Debugger" +msgid "User" +msgstr "crwdns12092:0crwdne12092:0" + +#. Label of a Link field in DocType 'Personal Data Download Request' +#: website/doctype/personal_data_download_request/personal_data_download_request.json +msgctxt "Personal Data Download Request" +msgid "User" +msgstr "crwdns12094:0crwdne12094:0" + +#. Label of a Link field in DocType 'Reminder' +#: automation/doctype/reminder/reminder.json +msgctxt "Reminder" +msgid "User" +msgstr "crwdns12096:0crwdne12096:0" + +#. Linked DocType in Role Profile's connections +#: core/doctype/role_profile/role_profile.json +msgctxt "Role Profile" +msgid "User" +msgstr "crwdns12098:0crwdne12098:0" + +#. Label of a Link field in DocType 'Route History' +#: desk/doctype/route_history/route_history.json +msgctxt "Route History" +msgid "User" +msgstr "crwdns12100:0crwdne12100:0" + +#. Label of a Link field in DocType 'Token Cache' +#: integrations/doctype/token_cache/token_cache.json +msgctxt "Token Cache" +msgid "User" +msgstr "crwdns12102:0crwdne12102:0" + +#. Label of a Link in the Users Workspace +#. Label of a shortcut in the Users Workspace +#: core/workspace/users/users.json +msgctxt "User" +msgid "User" +msgstr "crwdns12104:0crwdne12104:0" + +#. Label of a Link field in DocType 'User Group Member' +#: core/doctype/user_group_member/user_group_member.json +msgctxt "User Group Member" +msgid "User" +msgstr "crwdns12106:0crwdne12106:0" + +#. Label of a Link field in DocType 'User Permission' +#: core/doctype/user_permission/user_permission.json +msgctxt "User Permission" +msgid "User" +msgstr "crwdns12108:0crwdne12108:0" + +#. Label of a Link field in DocType 'Webhook Request Log' +#: integrations/doctype/webhook_request_log/webhook_request_log.json +msgctxt "Webhook Request Log" +msgid "User" +msgstr "crwdns12110:0crwdne12110:0" + +#. Label of a Link field in DocType 'Workflow Action' +#: workflow/doctype/workflow_action/workflow_action.json +msgctxt "Workflow Action" +msgid "User" +msgstr "crwdns12112:0crwdne12112:0" + +#. Label of a Link field in DocType 'Access Log' +#: core/doctype/access_log/access_log.json +msgctxt "Access Log" +msgid "User " +msgstr "crwdns12114:0crwdne12114:0" + +#: core/doctype/has_role/has_role.py:24 +msgid "User '{0}' already has the role '{1}'" +msgstr "crwdns12116:0{0}crwdnd12116:0{1}crwdne12116:0" + +#. Name of a DocType +#: core/doctype/report/user_activity_report.json +msgid "User Activity Report" +msgstr "crwdns12118:0crwdne12118:0" + +#. Name of a DocType +#: core/doctype/report/user_activity_report_without_sort.json +msgid "User Activity Report Without Sort" +msgstr "crwdns12120:0crwdne12120:0" + +#. Label of a Data field in DocType 'Web Page View' +#: website/doctype/web_page_view/web_page_view.json +msgctxt "Web Page View" +msgid "User Agent" +msgstr "crwdns12122:0crwdne12122:0" + +#. Label of a Check field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "User Cannot Create" +msgstr "crwdns12124:0crwdne12124:0" + +#. Label of a Check field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "User Cannot Search" +msgstr "crwdns12126:0crwdne12126:0" + +#. Label of a Table field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "User Defaults" +msgstr "crwdns12128:0crwdne12128:0" + +#. Label of a Tab Break field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "User Details" +msgstr "crwdns12130:0crwdne12130:0" + +#. Name of a DocType +#: core/doctype/user_document_type/user_document_type.json +msgid "User Document Type" +msgstr "crwdns12132:0crwdne12132:0" + +#: core/doctype/user_type/user_type.py:97 +msgid "User Document Types Limit Exceeded" +msgstr "crwdns12134:0crwdne12134:0" + +#. Name of a DocType +#: core/doctype/user_email/user_email.json +msgid "User Email" +msgstr "crwdns12136:0crwdne12136:0" + +#. Label of a Table field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "User Emails" +msgstr "crwdns12138:0crwdne12138:0" + +#. Label of a Select field in DocType 'Energy Point Rule' +#: social/doctype/energy_point_rule/energy_point_rule.json +msgctxt "Energy Point Rule" +msgid "User Field" +msgstr "crwdns12140:0crwdne12140:0" + +#. Name of a DocType +#: core/doctype/user_group/user_group.json +msgid "User Group" +msgstr "crwdns12142:0crwdne12142:0" + +#. Name of a DocType +#: core/doctype/user_group_member/user_group_member.json +msgid "User Group Member" +msgstr "crwdns12144:0crwdne12144:0" + +#. Label of a Table MultiSelect field in DocType 'User Group' +#: core/doctype/user_group/user_group.json +msgctxt "User Group" +msgid "User Group Members" +msgstr "crwdns12146:0crwdne12146:0" + +#. Label of a Data field in DocType 'User Social Login' +#: core/doctype/user_social_login/user_social_login.json +msgctxt "User Social Login" +msgid "User ID" +msgstr "crwdns12148:0crwdne12148:0" + +#. Label of a Data field in DocType 'Social Login Key' +#: integrations/doctype/social_login_key/social_login_key.json +msgctxt "Social Login Key" +msgid "User ID Property" +msgstr "crwdns12150:0crwdne12150:0" + +#. Label of a Link field in DocType 'Contact' +#: contacts/doctype/contact/contact.json +msgctxt "Contact" +msgid "User Id" +msgstr "crwdns12152:0crwdne12152:0" + +#. Label of a Select field in DocType 'User Type' +#: core/doctype/user_type/user_type.json +msgctxt "User Type" +msgid "User Id Field" +msgstr "crwdns12154:0crwdne12154:0" + +#: core/doctype/user_type/user_type.py:287 +msgid "User Id Field is mandatory in the user type {0}" +msgstr "crwdns12156:0{0}crwdne12156:0" + +#. Label of a Attach Image field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "User Image" +msgstr "crwdns12158:0crwdne12158:0" + +#. Label of a Data field in DocType 'Personal Data Download Request' +#: website/doctype/personal_data_download_request/personal_data_download_request.json +msgctxt "Personal Data Download Request" +msgid "User Name" +msgstr "crwdns12160:0crwdne12160:0" + +#. Name of a DocType +#: core/doctype/user_permission/user_permission.json +msgid "User Permission" +msgstr "crwdns12162:0crwdne12162:0" + +#. Linked DocType in User's connections +#: core/doctype/user/user.json +msgctxt "User" +msgid "User Permission" +msgstr "crwdns12164:0crwdne12164:0" + +#: public/js/frappe/views/reports/query_report.js:1772 +#: public/js/frappe/views/reports/report_view.js:1657 +msgid "User Permissions" +msgstr "crwdns12166:0crwdne12166:0" + +#: public/js/frappe/list/list_view.js:1639 +msgctxt "Button in list view menu" +msgid "User Permissions" +msgstr "crwdns12168:0crwdne12168:0" + +#. Label of a Link in the Users Workspace +#: core/workspace/users/users.json +msgctxt "User Permission" +msgid "User Permissions" +msgstr "crwdns12170:0crwdne12170:0" + +#: core/doctype/user_permission/user_permission_list.js:124 +msgid "User Permissions created sucessfully" +msgstr "crwdns12172:0crwdne12172:0" + +#. Label of a shortcut in the Users Workspace +#: core/workspace/users/users.json +msgid "User Profile" +msgstr "crwdns12174:0crwdne12174:0" + +#. Label of a Link field in DocType 'LDAP Group Mapping' +#: integrations/doctype/ldap_group_mapping/ldap_group_mapping.json +msgctxt "LDAP Group Mapping" +msgid "User Role" +msgstr "crwdns12176:0crwdne12176:0" + +#. Name of a DocType +#: core/doctype/user_select_document_type/user_select_document_type.json +msgid "User Select Document Type" +msgstr "crwdns12178:0crwdne12178:0" + +#. Name of a DocType +#: core/doctype/user_social_login/user_social_login.json +msgid "User Social Login" +msgstr "crwdns12180:0crwdne12180:0" + +#. Label of a Data field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "User Tags" +msgstr "crwdns12182:0crwdne12182:0" + +#. Name of a DocType +#: core/doctype/user_type/user_type.json core/doctype/user_type/user_type.py:82 +msgid "User Type" +msgstr "crwdns12184:0crwdne12184:0" + +#. Label of a Link field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "User Type" +msgstr "crwdns12186:0crwdne12186:0" + +#. Label of a shortcut in the Users Workspace +#: core/workspace/users/users.json +msgctxt "User Type" +msgid "User Type" +msgstr "crwdns12188:0crwdne12188:0" + +#. Name of a DocType +#: core/doctype/user_type_module/user_type_module.json +msgid "User Type Module" +msgstr "crwdns12190:0crwdne12190:0" + +#. Label of a Table field in DocType 'User Type' +#: core/doctype/user_type/user_type.json +msgctxt "User Type" +msgid "User Type Module" +msgstr "crwdns12192:0crwdne12192:0" + +#. Description of a Check field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "User can login using Email id or Mobile number" +msgstr "crwdns12194:0crwdne12194:0" + +#. Description of a Check field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "User can login using Email id or User Name" +msgstr "crwdns12196:0crwdne12196:0" + +#: desk/page/user_profile/user_profile_controller.js:26 +msgid "User does not exist" +msgstr "crwdns12198:0crwdne12198:0" + +#: core/doctype/user_type/user_type.py:82 +msgid "User does not have permission to create the new {0}" +msgstr "crwdns12200:0{0}crwdne12200:0" + +#: core/doctype/docshare/docshare.py:55 +msgid "User is mandatory for Share" +msgstr "crwdns12202:0crwdne12202:0" + +#. Label of a Check field in DocType 'Document Naming Settings' +#: core/doctype/document_naming_settings/document_naming_settings.json +msgctxt "Document Naming Settings" +msgid "User must always select" +msgstr "crwdns12204:0crwdne12204:0" + +#: model/delete_doc.py:224 +msgid "User not allowed to delete {0}: {1}" +msgstr "crwdns12206:0{0}crwdnd12206:0{1}crwdne12206:0" + +#: core/doctype/user_permission/user_permission.py:59 +msgid "User permission already exists" +msgstr "crwdns12208:0crwdne12208:0" + +#: www/login.py:153 +msgid "User with email address {0} does not exist" +msgstr "crwdns12210:0{0}crwdne12210:0" + +#: integrations/doctype/ldap_settings/ldap_settings.py:224 +msgid "User with email: {0} does not exist in the system. Please ask 'System Administrator' to create the user for you." +msgstr "crwdns12212:0{0}crwdne12212:0" + +#: core/doctype/user/user.py:504 +msgid "User {0} cannot be deleted" +msgstr "crwdns12214:0{0}crwdne12214:0" + +#: core/doctype/user/user.py:242 +msgid "User {0} cannot be disabled" +msgstr "crwdns12216:0{0}crwdne12216:0" + +#: core/doctype/user/user.py:564 +msgid "User {0} cannot be renamed" +msgstr "crwdns12218:0{0}crwdne12218:0" + +#: permissions.py:136 +msgid "User {0} does not have access to this document" +msgstr "crwdns12220:0{0}crwdne12220:0" + +#: permissions.py:159 +msgid "User {0} does not have doctype access via role permission for document {1}" +msgstr "crwdns12222:0{0}crwdnd12222:0{1}crwdne12222:0" + +#: templates/emails/data_deletion_approval.html:1 +#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:108 +msgid "User {0} has requested for data deletion" +msgstr "crwdns12224:0{0}crwdne12224:0" + +#: utils/oauth.py:272 +msgid "User {0} is disabled" +msgstr "crwdns12226:0{0}crwdne12226:0" + +#: desk/form/assign_to.py:101 +msgid "User {0} is not permitted to access this document." +msgstr "crwdns12228:0{0}crwdne12228:0" + +#. Label of a Data field in DocType 'Connected App' +#: integrations/doctype/connected_app/connected_app.json +msgctxt "Connected App" +msgid "Userinfo URI" +msgstr "crwdns12230:0crwdne12230:0" + +#: www/login.py:99 +msgid "Username" +msgstr "crwdns12232:0crwdne12232:0" + +#. Label of a Data field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Username" +msgstr "crwdns12234:0crwdne12234:0" + +#. Label of a Data field in DocType 'User Social Login' +#: core/doctype/user_social_login/user_social_login.json +msgctxt "User Social Login" +msgid "Username" +msgstr "crwdns12236:0crwdne12236:0" + +#: core/doctype/user/user.py:644 +msgid "Username {0} already exists" +msgstr "crwdns12238:0{0}crwdne12238:0" + +#. Name of a Workspace +#. Label of a Card Break in the Users Workspace +#: core/workspace/users/users.json +msgid "Users" +msgstr "crwdns12240:0crwdne12240:0" + +#. Label of a Table MultiSelect field in DocType 'Assignment Rule' +#: automation/doctype/assignment_rule/assignment_rule.json +msgctxt "Assignment Rule" +msgid "Users" +msgstr "crwdns12242:0crwdne12242:0" + +#. Description of a Check field in DocType 'Energy Point Rule' +#: social/doctype/energy_point_rule/energy_point_rule.json +msgctxt "Energy Point Rule" +msgid "Users assigned to the reference document will get points." +msgstr "crwdns12244:0crwdne12244:0" + +#: core/page/permission_manager/permission_manager.js:345 +msgid "Users with role {0}:" +msgstr "crwdns12246:0{0}crwdne12246:0" + +#: public/js/frappe/ui/theme_switcher.js:70 +msgid "Uses system's theme to switch between light and dark mode" +msgstr "crwdns12248:0crwdne12248:0" + +#: public/js/frappe/desk.js:112 +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 "crwdns12250:0crwdne12250:0" + +#. Label of a Percent field in DocType 'RQ Worker' +#: core/doctype/rq_worker/rq_worker.json +msgctxt "RQ Worker" +msgid "Utilization %" +msgstr "crwdns12252:0crwdne12252:0" + +#. Option for a Select field in DocType 'OAuth Authorization Code' +#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +msgctxt "OAuth Authorization Code" +msgid "Valid" +msgstr "crwdns12254:0crwdne12254:0" + +#. Label of a Check field in DocType 'Onboarding Step' +#: desk/doctype/onboarding_step/onboarding_step.json +msgctxt "Onboarding Step" +msgid "Validate Field" +msgstr "crwdns12256:0crwdne12256:0" + +#: public/js/frappe/web_form/web_form.js:356 +msgid "Validation Error" +msgstr "crwdns12258:0crwdne12258:0" + +#. Label of a Select field in DocType 'OAuth Authorization Code' +#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +msgctxt "OAuth Authorization Code" +msgid "Validity" +msgstr "crwdns12260:0crwdne12260:0" + +#: email/doctype/auto_email_report/auto_email_report.js:92 +#: public/js/frappe/list/bulk_operations.js:271 +#: public/js/frappe/list/bulk_operations.js:333 +msgid "Value" +msgstr "crwdns12262:0crwdne12262:0" + +#. Label of a Text field in DocType 'DefaultValue' +#: core/doctype/defaultvalue/defaultvalue.json +msgctxt "DefaultValue" +msgid "Value" +msgstr "crwdns12264:0crwdne12264:0" + +#. Label of a Data field in DocType 'Document Naming Rule Condition' +#: core/doctype/document_naming_rule_condition/document_naming_rule_condition.json +msgctxt "Document Naming Rule Condition" +msgid "Value" +msgstr "crwdns12266:0crwdne12266:0" + +#. Label of a Data field in DocType 'Milestone' +#: automation/doctype/milestone/milestone.json +msgctxt "Milestone" +msgid "Value" +msgstr "crwdns12268:0crwdne12268:0" + +#. Label of a Data field in DocType 'Query Parameters' +#: integrations/doctype/query_parameters/query_parameters.json +msgctxt "Query Parameters" +msgid "Value" +msgstr "crwdns12270:0crwdne12270:0" + +#. Label of a Data field in DocType 'SMS Parameter' +#: core/doctype/sms_parameter/sms_parameter.json +msgctxt "SMS Parameter" +msgid "Value" +msgstr "crwdns12272:0crwdne12272:0" + +#. Label of a Small Text field in DocType 'Webhook Header' +#: integrations/doctype/webhook_header/webhook_header.json +msgctxt "Webhook Header" +msgid "Value" +msgstr "crwdns12274:0crwdne12274:0" + +#. Label of a Text field in DocType 'Website Meta Tag' +#: website/doctype/website_meta_tag/website_meta_tag.json +msgctxt "Website Meta Tag" +msgid "Value" +msgstr "crwdns12276:0crwdne12276:0" + +#. Label of a Select field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "Value Based On" +msgstr "crwdns12278:0crwdne12278:0" + +#. Option for a Select field in DocType 'Energy Point Rule' +#: social/doctype/energy_point_rule/energy_point_rule.json +msgctxt "Energy Point Rule" +msgid "Value Change" +msgstr "crwdns12280:0crwdne12280:0" + +#. Option for a Select field in DocType 'Notification' +#: email/doctype/notification/notification.json +msgctxt "Notification" +msgid "Value Change" +msgstr "crwdns12282:0crwdne12282:0" + +#. Label of a Select field in DocType 'Notification' +#: email/doctype/notification/notification.json +msgctxt "Notification" +msgid "Value Changed" +msgstr "crwdns12284:0crwdne12284:0" + +#. Label of a Data field in DocType 'Notification' +#: email/doctype/notification/notification.json +msgctxt "Notification" +msgid "Value To Be Set" +msgstr "crwdns12286:0crwdne12286:0" + +#: model/base_document.py:930 model/document.py:648 +msgid "Value cannot be changed for {0}" +msgstr "crwdns12288:0{0}crwdne12288:0" + +#: model/document.py:593 +msgid "Value cannot be negative for" +msgstr "crwdns12290:0crwdne12290:0" + +#: model/document.py:597 +msgid "Value cannot be negative for {0}: {1}" +msgstr "crwdns12292:0{0}crwdnd12292:0{1}crwdne12292:0" + +#: custom/doctype/property_setter/property_setter.js:7 +msgid "Value for a check field can be either 0 or 1" +msgstr "crwdns12294:0crwdne12294:0" + +#: custom/doctype/customize_form/customize_form.py:611 +msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters" +msgstr "crwdns12296:0{0}crwdnd12296:0{1}crwdnd12296:0{2}crwdne12296:0" + +#: model/base_document.py:360 +msgid "Value for {0} cannot be a list" +msgstr "crwdns12298:0{0}crwdne12298:0" + +#. Description of a Select field in DocType 'Assignment Rule' +#: automation/doctype/assignment_rule/assignment_rule.json +msgctxt "Assignment Rule" +msgid "Value from this field will be set as the due date in the ToDo" +msgstr "crwdns12300:0crwdne12300:0" + +#: model/base_document.py:712 +msgid "Value missing for" +msgstr "crwdns12302:0crwdne12302:0" + +#: core/doctype/data_import/importer.py:698 +msgid "Value must be one of {0}" +msgstr "crwdns12304:0{0}crwdne12304:0" + +#. Label of a Data field in DocType 'Onboarding Step' +#: desk/doctype/onboarding_step/onboarding_step.json +msgctxt "Onboarding Step" +msgid "Value to Validate" +msgstr "crwdns12306:0crwdne12306:0" + +#: model/base_document.py:997 +msgid "Value too big" +msgstr "crwdns12308:0crwdne12308:0" + +#: core/doctype/data_import/importer.py:711 +msgid "Value {0} missing for {1}" +msgstr "crwdns12310:0{0}crwdnd12310:0{1}crwdne12310:0" + +#: core/doctype/data_import/importer.py:742 utils/data.py:877 +msgid "Value {0} must be in the valid duration format: d h m s" +msgstr "crwdns12312:0{0}crwdne12312:0" + +#: core/doctype/data_import/importer.py:729 +msgid "Value {0} must in {1} format" +msgstr "crwdns12314:0{0}crwdnd12314:0{1}crwdne12314:0" + +#. Option for a Select field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "Verdana" +msgstr "crwdns12316:0crwdne12316:0" + +#: twofactor.py:362 +msgid "Verfication Code" +msgstr "crwdns12318:0crwdne12318:0" + +#: templates/emails/delete_data_confirmation.html:10 +msgid "Verification Link" +msgstr "crwdns12320:0crwdne12320:0" + +#: twofactor.py:251 +msgid "Verification code has been sent to your registered email address." +msgstr "crwdns12322:0crwdne12322:0" + +#. Option for a Select field in DocType 'Translation' +#: core/doctype/translation/translation.json +msgctxt "Translation" +msgid "Verified" +msgstr "crwdns12324:0crwdne12324:0" + +#: public/js/frappe/ui/messages.js:352 +msgid "Verify" +msgstr "crwdns12326:0crwdne12326:0" + +#: public/js/frappe/ui/messages.js:351 +msgid "Verify Password" +msgstr "crwdns12328:0crwdne12328:0" + +#. Name of a DocType +#: core/doctype/version/version.json +msgid "Version" +msgstr "crwdns12330:0crwdne12330:0" + +#: public/js/frappe/desk.js:131 +msgid "Version Updated" +msgstr "crwdns12332:0crwdne12332:0" + +#. Label of a Data field in DocType 'Onboarding Step' +#: desk/doctype/onboarding_step/onboarding_step.json +msgctxt "Onboarding Step" +msgid "Video URL" +msgstr "crwdns12334:0crwdne12334:0" + +#. Label of a Select field in DocType 'Form Tour' +#: desk/doctype/form_tour/form_tour.json +msgctxt "Form Tour" +msgid "View" +msgstr "crwdns12336:0crwdne12336:0" + +#: core/doctype/success_action/success_action.js:58 +#: public/js/frappe/form/success_action.js:89 +msgid "View All" +msgstr "crwdns12338:0crwdne12338:0" + +#: public/js/frappe/form/toolbar.js:507 +msgid "View Audit Trail" +msgstr "crwdns12340:0crwdne12340:0" + +#: templates/includes/likes/likes.py:34 +msgid "View Blog Post" +msgstr "crwdns12342:0crwdne12342:0" + +#: templates/includes/comments/comments.py:58 +msgid "View Comment" +msgstr "crwdns12344:0crwdne12344:0" + +#: public/js/frappe/views/treeview.js:467 +msgid "View List" +msgstr "crwdns12346:0crwdne12346:0" + +#. Name of a DocType +#: core/doctype/view_log/view_log.json +msgid "View Log" +msgstr "crwdns12348:0crwdne12348:0" + +#: core/doctype/user/user.js:133 +#: core/doctype/user_permission/user_permission.js:24 +msgid "View Permitted Documents" +msgstr "crwdns12350:0crwdne12350:0" + +#. Label of a Button field in DocType 'Notification' +#: email/doctype/notification/notification.json +msgctxt "Notification" +msgid "View Properties (via Customize Form)" +msgstr "crwdns12352:0crwdne12352:0" + +#: social/doctype/energy_point_log/energy_point_log_list.js:20 +msgid "View Ref" +msgstr "crwdns12354:0crwdne12354:0" + +#. Option for a Select field in DocType 'Onboarding Step' +#: desk/doctype/onboarding_step/onboarding_step.json +msgctxt "Onboarding Step" +msgid "View Report" +msgstr "crwdns12356:0crwdne12356:0" + +#. Label of a Section Break field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "View Settings" +msgstr "crwdns12358:0crwdne12358:0" + +#. Label of a Section Break field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "View Settings" +msgstr "crwdns12360:0crwdne12360:0" + +#. Label of a Check field in DocType 'Role' +#: core/doctype/role/role.json +msgctxt "Role" +msgid "View Switcher" +msgstr "crwdns12362:0crwdne12362:0" + +#. Label of a standard navbar item +#. Type: Action +#: hooks.py website/doctype/website_settings/website_settings.js:16 +msgid "View Website" +msgstr "crwdns12364:0crwdne12364:0" + +#: www/confirm_workflow_action.html:12 +msgid "View document" +msgstr "crwdns12366:0crwdne12366:0" + +#: core/doctype/file/file.js:31 +msgid "View file" +msgstr "crwdns12368:0crwdne12368:0" + +#: templates/emails/auto_email_report.html:60 +msgid "View report in your browser" +msgstr "crwdns12370:0crwdne12370:0" + +#: templates/emails/print_link.html:2 +msgid "View this in your browser" +msgstr "crwdns12372:0crwdne12372:0" + +#: automation/doctype/auto_repeat/auto_repeat.js:43 +#: desk/doctype/calendar_view/calendar_view_list.js:10 +#: desk/doctype/dashboard/dashboard_list.js:10 +msgid "View {0}" +msgstr "crwdns12374:0{0}crwdne12374:0" + +#. Label of a Data field in DocType 'View Log' +#: core/doctype/view_log/view_log.json +msgctxt "View Log" +msgid "Viewed By" +msgstr "crwdns12376:0crwdne12376:0" + +#. Label of a Card Break in the Build Workspace +#: core/workspace/build/build.json +msgid "Views" +msgstr "crwdns12378:0crwdne12378:0" + +#. Group in DocType's connections +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Views" +msgstr "crwdns12380:0crwdne12380:0" + +#. Label of a Check field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Virtual" +msgstr "crwdns12382:0crwdne12382:0" + +#: model/virtual_doctype.py:78 +msgid "Virtual DocType {} requires a static method called {} found {}" +msgstr "crwdns12384:0crwdne12384:0" + +#: model/virtual_doctype.py:91 +msgid "Virtual DocType {} requires overriding an instance method called {} found {}" +msgstr "crwdns12386:0crwdne12386:0" + +#. Label of a Section Break field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Visibility" +msgstr "crwdns12388:0crwdne12388:0" + +#. Option for a Select field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Visit" +msgstr "crwdns12390:0crwdne12390:0" + +#: website/doctype/website_route_meta/website_route_meta.js:7 +msgid "Visit Web Page" +msgstr "crwdns12392:0crwdne12392:0" + +#. Label of a Data field in DocType 'Web Page View' +#: website/doctype/web_page_view/web_page_view.json +msgctxt "Web Page View" +msgid "Visitor ID" +msgstr "crwdns12394:0crwdne12394:0" + +#: templates/discussions/reply_section.html:38 +msgid "Want to discuss?" +msgstr "crwdns12396:0crwdne12396:0" + +#. Option for a Select field in DocType 'Address' +#: contacts/doctype/address/address.json +msgctxt "Address" +msgid "Warehouse" +msgstr "crwdns12398:0crwdne12398:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "Warning" +msgstr "crwdns12400:0crwdne12400:0" + +#: public/js/frappe/model/meta.js:179 +msgid "Warning: Unable to find {0} in any table related to {1}" +msgstr "crwdns12402:0{0}crwdnd12402:0{1}crwdne12402:0" + +#. Description of a Int field in DocType 'Document Naming Rule' +#: core/doctype/document_naming_rule/document_naming_rule.json +msgctxt "Document Naming Rule" +msgid "Warning: Updating counter may lead to document name conflicts if not done properly" +msgstr "crwdns12404:0crwdne12404:0" + +#: website/doctype/help_article/templates/help_article.html:24 +msgid "Was this article helpful?" +msgstr "crwdns12406:0crwdne12406:0" + +#. Option for a Select field in DocType 'Onboarding Step' +#: desk/doctype/onboarding_step/onboarding_step.json +msgctxt "Onboarding Step" +msgid "Watch Video" +msgstr "crwdns12408:0crwdne12408:0" + +#: desk/doctype/workspace/workspace.js:38 +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 "crwdns12410:0crwdne12410:0" + +#: templates/emails/delete_data_confirmation.html:2 +msgid "We have received a request for deletion of {0} data associated with: {1}" +msgstr "crwdns12412:0{0}crwdnd12412:0{1}crwdne12412:0" + +#: templates/emails/download_data.html:2 +msgid "We have received a request from you to download your {0} data associated with: {1}" +msgstr "crwdns12414:0{0}crwdnd12414:0{1}crwdne12414:0" + +#: public/js/frappe/form/controls/password.js:88 +msgid "Weak" +msgstr "crwdns12416:0crwdne12416:0" + +#. Name of a DocType +#: website/doctype/web_form/web_form.json +msgid "Web Form" +msgstr "crwdns12418:0crwdne12418:0" + +#. Linked DocType in DocType's connections +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Web Form" +msgstr "crwdns12420:0crwdne12420:0" + +#. Linked DocType in Module Def's connections +#: core/doctype/module_def/module_def.json +msgctxt "Module Def" +msgid "Web Form" +msgstr "crwdns12422:0crwdne12422:0" + +#. Label of a Link in the Website Workspace +#. Label of a shortcut in the Website Workspace +#: website/workspace/website/website.json +msgctxt "Web Form" +msgid "Web Form" +msgstr "crwdns12424:0crwdne12424:0" + +#. Name of a DocType +#: website/doctype/web_form_field/web_form_field.json +msgid "Web Form Field" +msgstr "crwdns12426:0crwdne12426:0" + +#. Label of a Table field in DocType 'Web Form' +#: website/doctype/web_form/web_form.json +msgctxt "Web Form" +msgid "Web Form Fields" +msgstr "crwdns12428:0crwdne12428:0" + +#. Name of a DocType +#: website/doctype/web_form_list_column/web_form_list_column.json +msgid "Web Form List Column" +msgstr "crwdns12430:0crwdne12430:0" + +#. Name of a DocType +#: website/doctype/web_page/web_page.json +msgid "Web Page" +msgstr "crwdns12432:0crwdne12432:0" + +#. Linked DocType in Module Def's connections +#: core/doctype/module_def/module_def.json +msgctxt "Module Def" +msgid "Web Page" +msgstr "crwdns12434:0crwdne12434:0" + +#. Label of a Link in the Website Workspace +#. Label of a shortcut in the Website Workspace +#: website/workspace/website/website.json +msgctxt "Web Page" +msgid "Web Page" +msgstr "crwdns12436:0crwdne12436:0" + +#. Name of a DocType +#: website/doctype/web_page_block/web_page_block.json +msgid "Web Page Block" +msgstr "crwdns12438:0crwdne12438:0" + +#: public/js/frappe/utils/utils.js:1697 +msgid "Web Page URL" +msgstr "crwdns12440:0crwdne12440:0" + +#. Name of a DocType +#: website/doctype/web_page_view/web_page_view.json +msgid "Web Page View" +msgstr "crwdns12442:0crwdne12442:0" + +#. Label of a Card Break in the Website Workspace +#: website/workspace/website/website.json +msgid "Web Site" +msgstr "crwdns12444:0crwdne12444:0" + +#. Name of a DocType +#: website/doctype/web_template/web_template.json +msgid "Web Template" +msgstr "crwdns12446:0crwdne12446:0" + +#. Linked DocType in Module Def's connections +#: core/doctype/module_def/module_def.json +msgctxt "Module Def" +msgid "Web Template" +msgstr "crwdns12448:0crwdne12448:0" + +#. Label of a Link field in DocType 'Web Page Block' +#: website/doctype/web_page_block/web_page_block.json +msgctxt "Web Page Block" +msgid "Web Template" +msgstr "crwdns12450:0crwdne12450:0" + +#. Name of a DocType +#: website/doctype/web_template_field/web_template_field.json +msgid "Web Template Field" +msgstr "crwdns12452:0crwdne12452:0" + +#. Label of a Code field in DocType 'Web Page Block' +#: website/doctype/web_page_block/web_page_block.json +msgctxt "Web Page Block" +msgid "Web Template Values" +msgstr "crwdns12454:0crwdne12454:0" + +#: utils/jinja_globals.py:48 +msgid "Web Template is not specified" +msgstr "crwdns12456:0crwdne12456:0" + +#. Label of a Section Break field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Web View" +msgstr "crwdns12458:0crwdne12458:0" + +#. Name of a DocType +#: integrations/doctype/webhook/webhook.json +msgid "Webhook" +msgstr "crwdns12460:0crwdne12460:0" + +#. Linked DocType in DocType's connections +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Webhook" +msgstr "crwdns12462:0crwdne12462:0" + +#. Label of a Link in the Integrations Workspace +#: integrations/workspace/integrations/integrations.json +msgctxt "Webhook" +msgid "Webhook" +msgstr "crwdns12464:0crwdne12464:0" + +#. Label of a Link field in DocType 'Webhook Request Log' +#: integrations/doctype/webhook_request_log/webhook_request_log.json +msgctxt "Webhook Request Log" +msgid "Webhook" +msgstr "crwdns12466:0crwdne12466:0" + +#. Name of a DocType +#: integrations/doctype/webhook_data/webhook_data.json +msgid "Webhook Data" +msgstr "crwdns12468:0crwdne12468:0" + +#. Label of a Section Break field in DocType 'Webhook' +#: integrations/doctype/webhook/webhook.json +msgctxt "Webhook" +msgid "Webhook Data" +msgstr "crwdns12470:0crwdne12470:0" + +#. Name of a DocType +#: integrations/doctype/webhook_header/webhook_header.json +msgid "Webhook Header" +msgstr "crwdns12472:0crwdne12472:0" + +#. Label of a Section Break field in DocType 'Webhook' +#: integrations/doctype/webhook/webhook.json +msgctxt "Webhook" +msgid "Webhook Headers" +msgstr "crwdns12474:0crwdne12474:0" + +#. Label of a Section Break field in DocType 'Webhook' +#: integrations/doctype/webhook/webhook.json +msgctxt "Webhook" +msgid "Webhook Request" +msgstr "crwdns12476:0crwdne12476:0" + +#. Name of a DocType +#: integrations/doctype/webhook_request_log/webhook_request_log.json +msgid "Webhook Request Log" +msgstr "crwdns12478:0crwdne12478:0" + +#. Linked DocType in Webhook's connections +#: integrations/doctype/webhook/webhook.json +msgctxt "Webhook" +msgid "Webhook Request Log" +msgstr "crwdns12480:0crwdne12480:0" + +#. Label of a Password field in DocType 'Webhook' +#: integrations/doctype/webhook/webhook.json +msgctxt "Webhook" +msgid "Webhook Secret" +msgstr "crwdns12482:0crwdne12482:0" + +#. Label of a Section Break field in DocType 'Webhook' +#: integrations/doctype/webhook/webhook.json +msgctxt "Webhook" +msgid "Webhook Security" +msgstr "crwdns12484:0crwdne12484:0" + +#. Label of a Section Break field in DocType 'Webhook' +#: integrations/doctype/webhook/webhook.json +msgctxt "Webhook" +msgid "Webhook Trigger" +msgstr "crwdns12486:0crwdne12486:0" + +#. Label of a Data field in DocType 'Slack Webhook URL' +#: integrations/doctype/slack_webhook_url/slack_webhook_url.json +msgctxt "Slack Webhook URL" +msgid "Webhook URL" +msgstr "crwdns12488:0crwdne12488:0" + +#. Name of a Workspace +#: email/doctype/newsletter/newsletter.py:451 +#: website/workspace/website/website.json +msgid "Website" +msgstr "crwdns12490:0crwdne12490:0" + +#. Group in Module Def's connections +#: core/doctype/module_def/module_def.json +msgctxt "Module Def" +msgid "Website" +msgstr "crwdns12492:0crwdne12492:0" + +#. Name of a report +#: website/report/website_analytics/website_analytics.json +msgid "Website Analytics" +msgstr "crwdns12494:0crwdne12494:0" + +#. Name of a role +#: core/doctype/comment/comment.json +#: website/doctype/about_us_settings/about_us_settings.json +#: website/doctype/blog_category/blog_category.json +#: website/doctype/blog_post/blog_post.json +#: website/doctype/blog_settings/blog_settings.json +#: website/doctype/blogger/blogger.json website/doctype/color/color.json +#: website/doctype/contact_us_settings/contact_us_settings.json +#: website/doctype/help_category/help_category.json +#: website/doctype/portal_settings/portal_settings.json +#: website/doctype/web_form/web_form.json +#: website/doctype/web_page/web_page.json +#: website/doctype/website_script/website_script.json +#: website/doctype/website_settings/website_settings.json +#: website/doctype/website_sidebar/website_sidebar.json +#: website/doctype/website_slideshow/website_slideshow.json +#: website/doctype/website_theme/website_theme.json +msgid "Website Manager" +msgstr "crwdns12496:0crwdne12496:0" + +#. Name of a DocType +#: website/doctype/website_meta_tag/website_meta_tag.json +msgid "Website Meta Tag" +msgstr "crwdns12498:0crwdne12498:0" + +#. Name of a DocType +#: website/doctype/website_route_meta/website_route_meta.json +msgid "Website Route Meta" +msgstr "crwdns12500:0crwdne12500:0" + +#. Label of a Link in the Website Workspace +#: website/workspace/website/website.json +msgctxt "Website Route Meta" +msgid "Website Route Meta" +msgstr "crwdns12502:0crwdne12502:0" + +#. Name of a DocType +#: website/doctype/website_route_redirect/website_route_redirect.json +msgid "Website Route Redirect" +msgstr "crwdns12504:0crwdne12504:0" + +#. Name of a DocType +#: website/doctype/website_script/website_script.json +msgid "Website Script" +msgstr "crwdns12506:0crwdne12506:0" + +#. Label of a Link in the Website Workspace +#: website/workspace/website/website.json +msgctxt "Website Script" +msgid "Website Script" +msgstr "crwdns12508:0crwdne12508:0" + +#. Label of a Data field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Website Search Field" +msgstr "crwdns12510:0crwdne12510:0" + +#: core/doctype/doctype/doctype.py:1473 +msgid "Website Search Field must be a valid fieldname" +msgstr "crwdns12512:0crwdne12512:0" + +#. Name of a DocType +#: website/doctype/website_settings/website_settings.json +msgid "Website Settings" +msgstr "crwdns12514:0crwdne12514:0" + +#. Label of a Link in the Website Workspace +#. Label of a shortcut in the Website Workspace +#: website/workspace/website/website.json +msgctxt "Website Settings" +msgid "Website Settings" +msgstr "crwdns12516:0crwdne12516:0" + +#. Name of a DocType +#: website/doctype/website_sidebar/website_sidebar.json +msgid "Website Sidebar" +msgstr "crwdns12518:0crwdne12518:0" + +#. Label of a Link field in DocType 'Web Form' +#: website/doctype/web_form/web_form.json +msgctxt "Web Form" +msgid "Website Sidebar" +msgstr "crwdns12520:0crwdne12520:0" + +#. Label of a Link field in DocType 'Web Page' +#: website/doctype/web_page/web_page.json +msgctxt "Web Page" +msgid "Website Sidebar" +msgstr "crwdns12522:0crwdne12522:0" + +#. Label of a Link in the Website Workspace +#: website/workspace/website/website.json +msgctxt "Website Sidebar" +msgid "Website Sidebar" +msgstr "crwdns12524:0crwdne12524:0" + +#. Name of a DocType +#: website/doctype/website_sidebar_item/website_sidebar_item.json +msgid "Website Sidebar Item" +msgstr "crwdns12526:0crwdne12526:0" + +#. Name of a DocType +#: website/doctype/website_slideshow/website_slideshow.json +msgid "Website Slideshow" +msgstr "crwdns12528:0crwdne12528:0" + +#. Label of a Link in the Website Workspace +#: website/workspace/website/website.json +msgctxt "Website Slideshow" +msgid "Website Slideshow" +msgstr "crwdns12530:0crwdne12530:0" + +#. Name of a DocType +#: website/doctype/website_slideshow_item/website_slideshow_item.json +msgid "Website Slideshow Item" +msgstr "crwdns12532:0crwdne12532:0" + +#. Name of a DocType +#: website/doctype/website_theme/website_theme.json +msgid "Website Theme" +msgstr "crwdns12534:0crwdne12534:0" + +#. Linked DocType in Module Def's connections +#: core/doctype/module_def/module_def.json +msgctxt "Module Def" +msgid "Website Theme" +msgstr "crwdns12536:0crwdne12536:0" + +#. Label of a Link field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Website Theme" +msgstr "crwdns12538:0crwdne12538:0" + +#. Label of a Link in the Website Workspace +#: website/workspace/website/website.json +msgctxt "Website Theme" +msgid "Website Theme" +msgstr "crwdns12540:0crwdne12540:0" + +#. Name of a DocType +#: website/doctype/website_theme_ignore_app/website_theme_ignore_app.json +msgid "Website Theme Ignore App" +msgstr "crwdns12542:0crwdne12542:0" + +#. Label of a Image field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Website Theme Image" +msgstr "crwdns12544:0crwdne12544:0" + +#. Label of a Code field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Website Theme image link" +msgstr "crwdns12546:0crwdne12546:0" + +#. Option for a Select field in DocType 'Assignment Rule Day' +#: automation/doctype/assignment_rule_day/assignment_rule_day.json +msgctxt "Assignment Rule Day" +msgid "Wednesday" +msgstr "crwdns12548:0crwdne12548:0" + +#. Option for a Select field in DocType 'Auto Email Report' +#: email/doctype/auto_email_report/auto_email_report.json +msgctxt "Auto Email Report" +msgid "Wednesday" +msgstr "crwdns12550:0crwdne12550:0" + +#. Option for a Select field in DocType 'Auto Repeat Day' +#: automation/doctype/auto_repeat_day/auto_repeat_day.json +msgctxt "Auto Repeat Day" +msgid "Wednesday" +msgstr "crwdns12552:0crwdne12552:0" + +#. Label of a Check field in DocType 'Event' +#: desk/doctype/event/event.json +msgctxt "Event" +msgid "Wednesday" +msgstr "crwdns12554:0crwdne12554:0" + +#. Option for a Select field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Wednesday" +msgstr "crwdns12556:0crwdne12556:0" + +#: public/js/frappe/views/calendar/calendar.js:269 +msgid "Week" +msgstr "crwdns12558:0crwdne12558:0" + +#. Option for a Select field in DocType 'Auto Email Report' +#: email/doctype/auto_email_report/auto_email_report.json +msgctxt "Auto Email Report" +msgid "Weekdays" +msgstr "crwdns12560:0crwdne12560:0" + +#: public/js/frappe/utils/common.js:399 +#: website/report/website_analytics/website_analytics.js:24 +msgid "Weekly" +msgstr "crwdns12562:0crwdne12562:0" + +#. Option for a Select field in DocType 'Auto Email Report' +#: email/doctype/auto_email_report/auto_email_report.json +msgctxt "Auto Email Report" +msgid "Weekly" +msgstr "crwdns12564:0crwdne12564:0" + +#. Option for a Select field in DocType 'Auto Repeat' +#: automation/doctype/auto_repeat/auto_repeat.json +msgctxt "Auto Repeat" +msgid "Weekly" +msgstr "crwdns12566:0crwdne12566:0" + +#. Option for a Select field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "Weekly" +msgstr "crwdns12568:0crwdne12568:0" + +#. Option for a Select field in DocType 'Dropbox Settings' +#: integrations/doctype/dropbox_settings/dropbox_settings.json +msgctxt "Dropbox Settings" +msgid "Weekly" +msgstr "crwdns12570:0crwdne12570:0" + +#. Option for a Select field in DocType 'Energy Point Settings' +#: social/doctype/energy_point_settings/energy_point_settings.json +msgctxt "Energy Point Settings" +msgid "Weekly" +msgstr "crwdns12572:0crwdne12572:0" + +#. Option for a Select field in DocType 'Event' +#: desk/doctype/event/event.json +msgctxt "Event" +msgid "Weekly" +msgstr "crwdns12574:0crwdne12574:0" + +#. Option for a Select field in DocType 'Google Drive' +#: integrations/doctype/google_drive/google_drive.json +msgctxt "Google Drive" +msgid "Weekly" +msgstr "crwdns12576:0crwdne12576:0" + +#. Option for a Select field in DocType 'Number Card' +#: desk/doctype/number_card/number_card.json +msgctxt "Number Card" +msgid "Weekly" +msgstr "crwdns12578:0crwdne12578:0" + +#. Option for a Select field in DocType 'S3 Backup Settings' +#: integrations/doctype/s3_backup_settings/s3_backup_settings.json +msgctxt "S3 Backup Settings" +msgid "Weekly" +msgstr "crwdns12580:0crwdne12580:0" + +#. Option for a Select field in DocType 'Scheduled Job Type' +#: core/doctype/scheduled_job_type/scheduled_job_type.json +msgctxt "Scheduled Job Type" +msgid "Weekly" +msgstr "crwdns12582:0crwdne12582:0" + +#. Option for a Select field in DocType 'Server Script' +#: core/doctype/server_script/server_script.json +msgctxt "Server Script" +msgid "Weekly" +msgstr "crwdns12584:0crwdne12584:0" + +#. Option for a Select field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Weekly" +msgstr "crwdns12586:0crwdne12586:0" + +#. Option for a Select field in DocType 'Scheduled Job Type' +#: core/doctype/scheduled_job_type/scheduled_job_type.json +msgctxt "Scheduled Job Type" +msgid "Weekly Long" +msgstr "crwdns12588:0crwdne12588:0" + +#. Option for a Select field in DocType 'Server Script' +#: core/doctype/server_script/server_script.json +msgctxt "Server Script" +msgid "Weekly Long" +msgstr "crwdns12590:0crwdne12590:0" + +#: desk/page/setup_wizard/setup_wizard.js:372 +msgid "Welcome" +msgstr "crwdns12592:0crwdne12592:0" + +#. Label of a Link field in DocType 'Email Group' +#: email/doctype/email_group/email_group.json +msgctxt "Email Group" +msgid "Welcome Email Template" +msgstr "crwdns12594:0crwdne12594:0" + +#. Label of a Link field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Welcome Email Template" +msgstr "crwdns12596:0crwdne12596:0" + +#. Label of a Data field in DocType 'Email Group' +#: email/doctype/email_group/email_group.json +msgctxt "Email Group" +msgid "Welcome URL" +msgstr "crwdns12598:0crwdne12598:0" + +#. Name of a Workspace +#: core/workspace/welcome_workspace/welcome_workspace.json desk/desktop.py:465 +msgid "Welcome Workspace" +msgstr "crwdns12600:0crwdne12600:0" + +#: core/doctype/user/user.py:361 +msgid "Welcome email sent" +msgstr "crwdns12602:0crwdne12602:0" + +#: core/doctype/user/user.py:436 +msgid "Welcome to {0}" +msgstr "crwdns12604:0{0}crwdne12604:0" + +#. Description of a Check field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +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 "crwdns12606:0crwdne12606:0" + +#. Description of a Check field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +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 "crwdns12608:0crwdne12608:0" + +#: public/js/frappe/widgets/widget_dialog.js:440 +msgid "Which view of the associated DocType should this shortcut take you to?" +msgstr "crwdns12610:0crwdne12610:0" + +#. Description of a Select field in DocType 'Workspace Shortcut' +#: desk/doctype/workspace_shortcut/workspace_shortcut.json +msgctxt "Workspace Shortcut" +msgid "Which view of the associated DocType should this shortcut take you to?" +msgstr "crwdns12612:0crwdne12612:0" + +#. Label of a Data field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Width" +msgstr "crwdns12614:0crwdne12614:0" + +#. Label of a Data field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Width" +msgstr "crwdns12616:0crwdne12616:0" + +#. Label of a Select field in DocType 'Dashboard Chart Link' +#: desk/doctype/dashboard_chart_link/dashboard_chart_link.json +msgctxt "Dashboard Chart Link" +msgid "Width" +msgstr "crwdns12618:0crwdne12618:0" + +#. Label of a Data field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Width" +msgstr "crwdns12620:0crwdne12620:0" + +#. Label of a Int field in DocType 'Report Column' +#: core/doctype/report_column/report_column.json +msgctxt "Report Column" +msgid "Width" +msgstr "crwdns12622:0crwdne12622:0" + +#. Label of a Check field in DocType 'Report Filter' +#: core/doctype/report_filter/report_filter.json +msgctxt "Report Filter" +msgid "Wildcard Filter" +msgstr "crwdns12624:0crwdne12624:0" + +#. Description of a Check field in DocType 'Report Filter' +#: core/doctype/report_filter/report_filter.json +msgctxt "Report Filter" +msgid "Will add \"%\" before and after the query" +msgstr "crwdns12626:0crwdne12626:0" + +#. Description of a Data field in DocType 'Blogger' +#: website/doctype/blogger/blogger.json +msgctxt "Blogger" +msgid "Will be used in url (usually first name)." +msgstr "crwdns12628:0crwdne12628:0" + +#: desk/page/setup_wizard/setup_wizard.js:470 +msgid "Will be your login ID" +msgstr "crwdns12630:0crwdne12630:0" + +#: printing/page/print_format_builder/print_format_builder.js:424 +msgid "Will only be shown if section headings are enabled" +msgstr "crwdns12632:0crwdne12632:0" + +#. Description of a Int field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Will run scheduled jobs only once a day for inactive sites. Default 4 days if set to 0." +msgstr "crwdns12634:0crwdne12634:0" + +#: public/js/frappe/form/print_utils.js:13 +msgid "With Letter head" +msgstr "crwdns12636:0crwdne12636:0" + +#: workflow/doctype/workflow/workflow.js:140 +msgid "Worflow States Don't Exist" +msgstr "crwdns12638:0crwdne12638:0" + +#. Label of a Section Break field in DocType 'RQ Worker' +#: core/doctype/rq_worker/rq_worker.json +msgctxt "RQ Worker" +msgid "Worker Information" +msgstr "crwdns12640:0crwdne12640:0" + +#. Label of a Data field in DocType 'RQ Worker' +#: core/doctype/rq_worker/rq_worker.json +msgctxt "RQ Worker" +msgid "Worker Name" +msgstr "crwdns12642:0crwdne12642:0" + +#. Name of a DocType +#: workflow/doctype/workflow/workflow.json +msgid "Workflow" +msgstr "crwdns12644:0crwdne12644:0" + +#. Option for a Select field in DocType 'Comment' +#: core/doctype/comment/comment.json +msgctxt "Comment" +msgid "Workflow" +msgstr "crwdns12646:0crwdne12646:0" + +#. Option for a Select field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Workflow" +msgstr "crwdns12648:0crwdne12648:0" + +#. Group in DocType's connections +#. Linked DocType in DocType's connections +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Workflow" +msgstr "crwdns12650:0crwdne12650:0" + +#. Label of a Link in the Build Workspace +#: core/workspace/build/build.json +msgctxt "Workflow" +msgid "Workflow" +msgstr "crwdns12652:0crwdne12652:0" + +#. Name of a DocType +#: workflow/doctype/workflow_action/workflow_action.json +#: workflow/doctype/workflow_action/workflow_action.py:486 +msgid "Workflow Action" +msgstr "crwdns12654:0crwdne12654:0" + +#. Name of a DocType +#: workflow/doctype/workflow_action_master/workflow_action_master.json +msgid "Workflow Action Master" +msgstr "crwdns12656:0crwdne12656:0" + +#. Label of a Data field in DocType 'Workflow Action Master' +#: workflow/doctype/workflow_action_master/workflow_action_master.json +msgctxt "Workflow Action Master" +msgid "Workflow Action Name" +msgstr "crwdns12658:0crwdne12658:0" + +#. Name of a DocType +#: workflow/doctype/workflow_action_permitted_role/workflow_action_permitted_role.json +msgid "Workflow Action Permitted Role" +msgstr "crwdns12660:0crwdne12660:0" + +#. Description of a Check field in DocType 'Workflow Document State' +#: workflow/doctype/workflow_document_state/workflow_document_state.json +msgctxt "Workflow Document State" +msgid "Workflow Action is not created for optional states" +msgstr "crwdns12662:0crwdne12662:0" + +#: workflow/page/workflow_builder/workflow_builder.js:4 +msgid "Workflow Builder" +msgstr "crwdns12664:0crwdne12664:0" + +#. Label of a Data field in DocType 'Workflow Document State' +#: workflow/doctype/workflow_document_state/workflow_document_state.json +msgctxt "Workflow Document State" +msgid "Workflow Builder ID" +msgstr "crwdns12666:0crwdne12666:0" + +#. Label of a Data field in DocType 'Workflow Transition' +#: workflow/doctype/workflow_transition/workflow_transition.json +msgctxt "Workflow Transition" +msgid "Workflow Builder ID" +msgstr "crwdns12668:0crwdne12668:0" + +#: 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 "crwdns12670:0crwdne12670:0" + +#. Label of a JSON field in DocType 'Workflow' +#: workflow/doctype/workflow/workflow.json +msgctxt "Workflow" +msgid "Workflow Data" +msgstr "crwdns12672:0crwdne12672:0" + +#. Name of a DocType +#: workflow/doctype/workflow_document_state/workflow_document_state.json +msgid "Workflow Document State" +msgstr "crwdns12674:0crwdne12674:0" + +#. Label of a Data field in DocType 'Workflow' +#: workflow/doctype/workflow/workflow.json +msgctxt "Workflow" +msgid "Workflow Name" +msgstr "crwdns12676:0crwdne12676:0" + +#. Name of a DocType +#: workflow/doctype/workflow_state/workflow_state.json +msgid "Workflow State" +msgstr "crwdns12678:0crwdne12678:0" + +#. Label of a Data field in DocType 'Workflow Action' +#: workflow/doctype/workflow_action/workflow_action.json +msgctxt "Workflow Action" +msgid "Workflow State" +msgstr "crwdns12680:0crwdne12680:0" + +#. Label of a Data field in DocType 'Workflow' +#: workflow/doctype/workflow/workflow.json +msgctxt "Workflow" +msgid "Workflow State Field" +msgstr "crwdns12682:0crwdne12682:0" + +#: model/workflow.py:63 +msgid "Workflow State not set" +msgstr "crwdns12684:0crwdne12684:0" + +#: model/workflow.py:201 model/workflow.py:209 +msgid "Workflow State transition not allowed from {0} to {1}" +msgstr "crwdns12686:0{0}crwdnd12686:0{1}crwdne12686:0" + +#: model/workflow.py:327 +msgid "Workflow Status" +msgstr "crwdns12688:0crwdne12688:0" + +#. Name of a DocType +#: workflow/doctype/workflow_transition/workflow_transition.json +msgid "Workflow Transition" +msgstr "crwdns12690:0crwdne12690:0" + +#. Description of the Onboarding Step 'Setup Approval Workflows' +#: custom/onboarding_step/workflows/workflows.json +msgid "Workflows allow you to define custom rules for the approval process of a particular document in ERPNext. You can also set complex Workflow Rules and set approval conditions." +msgstr "crwdns12692:0crwdne12692:0" + +#. Name of a DocType +#: desk/doctype/workspace/workspace.json +#: public/js/frappe/ui/toolbar/search_utils.js:541 +#: public/js/frappe/views/workspace/workspace.js:10 +msgid "Workspace" +msgstr "crwdns12694:0crwdne12694:0" + +#. Linked DocType in Module Def's connections +#: core/doctype/module_def/module_def.json +msgctxt "Module Def" +msgid "Workspace" +msgstr "crwdns12696:0crwdne12696:0" + +#. Label of a Link in the Build Workspace +#: core/workspace/build/build.json +msgctxt "Workspace" +msgid "Workspace" +msgstr "crwdns12698:0crwdne12698:0" + +#: public/js/frappe/router.js:194 +msgid "Workspace {0} does not exist" +msgstr "crwdns12700:0{0}crwdne12700:0" + +#. Name of a DocType +#: desk/doctype/workspace_chart/workspace_chart.json +msgid "Workspace Chart" +msgstr "crwdns12702:0crwdne12702:0" + +#. Name of a DocType +#: desk/doctype/workspace_custom_block/workspace_custom_block.json +msgid "Workspace Custom Block" +msgstr "crwdns12704:0crwdne12704:0" + +#. Name of a DocType +#: desk/doctype/workspace_link/workspace_link.json +msgid "Workspace Link" +msgstr "crwdns12706:0crwdne12706:0" + +#. Name of a role +#: desk/doctype/custom_html_block/custom_html_block.json +#: desk/doctype/workspace/workspace.json +msgid "Workspace Manager" +msgstr "crwdns12708:0crwdne12708:0" + +#. Name of a DocType +#: desk/doctype/workspace_number_card/workspace_number_card.json +msgid "Workspace Number Card" +msgstr "crwdns12710:0crwdne12710:0" + +#. Name of a DocType +#: desk/doctype/workspace_quick_list/workspace_quick_list.json +msgid "Workspace Quick List" +msgstr "crwdns12712:0crwdne12712:0" + +#. Name of a DocType +#: desk/doctype/workspace_shortcut/workspace_shortcut.json +msgid "Workspace Shortcut" +msgstr "crwdns12714:0crwdne12714:0" + +#: public/js/frappe/views/workspace/workspace.js:1265 +msgid "Workspace {0} Created Successfully" +msgstr "crwdns12716:0{0}crwdne12716:0" + +#: public/js/frappe/views/workspace/workspace.js:894 +msgid "Workspace {0} Deleted Successfully" +msgstr "crwdns12718:0{0}crwdne12718:0" + +#: public/js/frappe/views/workspace/workspace.js:672 +msgid "Workspace {0} Edited Successfully" +msgstr "crwdns12720:0{0}crwdne12720:0" + +#. Option for a Select field in DocType 'Form Tour' +#: desk/doctype/form_tour/form_tour.json +msgctxt "Form Tour" +msgid "Workspaces" +msgstr "crwdns12722:0crwdne12722:0" + +#. Label of a Check field in DocType 'Custom DocPerm' +#: core/doctype/custom_docperm/custom_docperm.json +msgctxt "Custom DocPerm" +msgid "Write" +msgstr "crwdns12724:0crwdne12724:0" + +#. Label of a Check field in DocType 'DocPerm' +#: core/doctype/docperm/docperm.json +msgctxt "DocPerm" +msgid "Write" +msgstr "crwdns12726:0crwdne12726:0" + +#. Label of a Check field in DocType 'DocShare' +#: core/doctype/docshare/docshare.json +msgctxt "DocShare" +msgid "Write" +msgstr "crwdns12728:0crwdne12728:0" + +#. Label of a Check field in DocType 'User Document Type' +#: core/doctype/user_document_type/user_document_type.json +msgctxt "User Document Type" +msgid "Write" +msgstr "crwdns12730:0crwdne12730:0" + +#: model/base_document.py:840 +msgid "Wrong Fetch From value" +msgstr "crwdns12732:0crwdne12732:0" + +#: public/js/frappe/views/reports/report_view.js:464 +msgid "X Axis Field" +msgstr "crwdns12734:0crwdne12734:0" + +#. Label of a Select field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "X Field" +msgstr "crwdns12736:0crwdne12736:0" + +#. Option for a Select field in DocType 'Auto Email Report' +#: email/doctype/auto_email_report/auto_email_report.json +msgctxt "Auto Email Report" +msgid "XLSX" +msgstr "crwdns12738:0crwdne12738:0" + +#. Label of a Table field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "Y Axis" +msgstr "crwdns12740:0crwdne12740:0" + +#: public/js/frappe/views/reports/report_view.js:471 +msgid "Y Axis Fields" +msgstr "crwdns12742:0crwdne12742:0" + +#: public/js/frappe/views/reports/query_report.js:1132 +msgid "Y Field" +msgstr "crwdns12744:0crwdne12744:0" + +#. Label of a Select field in DocType 'Dashboard Chart Field' +#: desk/doctype/dashboard_chart_field/dashboard_chart_field.json +msgctxt "Dashboard Chart Field" +msgid "Y Field" +msgstr "crwdns12746:0crwdne12746:0" + +#. Option for a Select field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Yahoo Mail" +msgstr "crwdns12748:0crwdne12748:0" + +#. Option for a Select field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Yandex.Mail" +msgstr "crwdns12750:0crwdne12750:0" + +#. Label of a Data field in DocType 'Company History' +#: website/doctype/company_history/company_history.json +msgctxt "Company History" +msgid "Year" +msgstr "crwdns12752:0crwdne12752:0" + +#. Label of a Select field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "Year" +msgstr "crwdns12754:0crwdne12754:0" + +#: public/js/frappe/utils/common.js:403 +msgid "Yearly" +msgstr "crwdns12756:0crwdne12756:0" + +#. Option for a Select field in DocType 'Auto Email Report' +#: email/doctype/auto_email_report/auto_email_report.json +msgctxt "Auto Email Report" +msgid "Yearly" +msgstr "crwdns12758:0crwdne12758:0" + +#. Option for a Select field in DocType 'Auto Repeat' +#: automation/doctype/auto_repeat/auto_repeat.json +msgctxt "Auto Repeat" +msgid "Yearly" +msgstr "crwdns12760:0crwdne12760:0" + +#. Option for a Select field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "Yearly" +msgstr "crwdns12762:0crwdne12762:0" + +#. Option for a Select field in DocType 'Event' +#: desk/doctype/event/event.json +msgctxt "Event" +msgid "Yearly" +msgstr "crwdns12764:0crwdne12764:0" + +#. Option for a Select field in DocType 'Number Card' +#: desk/doctype/number_card/number_card.json +msgctxt "Number Card" +msgid "Yearly" +msgstr "crwdns12766:0crwdne12766:0" + +#. Option for a Select field in DocType 'Scheduled Job Type' +#: core/doctype/scheduled_job_type/scheduled_job_type.json +msgctxt "Scheduled Job Type" +msgid "Yearly" +msgstr "crwdns12768:0crwdne12768:0" + +#. Option for a Select field in DocType 'Server Script' +#: core/doctype/server_script/server_script.json +msgctxt "Server Script" +msgid "Yearly" +msgstr "crwdns12770:0crwdne12770:0" + +#. Option for a Select field in DocType 'DocType State' +#: core/doctype/doctype_state/doctype_state.json +msgctxt "DocType State" +msgid "Yellow" +msgstr "crwdns12772:0crwdne12772:0" + +#. Option for a Select field in DocType 'Kanban Board Column' +#: desk/doctype/kanban_board_column/kanban_board_column.json +msgctxt "Kanban Board Column" +msgid "Yellow" +msgstr "crwdns12774:0crwdne12774:0" + +#: integrations/doctype/webhook/webhook.py:127 +#: integrations/doctype/webhook/webhook.py:137 +#: public/js/form_builder/utils.js:336 +#: public/js/frappe/form/controls/link.js:471 +#: public/js/frappe/list/list_sidebar_group_by.js:223 +#: public/js/frappe/views/reports/query_report.js:1513 +#: website/doctype/help_article/templates/help_article.html:25 +msgid "Yes" +msgstr "crwdns12776:0crwdne12776:0" + +#: public/js/frappe/ui/messages.js:32 +msgctxt "Approve confirmation dialog" +msgid "Yes" +msgstr "crwdns12778:0crwdne12778:0" + +#: public/js/frappe/ui/filters/filter.js:500 +msgctxt "Checkbox is checked" +msgid "Yes" +msgstr "crwdns12780:0crwdne12780:0" + +#. Option for a Select field in DocType 'LDAP Settings' +#: integrations/doctype/ldap_settings/ldap_settings.json +msgctxt "LDAP Settings" +msgid "Yes" +msgstr "crwdns12782:0crwdne12782:0" + +#. Option for a Select field in DocType 'Page' +#: core/doctype/page/page.json +msgctxt "Page" +msgid "Yes" +msgstr "crwdns12784:0crwdne12784:0" + +#. Option for a Select field in DocType 'Print Format' +#: printing/doctype/print_format/print_format.json +msgctxt "Print Format" +msgid "Yes" +msgstr "crwdns12786:0crwdne12786:0" + +#. Option for a Select field in DocType 'Report' +#: core/doctype/report/report.json +msgctxt "Report" +msgid "Yes" +msgstr "crwdns12788:0crwdne12788:0" + +#: public/js/frappe/utils/user.js:33 +msgctxt "Name of the current user. For example: You edited this 5 hours ago." +msgid "You" +msgstr "crwdns12790:0crwdne12790:0" + +#: public/js/frappe/form/footer/form_timeline.js:462 +msgid "You Liked" +msgstr "crwdns12792:0crwdne12792:0" + +#: public/js/frappe/dom.js:425 +msgid "You are connected to internet." +msgstr "crwdns12794:0crwdne12794:0" + +#: permissions.py:414 +msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}" +msgstr "crwdns12796:0{0}crwdnd12796:0{1}crwdnd12796:0{2}crwdnd12796:0{3}crwdne12796:0" + +#: permissions.py:403 +msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}" +msgstr "crwdns12798:0{0}crwdnd12798:0{1}crwdnd12798:0{2}crwdnd12798:0{3}crwdnd12798:0{4}crwdne12798:0" + +#: public/js/frappe/views/kanban/kanban_board.bundle.js:69 +msgid "You are not allowed to create columns" +msgstr "crwdns12800:0crwdne12800:0" + +#: core/doctype/report/report.py:93 +msgid "You are not allowed to delete Standard Report" +msgstr "crwdns12802:0crwdne12802:0" + +#: website/doctype/website_theme/website_theme.py:74 +msgid "You are not allowed to delete a standard Website Theme" +msgstr "crwdns12804:0crwdne12804:0" + +#: core/doctype/report/report.py:380 +msgid "You are not allowed to edit the report." +msgstr "crwdns12806:0crwdne12806:0" + +#: permissions.py:612 +msgid "You are not allowed to export {} doctype" +msgstr "crwdns12808:0crwdne12808:0" + +#: public/js/frappe/views/treeview.js:431 +msgid "You are not allowed to print this report" +msgstr "crwdns12810:0crwdne12810:0" + +#: public/js/frappe/views/communication.js:669 +msgid "You are not allowed to send emails related to this document" +msgstr "crwdns12812:0crwdne12812:0" + +#: website/doctype/web_form/web_form.py:463 +msgid "You are not allowed to update this Web Form Document" +msgstr "crwdns12814:0crwdne12814:0" + +#: public/js/frappe/request.js:35 +msgid "You are not connected to Internet. Retry after sometime." +msgstr "crwdns12816:0crwdne12816:0" + +#: public/js/frappe/web_form/webform_script.js:22 +msgid "You are not permitted to access this page without login." +msgstr "crwdns12818:0crwdne12818:0" + +#: www/app.py:25 +msgid "You are not permitted to access this page." +msgstr "crwdns12820:0crwdne12820:0" + +#: __init__.py:817 +msgid "You are not permitted to access this resource." +msgstr "crwdns12822:0crwdne12822:0" + +#: 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 "crwdns12824:0crwdne12824:0" + +#: core/doctype/installed_applications/installed_applications.py:59 +msgid "You are only allowed to update order, do not remove or add apps." +msgstr "crwdns12826:0crwdne12826:0" + +#: email/doctype/email_account/email_account.js:221 +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 "crwdns12828:0crwdne12828:0" + +#: public/js/frappe/form/footer/form_timeline.js:413 +msgctxt "Form timeline" +msgid "You attached {0}" +msgstr "crwdns12830:0{0}crwdne12830:0" + +#: printing/page/print_format_builder/print_format_builder.js:741 +msgid "You can add dynamic properties from the document by using Jinja templating." +msgstr "crwdns12832:0crwdne12832:0" + +#: templates/emails/new_user.html:22 +msgid "You can also copy-paste following link in your browser" +msgstr "crwdns12834:0crwdne12834:0" + +#: templates/emails/download_data.html:9 +msgid "You can also copy-paste this " +msgstr "crwdns12836:0crwdne12836:0" + +#: templates/emails/delete_data_confirmation.html:11 +msgid "You can also copy-paste this {0} to your browser" +msgstr "crwdns12838:0{0}crwdne12838:0" + +#: public/js/frappe/logtypes.js:21 +msgid "You can change the retention policy from {0}." +msgstr "crwdns12840:0{0}crwdne12840:0" + +#: public/js/frappe/widgets/onboarding_widget.js:199 +msgid "You can continue with the onboarding after exploring this page" +msgstr "crwdns12842:0crwdne12842:0" + +#: core/doctype/file/file.py:684 +msgid "You can increase the limit from System Settings." +msgstr "crwdns12844:0crwdne12844:0" + +#: utils/synchronization.py:48 +msgid "You can manually remove the lock if you think it's safe: {}" +msgstr "crwdns12846:0crwdne12846:0" + +#: public/js/frappe/form/controls/markdown_editor.js:74 +msgid "You can only insert images in Markdown fields" +msgstr "crwdns12848:0crwdne12848:0" + +#: core/doctype/user_type/user_type.py:103 +msgid "You can only set the 3 custom doctypes in the Document Types table." +msgstr "crwdns12850:0crwdne12850:0" + +#: handler.py:226 +msgid "You can only upload JPG, PNG, PDF, TXT or Microsoft documents." +msgstr "crwdns12852:0crwdne12852:0" + +#: core/doctype/data_export/exporter.py:201 +msgid "You can only upload upto 5000 records in one go. (may be less in some cases)" +msgstr "crwdns12854:0crwdne12854:0" + +#: desk/query_report.py:336 +msgid "You can try changing the filters of your report." +msgstr "crwdns12856:0crwdne12856:0" + +#: public/js/frappe/form/link_selector.js:30 +msgid "You can use wildcard %" +msgstr "crwdns12858:0crwdne12858:0" + +#: custom/doctype/customize_form/customize_form.py:387 +msgid "You can't set 'Options' for field {0}" +msgstr "crwdns12860:0{0}crwdne12860:0" + +#: custom/doctype/customize_form/customize_form.py:391 +msgid "You can't set 'Translatable' for field {0}" +msgstr "crwdns12862:0{0}crwdne12862:0" + +#: public/js/frappe/form/footer/version_timeline_content_builder.js:74 +msgctxt "Form timeline" +msgid "You cancelled this document" +msgstr "crwdns12864:0crwdne12864:0" + +#: public/js/frappe/form/footer/version_timeline_content_builder.js:61 +msgctxt "Form timeline" +msgid "You cancelled this document {1}" +msgstr "crwdns12866:0{1}crwdne12866:0" + +#: desk/doctype/dashboard_chart/dashboard_chart.py:417 +msgid "You cannot create a dashboard chart from single DocTypes" +msgstr "crwdns12868:0crwdne12868:0" + +#: social/doctype/energy_point_log/energy_point_log.py:44 +msgid "You cannot give review points to yourself" +msgstr "crwdns12870:0crwdne12870:0" + +#: custom/doctype/customize_form/customize_form.py:383 +msgid "You cannot unset 'Read Only' for field {0}" +msgstr "crwdns12872:0{0}crwdne12872:0" + +#: public/js/frappe/form/footer/version_timeline_content_builder.js:121 +msgid "You changed the value of {0}" +msgstr "crwdns12874:0{0}crwdne12874:0" + +#: public/js/frappe/form/footer/version_timeline_content_builder.js:110 +msgid "You changed the value of {0} {1}" +msgstr "crwdns12876:0{0}crwdnd12876:0{1}crwdne12876:0" + +#: public/js/frappe/form/footer/version_timeline_content_builder.js:183 +msgid "You changed the values for {0}" +msgstr "crwdns12878:0{0}crwdne12878:0" + +#: public/js/frappe/form/footer/version_timeline_content_builder.js:172 +msgid "You changed the values for {0} {1}" +msgstr "crwdns12880:0{0}crwdnd12880:0{1}crwdne12880:0" + +#: public/js/frappe/form/footer/form_timeline.js:442 +msgctxt "Form timeline" +msgid "You changed {0} to {1}" +msgstr "crwdns12882:0{0}crwdnd12882:0{1}crwdne12882:0" + +#: public/js/frappe/form/footer/form_timeline.js:138 +#: public/js/frappe/form/sidebar/form_sidebar.js:106 +msgid "You created this" +msgstr "crwdns12884:0crwdne12884:0" + +#: client.py:430 +msgid "You do not have Read or Select Permissions for {}" +msgstr "crwdns12886:0crwdne12886:0" + +#: public/js/frappe/request.js:174 +msgid "You do not have enough permissions to access this resource. Please contact your manager to get access." +msgstr "crwdns12888:0crwdne12888:0" + +#: app.py:355 +msgid "You do not have enough permissions to complete the action" +msgstr "crwdns12890:0crwdne12890:0" + +#: public/js/frappe/form/sidebar/review.js:91 +msgid "You do not have enough points" +msgstr "crwdns12892:0crwdne12892:0" + +#: social/doctype/energy_point_log/energy_point_log.py:296 +msgid "You do not have enough review points" +msgstr "crwdns12894:0crwdne12894:0" + +#: www/printview.py:369 +msgid "You do not have permission to view this document" +msgstr "crwdns12896:0crwdne12896:0" + +#: public/js/frappe/form/form.js:979 +msgid "You do not have permissions to cancel all linked documents." +msgstr "crwdns12898:0crwdne12898:0" + +#: desk/query_report.py:39 +msgid "You don't have access to Report: {0}" +msgstr "crwdns12900:0{0}crwdne12900:0" + +#: website/doctype/web_form/web_form.py:699 +msgid "You don't have permission to access the {0} DocType." +msgstr "crwdns12902:0{0}crwdne12902:0" + +#: utils/response.py:274 +msgid "You don't have permission to access this file" +msgstr "crwdns12904:0crwdne12904:0" + +#: desk/query_report.py:45 +msgid "You don't have permission to get a report on: {0}" +msgstr "crwdns12906:0{0}crwdne12906:0" + +#: website/doctype/web_form/web_form.py:167 +msgid "You don't have the permissions to access this document" +msgstr "crwdns12908:0crwdne12908:0" + +#: social/doctype/energy_point_log/energy_point_log.py:156 +msgid "You gained {0} point" +msgstr "crwdns12910:0{0}crwdne12910:0" + +#: social/doctype/energy_point_log/energy_point_log.py:158 +msgid "You gained {0} points" +msgstr "crwdns12912:0{0}crwdne12912:0" + +#: templates/emails/new_message.html:1 +msgid "You have a new message from: " +msgstr "crwdns12914:0crwdne12914:0" + +#: handler.py:123 +msgid "You have been successfully logged out" +msgstr "crwdns12916:0crwdne12916:0" + +#: custom/doctype/customize_form/customize_form.py:240 +msgid "You have hit the row size limit on database table: {0}" +msgstr "crwdns12918:0{0}crwdne12918:0" + +#: public/js/frappe/list/bulk_operations.js:347 +msgid "You have not entered a value. The field will be set to empty." +msgstr "crwdns12920:0crwdne12920:0" + +#: templates/includes/likes/likes.py:31 +msgid "You have received a ❤️ like on your blog post" +msgstr "crwdns12922:0crwdne12922:0" + +#: twofactor.py:455 +msgid "You have to enable Two Factor Auth from System Settings." +msgstr "crwdns12924:0crwdne12924:0" + +#: public/js/frappe/model/create_new.js:332 +msgid "You have unsaved changes in this form. Please save before you continue." +msgstr "crwdns12926:0crwdne12926:0" + +#: core/doctype/log_settings/log_settings.py:127 +msgid "You have unseen {0}" +msgstr "crwdns12928:0{0}crwdne12928:0" + +#: public/js/frappe/list/list_view.js:468 +msgid "You haven't created a {0} yet" +msgstr "crwdns12930:0{0}crwdne12930:0" + +#: rate_limiter.py:150 +msgid "You hit the rate limit because of too many requests. Please try after sometime." +msgstr "crwdns12932:0crwdne12932:0" + +#: public/js/frappe/form/footer/form_timeline.js:149 +#: public/js/frappe/form/sidebar/form_sidebar.js:95 +msgid "You last edited this" +msgstr "crwdns12934:0crwdne12934:0" + +#: public/js/frappe/widgets/widget_dialog.js:308 +msgid "You must add atleast one link." +msgstr "crwdns12936:0crwdne12936:0" + +#: website/doctype/web_form/web_form.py:669 +msgid "You must be logged in to use this form." +msgstr "crwdns12938:0crwdne12938:0" + +#: website/doctype/web_form/web_form.py:503 +msgid "You must login to submit this form" +msgstr "crwdns12940:0crwdne12940:0" + +#: desk/doctype/workspace/workspace.py:69 +msgid "You need to be Workspace Manager to edit this document" +msgstr "crwdns12942:0crwdne12942:0" + +#: website/doctype/web_form/web_form.py:90 +msgid "You need to be in developer mode to edit a Standard Web Form" +msgstr "crwdns12944:0crwdne12944:0" + +#: utils/response.py:255 +msgid "You need to be logged in and have System Manager Role to be able to access backups." +msgstr "crwdns12946:0crwdne12946:0" + +#: www/me.py:13 www/third_party_apps.py:10 +msgid "You need to be logged in to access this page" +msgstr "crwdns12948:0crwdne12948:0" + +#: website/doctype/web_form/web_form.py:158 +msgid "You need to be logged in to access this {0}." +msgstr "crwdns12950:0{0}crwdne12950:0" + +#: www/login.html:73 +msgid "You need to enable JavaScript for your app to work." +msgstr "crwdns12952:0crwdne12952:0" + +#: core/doctype/docshare/docshare.py:62 +msgid "You need to have \"Share\" permission" +msgstr "crwdns12954:0crwdne12954:0" + +#: utils/print_format.py:156 +msgid "You need to install pycups to use this feature!" +msgstr "crwdns12956:0crwdne12956:0" + +#: email/doctype/email_account/email_account.py:140 +msgid "You need to set one IMAP folder for {0}" +msgstr "crwdns12958:0{0}crwdne12958:0" + +#: model/rename_doc.py:384 +msgid "You need write permission to rename" +msgstr "crwdns12960:0crwdne12960:0" + +#: client.py:458 +msgid "You need {0} permission to fetch values from {1} {2}" +msgstr "crwdns12962:0{0}crwdnd12962:0{1}crwdnd12962:0{2}crwdne12962:0" + +#: public/js/frappe/form/footer/form_timeline.js:418 +msgctxt "Form timeline" +msgid "You removed attachment {0}" +msgstr "crwdns12964:0{0}crwdne12964:0" + +#: public/js/frappe/widgets/onboarding_widget.js:525 +msgid "You seem good to go!" +msgstr "crwdns12966:0crwdne12966:0" + +#: public/js/frappe/list/bulk_operations.js:29 +msgid "You selected Draft or Cancelled documents" +msgstr "crwdns12968:0crwdne12968:0" + +#: public/js/frappe/form/footer/version_timeline_content_builder.js:48 +msgctxt "Form timeline" +msgid "You submitted this document" +msgstr "crwdns12970:0crwdne12970:0" + +#: public/js/frappe/form/footer/version_timeline_content_builder.js:35 +msgctxt "Form timeline" +msgid "You submitted this document {0}" +msgstr "crwdns12972:0{0}crwdne12972:0" + +#: public/js/frappe/form/sidebar/document_follow.js:144 +msgid "You unfollowed this document" +msgstr "crwdns12974:0crwdne12974:0" + +#: public/js/frappe/form/footer/form_timeline.js:182 +msgid "You viewed this" +msgstr "crwdns12976:0crwdne12976:0" + +#: desk/page/setup_wizard/setup_wizard.js:385 +msgid "Your Country" +msgstr "crwdns12978:0crwdne12978:0" + +#: desk/page/setup_wizard/setup_wizard.js:377 +msgid "Your Language" +msgstr "crwdns12980:0crwdne12980:0" + +#: templates/includes/comments/comments.html:21 +msgid "Your Name" +msgstr "crwdns12982:0crwdne12982:0" + +#: patches/v14_0/update_workspace2.py:34 +msgid "Your Shortcuts" +msgstr "crwdns12984:0crwdne12984:0" + +#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:141 +#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:147 +msgid "Your account has been deleted" +msgstr "crwdns12986:0crwdne12986:0" + +#: auth.py:465 +msgid "Your account has been locked and will resume after {0} seconds" +msgstr "crwdns12988:0{0}crwdne12988:0" + +#: desk/form/assign_to.py:266 +msgid "Your assignment on {0} {1} has been removed by {2}" +msgstr "crwdns12990:0{0}crwdnd12990:0{1}crwdnd12990:0{2}crwdne12990:0" + +#: templates/pages/integrations/gcalendar-success.html:11 +msgid "Your connection request to Google Calendar was successfully accepted" +msgstr "crwdns12992:0crwdne12992:0" + +#: www/contact.html:35 +msgid "Your email address" +msgstr "crwdns12994:0crwdne12994:0" + +#: public/js/frappe/web_form/web_form.js:424 +msgid "Your form has been successfully updated" +msgstr "crwdns12996:0crwdne12996:0" + +#: templates/emails/new_user.html:6 +msgid "Your login id is" +msgstr "crwdns12998:0crwdne12998:0" + +#: www/update-password.html:165 +msgid "Your new password has been set successfully." +msgstr "crwdns13000:0crwdne13000:0" + +#: www/update-password.html:145 +msgid "Your old password is incorrect." +msgstr "crwdns13002:0crwdne13002:0" + +#. Description of a Small Text field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Your organization name and address for the email footer." +msgstr "crwdns13004:0crwdne13004:0" + +#: 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 "crwdns13006:0crwdne13006:0" + +#: app.py:346 +msgid "Your session has expired, please login again to continue." +msgstr "crwdns13008:0crwdne13008:0" + +#: templates/emails/verification_code.html:1 +msgid "Your verification code is {0}" +msgstr "crwdns13010:0{0}crwdne13010:0" + +#. Success message of the Module Onboarding 'Website' +#: website/module_onboarding/website/website.json +msgid "Your website is all set up!" +msgstr "crwdns13012:0crwdne13012:0" + +#: utils/data.py:1518 +msgid "Zero" +msgstr "crwdns13014:0crwdne13014:0" + +#. Description of a Int field in DocType 'Auto Email Report' +#: email/doctype/auto_email_report/auto_email_report.json +msgctxt "Auto Email Report" +msgid "Zero means send records updated at anytime" +msgstr "crwdns13016:0crwdne13016:0" + +#. Label of a Link field in DocType 'Desktop Icon' +#: desk/doctype/desktop_icon/desktop_icon.json +msgctxt "Desktop Icon" +msgid "_doctype" +msgstr "crwdns13018:0crwdne13018:0" + +#. Label of a Link field in DocType 'Desktop Icon' +#: desk/doctype/desktop_icon/desktop_icon.json +msgctxt "Desktop Icon" +msgid "_report" +msgstr "crwdns13020:0crwdne13020:0" + +#: utils/background_jobs.py:94 +msgid "`job_id` paramater is required for deduplication." +msgstr "crwdns13022:0crwdne13022:0" + +#: public/js/frappe/form/footer/version_timeline_content_builder.js:219 +msgid "added rows for {0}" +msgstr "crwdns13024:0{0}crwdne13024:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "adjust" +msgstr "crwdns13026:0crwdne13026:0" + +#. Option for a Select field in DocType 'Webhook' +#: integrations/doctype/webhook/webhook.json +msgctxt "Webhook" +msgid "after_insert" +msgstr "crwdns13028:0crwdne13028:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "align-center" +msgstr "crwdns13030:0crwdne13030:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "align-justify" +msgstr "crwdns13032:0crwdne13032:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "align-left" +msgstr "crwdns13034:0crwdne13034:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "align-right" +msgstr "crwdns13036:0crwdne13036:0" + +#. Option for a Select field in DocType 'Permission Debugger' +#: core/doctype/permission_debugger/permission_debugger.json +msgctxt "Permission Debugger" +msgid "amend" +msgstr "crwdns13038:0crwdne13038:0" + +#: public/js/frappe/utils/utils.js:396 utils/data.py:1528 +msgid "and" +msgstr "crwdns13040:0crwdne13040:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "arrow-down" +msgstr "crwdns13042:0crwdne13042:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "arrow-left" +msgstr "crwdns13044:0crwdne13044:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "arrow-right" +msgstr "crwdns13046:0crwdne13046:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "arrow-up" +msgstr "crwdns13048:0crwdne13048:0" + +#: public/js/frappe/ui/sort_selector.js:48 +msgid "ascending" +msgstr "crwdns13050:0crwdne13050:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "asterisk" +msgstr "crwdns13052:0crwdne13052:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "backward" +msgstr "crwdns13054:0crwdne13054:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "ban-circle" +msgstr "crwdns13056:0crwdne13056:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "barcode" +msgstr "crwdns13058:0crwdne13058:0" + +#: model/document.py:1337 +msgid "beginning with" +msgstr "crwdns13060:0crwdne13060:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "bell" +msgstr "crwdns13062:0crwdne13062:0" + +#. Option for a Select field in DocType 'Workspace' +#: desk/doctype/workspace/workspace.json +msgctxt "Workspace" +msgid "blue" +msgstr "crwdns13064:0crwdne13064:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "bold" +msgstr "crwdns13066:0crwdne13066:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "book" +msgstr "crwdns13068:0crwdne13068:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "bookmark" +msgstr "crwdns13070:0crwdne13070:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "briefcase" +msgstr "crwdns13072:0crwdne13072:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "bullhorn" +msgstr "crwdns13074:0crwdne13074:0" + +#: public/js/frappe/ui/toolbar/search_utils.js:270 +msgid "calendar" +msgstr "crwdns13076:0crwdne13076:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "calendar" +msgstr "crwdns13078:0crwdne13078:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "camera" +msgstr "crwdns13080:0crwdne13080:0" + +#. Option for a Select field in DocType 'Permission Debugger' +#: core/doctype/permission_debugger/permission_debugger.json +msgctxt "Permission Debugger" +msgid "cancel" +msgstr "crwdns13082:0crwdne13082:0" + +#. Option for a Select field in DocType 'RQ Job' +#: core/doctype/rq_job/rq_job.json +msgctxt "RQ Job" +msgid "canceled" +msgstr "crwdns13084:0crwdne13084:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "certificate" +msgstr "crwdns13086:0crwdne13086:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "check" +msgstr "crwdns13088:0crwdne13088:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "chevron-down" +msgstr "crwdns13090:0crwdne13090:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "chevron-left" +msgstr "crwdns13092:0crwdne13092:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "chevron-right" +msgstr "crwdns13094:0crwdne13094:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "chevron-up" +msgstr "crwdns13096:0crwdne13096:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "circle-arrow-down" +msgstr "crwdns13098:0crwdne13098:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "circle-arrow-left" +msgstr "crwdns13100:0crwdne13100:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "circle-arrow-right" +msgstr "crwdns13102:0crwdne13102:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "circle-arrow-up" +msgstr "crwdns13104:0crwdne13104:0" + +#: templates/includes/list/filters.html:19 +msgid "clear" +msgstr "crwdns13106:0crwdne13106:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "cog" +msgstr "crwdns13108:0crwdne13108:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "comment" +msgstr "crwdns13110:0crwdne13110:0" + +#. Option for a Select field in DocType 'Permission Debugger' +#: core/doctype/permission_debugger/permission_debugger.json +msgctxt "Permission Debugger" +msgid "create" +msgstr "crwdns13112:0crwdne13112:0" + +#. Option for a Select field in DocType 'Workspace' +#: desk/doctype/workspace/workspace.json +msgctxt "Workspace" +msgid "cyan" +msgstr "crwdns13114:0crwdne13114:0" + +#: public/js/frappe/utils/utils.js:1113 +msgctxt "Days (Field: Duration)" +msgid "d" +msgstr "crwdns13116:0crwdne13116:0" + +#. Option for a Select field in DocType 'Workspace' +#: desk/doctype/workspace/workspace.json +msgctxt "Workspace" +msgid "darkgrey" +msgstr "crwdns13118:0crwdne13118:0" + +#: core/page/dashboard_view/dashboard_view.js:65 +msgid "dashboard" +msgstr "crwdns13120:0crwdne13120:0" + +#. Option for a Select field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "dd-mm-yyyy" +msgstr "crwdns13122:0crwdne13122:0" + +#. Option for a Select field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "dd.mm.yyyy" +msgstr "crwdns13124:0crwdne13124:0" + +#. Option for a Select field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "dd/mm/yyyy" +msgstr "crwdns13126:0crwdne13126:0" + +#. Option for a Select field in DocType 'RQ Job' +#: core/doctype/rq_job/rq_job.json +msgctxt "RQ Job" +msgid "default" +msgstr "crwdns13128:0crwdne13128:0" + +#. Option for a Select field in DocType 'RQ Worker' +#: core/doctype/rq_worker/rq_worker.json +msgctxt "RQ Worker" +msgid "default" +msgstr "crwdns13130:0crwdne13130:0" + +#. Option for a Select field in DocType 'RQ Job' +#: core/doctype/rq_job/rq_job.json +msgctxt "RQ Job" +msgid "deferred" +msgstr "crwdns13132:0crwdne13132:0" + +#. Option for a Select field in DocType 'Permission Debugger' +#: core/doctype/permission_debugger/permission_debugger.json +msgctxt "Permission Debugger" +msgid "delete" +msgstr "crwdns13134:0crwdne13134:0" + +#: public/js/frappe/ui/sort_selector.js:48 +msgid "descending" +msgstr "crwdns13136:0crwdne13136:0" + +#: public/js/frappe/ui/toolbar/awesome_bar.js:163 +msgid "document type..., e.g. customer" +msgstr "crwdns13138:0crwdne13138:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "download" +msgstr "crwdns13140:0crwdne13140:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "download-alt" +msgstr "crwdns13142:0crwdne13142:0" + +#. Description of a Data field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "e.g. \"Support\", \"Sales\", \"Jerry Yang\"" +msgstr "crwdns13144:0crwdne13144:0" + +#: public/js/frappe/ui/toolbar/awesome_bar.js:183 +msgid "e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)..." +msgstr "crwdns13146:0crwdne13146:0" + +#. Description of a Data field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "e.g. pop.gmail.com / imap.gmail.com" +msgstr "crwdns13148:0crwdne13148:0" + +#. Description of a Data field in DocType 'Email Domain' +#: email/doctype/email_domain/email_domain.json +msgctxt "Email Domain" +msgid "e.g. pop.gmail.com / imap.gmail.com" +msgstr "crwdns13150:0crwdne13150:0" + +#. Description of a Check field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "e.g. replies@yourcomany.com. All replies will come to this inbox." +msgstr "crwdns13152:0crwdne13152:0" + +#. Description of a Data field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "e.g. smtp.gmail.com" +msgstr "crwdns13154:0crwdne13154:0" + +#. Description of a Data field in DocType 'Email Domain' +#: email/doctype/email_domain/email_domain.json +msgctxt "Email Domain" +msgid "e.g. smtp.gmail.com" +msgstr "crwdns13156:0crwdne13156:0" + +#: custom/doctype/custom_field/custom_field.js:98 +msgid "e.g.:" +msgstr "crwdns13158:0crwdne13158:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "edit" +msgstr "crwdns13160:0crwdne13160:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "eject" +msgstr "crwdns13162:0crwdne13162:0" + +#. Option for a Select field in DocType 'Permission Debugger' +#: core/doctype/permission_debugger/permission_debugger.json +msgctxt "Permission Debugger" +msgid "email" +msgstr "crwdns13164:0crwdne13164:0" + +#. Option for a Select field in DocType 'Social Link Settings' +#: website/doctype/social_link_settings/social_link_settings.json +msgctxt "Social Link Settings" +msgid "email" +msgstr "crwdns13166:0crwdne13166:0" + +#: public/js/frappe/ui/toolbar/search_utils.js:289 +msgid "email inbox" +msgstr "crwdns13168:0crwdne13168:0" + +#: permissions.py:408 permissions.py:419 +#: public/js/frappe/form/controls/link.js:479 +msgid "empty" +msgstr "crwdns13170:0crwdne13170:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "envelope" +msgstr "crwdns13172:0crwdne13172:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "exclamation-sign" +msgstr "crwdns13174:0crwdne13174:0" + +#. Option for a Select field in DocType 'Permission Debugger' +#: core/doctype/permission_debugger/permission_debugger.json +msgctxt "Permission Debugger" +msgid "export" +msgstr "crwdns13176:0crwdne13176:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "eye-close" +msgstr "crwdns13178:0crwdne13178:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "eye-open" +msgstr "crwdns13180:0crwdne13180:0" + +#. Option for a Select field in DocType 'Social Link Settings' +#: website/doctype/social_link_settings/social_link_settings.json +msgctxt "Social Link Settings" +msgid "facebook" +msgstr "crwdns13182:0crwdne13182:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "facetime-video" +msgstr "crwdns13184:0crwdne13184:0" + +#. Option for a Select field in DocType 'RQ Job' +#: core/doctype/rq_job/rq_job.json +msgctxt "RQ Job" +msgid "failed" +msgstr "crwdns13186:0crwdne13186:0" + +#. Option for a Select field in DocType 'Social Login Key' +#: integrations/doctype/social_login_key/social_login_key.json +msgctxt "Social Login Key" +msgid "fairlogin" +msgstr "crwdns13188:0crwdne13188:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "fast-backward" +msgstr "crwdns13190:0crwdne13190:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "fast-forward" +msgstr "crwdns13192:0crwdne13192:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "file" +msgstr "crwdns13194:0crwdne13194:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "film" +msgstr "crwdns13196:0crwdne13196:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "filter" +msgstr "crwdns13198:0crwdne13198:0" + +#. Option for a Select field in DocType 'RQ Job' +#: core/doctype/rq_job/rq_job.json +msgctxt "RQ Job" +msgid "finished" +msgstr "crwdns13200:0crwdne13200:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "fire" +msgstr "crwdns13202:0crwdne13202:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "flag" +msgstr "crwdns13204:0crwdne13204:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "folder-close" +msgstr "crwdns13206:0crwdne13206:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "folder-open" +msgstr "crwdns13208:0crwdne13208:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "font" +msgstr "crwdns13210:0crwdne13210:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "forward" +msgstr "crwdns13212:0crwdne13212:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "fullscreen" +msgstr "crwdns13214:0crwdne13214:0" + +#: public/js/frappe/utils/energy_point_utils.js:61 +msgid "gained by {0} via automatic rule {1}" +msgstr "crwdns13216:0{0}crwdnd13216:0{1}crwdne13216:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "gift" +msgstr "crwdns13218:0crwdne13218:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "glass" +msgstr "crwdns13220:0crwdne13220:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "globe" +msgstr "crwdns13222:0crwdne13222:0" + +#. Option for a Select field in DocType 'Workspace' +#: desk/doctype/workspace/workspace.json +msgctxt "Workspace" +msgid "gray" +msgstr "crwdns13224:0crwdne13224:0" + +#. Option for a Select field in DocType 'Workspace' +#: desk/doctype/workspace/workspace.json +msgctxt "Workspace" +msgid "green" +msgstr "crwdns13226:0crwdne13226:0" + +#. Option for a Select field in DocType 'Workspace' +#: desk/doctype/workspace/workspace.json +msgctxt "Workspace" +msgid "grey" +msgstr "crwdns13228:0crwdne13228:0" + +#: utils/backups.py:375 +msgid "gzip not found in PATH! This is required to take a backup." +msgstr "crwdns13230:0crwdne13230:0" + +#: public/js/frappe/utils/utils.js:1117 +msgctxt "Hours (Field: Duration)" +msgid "h" +msgstr "crwdns13232:0crwdne13232:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "hand-down" +msgstr "crwdns13234:0crwdne13234:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "hand-left" +msgstr "crwdns13236:0crwdne13236:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "hand-right" +msgstr "crwdns13238:0crwdne13238:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "hand-up" +msgstr "crwdns13240:0crwdne13240:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "hdd" +msgstr "crwdns13242:0crwdne13242:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "headphones" +msgstr "crwdns13244:0crwdne13244:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "heart" +msgstr "crwdns13246:0crwdne13246:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "home" +msgstr "crwdns13248:0crwdne13248:0" + +#: public/js/frappe/ui/toolbar/search_utils.js:280 +msgid "hub" +msgstr "crwdns13250:0crwdne13250:0" + +#. Label of a Data field in DocType 'Page' +#: core/doctype/page/page.json +msgctxt "Page" +msgid "icon" +msgstr "crwdns13252:0crwdne13252:0" + +#. Option for a Select field in DocType 'Permission Debugger' +#: core/doctype/permission_debugger/permission_debugger.json +msgctxt "Permission Debugger" +msgid "import" +msgstr "crwdns13254:0crwdne13254:0" + +#. Description of a Int field in DocType 'Blog Post' +#: website/doctype/blog_post/blog_post.json +msgctxt "Blog Post" +msgid "in minutes" +msgstr "crwdns13256:0crwdne13256:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "inbox" +msgstr "crwdns13258:0crwdne13258:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "indent-left" +msgstr "crwdns13260:0crwdne13260:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "indent-right" +msgstr "crwdns13262:0crwdne13262:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "info-sign" +msgstr "crwdns13264:0crwdne13264:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "italic" +msgstr "crwdns13266:0crwdne13266:0" + +#: templates/signup.html:11 www/login.html:10 +msgid "jane@example.com" +msgstr "crwdns13268:0crwdne13268:0" + +#: public/js/frappe/utils/pretty_date.js:46 +msgid "just now" +msgstr "crwdns13270:0crwdne13270:0" + +#: desk/desktop.py:254 desk/query_report.py:279 +msgid "label" +msgstr "crwdns13272:0crwdne13272:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "leaf" +msgstr "crwdns13274:0crwdne13274:0" + +#. Option for a Select field in DocType 'Workspace' +#: desk/doctype/workspace/workspace.json +msgctxt "Workspace" +msgid "light-blue" +msgstr "crwdns13276:0crwdne13276:0" + +#. Option for a Select field in DocType 'Desktop Icon' +#: desk/doctype/desktop_icon/desktop_icon.json +msgctxt "Desktop Icon" +msgid "link" +msgstr "crwdns13278:0crwdne13278:0" + +#. Option for a Select field in DocType 'Social Link Settings' +#: website/doctype/social_link_settings/social_link_settings.json +msgctxt "Social Link Settings" +msgid "linkedin" +msgstr "crwdns13280:0crwdne13280:0" + +#. Option for a Select field in DocType 'Desktop Icon' +#: desk/doctype/desktop_icon/desktop_icon.json +msgctxt "Desktop Icon" +msgid "list" +msgstr "crwdns13282:0crwdne13282:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "list" +msgstr "crwdns13284:0crwdne13284:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "list-alt" +msgstr "crwdns13286:0crwdne13286:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "lock" +msgstr "crwdns13288:0crwdne13288:0" + +#: www/third_party_apps.html:41 +msgid "logged in" +msgstr "crwdns13290:0crwdne13290:0" + +#. Option for a Select field in DocType 'RQ Job' +#: core/doctype/rq_job/rq_job.json +msgctxt "RQ Job" +msgid "long" +msgstr "crwdns13292:0crwdne13292:0" + +#. Option for a Select field in DocType 'RQ Worker' +#: core/doctype/rq_worker/rq_worker.json +msgctxt "RQ Worker" +msgid "long" +msgstr "crwdns13294:0crwdne13294:0" + +#: public/js/frappe/utils/utils.js:1121 +msgctxt "Minutes (Field: Duration)" +msgid "m" +msgstr "crwdns13296:0crwdne13296:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "magnet" +msgstr "crwdns13298:0crwdne13298:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "map-marker" +msgstr "crwdns13300:0crwdne13300:0" + +#: model/rename_doc.py:213 +msgid "merged {0} into {1}" +msgstr "crwdns13302:0{0}crwdnd13302:0{1}crwdne13302:0" + +#: website/doctype/blog_post/templates/blog_post.html:25 +#: website/doctype/blog_post/templates/blog_post_row.html:36 +msgid "min read" +msgstr "crwdns13304:0crwdne13304:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "minus" +msgstr "crwdns13306:0crwdne13306:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "minus-sign" +msgstr "crwdns13308:0crwdne13308:0" + +#. Option for a Select field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "mm-dd-yyyy" +msgstr "crwdns13310:0crwdne13310:0" + +#. Option for a Select field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "mm/dd/yyyy" +msgstr "crwdns13312:0crwdne13312:0" + +#. Option for a Select field in DocType 'Desktop Icon' +#: desk/doctype/desktop_icon/desktop_icon.json +msgctxt "Desktop Icon" +msgid "module" +msgstr "crwdns13314:0crwdne13314:0" + +#: public/js/frappe/ui/toolbar/awesome_bar.js:178 +msgid "module name..." +msgstr "crwdns13316:0crwdne13316:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "move" +msgstr "crwdns13318:0crwdne13318:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "music" +msgstr "crwdns13320:0crwdne13320:0" + +#: public/js/frappe/ui/toolbar/search_utils.js:144 +msgid "new" +msgstr "crwdns13322:0crwdne13322:0" + +#: public/js/frappe/ui/toolbar/awesome_bar.js:158 +msgid "new type of document" +msgstr "crwdns13324:0crwdne13324:0" + +#. Label of a Int field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "no failed attempts" +msgstr "crwdns13326:0crwdne13326:0" + +#. Label of a Data field in DocType 'OAuth Authorization Code' +#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +msgctxt "OAuth Authorization Code" +msgid "nonce" +msgstr "crwdns13328:0crwdne13328:0" + +#: model/document.py:1336 +msgid "none of" +msgstr "crwdns13330:0crwdne13330:0" + +#. Label of a Check field in DocType 'Reminder' +#: automation/doctype/reminder/reminder.json +msgctxt "Reminder" +msgid "notified" +msgstr "crwdns13332:0crwdne13332:0" + +#: public/js/frappe/utils/pretty_date.js:25 +msgid "now" +msgstr "crwdns13334:0crwdne13334:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "off" +msgstr "crwdns13336:0crwdne13336:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "ok" +msgstr "crwdns13338:0crwdne13338:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "ok-circle" +msgstr "crwdns13340:0crwdne13340:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "ok-sign" +msgstr "crwdns13342:0crwdne13342:0" + +#. Label of a Data field in DocType 'File' +#: core/doctype/file/file.json +msgctxt "File" +msgid "old_parent" +msgstr "crwdns13344:0crwdne13344:0" + +#. Option for a Select field in DocType 'Webhook' +#: integrations/doctype/webhook/webhook.json +msgctxt "Webhook" +msgid "on_cancel" +msgstr "crwdns13346:0crwdne13346:0" + +#. Option for a Select field in DocType 'Webhook' +#: integrations/doctype/webhook/webhook.json +msgctxt "Webhook" +msgid "on_change" +msgstr "crwdns13348:0crwdne13348:0" + +#. Option for a Select field in DocType 'Webhook' +#: integrations/doctype/webhook/webhook.json +msgctxt "Webhook" +msgid "on_submit" +msgstr "crwdns13350:0crwdne13350:0" + +#. Option for a Select field in DocType 'Webhook' +#: integrations/doctype/webhook/webhook.json +msgctxt "Webhook" +msgid "on_trash" +msgstr "crwdns13352:0crwdne13352:0" + +#. Option for a Select field in DocType 'Webhook' +#: integrations/doctype/webhook/webhook.json +msgctxt "Webhook" +msgid "on_update" +msgstr "crwdns13354:0crwdne13354:0" + +#. Option for a Select field in DocType 'Webhook' +#: integrations/doctype/webhook/webhook.json +msgctxt "Webhook" +msgid "on_update_after_submit" +msgstr "crwdns13356:0crwdne13356:0" + +#: model/document.py:1335 +msgid "one of" +msgstr "crwdns13358:0crwdne13358:0" + +#: utils/data.py:1535 +msgid "only." +msgstr "crwdns13360:0crwdne13360:0" + +#: public/js/frappe/utils/utils.js:393 www/login.html:87 +msgid "or" +msgstr "crwdns13362:0crwdne13362:0" + +#. Option for a Select field in DocType 'Workspace' +#: desk/doctype/workspace/workspace.json +msgctxt "Workspace" +msgid "orange" +msgstr "crwdns13364:0crwdne13364:0" + +#. Option for a Select field in DocType 'Desktop Icon' +#: desk/doctype/desktop_icon/desktop_icon.json +msgctxt "Desktop Icon" +msgid "page" +msgstr "crwdns13366:0crwdne13366:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "pause" +msgstr "crwdns13368:0crwdne13368:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "pencil" +msgstr "crwdns13370:0crwdne13370:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "picture" +msgstr "crwdns13372:0crwdne13372:0" + +#. Option for a Select field in DocType 'Workspace' +#: desk/doctype/workspace/workspace.json +msgctxt "Workspace" +msgid "pink" +msgstr "crwdns13374:0crwdne13374:0" + +#. Option for a Select field in DocType 'OAuth Authorization Code' +#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +msgctxt "OAuth Authorization Code" +msgid "plain" +msgstr "crwdns13376:0crwdne13376:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "plane" +msgstr "crwdns13378:0crwdne13378:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "play" +msgstr "crwdns13380:0crwdne13380:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "play-circle" +msgstr "crwdns13382:0crwdne13382:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "plus" +msgstr "crwdns13384:0crwdne13384:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "plus-sign" +msgstr "crwdns13386:0crwdne13386:0" + +#. Option for a Select field in DocType 'Permission Debugger' +#: core/doctype/permission_debugger/permission_debugger.json +msgctxt "Permission Debugger" +msgid "print" +msgstr "crwdns13388:0crwdne13388:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "print" +msgstr "crwdns13390:0crwdne13390:0" + +#. Label of a HTML field in DocType 'System Console' +#: desk/doctype/system_console/system_console.json +msgctxt "System Console" +msgid "processlist" +msgstr "crwdns13392:0crwdne13392:0" + +#. Option for a Select field in DocType 'Workspace' +#: desk/doctype/workspace/workspace.json +msgctxt "Workspace" +msgid "purple" +msgstr "crwdns13394:0crwdne13394:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "qrcode" +msgstr "crwdns13396:0crwdne13396:0" + +#. Option for a Select field in DocType 'Desktop Icon' +#: desk/doctype/desktop_icon/desktop_icon.json +msgctxt "Desktop Icon" +msgid "query-report" +msgstr "crwdns13398:0crwdne13398:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "question-sign" +msgstr "crwdns13400:0crwdne13400:0" + +#. Option for a Select field in DocType 'RQ Job' +#: core/doctype/rq_job/rq_job.json +msgctxt "RQ Job" +msgid "queued" +msgstr "crwdns13402:0crwdne13402:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "random" +msgstr "crwdns13404:0crwdne13404:0" + +#. Option for a Select field in DocType 'Permission Debugger' +#: core/doctype/permission_debugger/permission_debugger.json +msgctxt "Permission Debugger" +msgid "read" +msgstr "crwdns13406:0crwdne13406:0" + +#. Option for a Select field in DocType 'Workspace' +#: desk/doctype/workspace/workspace.json +msgctxt "Workspace" +msgid "red" +msgstr "crwdns13408:0crwdne13408:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "refresh" +msgstr "crwdns13410:0crwdne13410:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "remove" +msgstr "crwdns13412:0crwdne13412:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "remove-circle" +msgstr "crwdns13414:0crwdne13414:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "remove-sign" +msgstr "crwdns13416:0crwdne13416:0" + +#: public/js/frappe/form/footer/version_timeline_content_builder.js:221 +msgid "removed rows for {0}" +msgstr "crwdns13418:0{0}crwdne13418:0" + +#: model/rename_doc.py:216 +msgid "renamed from {0} to {1}" +msgstr "crwdns13420:0{0}crwdnd13420:0{1}crwdne13420:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "repeat" +msgstr "crwdns13422:0crwdne13422:0" + +#. Option for a Select field in DocType 'Permission Debugger' +#: core/doctype/permission_debugger/permission_debugger.json +msgctxt "Permission Debugger" +msgid "report" +msgstr "crwdns13424:0crwdne13424:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "resize-full" +msgstr "crwdns13426:0crwdne13426:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "resize-horizontal" +msgstr "crwdns13428:0crwdne13428:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "resize-small" +msgstr "crwdns13430:0crwdne13430:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "resize-vertical" +msgstr "crwdns13432:0crwdne13432:0" + +#. Label of a HTML field in DocType 'Custom Role' +#: core/doctype/custom_role/custom_role.json +msgctxt "Custom Role" +msgid "response" +msgstr "crwdns13434:0crwdne13434:0" + +#: core/doctype/deleted_document/deleted_document.py:60 +msgid "restored {0} as {1}" +msgstr "crwdns13436:0{0}crwdnd13436:0{1}crwdne13436:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "retweet" +msgstr "crwdns13438:0crwdne13438:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "road" +msgstr "crwdns13440:0crwdne13440:0" + +#: public/js/frappe/utils/utils.js:1125 +msgctxt "Seconds (Field: Duration)" +msgid "s" +msgstr "crwdns13442:0crwdne13442:0" + +#. Option for a Select field in DocType 'OAuth Authorization Code' +#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +msgctxt "OAuth Authorization Code" +msgid "s256" +msgstr "crwdns13444:0crwdne13444:0" + +#. Option for a Select field in DocType 'RQ Job' +#: core/doctype/rq_job/rq_job.json +msgctxt "RQ Job" +msgid "scheduled" +msgstr "crwdns13446:0crwdne13446:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "screenshot" +msgstr "crwdns13448:0crwdne13448:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "search" +msgstr "crwdns13450:0crwdne13450:0" + +#. Option for a Select field in DocType 'Permission Debugger' +#: core/doctype/permission_debugger/permission_debugger.json +msgctxt "Permission Debugger" +msgid "select" +msgstr "crwdns13452:0crwdne13452:0" + +#. Option for a Select field in DocType 'Permission Debugger' +#: core/doctype/permission_debugger/permission_debugger.json +msgctxt "Permission Debugger" +msgid "share" +msgstr "crwdns13454:0crwdne13454:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "share" +msgstr "crwdns13456:0crwdne13456:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "share-alt" +msgstr "crwdns13458:0crwdne13458:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "shopping-cart" +msgstr "crwdns13460:0crwdne13460:0" + +#. Option for a Select field in DocType 'RQ Job' +#: core/doctype/rq_job/rq_job.json +msgctxt "RQ Job" +msgid "short" +msgstr "crwdns13462:0crwdne13462:0" + +#. Option for a Select field in DocType 'RQ Worker' +#: core/doctype/rq_worker/rq_worker.json +msgctxt "RQ Worker" +msgid "short" +msgstr "crwdns13464:0crwdne13464:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "signal" +msgstr "crwdns13466:0crwdne13466:0" + +#: public/js/frappe/widgets/number_card_widget.js:265 +msgid "since last month" +msgstr "crwdns13468:0crwdne13468:0" + +#: public/js/frappe/widgets/number_card_widget.js:264 +msgid "since last week" +msgstr "crwdns13470:0crwdne13470:0" + +#: public/js/frappe/widgets/number_card_widget.js:266 +msgid "since last year" +msgstr "crwdns13472:0crwdne13472:0" + +#: public/js/frappe/widgets/number_card_widget.js:263 +msgid "since yesterday" +msgstr "crwdns13474:0crwdne13474:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "star" +msgstr "crwdns13476:0crwdne13476:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "star-empty" +msgstr "crwdns13478:0crwdne13478:0" + +#. Option for a Select field in DocType 'RQ Job' +#: core/doctype/rq_job/rq_job.json +msgctxt "RQ Job" +msgid "started" +msgstr "crwdns13480:0crwdne13480:0" + +#: desk/page/setup_wizard/setup_wizard.js:194 +msgid "starting the setup..." +msgstr "crwdns13482:0crwdne13482:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "step-backward" +msgstr "crwdns13484:0crwdne13484:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "step-forward" +msgstr "crwdns13486:0crwdne13486:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "stop" +msgstr "crwdns13488:0crwdne13488:0" + +#. Description of a Data field in DocType 'LDAP Settings' +#: integrations/doctype/ldap_settings/ldap_settings.json +msgctxt "LDAP Settings" +msgid "string value, i.e. group" +msgstr "crwdns13490:0crwdne13490:0" + +#. Description of a Data field in DocType 'LDAP Settings' +#: integrations/doctype/ldap_settings/ldap_settings.json +msgctxt "LDAP Settings" +msgid "string value, i.e. member" +msgstr "crwdns13492:0crwdne13492:0" + +#. Description of a Data field in DocType 'LDAP Settings' +#: integrations/doctype/ldap_settings/ldap_settings.json +msgctxt "LDAP Settings" +msgid "string value, i.e. {0} or uid={0},ou=users,dc=example,dc=com" +msgstr "crwdns13494:0{0}crwdnd13494:0{0}crwdne13494:0" + +#. Option for a Select field in DocType 'Permission Debugger' +#: core/doctype/permission_debugger/permission_debugger.json +msgctxt "Permission Debugger" +msgid "submit" +msgstr "crwdns13496:0crwdne13496:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "tag" +msgstr "crwdns13498:0crwdne13498:0" + +#: public/js/frappe/ui/toolbar/awesome_bar.js:173 +msgid "tag name..., e.g. #tag" +msgstr "crwdns13500:0crwdne13500:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "tags" +msgstr "crwdns13502:0crwdne13502:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "tasks" +msgstr "crwdns13504:0crwdne13504:0" + +#: public/js/frappe/ui/toolbar/awesome_bar.js:168 +msgid "text in document type" +msgstr "crwdns13506:0crwdne13506:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "text-height" +msgstr "crwdns13508:0crwdne13508:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "text-width" +msgstr "crwdns13510:0crwdne13510:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "th" +msgstr "crwdns13512:0crwdne13512:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "th-large" +msgstr "crwdns13514:0crwdne13514:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "th-list" +msgstr "crwdns13516:0crwdne13516:0" + +#: public/js/frappe/form/controls/data.js:35 +msgid "this form" +msgstr "crwdns13518:0crwdne13518:0" + +#: tests/test_translate.py:166 +msgid "this shouldn't break" +msgstr "crwdns13520:0crwdne13520:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "thumbs-down" +msgstr "crwdns13522:0crwdne13522:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "thumbs-up" +msgstr "crwdns13524:0crwdne13524:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "time" +msgstr "crwdns13526:0crwdne13526:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "tint" +msgstr "crwdns13528:0crwdne13528:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "trash" +msgstr "crwdns13530:0crwdne13530:0" + +#. Option for a Select field in DocType 'Social Link Settings' +#: website/doctype/social_link_settings/social_link_settings.json +msgctxt "Social Link Settings" +msgid "twitter" +msgstr "crwdns13532:0crwdne13532:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "upload" +msgstr "crwdns13534:0crwdne13534:0" + +#: public/js/frappe/ui/filters/filter.js:340 +msgid "use % as wildcard" +msgstr "crwdns13536:0crwdne13536:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "user" +msgstr "crwdns13538:0crwdne13538:0" + +#: public/js/frappe/ui/filters/filter.js:339 +msgid "values separated by commas" +msgstr "crwdns13540:0crwdne13540:0" + +#. Label of a HTML field in DocType 'Audit Trail' +#: core/doctype/audit_trail/audit_trail.json +msgctxt "Audit Trail" +msgid "version_table" +msgstr "crwdns13542:0crwdne13542:0" + +#: automation/doctype/assignment_rule/assignment_rule.py:386 +msgid "via Assignment Rule" +msgstr "crwdns13544:0crwdne13544:0" + +#: core/doctype/data_import/importer.py:259 +#: core/doctype/data_import/importer.py:280 +msgid "via Data Import" +msgstr "crwdns13546:0crwdne13546:0" + +#. Description of a Check field in DocType 'Event' +#: desk/doctype/event/event.json +msgctxt "Event" +msgid "via Google Meet" +msgstr "crwdns13548:0crwdne13548:0" + +#: email/doctype/notification/notification.py:214 +msgid "via Notification" +msgstr "crwdns13550:0crwdne13550:0" + +#: public/js/frappe/utils/energy_point_utils.js:46 +msgid "via automatic rule {0} on {1}" +msgstr "crwdns13552:0{0}crwdnd13552:0{1}crwdne13552:0" + +#: public/js/frappe/form/footer/version_timeline_content_builder.js:17 +msgid "via {0}" +msgstr "crwdns13554:0{0}crwdne13554:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "volume-down" +msgstr "crwdns13556:0crwdne13556:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "volume-off" +msgstr "crwdns13558:0crwdne13558:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "volume-up" +msgstr "crwdns13560:0crwdne13560:0" + +#: templates/includes/oauth_confirmation.html:5 +msgid "wants to access the following details from your account" +msgstr "crwdns13562:0crwdne13562:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "warning-sign" +msgstr "crwdns13564:0crwdne13564:0" + +#. Description of a Check field in DocType 'Form Tour Step' +#: desk/doctype/form_tour_step/form_tour_step.json +msgctxt "Form Tour Step" +msgid "when clicked on element it will focus popover if present." +msgstr "crwdns13566:0crwdne13566:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "wrench" +msgstr "crwdns13568:0crwdne13568:0" + +#. Option for a Select field in DocType 'Permission Debugger' +#: core/doctype/permission_debugger/permission_debugger.json +msgctxt "Permission Debugger" +msgid "write" +msgstr "crwdns13570:0crwdne13570:0" + +#. Option for a Select field in DocType 'Workspace' +#: desk/doctype/workspace/workspace.json +msgctxt "Workspace" +msgid "yellow" +msgstr "crwdns13572:0crwdne13572:0" + +#: public/js/frappe/utils/pretty_date.js:58 +msgid "yesterday" +msgstr "crwdns13574:0crwdne13574:0" + +#. Option for a Select field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "yyyy-mm-dd" +msgstr "crwdns13576:0crwdne13576:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "zoom-in" +msgstr "crwdns13578:0crwdne13578:0" + +#. Option for a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "zoom-out" +msgstr "crwdns13580:0crwdne13580:0" + +#: desk/doctype/event/event.js:83 +#: integrations/doctype/google_drive/google_drive.js:19 +msgid "{0}" +msgstr "crwdns13582:0{0}crwdne13582:0" + +#: public/js/frappe/ui/toolbar/search_utils.js:81 +#: public/js/frappe/ui/toolbar/search_utils.js:82 +msgid "{0} ${label}" +msgstr "crwdns13584:0{0}crwdnd13584:0${label}crwdne13584:0" + +#: public/js/frappe/ui/toolbar/search_utils.js:177 +msgid "{0} ${skip_list ? \"\" : type}" +msgstr "crwdns13586:0{0}crwdne13586:0" + +#: public/js/frappe/ui/toolbar/search_utils.js:182 +msgid "{0} ${type}" +msgstr "crwdns13588:0{0}crwdnd13588:0${type}crwdne13588:0" + +#: public/js/frappe/data_import/data_exporter.js:77 +#: public/js/frappe/views/gantt/gantt_view.js:54 +msgid "{0} ({1})" +msgstr "crwdns13590:0{0}crwdnd13590:0{1}crwdne13590:0" + +#: public/js/frappe/data_import/data_exporter.js:76 +msgid "{0} ({1}) (1 row mandatory)" +msgstr "crwdns13592:0{0}crwdnd13592:0{1}crwdne13592:0" + +#: public/js/frappe/views/gantt/gantt_view.js:53 +msgid "{0} ({1}) - {2}%" +msgstr "crwdns13594:0{0}crwdnd13594:0{1}crwdnd13594:0{2}crwdne13594:0" + +#: public/js/frappe/ui/toolbar/awesome_bar.js:346 +#: public/js/frappe/ui/toolbar/awesome_bar.js:349 +msgid "{0} = {1}" +msgstr "crwdns13596:0{0}crwdnd13596:0{1}crwdne13596:0" + +#: public/js/frappe/views/calendar/calendar.js:29 +msgid "{0} Calendar" +msgstr "crwdns13598:0{0}crwdne13598:0" + +#: public/js/frappe/views/reports/report_view.js:544 +msgid "{0} Chart" +msgstr "crwdns13600:0{0}crwdne13600:0" + +#: core/page/dashboard_view/dashboard_view.js:67 +#: public/js/frappe/ui/toolbar/search_utils.js:331 +#: public/js/frappe/ui/toolbar/search_utils.js:332 +#: public/js/frappe/utils/utils.js:929 +#: public/js/frappe/views/dashboard/dashboard_view.js:10 +msgid "{0} Dashboard" +msgstr "crwdns13602:0{0}crwdne13602:0" + +#: public/js/frappe/form/grid_row.js:456 +#: public/js/frappe/list/list_settings.js:224 +#: public/js/frappe/views/kanban/kanban_settings.js:178 +msgid "{0} Fields" +msgstr "crwdns13604:0{0}crwdne13604:0" + +#: integrations/doctype/google_calendar/google_calendar.py:360 +msgid "{0} Google Calendar Events synced." +msgstr "crwdns13606:0{0}crwdne13606:0" + +#: integrations/doctype/google_contacts/google_contacts.py:190 +msgid "{0} Google Contacts synced." +msgstr "crwdns13608:0{0}crwdne13608:0" + +#: public/js/frappe/form/footer/form_timeline.js:463 +msgid "{0} Liked" +msgstr "crwdns13610:0{0}crwdne13610:0" + +#: public/js/frappe/utils/utils.js:923 +#: public/js/frappe/widgets/chart_widget.js:317 www/list.html:4 www/list.html:8 +msgid "{0} List" +msgstr "crwdns13612:0{0}crwdne13612:0" + +#: public/js/frappe/utils/pretty_date.js:37 +msgid "{0} M" +msgstr "crwdns13614:0{0}crwdne13614:0" + +#: public/js/frappe/views/map/map_view.js:14 +msgid "{0} Map" +msgstr "crwdns13616:0{0}crwdne13616:0" + +#: public/js/frappe/utils/utils.js:926 +msgid "{0} Modules" +msgstr "crwdns13618:0{0}crwdne13618:0" + +#: public/js/frappe/form/quick_entry.js:113 +msgid "{0} Name" +msgstr "crwdns13620:0{0}crwdne13620:0" + +#: model/base_document.py:1027 +msgid "{0} Not allowed to change {1} after submission from {2} to {3}" +msgstr "crwdns13622:0{0}crwdnd13622:0{1}crwdnd13622:0{2}crwdnd13622:0{3}crwdne13622:0" + +#: public/js/frappe/utils/utils.js:920 +#: public/js/frappe/widgets/chart_widget.js:325 +msgid "{0} Report" +msgstr "crwdns13624:0{0}crwdne13624:0" + +#: public/js/frappe/list/list_settings.js:32 +#: public/js/frappe/views/kanban/kanban_settings.js:26 +msgid "{0} Settings" +msgstr "crwdns13626:0{0}crwdne13626:0" + +#: public/js/frappe/views/treeview.js:139 +msgid "{0} Tree" +msgstr "crwdns13628:0{0}crwdne13628:0" + +#: public/js/frappe/list/base_list.js:206 +msgid "{0} View" +msgstr "crwdns13630:0{0}crwdne13630:0" + +#: public/js/frappe/form/footer/form_timeline.js:126 +#: public/js/frappe/form/sidebar/form_sidebar.js:86 +msgid "{0} Web page views" +msgstr "crwdns13632:0{0}crwdne13632:0" + +#: public/js/frappe/form/link_selector.js:225 +msgid "{0} added" +msgstr "crwdns13634:0{0}crwdne13634:0" + +#: public/js/frappe/form/controls/data.js:203 +msgid "{0} already exists. Select another name" +msgstr "crwdns13636:0{0}crwdne13636:0" + +#: email/doctype/email_unsubscribe/email_unsubscribe.py:37 +msgid "{0} already unsubscribed" +msgstr "crwdns13638:0{0}crwdne13638:0" + +#: email/doctype/email_unsubscribe/email_unsubscribe.py:50 +msgid "{0} already unsubscribed for {1} {2}" +msgstr "crwdns13640:0{0}crwdnd13640:0{1}crwdnd13640:0{2}crwdne13640:0" + +#: utils/data.py:1715 +msgid "{0} and {1}" +msgstr "crwdns13642:0{0}crwdnd13642:0{1}crwdne13642:0" + +#: public/js/frappe/utils/energy_point_utils.js:38 +msgid "{0} appreciated on {1}" +msgstr "crwdns13644:0{0}crwdnd13644:0{1}crwdne13644:0" + +#: social/doctype/energy_point_log/energy_point_log.py:126 +#: social/doctype/energy_point_log/energy_point_log.py:163 +msgid "{0} appreciated your work on {1} with {2} point" +msgstr "crwdns13646:0{0}crwdnd13646:0{1}crwdnd13646:0{2}crwdne13646:0" + +#: social/doctype/energy_point_log/energy_point_log.py:128 +#: social/doctype/energy_point_log/energy_point_log.py:165 +msgid "{0} appreciated your work on {1} with {2} points" +msgstr "crwdns13648:0{0}crwdnd13648:0{1}crwdnd13648:0{2}crwdne13648:0" + +#: public/js/frappe/utils/energy_point_utils.js:53 +msgid "{0} appreciated {1}" +msgstr "crwdns13650:0{0}crwdnd13650:0{1}crwdne13650:0" + +#: public/js/frappe/form/sidebar/review.js:148 +msgid "{0} appreciation point for {1}" +msgstr "crwdns13652:0{0}crwdnd13652:0{1}crwdne13652:0" + +#: public/js/frappe/form/sidebar/review.js:150 +msgid "{0} appreciation points for {1}" +msgstr "crwdns13654:0{0}crwdnd13654:0{1}crwdne13654:0" + +#: public/js/frappe/form/sidebar/form_sidebar_users.js:72 +msgid "{0} are currently {1}" +msgstr "crwdns13656:0{0}crwdnd13656:0{1}crwdne13656:0" + +#: printing/doctype/print_format/print_format.py:89 +msgid "{0} are required" +msgstr "crwdns13658:0{0}crwdne13658:0" + +#: desk/form/assign_to.py:273 +msgid "{0} assigned a new task {1} {2} to you" +msgstr "crwdns13660:0{0}crwdnd13660:0{1}crwdnd13660:0{2}crwdne13660:0" + +#: desk/doctype/todo/todo.py:48 +msgid "{0} assigned {1}: {2}" +msgstr "crwdns13662:0{0}crwdnd13662:0{1}crwdnd13662:0{2}crwdne13662:0" + +#: public/js/frappe/form/footer/form_timeline.js:414 +msgctxt "Form timeline" +msgid "{0} attached {1}" +msgstr "crwdns13664:0{0}crwdnd13664:0{1}crwdne13664:0" + +#: public/js/frappe/form/footer/version_timeline_content_builder.js:77 +msgid "{0} cancelled this document" +msgstr "crwdns13666:0{0}crwdne13666:0" + +#: public/js/frappe/form/footer/version_timeline_content_builder.js:68 +msgctxt "Form timeline" +msgid "{0} cancelled this document {1}" +msgstr "crwdns13668:0{0}crwdnd13668:0{1}crwdne13668:0" + +#: public/js/form_builder/store.js:185 +msgid "{0} cannot be hidden and mandatory without any default value" +msgstr "crwdns13670:0{0}crwdne13670:0" + +#: public/js/frappe/form/footer/version_timeline_content_builder.js:124 +msgid "{0} changed the value of {1}" +msgstr "crwdns13672:0{0}crwdnd13672:0{1}crwdne13672:0" + +#: public/js/frappe/form/footer/version_timeline_content_builder.js:115 +msgid "{0} changed the value of {1} {2}" +msgstr "crwdns13674:0{0}crwdnd13674:0{1}crwdnd13674:0{2}crwdne13674:0" + +#: public/js/frappe/form/footer/version_timeline_content_builder.js:186 +msgid "{0} changed the values for {1}" +msgstr "crwdns13676:0{0}crwdnd13676:0{1}crwdne13676:0" + +#: public/js/frappe/form/footer/version_timeline_content_builder.js:177 +msgid "{0} changed the values for {1} {2}" +msgstr "crwdns13678:0{0}crwdnd13678:0{1}crwdnd13678:0{2}crwdne13678:0" + +#: public/js/frappe/form/footer/form_timeline.js:443 +msgctxt "Form timeline" +msgid "{0} changed {1} to {2}" +msgstr "crwdns13680:0{0}crwdnd13680:0{1}crwdnd13680:0{2}crwdne13680:0" + +#: website/doctype/blog_post/blog_post.py:380 +msgid "{0} comments" +msgstr "crwdns13682:0{0}crwdne13682:0" + +#: public/js/frappe/views/interaction.js:261 +msgid "{0} created successfully" +msgstr "crwdns13684:0{0}crwdne13684:0" + +#: public/js/frappe/form/footer/form_timeline.js:139 +#: public/js/frappe/form/sidebar/form_sidebar.js:107 +msgid "{0} created this" +msgstr "crwdns13686:0{0}crwdne13686:0" + +#: public/js/frappe/form/sidebar/review.js:154 +msgid "{0} criticism point for {1}" +msgstr "crwdns13688:0{0}crwdnd13688:0{1}crwdne13688:0" + +#: public/js/frappe/form/sidebar/review.js:156 +msgid "{0} criticism points for {1}" +msgstr "crwdns13690:0{0}crwdnd13690:0{1}crwdne13690:0" + +#: public/js/frappe/utils/energy_point_utils.js:41 +msgid "{0} criticized on {1}" +msgstr "crwdns13692:0{0}crwdnd13692:0{1}crwdne13692:0" + +#: social/doctype/energy_point_log/energy_point_log.py:132 +#: social/doctype/energy_point_log/energy_point_log.py:170 +msgid "{0} criticized your work on {1} with {2} point" +msgstr "crwdns13694:0{0}crwdnd13694:0{1}crwdnd13694:0{2}crwdne13694:0" + +#: social/doctype/energy_point_log/energy_point_log.py:134 +#: social/doctype/energy_point_log/energy_point_log.py:172 +msgid "{0} criticized your work on {1} with {2} points" +msgstr "crwdns13696:0{0}crwdnd13696:0{1}crwdnd13696:0{2}crwdne13696:0" + +#: public/js/frappe/utils/energy_point_utils.js:56 +msgid "{0} criticized {1}" +msgstr "crwdns13698:0{0}crwdnd13698:0{1}crwdne13698:0" + +#: public/js/frappe/utils/pretty_date.js:33 +msgid "{0} d" +msgstr "crwdns13700:0{0}crwdne13700:0" + +#: public/js/frappe/utils/pretty_date.js:60 +msgid "{0} days ago" +msgstr "crwdns13702:0{0}crwdne13702:0" + +#: website/doctype/website_settings/website_settings.py:96 +#: website/doctype/website_settings/website_settings.py:116 +msgid "{0} does not exist in row {1}" +msgstr "crwdns13704:0{0}crwdnd13704:0{1}crwdne13704:0" + +#: database/mariadb/schema.py:131 database/postgres/schema.py:184 +msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values" +msgstr "crwdns13706:0{0}crwdnd13706:0{1}crwdne13706:0" + +#: core/doctype/data_import/importer.py:1017 +msgid "{0} format could not be determined from the values in this column. Defaulting to {1}." +msgstr "crwdns13708:0{0}crwdnd13708:0{1}crwdne13708:0" + +#: public/js/frappe/form/footer/version_timeline_content_builder.js:97 +msgid "{0} from {1} to {2}" +msgstr "crwdns13710:0{0}crwdnd13710:0{1}crwdnd13710:0{2}crwdne13710:0" + +#: public/js/frappe/form/footer/version_timeline_content_builder.js:157 +msgid "{0} from {1} to {2} in row #{3}" +msgstr "crwdns13712:0{0}crwdnd13712:0{1}crwdnd13712:0{2}crwdnd13712:0#{3}crwdne13712:0" + +#: social/doctype/energy_point_log/energy_point_log.py:120 +msgid "{0} gained {1} point for {2} {3}" +msgstr "crwdns13714:0{0}crwdnd13714:0{1}crwdnd13714:0{2}crwdnd13714:0{3}crwdne13714:0" + +#: templates/emails/energy_points_summary.html:8 +msgid "{0} gained {1} points" +msgstr "crwdns13716:0{0}crwdnd13716:0{1}crwdne13716:0" + +#: social/doctype/energy_point_log/energy_point_log.py:122 +msgid "{0} gained {1} points for {2} {3}" +msgstr "crwdns13718:0{0}crwdnd13718:0{1}crwdnd13718:0{2}crwdnd13718:0{3}crwdne13718:0" + +#: templates/emails/energy_points_summary.html:23 +msgid "{0} gave {1} points" +msgstr "crwdns13720:0{0}crwdnd13720:0{1}crwdne13720:0" + +#: public/js/frappe/utils/pretty_date.js:29 +msgid "{0} h" +msgstr "crwdns13722:0{0}crwdne13722:0" + +#: core/doctype/user_permission/user_permission.py:76 +msgid "{0} has already assigned default value for {1}." +msgstr "crwdns13724:0{0}crwdnd13724:0{1}crwdne13724:0" + +#: email/doctype/newsletter/newsletter.py:382 +msgid "{0} has been successfully added to the Email Group." +msgstr "crwdns13726:0{0}crwdne13726:0" + +#: email/queue.py:127 +msgid "{0} has left the conversation in {1} {2}" +msgstr "crwdns13728:0{0}crwdnd13728:0{1}crwdnd13728:0{2}crwdne13728:0" + +#: __init__.py:2356 +msgid "{0} has no versions tracked." +msgstr "crwdns13730:0{0}crwdne13730:0" + +#: public/js/frappe/utils/pretty_date.js:54 +msgid "{0} hours ago" +msgstr "crwdns13732:0{0}crwdne13732:0" + +#: website/doctype/web_form/templates/web_form.html:145 +msgid "{0} if you are not redirected within {1} seconds" +msgstr "crwdns13734:0{0}crwdnd13734:0{1}crwdne13734:0" + +#: website/doctype/website_settings/website_settings.py:102 +#: website/doctype/website_settings/website_settings.py:122 +msgid "{0} in row {1} cannot have both URL and child items" +msgstr "crwdns13736:0{0}crwdnd13736:0{1}crwdne13736:0" + +#: core/doctype/doctype/doctype.py:916 +msgid "{0} is a mandatory field" +msgstr "crwdns13738:0{0}crwdne13738:0" + +#: core/doctype/file/file.py:503 +msgid "{0} is a not a valid zip file" +msgstr "crwdns13740:0{0}crwdne13740:0" + +#: core/doctype/doctype/doctype.py:1559 +msgid "{0} is an invalid Data field." +msgstr "crwdns13742:0{0}crwdne13742:0" + +#: automation/doctype/auto_repeat/auto_repeat.py:147 +msgid "{0} is an invalid email address in 'Recipients'" +msgstr "crwdns13744:0{0}crwdne13744:0" + +#: public/js/frappe/views/reports/report_view.js:1394 +msgid "{0} is between {1} and {2}" +msgstr "crwdns13746:0{0}crwdnd13746:0{1}crwdnd13746:0{2}crwdne13746:0" + +#: public/js/frappe/form/sidebar/form_sidebar_users.js:41 +#: public/js/frappe/form/sidebar/form_sidebar_users.js:69 +msgid "{0} is currently {1}" +msgstr "crwdns13748:0{0}crwdnd13748:0{1}crwdne13748:0" + +#: public/js/frappe/views/reports/report_view.js:1363 +msgid "{0} is equal to {1}" +msgstr "crwdns13750:0{0}crwdnd13750:0{1}crwdne13750:0" + +#: public/js/frappe/views/reports/report_view.js:1383 +msgid "{0} is greater than or equal to {1}" +msgstr "crwdns13752:0{0}crwdnd13752:0{1}crwdne13752:0" + +#: public/js/frappe/views/reports/report_view.js:1373 +msgid "{0} is greater than {1}" +msgstr "crwdns13754:0{0}crwdnd13754:0{1}crwdne13754:0" + +#: public/js/frappe/views/reports/report_view.js:1388 +msgid "{0} is less than or equal to {1}" +msgstr "crwdns13756:0{0}crwdnd13756:0{1}crwdne13756:0" + +#: public/js/frappe/views/reports/report_view.js:1378 +msgid "{0} is less than {1}" +msgstr "crwdns13758:0{0}crwdnd13758:0{1}crwdne13758:0" + +#: public/js/frappe/views/reports/report_view.js:1413 +msgid "{0} is like {1}" +msgstr "crwdns13760:0{0}crwdnd13760:0{1}crwdne13760:0" + +#: email/doctype/email_account/email_account.py:169 +msgid "{0} is mandatory" +msgstr "crwdns13762:0{0}crwdne13762:0" + +#: core/doctype/document_naming_rule/document_naming_rule.py:49 +msgid "{0} is not a field of doctype {1}" +msgstr "crwdns13764:0{0}crwdnd13764:0{1}crwdne13764:0" + +#: www/printview.py:350 +msgid "{0} is not a raw printing format." +msgstr "crwdns13766:0{0}crwdne13766:0" + +#: public/js/frappe/views/calendar/calendar.js:81 +msgid "{0} is not a valid Calendar. Redirecting to default Calendar." +msgstr "crwdns13768:0{0}crwdne13768:0" + +#: public/js/frappe/form/controls/dynamic_link.js:27 +msgid "{0} is not a valid DocType for Dynamic Link" +msgstr "crwdns13770:0{0}crwdne13770:0" + +#: email/doctype/email_group/email_group.py:130 utils/__init__.py:189 +msgid "{0} is not a valid Email Address" +msgstr "crwdns13772:0{0}crwdne13772:0" + +#: utils/__init__.py:157 +msgid "{0} is not a valid Name" +msgstr "crwdns13774:0{0}crwdne13774:0" + +#: utils/__init__.py:136 +msgid "{0} is not a valid Phone Number" +msgstr "crwdns13776:0{0}crwdne13776:0" + +#: model/workflow.py:186 +msgid "{0} is not a valid Workflow State. Please update your Workflow and try again." +msgstr "crwdns13778:0{0}crwdne13778:0" + +#: permissions.py:793 +msgid "{0} is not a valid parent DocType for {1}" +msgstr "crwdns13780:0{0}crwdnd13780:0{1}crwdne13780:0" + +#: permissions.py:813 +msgid "{0} is not a valid parentfield for {1}" +msgstr "crwdns13782:0{0}crwdnd13782:0{1}crwdne13782:0" + +#: email/doctype/auto_email_report/auto_email_report.py:109 +msgid "{0} is not a valid report format. Report format should one of the following {1}" +msgstr "crwdns13784:0{0}crwdnd13784:0{1}crwdne13784:0" + +#: core/doctype/file/file.py:483 +msgid "{0} is not a zip file" +msgstr "crwdns13786:0{0}crwdne13786:0" + +#: public/js/frappe/views/reports/report_view.js:1368 +msgid "{0} is not equal to {1}" +msgstr "crwdns13788:0{0}crwdnd13788:0{1}crwdne13788:0" + +#: public/js/frappe/views/reports/report_view.js:1415 +msgid "{0} is not like {1}" +msgstr "crwdns13790:0{0}crwdnd13790:0{1}crwdne13790:0" + +#: public/js/frappe/views/reports/report_view.js:1409 +msgid "{0} is not one of {1}" +msgstr "crwdns13792:0{0}crwdnd13792:0{1}crwdne13792:0" + +#: public/js/frappe/views/reports/report_view.js:1419 +msgid "{0} is not set" +msgstr "crwdns13794:0{0}crwdne13794:0" + +#: printing/doctype/print_format/print_format.py:166 +msgid "{0} is now default print format for {1} doctype" +msgstr "crwdns13796:0{0}crwdnd13796:0{1}crwdne13796:0" + +#: public/js/frappe/views/reports/report_view.js:1402 +msgid "{0} is one of {1}" +msgstr "crwdns13798:0{0}crwdnd13798:0{1}crwdne13798:0" + +#: email/doctype/email_account/email_account.py:263 model/naming.py:201 +#: printing/doctype/print_format/print_format.py:93 utils/csvutils.py:131 +msgid "{0} is required" +msgstr "crwdns13800:0{0}crwdne13800:0" + +#: public/js/frappe/views/reports/report_view.js:1418 +msgid "{0} is set" +msgstr "crwdns13802:0{0}crwdne13802:0" + +#: public/js/frappe/views/reports/report_view.js:1397 +msgid "{0} is within {1}" +msgstr "crwdns13804:0{0}crwdnd13804:0{1}crwdne13804:0" + +#: public/js/frappe/list/list_view.js:1556 +msgid "{0} items selected" +msgstr "crwdns13806:0{0}crwdne13806:0" + +#: public/js/frappe/form/footer/form_timeline.js:150 +#: public/js/frappe/form/sidebar/form_sidebar.js:96 +msgid "{0} last edited this" +msgstr "crwdns13808:0{0}crwdne13808:0" + +#: core/doctype/activity_log/feed.py:13 +msgid "{0} logged in" +msgstr "crwdns13810:0{0}crwdne13810:0" + +#: core/doctype/activity_log/feed.py:19 +msgid "{0} logged out: {1}" +msgstr "crwdns13812:0{0}crwdnd13812:0{1}crwdne13812:0" + +#: public/js/frappe/utils/pretty_date.js:27 +msgid "{0} m" +msgstr "crwdns13814:0{0}crwdne13814:0" + +#: desk/notifications.py:373 +msgid "{0} mentioned you in a comment in {1} {2}" +msgstr "crwdns13816:0{0}crwdnd13816:0{1}crwdnd13816:0{2}crwdne13816:0" + +#: public/js/frappe/utils/pretty_date.js:50 +msgid "{0} minutes ago" +msgstr "crwdns13818:0{0}crwdne13818:0" + +#: public/js/frappe/utils/pretty_date.js:68 +msgid "{0} months ago" +msgstr "crwdns13820:0{0}crwdne13820:0" + +#: model/document.py:1564 +msgid "{0} must be after {1}" +msgstr "crwdns13822:0{0}crwdnd13822:0{1}crwdne13822:0" + +#: utils/csvutils.py:136 +msgid "{0} must be one of {1}" +msgstr "crwdns13824:0{0}crwdnd13824:0{1}crwdne13824:0" + +#: model/base_document.py:771 +msgid "{0} must be set first" +msgstr "crwdns13826:0{0}crwdne13826:0" + +#: model/base_document.py:629 +msgid "{0} must be unique" +msgstr "crwdns13828:0{0}crwdne13828:0" + +#: core/doctype/language/language.py:42 +msgid "{0} must begin and end with a letter and can only contain letters,\n" +"\t\t\t\thyphen or underscore." +msgstr "crwdns13830:0{0}crwdne13830:0" + +#: workflow/doctype/workflow/workflow.py:93 +msgid "{0} not a valid State" +msgstr "crwdns13832:0{0}crwdne13832:0" + +#: model/rename_doc.py:387 +msgid "{0} not allowed to be renamed" +msgstr "crwdns13834:0{0}crwdne13834:0" + +#: desk/doctype/desktop_icon/desktop_icon.py:371 +msgid "{0} not found" +msgstr "crwdns13836:0{0}crwdne13836:0" + +#: core/doctype/report/report.py:416 public/js/frappe/list/list_view.js:956 +msgid "{0} of {1}" +msgstr "crwdns13838:0{0}crwdnd13838:0{1}crwdne13838:0" + +#: public/js/frappe/list/list_view.js:958 +msgid "{0} of {1} ({2} rows with children)" +msgstr "crwdns13840:0{0}crwdnd13840:0{1}crwdnd13840:0{2}crwdne13840:0" + +#: email/doctype/newsletter/newsletter.js:205 +msgid "{0} of {1} sent" +msgstr "crwdns13842:0{0}crwdnd13842:0{1}crwdne13842:0" + +#: utils/data.py:1705 +msgid "{0} or {1}" +msgstr "crwdns13844:0{0}crwdnd13844:0{1}crwdne13844:0" + +#: core/doctype/user_permission/user_permission_list.js:177 +msgid "{0} record deleted" +msgstr "crwdns13846:0{0}crwdne13846:0" + +#: public/js/frappe/logtypes.js:22 +msgid "{0} records are not automatically deleted." +msgstr "crwdns13848:0{0}crwdne13848:0" + +#: public/js/frappe/logtypes.js:29 +msgid "{0} records are retained for {1} days." +msgstr "crwdns13850:0{0}crwdnd13850:0{1}crwdne13850:0" + +#: core/doctype/user_permission/user_permission_list.js:179 +msgid "{0} records deleted" +msgstr "crwdns13852:0{0}crwdne13852:0" + +#: public/js/frappe/data_import/data_exporter.js:225 +msgid "{0} records will be exported" +msgstr "crwdns13854:0{0}crwdne13854:0" + +#: public/js/frappe/form/footer/form_timeline.js:419 +msgctxt "Form timeline" +msgid "{0} removed attachment {1}" +msgstr "crwdns13856:0{0}crwdnd13856:0{1}crwdne13856:0" + +#: desk/doctype/todo/todo.py:58 +msgid "{0} removed their assignment." +msgstr "crwdns13858:0{0}crwdne13858:0" + +#: social/doctype/energy_point_log/energy_point_log.py:139 +#: social/doctype/energy_point_log/energy_point_log.py:178 +msgid "{0} reverted your point on {1}" +msgstr "crwdns13860:0{0}crwdnd13860:0{1}crwdne13860:0" + +#: social/doctype/energy_point_log/energy_point_log.py:141 +#: social/doctype/energy_point_log/energy_point_log.py:180 +msgid "{0} reverted your points on {1}" +msgstr "crwdns13862:0{0}crwdnd13862:0{1}crwdne13862:0" + +#: public/js/frappe/utils/energy_point_utils.js:44 +#: public/js/frappe/utils/energy_point_utils.js:59 +msgid "{0} reverted {1}" +msgstr "crwdns13864:0{0}crwdnd13864:0{1}crwdne13864:0" + +#: desk/query_report.py:583 +msgid "{0} saved successfully" +msgstr "crwdns13866:0{0}crwdne13866:0" + +#: desk/doctype/todo/todo.py:44 +msgid "{0} self assigned this task: {1}" +msgstr "crwdns13868:0{0}crwdnd13868:0{1}crwdne13868:0" + +#: share.py:238 +msgid "{0} shared a document {1} {2} with you" +msgstr "crwdns13870:0{0}crwdnd13870:0{1}crwdnd13870:0{2}crwdne13870:0" + +#: core/doctype/docshare/docshare.py:79 +msgid "{0} shared this document with everyone" +msgstr "crwdns13872:0{0}crwdne13872:0" + +#: core/doctype/docshare/docshare.py:82 +msgid "{0} shared this document with {1}" +msgstr "crwdns13874:0{0}crwdnd13874:0{1}crwdne13874:0" + +#: core/doctype/doctype/doctype.py:320 +msgid "{0} should be indexed because it's referred in dashboard connections" +msgstr "crwdns13876:0{0}crwdne13876:0" + +#: automation/doctype/auto_repeat/auto_repeat.py:136 +msgid "{0} should not be same as {1}" +msgstr "crwdns13878:0{0}crwdnd13878:0{1}crwdne13878:0" + +#: public/js/frappe/form/footer/version_timeline_content_builder.js:51 +msgid "{0} submitted this document" +msgstr "crwdns13880:0{0}crwdne13880:0" + +#: public/js/frappe/form/footer/version_timeline_content_builder.js:42 +msgctxt "Form timeline" +msgid "{0} submitted this document {1}" +msgstr "crwdns13882:0{0}crwdnd13882:0{1}crwdne13882:0" + +#: email/doctype/email_group/email_group.py:61 +#: email/doctype/email_group/email_group.py:132 +msgid "{0} subscribers added" +msgstr "crwdns13884:0{0}crwdne13884:0" + +#: email/queue.py:70 +msgid "{0} to stop receiving emails of this type" +msgstr "crwdns13886:0{0}crwdne13886:0" + +#: public/js/frappe/form/controls/date_range.js:46 +#: public/js/frappe/form/controls/date_range.js:62 +#: public/js/frappe/form/formatters.js:218 +msgid "{0} to {1}" +msgstr "crwdns13888:0{0}crwdnd13888:0{1}crwdne13888:0" + +#: core/doctype/docshare/docshare.py:91 +msgid "{0} un-shared this document with {1}" +msgstr "crwdns13890:0{0}crwdnd13890:0{1}crwdne13890:0" + +#: custom/doctype/customize_form/customize_form.py:249 +msgid "{0} updated" +msgstr "crwdns13892:0{0}crwdne13892:0" + +#: public/js/frappe/form/controls/multiselect_list.js:162 +msgid "{0} values selected" +msgstr "crwdns13894:0{0}crwdne13894:0" + +#: public/js/frappe/form/footer/form_timeline.js:183 +msgid "{0} viewed this" +msgstr "crwdns13896:0{0}crwdne13896:0" + +#: public/js/frappe/utils/pretty_date.js:35 +msgid "{0} w" +msgstr "crwdns13898:0{0}crwdne13898:0" + +#: public/js/frappe/utils/pretty_date.js:64 +msgid "{0} weeks ago" +msgstr "crwdns13900:0{0}crwdne13900:0" + +#: public/js/frappe/utils/pretty_date.js:39 +msgid "{0} y" +msgstr "crwdns13902:0{0}crwdne13902:0" + +#: public/js/frappe/utils/pretty_date.js:72 +msgid "{0} years ago" +msgstr "crwdns13904:0{0}crwdne13904:0" + +#: public/js/frappe/form/link_selector.js:219 +msgid "{0} {1} added" +msgstr "crwdns13906:0{0}crwdnd13906:0{1}crwdne13906:0" + +#: public/js/frappe/utils/dashboard_utils.js:270 +msgid "{0} {1} added to Dashboard {2}" +msgstr "crwdns13908:0{0}crwdnd13908:0{1}crwdnd13908:0{2}crwdne13908:0" + +#: model/base_document.py:562 model/rename_doc.py:111 +msgid "{0} {1} already exists" +msgstr "crwdns13910:0{0}crwdnd13910:0{1}crwdne13910:0" + +#: model/base_document.py:873 +msgid "{0} {1} cannot be \"{2}\". It should be one of \"{3}\"" +msgstr "crwdns13912:0{0}crwdnd13912:0{1}crwdnd13912:0{2}crwdnd13912:0{3}crwdne13912:0" + +#: utils/nestedset.py:343 +msgid "{0} {1} cannot be a leaf node as it has children" +msgstr "crwdns13914:0{0}crwdnd13914:0{1}crwdne13914:0" + +#: model/rename_doc.py:376 +msgid "{0} {1} does not exist, select a new target to merge" +msgstr "crwdns13916:0{0}crwdnd13916:0{1}crwdne13916:0" + +#: public/js/frappe/form/form.js:970 +msgid "{0} {1} is linked with the following submitted documents: {2}" +msgstr "crwdns13918:0{0}crwdnd13918:0{1}crwdnd13918:0{2}crwdne13918:0" + +#: model/document.py:170 permissions.py:564 +msgid "{0} {1} not found" +msgstr "crwdns13920:0{0}crwdnd13920:0{1}crwdne13920:0" + +#: model/delete_doc.py:231 +msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first." +msgstr "crwdns13922:0{0}crwdnd13922:0{1}crwdnd13922:0{2}crwdnd13922:0{3}crwdne13922:0" + +#: model/base_document.py:988 +msgid "{0}, Row {1}" +msgstr "crwdns13924:0{0}crwdnd13924:0{1}crwdne13924:0" + +#: model/base_document.py:993 +msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}" +msgstr "crwdns13926:0{0}crwdnd13926:0{1}crwdnd13926:0{3}crwdnd13926:0{2}crwdne13926:0" + +#: core/doctype/doctype/doctype.py:1741 +msgid "{0}: Cannot set Amend without Cancel" +msgstr "crwdns13928:0{0}crwdne13928:0" + +#: core/doctype/doctype/doctype.py:1759 +msgid "{0}: Cannot set Assign Amend if not Submittable" +msgstr "crwdns13930:0{0}crwdne13930:0" + +#: core/doctype/doctype/doctype.py:1757 +msgid "{0}: Cannot set Assign Submit if not Submittable" +msgstr "crwdns13932:0{0}crwdne13932:0" + +#: core/doctype/doctype/doctype.py:1736 +msgid "{0}: Cannot set Cancel without Submit" +msgstr "crwdns13934:0{0}crwdne13934:0" + +#: core/doctype/doctype/doctype.py:1743 +msgid "{0}: Cannot set Import without Create" +msgstr "crwdns13936:0{0}crwdne13936:0" + +#: core/doctype/doctype/doctype.py:1739 +msgid "{0}: Cannot set Submit, Cancel, Amend without Write" +msgstr "crwdns13938:0{0}crwdne13938:0" + +#: core/doctype/doctype/doctype.py:1763 +msgid "{0}: Cannot set import as {1} is not importable" +msgstr "crwdns13940:0{0}crwdnd13940:0{1}crwdne13940:0" + +#: automation/doctype/auto_repeat/auto_repeat.py:393 +msgid "{0}: Failed to attach new recurring document. To enable attaching document in the auto repeat notification email, enable {1} in Print Settings" +msgstr "crwdns13942:0{0}crwdnd13942:0{1}crwdne13942:0" + +#: core/doctype/doctype/doctype.py:1377 +msgid "{0}: Field '{1}' cannot be set as Unique as it has non-unique values" +msgstr "crwdns13944:0{0}crwdnd13944:0{1}crwdne13944:0" + +#: core/doctype/doctype/doctype.py:1285 +msgid "{0}: Field {1} in row {2} cannot be hidden and mandatory without default" +msgstr "crwdns13946:0{0}crwdnd13946:0{1}crwdnd13946:0{2}crwdne13946:0" + +#: core/doctype/doctype/doctype.py:1244 +msgid "{0}: Field {1} of type {2} cannot be mandatory" +msgstr "crwdns13948:0{0}crwdnd13948:0{1}crwdnd13948:0{2}crwdne13948:0" + +#: core/doctype/doctype/doctype.py:1232 +msgid "{0}: Fieldname {1} appears multiple times in rows {2}" +msgstr "crwdns13950:0{0}crwdnd13950:0{1}crwdnd13950:0{2}crwdne13950:0" + +#: core/doctype/doctype/doctype.py:1362 +msgid "{0}: Fieldtype {1} for {2} cannot be unique" +msgstr "crwdns13952:0{0}crwdnd13952:0{1}crwdnd13952:0{2}crwdne13952:0" + +#: core/doctype/doctype/doctype.py:1698 +msgid "{0}: No basic permissions set" +msgstr "crwdns13954:0{0}crwdne13954:0" + +#: core/doctype/doctype/doctype.py:1712 +msgid "{0}: Only one rule allowed with the same Role, Level and {1}" +msgstr "crwdns13956:0{0}crwdnd13956:0{1}crwdne13956:0" + +#: core/doctype/doctype/doctype.py:1266 +msgid "{0}: Options must be a valid DocType for field {1} in row {2}" +msgstr "crwdns13958:0{0}crwdnd13958:0{1}crwdnd13958:0{2}crwdne13958:0" + +#: core/doctype/doctype/doctype.py:1255 +msgid "{0}: Options required for Link or Table type field {1} in row {2}" +msgstr "crwdns13960:0{0}crwdnd13960:0{1}crwdnd13960:0{2}crwdne13960:0" + +#: core/doctype/doctype/doctype.py:1273 +msgid "{0}: Options {1} must be the same as doctype name {2} for the field {3}" +msgstr "crwdns13962:0{0}crwdnd13962:0{1}crwdnd13962:0{2}crwdnd13962:0{3}crwdne13962:0" + +#: core/doctype/doctype/doctype.py:1727 +msgid "{0}: Permission at level 0 must be set before higher levels are set" +msgstr "crwdns13964:0{0}crwdne13964:0" + +#: public/js/frappe/form/controls/data.js:50 +msgid "{0}: You can increase the limit for the field if required via {1}" +msgstr "crwdns13966:0{0}crwdnd13966:0{1}crwdne13966:0" + +#: core/doctype/doctype/doctype.py:1219 +msgid "{0}: fieldname cannot be set to reserved keyword {1}" +msgstr "crwdns13968:0{0}crwdnd13968:0{1}crwdne13968:0" + +#: contacts/doctype/address/address.js:35 +#: contacts/doctype/contact/contact.js:78 +#: public/js/frappe/views/workspace/workspace.js:169 +msgid "{0}: {1}" +msgstr "crwdns13970:0{0}crwdnd13970:0{1}crwdne13970:0" + +#: workflow/doctype/workflow_action/workflow_action.py:172 +msgid "{0}: {1} is set to state {2}" +msgstr "crwdns13972:0{0}crwdnd13972:0{1}crwdnd13972:0{2}crwdne13972:0" + +#: public/js/frappe/views/reports/query_report.js:1190 +msgid "{0}: {1} vs {2}" +msgstr "crwdns13974:0{0}crwdnd13974:0{1}crwdnd13974:0{2}crwdne13974:0" + +#: core/doctype/doctype/doctype.py:1385 +msgid "{0}:Fieldtype {1} for {2} cannot be indexed" +msgstr "crwdns13976:0{0}crwdnd13976:0{1}crwdnd13976:0{2}crwdne13976:0" + +#: public/js/frappe/utils/datatable.js:12 +msgid "{count} cell copied" +msgstr "crwdns13978:0{count}crwdne13978:0" + +#: public/js/frappe/utils/datatable.js:13 +msgid "{count} cells copied" +msgstr "crwdns13980:0{count}crwdne13980:0" + +#: public/js/frappe/utils/datatable.js:16 +msgid "{count} row selected" +msgstr "crwdns13982:0{count}crwdne13982:0" + +#: public/js/frappe/utils/datatable.js:17 +msgid "{count} rows selected" +msgstr "crwdns13984:0{count}crwdne13984:0" + +#: core/doctype/doctype/doctype.py:1439 +msgid "{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}." +msgstr "crwdns13986:0{{{0}}}crwdnd13986:0{{field_name}}crwdne13986:0" + +#: public/js/frappe/form/form.js:553 +msgid "{} Complete" +msgstr "crwdns13988:0crwdne13988:0" + +#: utils/data.py:2418 +msgid "{} Invalid python code on line {}" +msgstr "crwdns13990:0crwdne13990:0" + +#: utils/data.py:2427 +msgid "{} Possibly invalid python code.
{}" +msgstr "crwdns13992:0crwdne13992:0" + +#: core/doctype/log_settings/log_settings.py:54 +msgid "{} does not support automated log clearing." +msgstr "crwdns13994:0crwdne13994:0" + +#: core/doctype/audit_trail/audit_trail.py:40 +msgid "{} field cannot be empty." +msgstr "crwdns13996:0crwdne13996:0" + +#: email/doctype/email_account/email_account.py:193 +#: email/doctype/email_account/email_account.py:200 +msgid "{} has been disabled. It can only be enabled if {} is checked." +msgstr "crwdns13998:0crwdne13998:0" + +#: utils/data.py:123 +msgid "{} is not a valid date string." +msgstr "crwdns14000:0crwdne14000:0" + +#: commands/utils.py:515 +msgid "{} not found in PATH! This is required to access the console." +msgstr "crwdns14002:0crwdne14002:0" + +#: database/db_manager.py:81 +msgid "{} not found in PATH! This is required to restore the database." +msgstr "crwdns14004:0crwdne14004:0" + +#: utils/backups.py:441 +msgid "{} not found in PATH! This is required to take a backup." +msgstr "crwdns14006:0crwdne14006:0" + diff --git a/frappe/locale/es.po b/frappe/locale/es.po index 592b39bc23..05be7f9334 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: 2024-03-17 09:33+0000\n" -"PO-Revision-Date: 2024-03-20 11:37\n" +"POT-Creation-Date: 2024-03-24 09:33+0000\n" +"PO-Revision-Date: 2024-03-26 12:06\n" "Last-Translator: developers@frappe.io\n" "Language-Team: Spanish\n" "MIME-Version: 1.0\n" @@ -1253,7 +1253,7 @@ msgstr "Agregar / Actualizar" msgid "Add A New Rule" msgstr "Añadir una nueva regla" -#: public/js/frappe/views/communication.js:567 +#: public/js/frappe/views/communication.js:578 #: public/js/frappe/views/interaction.js:159 msgid "Add Attachment" msgstr "Añadir un adjunto" @@ -1355,7 +1355,7 @@ msgstr "" msgid "Add Review" msgstr "Agregar una opinión" -#: core/doctype/user/user.py:808 +#: core/doctype/user/user.py:810 msgid "Add Roles" msgstr "Añadir Roles" @@ -1363,7 +1363,7 @@ msgstr "Añadir Roles" msgid "Add Row" msgstr "Añadir Fila" -#: public/js/frappe/views/communication.js:118 +#: public/js/frappe/views/communication.js:121 msgid "Add Signature" msgstr "Agregar Firma" @@ -1394,12 +1394,12 @@ msgstr "Añadir Suscriptores" msgid "Add Tags" msgstr "Añadir etiquetas" -#: public/js/frappe/list/list_view.js:1897 +#: public/js/frappe/list/list_view.js:1904 msgctxt "Button in list view actions menu" msgid "Add Tags" msgstr "Añadir etiquetas" -#: public/js/frappe/views/communication.js:399 +#: public/js/frappe/views/communication.js:410 msgid "Add Template" msgstr "Añadir plantilla" @@ -1511,7 +1511,7 @@ msgstr "Añadido {0}" msgid "Added {0} ({1})" msgstr "Añadido: {0} ({1})" -#: core/doctype/user/user.py:305 +#: core/doctype/user/user.py:307 msgid "Adding System Manager to this User as there must be atleast one System Manager" msgstr "Agregando como administrador del sistema a este usuario, ya que debe haber al menos uno" @@ -1617,6 +1617,16 @@ msgstr "Direcciones" msgid "Addresses And Contacts" msgstr "Direcciones y contactos" +#. Description of a DocType +#: custom/doctype/client_script/client_script.json +msgid "Adds a custom client script to a DocType" +msgstr "" + +#. Description of a DocType +#: custom/doctype/custom_field/custom_field.json +msgid "Adds a custom field to a DocType" +msgstr "" + #: public/js/frappe/ui/toolbar/search_utils.js:552 msgid "Administration" msgstr "Administración" @@ -1638,11 +1648,11 @@ msgstr "Administración" msgid "Administrator" msgstr "Administrador" -#: core/doctype/user/user.py:1212 +#: core/doctype/user/user.py:1214 msgid "Administrator Logged In" msgstr "Administrador logeado" -#: core/doctype/user/user.py:1206 +#: core/doctype/user/user.py:1208 msgid "Administrator accessed {0} on {1} via IP Address {2}." msgstr "Acceso de Administrador {0} en {1} a través de la dirección IP {2}." @@ -2224,7 +2234,7 @@ msgstr "Módulos Permitidos" msgid "Allowing DocType, DocType. Be careful!" msgstr "Precaución, autorizando 'DocType'" -#: core/doctype/user/user.py:1015 +#: core/doctype/user/user.py:1017 msgid "Already Registered" msgstr "Ya está Registrado" @@ -2476,7 +2486,7 @@ msgstr "Clave Secreta de Aplicación" msgid "App not found for module: {0}" msgstr "" -#: __init__.py:1781 +#: __init__.py:1784 msgid "App {0} is not installed" msgstr "Aplicación {0} no está instalada" @@ -2555,7 +2565,7 @@ msgctxt "Property Setter" msgid "Applied On" msgstr "Aplicado en" -#: public/js/frappe/list/list_view.js:1882 +#: public/js/frappe/list/list_view.js:1889 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" msgstr "Aplicar regla de asignación" @@ -2661,7 +2671,7 @@ msgstr "Archivado" msgid "Archived Columns" msgstr "Columnas archivados" -#: public/js/frappe/list/list_view.js:1861 +#: public/js/frappe/list/list_view.js:1868 msgid "Are you sure you want to clear the assignments?" msgstr "" @@ -2669,7 +2679,7 @@ msgstr "" msgid "Are you sure you want to delete all rows?" msgstr "¿Seguro que quieres eliminar todas las filas?" -#: public/js/frappe/views/workspace/workspace.js:891 +#: public/js/frappe/views/workspace/workspace.js:896 msgid "Are you sure you want to delete page {0}?" msgstr "¿Está seguro de que desea eliminar la página {0}?" @@ -2760,7 +2770,7 @@ msgstr "Asignar condición" msgid "Assign To" msgstr "Asignar a" -#: public/js/frappe/list/list_view.js:1843 +#: public/js/frappe/list/list_view.js:1850 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "Asignar a" @@ -2929,7 +2939,7 @@ msgstr "Asignaciones" msgid "At least one column is required to show in the grid." msgstr "" -#: website/doctype/web_form/web_form.js:63 +#: website/doctype/web_form/web_form.js:73 msgid "At least one field is required in Web Form Fields Table" msgstr "" @@ -2965,7 +2975,7 @@ msgctxt "Web Form Field" msgid "Attach" msgstr "Adjuntar" -#: public/js/frappe/views/communication.js:140 +#: public/js/frappe/views/communication.js:143 msgid "Attach Document Print" msgstr "Adjuntar Documento para Imprimir" @@ -3432,6 +3442,11 @@ msgstr "La vinculación automática solo se puede activar para una cuenta de cor msgid "Automatic Linking can be activated only if Incoming is enabled." msgstr "La vinculación automática solo se puede activar si está entrante habilitado." +#. Description of a DocType +#: automation/doctype/assignment_rule/assignment_rule.json +msgid "Automatically Assign Documents to Users" +msgstr "" + #. Label of a Int field in DocType 'Website Settings' #: website/doctype/website_settings/website_settings.json msgctxt "Website Settings" @@ -3578,7 +3593,7 @@ msgctxt "Print Settings" msgid "B9" msgstr "B9" -#: public/js/frappe/views/communication.js:77 +#: public/js/frappe/views/communication.js:79 msgid "BCC" msgstr "CCO" @@ -4422,7 +4437,7 @@ msgstr "C5E" msgid "CANCELLED" msgstr "CANCELADO" -#: public/js/frappe/views/communication.js:72 +#: public/js/frappe/views/communication.js:73 msgid "CC" msgstr "CC" @@ -4657,7 +4672,7 @@ msgstr "" msgid "Cancel" msgstr "Cancelar" -#: public/js/frappe/list/list_view.js:1952 +#: public/js/frappe/list/list_view.js:1959 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "Cancelar" @@ -4710,7 +4725,7 @@ msgstr "Cancelar todos los documentos" msgid "Cancel Scheduling" msgstr "" -#: public/js/frappe/list/list_view.js:1957 +#: public/js/frappe/list/list_view.js:1964 msgctxt "Title of confirmation dialog" msgid "Cancel {0} documents?" msgstr "¿Cancelar {0} documentos?" @@ -4883,7 +4898,7 @@ msgstr "No se puede editar la notificación estándar. Para editar, deshabilíte msgid "Cannot edit Standard charts" msgstr "No se puede editar gráficos estándar" -#: core/doctype/report/report.py:69 +#: core/doctype/report/report.py:72 msgid "Cannot edit a standard report. Please duplicate and create a new report" msgstr "No se puede editar un informe estándar. Por favor, duplicar y crear un nuevo informe" @@ -4960,11 +4975,11 @@ msgstr "No se puede actualizar el Área de Trabajo privado de otros usuarios" msgid "Cannot update {0}" msgstr "No se puede Actualizar {0}" -#: model/db_query.py:1119 +#: model/db_query.py:1103 msgid "Cannot use sub-query in order by" msgstr "No se puede utilizar sub-query en order by" -#: model/db_query.py:1137 +#: model/db_query.py:1121 msgid "Cannot use {0} in order/group by" msgstr "" @@ -5319,7 +5334,7 @@ msgstr "Las tablas secundarias se muestran como una cuadrícula en otros DocType msgid "Choose Existing Card or create New Card" msgstr "Elija una tarjeta existente o cree una nueva tarjeta" -#: public/js/frappe/views/workspace/workspace.js:1391 +#: public/js/frappe/views/workspace/workspace.js:1396 msgid "Choose a block or continue typing" msgstr "" @@ -5355,15 +5370,15 @@ msgstr "Ciudad / Provincia" msgid "Clear" msgstr "Quitar" -#: public/js/frappe/views/communication.js:404 +#: public/js/frappe/views/communication.js:415 msgid "Clear & Add Template" msgstr "" -#: public/js/frappe/views/communication.js:99 +#: public/js/frappe/views/communication.js:102 msgid "Clear & Add template" msgstr "" -#: public/js/frappe/list/list_view.js:1858 +#: public/js/frappe/list/list_view.js:1865 msgctxt "Button in list view actions menu" msgid "Clear Assignment" msgstr "" @@ -5390,7 +5405,7 @@ msgstr "" msgid "Clear User Permissions" msgstr "Borrar permisos de usuario" -#: public/js/frappe/views/communication.js:405 +#: public/js/frappe/views/communication.js:416 msgid "Clear the email message and add the template" msgstr "" @@ -5448,7 +5463,7 @@ msgstr "Haga clic en {0} para generar el token de actualización." #: desk/doctype/dashboard_chart/dashboard_chart.js:315 #: desk/doctype/number_card/number_card.js:215 #: email/doctype/auto_email_report/auto_email_report.js:96 -#: website/doctype/web_form/web_form.js:226 +#: website/doctype/web_form/web_form.js:236 msgid "Click table to edit" msgstr "Haga clic en la tabla para editar" @@ -5459,7 +5474,7 @@ msgstr "Haga clic para establecer Filtros Dinámicos" #: desk/doctype/dashboard_chart/dashboard_chart.js:372 #: desk/doctype/number_card/number_card.js:270 -#: website/doctype/web_form/web_form.js:252 +#: website/doctype/web_form/web_form.js:262 msgid "Click to Set Filters" msgstr "Clic para establecer filtros" @@ -6136,7 +6151,7 @@ msgstr "Completar" msgid "Complete By" msgstr "Completado por" -#: core/doctype/user/user.py:472 templates/emails/new_user.html:10 +#: core/doctype/user/user.py:474 templates/emails/new_user.html:10 msgid "Complete Registration" msgstr "Registro completo" @@ -6205,7 +6220,7 @@ msgstr "Escribir correo" #: desk/doctype/dashboard_chart/dashboard_chart.js:439 #: desk/doctype/number_card/number_card.js:205 #: desk/doctype/number_card/number_card.js:333 -#: website/doctype/web_form/web_form.js:187 +#: website/doctype/web_form/web_form.js:197 msgid "Condition" msgstr "Condición" @@ -6302,7 +6317,12 @@ msgid "Configure how amended documents will be named.
\n\n" "Default Naming will make the amended document to behave same as new documents." msgstr "" -#: core/doctype/user/user.js:374 public/js/frappe/dom.js:332 +#. Description of a DocType +#: core/doctype/document_naming_settings/document_naming_settings.json +msgid "Configure various aspects of how document naming works like naming series, current counter." +msgstr "" + +#: core/doctype/user/user.js:384 public/js/frappe/dom.js:332 #: www/update-password.html:30 msgid "Confirm" msgstr "Confirmar" @@ -6317,7 +6337,7 @@ msgstr "Confirmar" msgid "Confirm Deletion of Account" msgstr "" -#: core/doctype/user/user.js:167 +#: core/doctype/user/user.js:177 msgid "Confirm New Password" msgstr "Confirmar nueva contraseña" @@ -6474,6 +6494,10 @@ msgstr "Teléfono de Contacto" msgid "Contact Synced with Google Contacts." msgstr "Contacto sincronizado con los contactos de Google." +#: www/contact.html:4 +msgid "Contact Us" +msgstr "" + #. Name of a DocType #: website/doctype/contact_us_settings/contact_us_settings.json msgid "Contact Us Settings" @@ -6647,6 +6671,10 @@ msgstr "" msgid "Copied to clipboard." msgstr "Copiado al portapapeles." +#: website/doctype/web_form/web_form.js:29 +msgid "Copy Embed Code" +msgstr "" + #: public/js/frappe/form/templates/timeline_message_box.html:83 msgid "Copy Link" msgstr "Copiar Enlace" @@ -6673,7 +6701,7 @@ msgstr "Core DocTypes no se puede personalizar." msgid "Core Modules {0} cannot be searched in Global Search." msgstr "Los módulos principales {0} no se pueden buscar en la búsqueda global." -#: email/smtp.py:77 +#: email/smtp.py:78 msgid "Could not connect to outgoing email server" msgstr "No se pudo conectar con el servidor de correo electrónico saliente" @@ -6787,7 +6815,7 @@ msgstr "" #: public/js/frappe/views/file/file_view.js:112 #: public/js/frappe/views/interaction.js:18 #: public/js/frappe/views/reports/query_report.js:1186 -#: public/js/frappe/views/workspace/workspace.js:1223 +#: public/js/frappe/views/workspace/workspace.js:1228 #: workflow/page/workflow_builder/workflow_builder.js:46 msgid "Create" msgstr "Crear" @@ -6840,7 +6868,7 @@ msgstr "Crear contactos a partir de correos electrónicos entrantes" msgid "Create Custom Fields" msgstr "Crear Campos Personalizados" -#: public/js/frappe/views/workspace/workspace.js:931 +#: public/js/frappe/views/workspace/workspace.js:936 msgid "Create Duplicate" msgstr "" @@ -6875,11 +6903,11 @@ msgstr "" msgid "Create New Kanban Board" msgstr "" -#: core/doctype/user/user.js:246 +#: core/doctype/user/user.js:256 msgid "Create User Email" msgstr "Crear correo electrónico de usuario" -#: public/js/frappe/views/workspace/workspace.js:471 +#: public/js/frappe/views/workspace/workspace.js:476 msgid "Create Workspace" msgstr "Crear Área de Trabajo" @@ -6911,6 +6939,11 @@ msgstr "Crear: {0}" msgid "Create a {0} Account" msgstr "" +#. Description of a DocType +#: email/doctype/newsletter/newsletter.json +msgid "Create and send emails to a specific group of subscribers periodically." +msgstr "" + #: printing/page/print_format_builder_beta/print_format_builder_beta.js:34 msgid "Create or Edit Print Format" msgstr "Crear o Editar Formato Impresión" @@ -7077,6 +7110,11 @@ msgctxt "System Settings" msgid "Currency Precision" msgstr "Precisión de monedas" +#. Description of a DocType +#: geo/doctype/currency/currency.json +msgid "Currency list stores the currency value, its symbol and fraction unit" +msgstr "" + #. Option for the 'Address Type' (Select) field in DocType 'Address' #: contacts/doctype/address/address.json msgctxt "Address" @@ -7442,7 +7480,7 @@ msgstr "Personalización" msgid "Customization onboarding is all done!" msgstr "" -#: public/js/frappe/views/workspace/workspace.js:517 +#: public/js/frappe/views/workspace/workspace.js:522 msgid "Customizations Discarded" msgstr "Personalizaciones descartadas" @@ -7461,7 +7499,7 @@ msgstr "Personalizaciones para {0} exportadas a:
{1}" msgid "Customize" msgstr "Personalización" -#: public/js/frappe/list/list_view.js:1703 +#: public/js/frappe/list/list_view.js:1710 msgctxt "Button in list view menu" msgid "Customize" msgstr "Personalización" @@ -8301,6 +8339,12 @@ msgctxt "DocType" msgid "Default View" msgstr "Vista predeterminada" +#. Label of a Link field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Default Workspace" +msgstr "" + #: core/doctype/doctype/doctype.py:1325 msgid "Default for 'Check' type of field {0} must be either '0' or '1'" msgstr "El valor predeterminado para el tipo 'Verificar' del campo {0} debe ser '0' o '1'" @@ -8340,6 +8384,16 @@ msgstr "Predeterminados" msgid "Defaults Updated" msgstr "" +#. Description of a DocType +#: workflow/doctype/workflow_transition/workflow_transition.json +msgid "Defines actions on states and the next step and allowed roles." +msgstr "" + +#. Description of a DocType +#: 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' #: core/doctype/communication/communication.json msgctxt "Communication" @@ -8351,13 +8405,13 @@ msgstr "Retrasado" #: public/js/frappe/form/grid.js:63 public/js/frappe/form/toolbar.js:423 #: public/js/frappe/views/reports/report_view.js:1642 #: public/js/frappe/views/treeview.js:313 -#: public/js/frappe/views/workspace/workspace.js:829 +#: public/js/frappe/views/workspace/workspace.js:834 #: templates/discussions/reply_card.html:35 #: templates/discussions/reply_section.html:29 msgid "Delete" msgstr "Eliminar" -#: public/js/frappe/list/list_view.js:1920 +#: public/js/frappe/list/list_view.js:1927 msgctxt "Button in list view actions menu" msgid "Delete" msgstr "Eliminar" @@ -8396,7 +8450,7 @@ msgstr "Borrar datos" msgid "Delete Kanban Board" msgstr "" -#: public/js/frappe/views/workspace/workspace.js:830 +#: public/js/frappe/views/workspace/workspace.js:835 msgid "Delete Workspace" msgstr "Eliminar Área de Trabajo" @@ -8412,12 +8466,12 @@ msgstr "¿Eliminar comentario?" 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" -#: public/js/frappe/list/list_view.js:1925 +#: public/js/frappe/list/list_view.js:1932 msgctxt "Title of confirmation dialog" msgid "Delete {0} item permanently?" -msgstr "" +msgstr "¿Eliminar {0} elemento de forma permanente?" -#: public/js/frappe/list/list_view.js:1931 +#: public/js/frappe/list/list_view.js:1938 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "¿Eliminar {0} artículos de forma permanente?" @@ -8471,7 +8525,7 @@ msgctxt "Deleted Document" msgid "Deleted Name" msgstr "Nombre borrado" -#: desk/reportview.py:502 +#: desk/reportview.py:506 msgid "Deleting {0}" msgstr "Eliminando {0}" @@ -8956,7 +9010,7 @@ msgstr "Respuesta automática deshabilitada" #: public/js/frappe/views/communication.js:30 #: public/js/frappe/views/dashboard/dashboard_view.js:70 -#: public/js/frappe/views/workspace/workspace.js:508 +#: public/js/frappe/views/workspace/workspace.js:513 #: public/js/frappe/web_form/web_form.js:187 msgid "Discard" msgstr "Descartar" @@ -9256,6 +9310,11 @@ msgstr "El 'DocType' no se puede fusionar" msgid "DocType can only be renamed by Administrator" msgstr "DocType sólo puede ser renombrado por Administrator" +#. Description of a DocType +#: core/doctype/doctype/doctype.json +msgid "DocType is a Table / Form in the application." +msgstr "" + #: integrations/doctype/webhook/webhook.py:82 msgid "DocType must be Submittable for the selected Doc Event" msgstr "DocType debe ser Enviable para el evento de Documento Seleccionado" @@ -9316,7 +9375,7 @@ msgstr "" msgid "Doctype required" msgstr "Doctype Requerido" -#: public/js/frappe/views/workspace/workspace.js:1309 +#: public/js/frappe/views/workspace/workspace.js:1314 msgid "Doctype with same route already exist. Please choose different title." msgstr "" @@ -9948,7 +10007,7 @@ msgstr "Borrador" #: public/js/frappe/views/workspace/blocks/header.js:46 #: public/js/frappe/views/workspace/blocks/paragraph.js:136 #: public/js/frappe/views/workspace/blocks/spacer.js:44 -#: public/js/frappe/views/workspace/workspace.js:571 +#: public/js/frappe/views/workspace/workspace.js:576 #: public/js/frappe/widgets/base_widget.js:33 msgid "Drag" msgstr "Arrastrar" @@ -10004,8 +10063,8 @@ msgstr "Fecha de Vencimiento basada en" #: public/js/frappe/form/grid_row_form.js:42 #: public/js/frappe/form/toolbar.js:377 -#: public/js/frappe/views/workspace/workspace.js:814 -#: public/js/frappe/views/workspace/workspace.js:981 +#: public/js/frappe/views/workspace/workspace.js:819 +#: public/js/frappe/views/workspace/workspace.js:986 msgid "Duplicate" msgstr "Duplicar" @@ -10021,8 +10080,8 @@ msgstr "Nombre de Fltro Duplicado" msgid "Duplicate Name" msgstr "Nombre duplicado" -#: public/js/frappe/views/workspace/workspace.js:553 -#: public/js/frappe/views/workspace/workspace.js:815 +#: public/js/frappe/views/workspace/workspace.js:558 +#: public/js/frappe/views/workspace/workspace.js:820 msgid "Duplicate Workspace" msgstr "Duplicar Área de Trabajo" @@ -10030,7 +10089,7 @@ msgstr "Duplicar Área de Trabajo" msgid "Duplicate current row" msgstr "Duplicar fila actual" -#: public/js/frappe/views/workspace/workspace.js:996 +#: public/js/frappe/views/workspace/workspace.js:1001 msgid "Duplicate of {0} named as {1} is created successfully" msgstr "" @@ -10174,8 +10233,8 @@ msgstr "" #: public/js/frappe/form/toolbar.js:672 #: public/js/frappe/views/reports/query_report.js:813 #: public/js/frappe/views/reports/query_report.js:1634 -#: public/js/frappe/views/workspace/workspace.js:454 -#: public/js/frappe/views/workspace/workspace.js:808 +#: public/js/frappe/views/workspace/workspace.js:459 +#: public/js/frappe/views/workspace/workspace.js:813 #: public/js/frappe/widgets/base_widget.js:64 #: public/js/frappe/widgets/chart_widget.js:298 #: public/js/frappe/widgets/number_card_widget.js:331 @@ -10186,7 +10245,7 @@ msgstr "" msgid "Edit" msgstr "Editar" -#: public/js/frappe/list/list_view.js:2006 +#: public/js/frappe/list/list_view.js:2013 msgctxt "Button in list view actions menu" msgid "Edit" msgstr "Editar" @@ -10222,7 +10281,7 @@ msgstr "Editar HTML personalizado" msgid "Edit DocType" msgstr "Editar DocType" -#: public/js/frappe/list/list_view.js:1730 +#: public/js/frappe/list/list_view.js:1737 msgctxt "Button in list view menu" msgid "Edit DocType" msgstr "Editar DocType" @@ -10307,7 +10366,7 @@ msgctxt "Website Settings" msgid "Edit Values" msgstr "Editar Valores" -#: public/js/frappe/views/workspace/workspace.js:809 +#: public/js/frappe/views/workspace/workspace.js:814 msgid "Edit Workspace" msgstr "Editar Área de Trabajo" @@ -10507,11 +10566,11 @@ msgctxt "Email Account" msgid "Email Account Name" msgstr "Cuenta de correo electrónico" -#: core/doctype/user/user.py:741 +#: core/doctype/user/user.py:743 msgid "Email Account added multiple times" msgstr "Cuenta de correo electrónico añadida varias veces" -#: email/smtp.py:42 +#: email/smtp.py:43 msgid "Email Account not setup. Please create a new Email Account from Settings > Email Account" msgstr "" @@ -10667,6 +10726,11 @@ msgstr "Cola de correo electrónico de destinatarios" msgid "Email Queue flushing aborted due to too many failures." msgstr "" +#. Description of a DocType +#: email/doctype/email_queue/email_queue.json +msgid "Email Queue records." +msgstr "" + #. Label of a HTML field in DocType 'Email Template' #: email/doctype/email_template/email_template.json msgctxt "Email Template" @@ -10746,7 +10810,7 @@ msgstr "Opción de Sincronizar Correo Electrónico" #. Name of a DocType #: email/doctype/email_template/email_template.json -#: public/js/frappe/views/communication.js:92 +#: public/js/frappe/views/communication.js:95 msgid "Email Template" msgstr "Plantilla de Correo Electrónico" @@ -10787,7 +10851,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" -#: public/js/frappe/views/communication.js:788 +#: public/js/frappe/views/communication.js:799 msgid "Email not sent to {0} (unsubscribed / disabled)" msgstr "Correo electrónico no enviado a {0} (dado de baja / desactivado)" @@ -10805,6 +10869,10 @@ msgctxt "Workflow" msgid "Emails will be sent with next possible workflow actions" msgstr "Los Correos Electrónicos se enviarán con las próximas acciones de flujo de trabajo posibles" +#: website/doctype/web_form/web_form.js:34 +msgid "Embed code copied" +msgstr "" + #. Label of a Check field in DocType 'Google Calendar' #: integrations/doctype/google_calendar/google_calendar.json msgctxt "Google Calendar" @@ -11141,6 +11209,11 @@ msgstr "Habilita las vistas Calendario y Gantt." 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 +#: integrations/doctype/push_notification_settings/push_notification_settings.json +msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved." +msgstr "" + #. Description of the 'Relay Settings' (Section Break) field in DocType 'Push #. Notification Settings' #: integrations/doctype/push_notification_settings/push_notification_settings.json @@ -11305,7 +11378,7 @@ msgstr "Ingrese el ID del cliente y el secreto del cliente en la configuración msgid "Enter Code displayed in OTP App." msgstr "" -#: public/js/frappe/views/communication.js:743 +#: public/js/frappe/views/communication.js:754 msgid "Enter Email Recipient(s)" msgstr "Ingrese Destinatario(s) de Correo Electrónico" @@ -11631,7 +11704,7 @@ msgstr "Ejemplo: 00001" #: core/doctype/system_settings/system_settings.json msgctxt "System Settings" msgid "Example: Setting this to 24:00 will log out a user if they are not active for 24:00 hours." -msgstr "" +msgstr "Ejemplo: al configurar esto en 24:00, cerrará la sesión de un usuario si no está activo durante las 24:00 horas." #. Description of the 'Description' (Small Text) field in DocType 'Assignment #. Rule' @@ -11777,7 +11850,7 @@ msgstr "Tiempo de expiración de Pagina de Código QR" msgid "Export" msgstr "Exportar" -#: public/js/frappe/list/list_view.js:2028 +#: public/js/frappe/list/list_view.js:2035 msgctxt "Button in list view actions menu" msgid "Export" msgstr "Exportar" @@ -12222,7 +12295,7 @@ msgctxt "Custom Field" msgid "Field Type" msgstr "Tipo de campo" -#: desk/reportview.py:176 +#: desk/reportview.py:182 msgid "Field not permitted in query" msgstr "" @@ -12576,9 +12649,9 @@ msgstr "Archivos" #: desk/doctype/number_card/number_card.js:205 #: desk/doctype/number_card/number_card.js:333 #: email/doctype/auto_email_report/auto_email_report.js:90 -#: public/js/frappe/list/base_list.js:870 +#: public/js/frappe/list/base_list.js:878 #: public/js/frappe/ui/filters/filter_list.js:134 -#: website/doctype/web_form/web_form.js:187 +#: website/doctype/web_form/web_form.js:197 msgid "Filter" msgstr "Filtrar" @@ -13502,7 +13575,7 @@ msgctxt "System Settings" msgid "Friday" msgstr "Viernes" -#: public/js/frappe/views/communication.js:182 +#: public/js/frappe/views/communication.js:185 #: public/js/frappe/views/inbox/inbox_view.js:70 msgid "From" msgstr "Desde" @@ -13621,7 +13694,7 @@ msgstr "Función" msgid "Function Based On" msgstr "Función basada en" -#: __init__.py:930 +#: __init__.py:933 msgid "Function {0} is not whitelisted." msgstr "" @@ -13690,6 +13763,10 @@ msgctxt "User" msgid "Gender" msgstr "Género" +#: www/contact.html:29 +msgid "General" +msgstr "General" + #. Title of an Onboarding Step #: custom/onboarding_step/report_builder/report_builder.json msgid "Generate Custom Reports" @@ -13746,7 +13823,7 @@ msgctxt "Auto Repeat" msgid "Get Contacts" msgstr "Obtener Contactos" -#: website/doctype/web_form/web_form.js:83 +#: website/doctype/web_form/web_form.js:93 msgid "Get Fields" msgstr "Obtener Campos" @@ -13910,7 +13987,7 @@ msgstr "Google" #: website/doctype/website_settings/website_settings.json msgctxt "Website Settings" msgid "Google Analytics ID" -msgstr "" +msgstr "ID de Google Analytics" #. Label of a Check field in DocType 'Website Settings' #: website/doctype/website_settings/website_settings.json @@ -14673,7 +14750,7 @@ msgctxt "Form Tour Step" msgid "Hidden Fields" msgstr "" -#: public/js/frappe/views/workspace/workspace.js:820 +#: public/js/frappe/views/workspace/workspace.js:825 #: public/js/frappe/widgets/base_widget.js:46 #: public/js/frappe/widgets/base_widget.js:176 #: templates/includes/login/login.js:83 @@ -14823,7 +14900,7 @@ msgctxt "Portal Settings" msgid "Hide Standard Menu" msgstr "Ocultar Menú Estándar" -#: public/js/frappe/list/list_view.js:1605 +#: public/js/frappe/list/list_view.js:1612 msgid "Hide Tags" msgstr "Ocultar etiquetas" @@ -14831,7 +14908,7 @@ msgstr "Ocultar etiquetas" msgid "Hide Weekends" msgstr "Ocultar Fines de Semana" -#: public/js/frappe/views/workspace/workspace.js:821 +#: public/js/frappe/views/workspace/workspace.js:826 msgid "Hide Workspace" msgstr "Ocultar Área de Trabajo" @@ -14988,7 +15065,7 @@ msgstr "¿Cómo se debe formatear esta moneda? Si no se establece, el sistema ut msgid "ID" msgstr "Identificador" -#: desk/reportview.py:431 public/js/frappe/views/reports/report_view.js:917 +#: desk/reportview.py:435 public/js/frappe/views/reports/report_view.js:917 msgctxt "Label of name column in report" msgid "ID" msgstr "Identificador" @@ -15014,19 +15091,19 @@ msgstr "" #. Name of a DocType #: email/doctype/imap_folder/imap_folder.json msgid "IMAP Folder" -msgstr "" +msgstr "Carpeta IMAP" #. Label of a Data field in DocType 'Communication' #: core/doctype/communication/communication.json msgctxt "Communication" msgid "IMAP Folder" -msgstr "" +msgstr "Carpeta IMAP" #. Label of a Table field in DocType 'Email Account' #: email/doctype/email_account/email_account.json msgctxt "Email Account" msgid "IMAP Folder" -msgstr "" +msgstr "Carpeta IMAP" #. Label of a Data field in DocType 'Activity Log' #: core/doctype/activity_log/activity_log.json @@ -15040,9 +15117,9 @@ msgctxt "Comment" msgid "IP Address" msgstr "Dirección IP" -#: public/js/frappe/views/workspace/workspace.js:638 -#: public/js/frappe/views/workspace/workspace.js:966 -#: public/js/frappe/views/workspace/workspace.js:1211 +#: public/js/frappe/views/workspace/workspace.js:643 +#: public/js/frappe/views/workspace/workspace.js:971 +#: public/js/frappe/views/workspace/workspace.js:1216 msgid "Icon" msgstr "Icono" @@ -15239,6 +15316,12 @@ msgctxt "Note" msgid "If enabled, users will be notified every time they login. If not enabled, users will only be notified once." msgstr "Si está activado, los usuarios serán notificados cada vez que inicien sesión. Si no está habilitado, los usuarios solo serán notificados una vez." +#. Description of the 'Default Workspace' (Link) field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "If left empty, the default workspace will be the last visited workspace" +msgstr "" + #. Description of the 'Port' (Data) field in DocType 'Email Domain' #: email/doctype/email_domain/email_domain.json msgctxt "Email Domain" @@ -15425,7 +15508,7 @@ msgstr "Código de acceso ilegal. Por favor, inténtelo de nuevo" msgid "Illegal Document Status for {0}" msgstr "Estado del Documento ilegal para {0}" -#: model/db_query.py:441 model/db_query.py:444 model/db_query.py:1122 +#: model/db_query.py:440 model/db_query.py:443 model/db_query.py:1106 msgid "Illegal SQL Query" msgstr "Consulta SQL ilegal" @@ -15540,7 +15623,7 @@ msgstr "" msgid "Images" msgstr "Imágenes" -#: core/doctype/user/user.js:346 +#: core/doctype/user/user.js:356 msgid "Impersonate" msgstr "Suplantar" @@ -15550,7 +15633,7 @@ msgctxt "Activity Log" msgid "Impersonate" msgstr "Suplantar" -#: core/doctype/user/user.js:373 +#: core/doctype/user/user.js:383 msgid "Impersonate as {0}" msgstr "Suplantando a {0}" @@ -15577,7 +15660,7 @@ msgstr "Implícito" msgid "Import" msgstr "Importar / Exportar" -#: public/js/frappe/list/list_view.js:1667 +#: public/js/frappe/list/list_view.js:1674 msgctxt "Button in list view menu" msgid "Import" msgstr "Importar / Exportar" @@ -15892,7 +15975,7 @@ msgstr "Incluir símbolos, números y letras mayúsculas en la contraseña" #: email/doctype/email_account/email_account.json msgctxt "Email Account" msgid "Incoming (POP/IMAP) Settings" -msgstr "" +msgstr "Configuración entrante (POP/IMAP)" #. Label of a Data field in DocType 'Email Account' #: email/doctype/email_account/email_account.json @@ -15924,7 +16007,7 @@ msgstr "" msgid "Incomplete login details" msgstr "Detalles de inicio de sesión incompletos" -#: email/smtp.py:103 +#: email/smtp.py:104 msgid "Incorrect Configuration" msgstr "Configuración incorrecta" @@ -16002,9 +16085,9 @@ msgctxt "Workspace" msgid "Indicator Color" msgstr "" -#: public/js/frappe/views/workspace/workspace.js:645 -#: public/js/frappe/views/workspace/workspace.js:973 -#: public/js/frappe/views/workspace/workspace.js:1217 +#: public/js/frappe/views/workspace/workspace.js:650 +#: public/js/frappe/views/workspace/workspace.js:978 +#: public/js/frappe/views/workspace/workspace.js:1222 msgid "Indicator color" msgstr "" @@ -16136,11 +16219,11 @@ msgstr "Nivel de permiso insuficiente para {0}" msgid "Insufficient Permission for {0}" msgstr "Permiso insuficiente para {0}" -#: desk/reportview.py:335 +#: desk/reportview.py:339 msgid "Insufficient Permissions for deleting Report" msgstr "Permisos insuficientes para eliminar el informe" -#: desk/reportview.py:306 +#: desk/reportview.py:310 msgid "Insufficient Permissions for editing Report" msgstr "Permisos insuficientes para eliminar el informe" @@ -16245,6 +16328,11 @@ msgstr "Intermedio" msgid "Internal Server Error" msgstr "Error de Servidor Interno" +#. Description of a DocType +#: core/doctype/docshare/docshare.json +msgid "Internal record of document shares" +msgstr "" + #: desk/page/user_profile/user_profile_sidebar.html:22 msgid "Intro" msgstr "" @@ -16325,7 +16413,7 @@ msgstr "Formato CSV no válido" msgid "Invalid Condition: {}" msgstr "" -#: email/smtp.py:132 +#: email/smtp.py:134 msgid "Invalid Credentials" msgstr "Credenciales no válidas" @@ -16377,7 +16465,7 @@ msgstr "" msgid "Invalid Mail Server. Please rectify and try again." msgstr "Servidor de correo no válido. Por favor verifique la configuración y vuelva a intentarlo." -#: model/naming.py:93 +#: model/naming.py:94 msgid "Invalid Naming Series: {}" msgstr "" @@ -16389,7 +16477,7 @@ msgstr "Operación inválida" msgid "Invalid Option" msgstr "Opción inválida" -#: email/smtp.py:102 +#: email/smtp.py:103 msgid "Invalid Outgoing Mail Server or Port: {0}" msgstr "" @@ -16401,7 +16489,7 @@ msgstr "Formato de salida no válido" msgid "Invalid Parameters." msgstr "" -#: core/doctype/user/user.py:1227 www/update-password.html:121 +#: core/doctype/user/user.py:1229 www/update-password.html:121 #: www/update-password.html:142 www/update-password.html:144 #: www/update-password.html:245 msgid "Invalid Password" @@ -16440,7 +16528,7 @@ msgstr "Nombre de usuario o contraseña de soporte inválido, por favor verifiqu msgid "Invalid Webhook Secret" msgstr "" -#: desk/reportview.py:161 +#: desk/reportview.py:167 msgid "Invalid aggregate function" msgstr "" @@ -16481,11 +16569,11 @@ msgstr "Filtro no válido: {0}" msgid "Invalid json added in the custom options: {0}" msgstr "JSON no válido agregado en las opciones personalizadas: {0}" -#: model/naming.py:444 +#: model/naming.py:466 msgid "Invalid name type (integer) for varchar name column" msgstr "" -#: model/naming.py:54 +#: model/naming.py:55 msgid "Invalid naming series {}: dot (.) missing" msgstr "" @@ -17111,6 +17199,16 @@ msgctxt "Button in kanban view menu" msgid "Kanban Settings" msgstr "Configuración de Kanban" +#. Description of a DocType +#: core/doctype/activity_log/activity_log.json +msgid "Keep track of all update feeds" +msgstr "" + +#. Description of a DocType +#: core/doctype/communication/communication.json +msgid "Keeps track of all communications" +msgstr "" + #. Label of a Data field in DocType 'DefaultValue' #: core/doctype/defaultvalue/defaultvalue.json msgctxt "DefaultValue" @@ -18341,7 +18439,7 @@ msgctxt "Web Form" msgid "List Setting Message" msgstr "" -#: public/js/frappe/list/list_view.js:1747 +#: public/js/frappe/list/list_view.js:1754 msgctxt "Button in list view menu" msgid "List Settings" msgstr "Configuración de lista" @@ -18385,6 +18483,11 @@ msgctxt "Web Page" msgid "List as [{\"label\": _(\"Jobs\"), \"route\":\"jobs\"}]" msgstr "Lista como [{ \"etiqueta\": _( \"trabajos\"), \"ruta\": \"trabajos\"}]" +#. Description of a DocType +#: core/doctype/patch_log/patch_log.json +msgid "List of patches executed" +msgstr "" + #: public/js/frappe/ui/toolbar/search_utils.js:542 msgid "Lists" msgstr "" @@ -18409,7 +18512,7 @@ msgstr "" #: core/page/permission_manager/permission_manager.js:165 #: public/js/frappe/form/controls/multicheck.js:13 #: public/js/frappe/form/linked_with.js:13 -#: public/js/frappe/list/base_list.js:482 +#: public/js/frappe/list/base_list.js:490 #: public/js/frappe/list/list_view.js:333 public/js/frappe/ui/listing.html:16 #: public/js/frappe/views/reports/query_report.js:1015 msgid "Loading" @@ -18574,7 +18677,7 @@ msgstr "" msgid "Login and view in Browser" msgstr "Iniciar Sesión y ver en el Navegador" -#: website/doctype/web_form/web_form.js:357 +#: website/doctype/web_form/web_form.js:367 msgid "Login is required to see web form list view. Enable {0} to see list settings" msgstr "" @@ -18638,7 +18741,7 @@ msgctxt "Activity Log" msgid "Logout" msgstr "Salir" -#: core/doctype/user/user.js:173 +#: core/doctype/user/user.js:183 msgid "Logout All Sessions" msgstr "Cerrar sesión en todas las sesiones" @@ -19191,7 +19294,7 @@ msgstr "La fusión sólo es posible de Grupo -a- Grupo o de Nodo -a- Nodo en la #: core/doctype/data_import/data_import.js:489 #: public/js/frappe/ui/messages.js:175 -#: public/js/frappe/views/communication.js:111 www/message.html:3 +#: public/js/frappe/views/communication.js:114 www/message.html:3 #: www/message.html:25 msgid "Message" msgstr "Mensaje" @@ -19221,7 +19324,7 @@ msgctxt "Communication" msgid "Message" msgstr "Mensaje" -#: __init__.py:614 public/js/frappe/ui/messages.js:265 +#: __init__.py:617 public/js/frappe/ui/messages.js:265 msgctxt "Default title of the message dialog" msgid "Message" msgstr "Mensaje" @@ -19311,7 +19414,7 @@ msgctxt "Notification" msgid "Message Type" msgstr "" -#: public/js/frappe/views/communication.js:922 +#: public/js/frappe/views/communication.js:933 msgid "Message clipped" msgstr "Mensaje marcado" @@ -20093,7 +20196,7 @@ msgstr "Debe ser del tipo \"Adjuntar Imagen\"" msgid "Must have report permission to access this report." msgstr "Debe tener permisos de reporte para ver este documento." -#: core/doctype/report/report.py:145 +#: core/doctype/report/report.py:148 msgid "Must specify a Query to run" msgstr "Debe especificar una consulta para poder ejecutar" @@ -20179,7 +20282,7 @@ msgstr "" msgid "Name already taken, please set a new name" msgstr "" -#: model/naming.py:458 +#: model/naming.py:480 msgid "Name cannot contain special characters like {0}" msgstr "El nombre no puede contener caracteres especiales como {0}" @@ -20191,7 +20294,7 @@ msgstr "Nombre del tipo de documento (DocType) al que quieres que se vincule est msgid "Name of the new Print Format" msgstr "Nombre del nuevo formato de impresión" -#: model/naming.py:453 +#: model/naming.py:475 msgid "Name of {0} cannot be {1}" msgstr "Nombre de {0} no puede ser {1}" @@ -20251,7 +20354,7 @@ msgctxt "Document Naming Settings" msgid "Naming Series" msgstr "Secuencias e identificadores" -#: model/naming.py:243 +#: model/naming.py:244 msgid "Naming Series mandatory" msgstr "Las secuencias e identificadores son obligatorios" @@ -20437,7 +20540,7 @@ msgstr "" msgid "New Mention on {0}" msgstr "Nueva mención en {0}" -#: www/contact.py:50 +#: www/contact.py:59 msgid "New Message from Website Contact Page" msgstr "Nuevo mensaje desde la página de contacto del sitio web" @@ -20467,7 +20570,7 @@ msgstr "Nueva tarjeta numérica" msgid "New Onboarding" msgstr "" -#: core/doctype/user/user.js:161 www/update-password.html:19 +#: core/doctype/user/user.js:171 www/update-password.html:19 msgid "New Password" msgstr "Nueva Contraseña" @@ -20497,7 +20600,7 @@ msgstr "Nuevo Valor" msgid "New Workflow Name" msgstr "" -#: public/js/frappe/views/workspace/workspace.js:1178 +#: public/js/frappe/views/workspace/workspace.js:1183 msgid "New Workspace" msgstr "Nueva Área de Trabajo" @@ -20557,7 +20660,7 @@ msgstr "Nuevo {0}: {1}" msgid "New {} releases for the following apps are available" msgstr "Las nuevas {} versiones para las siguientes aplicaciones están disponibles" -#: core/doctype/user/user.py:804 +#: core/doctype/user/user.py:806 msgid "Newly created user {0} has no roles enabled." msgstr "" @@ -20826,7 +20929,7 @@ msgstr "" msgid "No Letterhead" msgstr "" -#: model/naming.py:435 +#: model/naming.py:457 msgid "No Name Specified for {0}" msgstr "Sin nombre especificado para {0}" @@ -20874,7 +20977,7 @@ msgstr "No hay resultados" msgid "No Results found" msgstr "" -#: core/doctype/user/user.py:805 +#: core/doctype/user/user.py:807 msgid "No Roles Specified" msgstr "" @@ -20882,7 +20985,7 @@ msgstr "" msgid "No Select Field Found" msgstr "" -#: desk/reportview.py:580 +#: desk/reportview.py:584 msgid "No Tags" msgstr "Sin Etiquetas" @@ -20914,7 +21017,7 @@ msgstr "Sin cambios en el documento" msgid "No changes made because old and new name are the same." msgstr "" -#: public/js/frappe/views/workspace/workspace.js:1483 +#: public/js/frappe/views/workspace/workspace.js:1488 msgid "No changes made on the page" msgstr "" @@ -21024,7 +21127,7 @@ msgctxt "SMS Log" msgid "No of Sent SMS" msgstr "" -#: __init__.py:1118 client.py:109 client.py:151 +#: __init__.py:1121 client.py:109 client.py:151 msgid "No permission for {0}" msgstr "Sin permiso para {0}" @@ -21033,7 +21136,7 @@ msgctxt "{0} = verb, {1} = object" msgid "No permission to '{0}' {1}" msgstr "No tiene permiso para '{0} ' {1}" -#: model/db_query.py:935 +#: model/db_query.py:924 msgid "No permission to read {0}" msgstr "No tiene permiso para leer {0}" @@ -21061,7 +21164,7 @@ msgstr "No se exportarán registros" msgid "No template found at path: {0}" msgstr "No se encontraron plantillas en la ruta: {0}" -#: public/js/frappe/form/controls/multiselect_list.js:226 +#: public/js/frappe/form/controls/multiselect_list.js:246 msgid "No values to show" msgstr "" @@ -21085,11 +21188,7 @@ msgstr "No se ha encontrado ningún {0} que coincida con filtros. Borre los filt msgid "No {0} mail" msgstr "No {0} electrónico" -#: public/js/form_builder/utils.js:117 -msgid "No." -msgstr "" - -#: public/js/frappe/form/grid_row.js:252 +#: public/js/form_builder/utils.js:117 public/js/frappe/form/grid_row.js:252 msgctxt "Title of the 'row number' column" msgid "No." msgstr "" @@ -21135,7 +21234,7 @@ msgctxt "Recorder Query" msgid "Normalized Query" msgstr "" -#: core/doctype/user/user.py:1010 templates/includes/login/login.js:258 +#: core/doctype/user/user.py:1012 templates/includes/login/login.js:258 #: utils/oauth.py:265 msgid "Not Allowed" msgstr "No permitido" @@ -21184,10 +21283,10 @@ msgctxt "DocField" msgid "Not Nullable" msgstr "" -#: __init__.py:1014 app.py:353 desk/calendar.py:26 geo/utils.py:97 +#: __init__.py:1017 app.py:353 desk/calendar.py:26 geo/utils.py:97 #: public/js/frappe/web_form/webform_script.js:15 #: website/doctype/web_form/web_form.py:602 -#: website/page_renderers/not_permitted_page.py:20 www/login.py:174 +#: website/page_renderers/not_permitted_page.py:20 www/login.py:178 #: www/qrcode.py:22 www/qrcode.py:25 www/qrcode.py:37 msgid "Not Permitted" msgstr "No permitido" @@ -21244,7 +21343,7 @@ msgstr "No especificado" msgid "Not a valid Comma Separated Value (CSV File)" msgstr "No es un archivo separado por comas válido (archivo CSV)" -#: core/doctype/user/user.py:232 +#: core/doctype/user/user.py:234 msgid "Not a valid User Image." msgstr "No es una Imagen de Usuario Válida." @@ -21297,7 +21396,7 @@ 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." #: api/v1.py:88 api/v1.py:93 -#: core/doctype/system_settings/system_settings.py:208 handler.py:109 +#: core/doctype/system_settings/system_settings.py:209 handler.py:109 #: public/js/frappe/request.js:157 public/js/frappe/request.js:167 #: public/js/frappe/request.js:172 #: public/js/frappe/views/kanban/kanban_board.bundle.js:68 @@ -21348,7 +21447,7 @@ msgstr "Nota: Por correo electrónico predeterminado se envían copias de seguri msgid "Note: Changing the Page Name will break previous URL to this page." msgstr "Nota: Cambiar el nombre de la página romperá la URL anterior a esta página." -#: core/doctype/user/user.js:25 +#: core/doctype/user/user.js:35 msgid "Note: Etc timezones have their signs reversed." msgstr "" @@ -21366,7 +21465,7 @@ msgctxt "System Settings" 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" -#: core/doctype/user/user.js:361 +#: core/doctype/user/user.js:371 msgid "Note: This will be shared with user." msgstr "" @@ -21613,7 +21712,7 @@ msgstr "" msgid "Number of attachment fields are more than {}, limit updated to {}." msgstr "" -#: core/doctype/system_settings/system_settings.py:161 +#: core/doctype/system_settings/system_settings.py:162 msgid "Number of backups must be greater than zero." msgstr "" @@ -21815,7 +21914,7 @@ msgctxt "Webhook" msgid "On checking this option, URL will be treated like a jinja template string" msgstr "" -#: public/js/frappe/views/communication.js:932 +#: public/js/frappe/views/communication.js:943 msgid "On {0}, {1} wrote:" msgstr "" @@ -21882,7 +21981,7 @@ msgstr "Código de registro de contraseña de un solo uso (OTP) de {}" msgid "One of" msgstr "Uno de" -#: public/js/frappe/views/workspace/workspace.js:1318 +#: public/js/frappe/views/workspace/workspace.js:1323 msgid "One of the child page with name {0} already exist in {1} Section. Please update the name of the child page first before moving" msgstr "" @@ -21898,7 +21997,7 @@ msgstr "Sólo el administrador puede eliminar la cola de correo electrónico" msgid "Only Administrator can edit" msgstr "Sólo el administrador puede editar" -#: core/doctype/report/report.py:72 +#: core/doctype/report/report.py:75 msgid "Only Administrator can save a standard report. Please rename and save." msgstr "Sólo el administrador puede guardar un informe estándar. Por favor, cambie el nombre y guarde." @@ -21926,7 +22025,7 @@ msgstr "Sólo enviar registros actualizados en las últimas X horas" msgid "Only Workspace Manager can edit public workspaces" msgstr "Solo el Administrador del Área de Trabajo puede editar Áreas de Trabajo públicas" -#: public/js/frappe/views/workspace/workspace.js:542 +#: public/js/frappe/views/workspace/workspace.js:547 msgid "Only Workspace Manager can sort or edit this page" msgstr "Solo Administrador del Área de Trabajo puede ordenar o editar esta página" @@ -21956,11 +22055,11 @@ msgstr "Sólo los campos obligatorios son necesarios para los nuevos registros. msgid "Only one {0} can be set as primary." msgstr "Solo uno {0} se puede establecer como primario." -#: desk/reportview.py:332 +#: desk/reportview.py:336 msgid "Only reports of type Report Builder can be deleted" msgstr "" -#: desk/reportview.py:303 +#: desk/reportview.py:307 msgid "Only reports of type Report Builder can be edited" msgstr "" @@ -21988,7 +22087,7 @@ msgstr "¡Ups! Algo salió mal." msgid "Open" msgstr "Abrir/Abierto" -#: desk/doctype/todo/todo_list.js:20 +#: desk/doctype/todo/todo_list.js:14 msgctxt "Access" msgid "Open" msgstr "Abrir/Abierto" @@ -22085,7 +22184,7 @@ msgstr "Abrir elemento de lista" msgid "Open your authentication app on your mobile phone." msgstr "Abre tu aplicación de autenticación en tu teléfono móvil." -#: desk/doctype/todo/todo_list.js:23 +#: desk/doctype/todo/todo_list.js:17 #: public/js/frappe/form/templates/form_links.html:18 #: public/js/frappe/ui/toolbar/search_utils.js:277 #: public/js/frappe/ui/toolbar/search_utils.js:278 @@ -22589,7 +22688,7 @@ msgctxt "Form Tour" msgid "Page Route" msgstr "" -#: public/js/frappe/views/workspace/workspace.js:1505 +#: public/js/frappe/views/workspace/workspace.js:1510 msgid "Page Saved Successfully" msgstr "" @@ -22630,7 +22729,12 @@ msgstr "El alto y el ancho de la página no pueden ser cero" msgid "Page not found" msgstr "Página no encontrada" -#: public/js/frappe/views/workspace/workspace.js:1305 +#. Description of a DocType +#: website/doctype/web_page/web_page.json +msgid "Page to show on the website\n" +msgstr "" + +#: public/js/frappe/views/workspace/workspace.js:1310 msgid "Page with title {0} already exist." msgstr "La página con título {0} ya existe." @@ -22648,9 +22752,9 @@ msgid "Parameter" msgstr "Parámetro" #: public/js/frappe/model/model.js:132 -#: public/js/frappe/views/workspace/workspace.js:612 -#: public/js/frappe/views/workspace/workspace.js:940 -#: public/js/frappe/views/workspace/workspace.js:1187 +#: public/js/frappe/views/workspace/workspace.js:617 +#: public/js/frappe/views/workspace/workspace.js:945 +#: public/js/frappe/views/workspace/workspace.js:1192 msgid "Parent" msgstr "Principal" @@ -22772,8 +22876,8 @@ msgctxt "Contact" msgid "Passive" msgstr "Pasivo" -#: core/doctype/user/user.js:148 core/doctype/user/user.js:195 -#: core/doctype/user/user.js:215 desk/page/setup_wizard/setup_wizard.js:474 +#: core/doctype/user/user.js:158 core/doctype/user/user.js:205 +#: core/doctype/user/user.js:225 desk/page/setup_wizard/setup_wizard.js:474 #: www/login.html:21 msgid "Password" msgstr "Contraseña" @@ -22815,11 +22919,11 @@ msgctxt "Web Form Field" msgid "Password" msgstr "Contraseña" -#: core/doctype/user/user.py:1073 +#: core/doctype/user/user.py:1075 msgid "Password Email Sent" msgstr "" -#: core/doctype/user/user.py:452 +#: core/doctype/user/user.py:454 msgid "Password Reset" msgstr "Restablecer contraseña" @@ -22855,7 +22959,7 @@ msgstr "" msgid "Password not found for {0} {1} {2}" msgstr "" -#: core/doctype/user/user.py:1072 +#: core/doctype/user/user.py:1074 msgid "Password reset instructions have been sent to your email" msgstr "Las instrucciones para el restablecimiento de la contraseña han sido enviadas a su correo electrónico" @@ -22867,7 +22971,7 @@ msgstr "" msgid "Password size exceeded the maximum allowed size" msgstr "" -#: core/doctype/user/user.py:868 +#: core/doctype/user/user.py:870 msgid "Password size exceeded the maximum allowed size." msgstr "" @@ -22875,7 +22979,7 @@ msgstr "" msgid "Passwords do not match" msgstr "" -#: core/doctype/user/user.js:181 +#: core/doctype/user/user.js:191 msgid "Passwords do not match!" msgstr "¡Las contraseñas no coinciden!" @@ -23110,7 +23214,7 @@ msgid "Permission Type" msgstr "" #. Label of a Card Break in the Users Workspace -#: core/doctype/user/user.js:123 core/doctype/user/user.js:132 +#: core/doctype/user/user.js:133 core/doctype/user/user.js:142 #: core/page/permission_manager/permission_manager.js:214 #: core/workspace/users/users.json msgid "Permissions" @@ -23344,7 +23448,7 @@ msgstr "Por favor agregue un asunto a su correo electrónico" msgid "Please add a valid comment." msgstr "Agregue un comentario válido." -#: core/doctype/user/user.py:1055 +#: core/doctype/user/user.py:1057 msgid "Please ask your administrator to verify your sign-up" msgstr "Por favor, consulte a su administrador para verificar su registro" @@ -23376,11 +23480,11 @@ msgstr "Compruebe los valores de filtro establecidos para el gráfico del tabler msgid "Please check the value of \"Fetch From\" set for field {0}" msgstr "Por favor, compruebe el valor de \"Obtener desde\" establecido para el campo {0}" -#: core/doctype/user/user.py:1053 +#: core/doctype/user/user.py:1055 msgid "Please check your email for verification" msgstr "Por favor, consultar su correo electrónico para la verificación" -#: email/smtp.py:131 +#: email/smtp.py:133 msgid "Please check your email login credentials." msgstr "" @@ -23428,7 +23532,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" -#: core/doctype/system_settings/system_settings.py:154 +#: core/doctype/system_settings/system_settings.py:155 msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login." msgstr "" @@ -23564,7 +23668,7 @@ msgstr "Por favor, seleccione 'DocType' primero" msgid "Please select Entity Type first" msgstr "Por favor, seleccione Tipo de entidad primero" -#: core/doctype/system_settings/system_settings.py:104 +#: core/doctype/system_settings/system_settings.py:105 msgid "Please select Minimum Password Score" msgstr "Seleccione el valor mínimo de la contraseña" @@ -23592,7 +23696,7 @@ msgstr "Seleccione un filtro de fecha válido" msgid "Please select applicable Doctypes" msgstr "Por favor seleccione Doctypes aplicables" -#: model/db_query.py:1134 +#: model/db_query.py:1118 msgid "Please select atleast 1 column from {0} to sort/group" msgstr "Por favor, seleccione al menos 1 columna de {0} para ordenar / agrupar" @@ -23635,7 +23739,7 @@ msgstr "Por favor, defina los filtros" msgid "Please set filters value in Report Filter table." msgstr "Defina el valor de los filtros en la tabla Filtro de informes." -#: model/naming.py:528 +#: model/naming.py:550 msgid "Please set the document name" msgstr "" @@ -23647,7 +23751,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á." -#: core/doctype/system_settings/system_settings.py:117 +#: core/doctype/system_settings/system_settings.py:118 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" @@ -23659,7 +23763,7 @@ msgstr "Configura un mensaje primero" msgid "Please setup default Email Account from Settings > Email Account" msgstr "" -#: core/doctype/user/user.py:403 +#: core/doctype/user/user.py:405 msgid "Please setup default outgoing Email Account from Settings > Email Account" msgstr "" @@ -23911,7 +24015,7 @@ msgstr "" msgid "Preparing Report" msgstr "Preparando Informe" -#: public/js/frappe/views/communication.js:400 +#: public/js/frappe/views/communication.js:411 msgid "Prepend the template to the email message" msgstr "" @@ -24068,7 +24172,7 @@ msgstr "Teléfono principal" msgid "Print" msgstr "Impresión" -#: public/js/frappe/list/list_view.js:1912 +#: public/js/frappe/list/list_view.js:1919 msgctxt "Button in list view actions menu" msgid "Print" msgstr "Impresión" @@ -24191,7 +24295,7 @@ msgstr "" #. Name of a DocType #: printing/doctype/print_heading/print_heading.json msgid "Print Heading" -msgstr "" +msgstr "Imprimir Encabezado" #. Label of a Link in the Tools Workspace #. Label of a Data field in DocType 'Print Heading' @@ -24199,7 +24303,7 @@ msgstr "" #: printing/doctype/print_heading/print_heading.json msgctxt "Print Heading" msgid "Print Heading" -msgstr "" +msgstr "Imprimir Encabezado" #. Label of a Check field in DocType 'Custom Field' #: custom/doctype/custom_field/custom_field.json @@ -24237,7 +24341,7 @@ msgctxt "DocField" msgid "Print Hide If No Value" msgstr "Impresión Oculta si no hay Valor" -#: public/js/frappe/views/communication.js:153 +#: public/js/frappe/views/communication.js:156 msgid "Print Language" msgstr "Lenguaje de impresión" @@ -24489,6 +24593,11 @@ msgctxt "Module Def" msgid "Property Setter" msgstr "" +#. Description of a DocType +#: custom/doctype/property_setter/property_setter.json +msgid "Property Setter overrides a standard DocType or Field property" +msgstr "" + #. Label of a Data field in DocType 'Property Setter' #: custom/doctype/property_setter/property_setter.json msgctxt "Property Setter" @@ -24527,9 +24636,9 @@ msgid "Provider Name" msgstr "Nombre del Proveedor" #: desk/doctype/note/note_list.js:6 public/js/frappe/views/interaction.js:78 -#: public/js/frappe/views/workspace/workspace.js:619 -#: public/js/frappe/views/workspace/workspace.js:947 -#: public/js/frappe/views/workspace/workspace.js:1193 +#: public/js/frappe/views/workspace/workspace.js:624 +#: public/js/frappe/views/workspace/workspace.js:952 +#: public/js/frappe/views/workspace/workspace.js:1198 msgid "Public" msgstr "Público" @@ -24552,7 +24661,7 @@ msgid "Public" msgstr "Público" #: website/doctype/blog_post/blog_post.js:36 -#: website/doctype/web_form/web_form.js:76 +#: website/doctype/web_form/web_form.js:86 msgid "Publish" msgstr "Publicar" @@ -24996,6 +25105,12 @@ msgctxt "Blog Settings" msgid "Rate Limits" msgstr "" +#. Label of a Int field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Rate limit for email link login" +msgstr "" + #. Label of a Int field in DocType 'Communication' #: core/doctype/communication/communication.json msgctxt "Communication" @@ -25072,7 +25187,7 @@ msgstr "Re:" #: core/doctype/communication/communication.js:268 #: public/js/frappe/form/footer/form_timeline.js:587 -#: public/js/frappe/views/communication.js:336 +#: public/js/frappe/views/communication.js:347 msgid "Re: {0}" msgstr "Re: {0}" @@ -25874,11 +25989,11 @@ msgid "Refreshing" msgstr "" #: core/doctype/system_settings/system_settings.js:52 -#: core/doctype/user/user.js:340 desk/page/setup_wizard/setup_wizard.js:204 +#: core/doctype/user/user.js:350 desk/page/setup_wizard/setup_wizard.js:204 msgid "Refreshing..." msgstr "Refrescando..." -#: core/doctype/user/user.py:1017 +#: core/doctype/user/user.py:1019 msgid "Registered but disabled" msgstr "Registrado pero discapacitados" @@ -26245,7 +26360,7 @@ msgctxt "Onboarding Step" msgid "Report Description" msgstr "Descripción del reporte" -#: core/doctype/report/report.py:145 +#: core/doctype/report/report.py:148 msgid "Report Document Error" msgstr "Informar error de documento" @@ -26395,7 +26510,7 @@ msgstr "El informe con más de 10 columnas se ve mejor en modo horizontal." msgid "Report {0}" msgstr "Informe {0}" -#: desk/reportview.py:339 +#: desk/reportview.py:343 msgid "Report {0} deleted" msgstr "Informe {0} eliminado" @@ -26403,7 +26518,7 @@ msgstr "Informe {0} eliminado" msgid "Report {0} is disabled" msgstr "El reporte {0} está deshabilitado" -#: desk/reportview.py:316 +#: desk/reportview.py:320 msgid "Report {0} saved" msgstr "Informe {0} guardado" @@ -26429,6 +26544,16 @@ msgstr "Informes y Maestros" msgid "Reports already in Queue" msgstr "Informes ya en cola" +#. Description of a DocType +#: core/doctype/user/user.json +msgid "Represents a User in the system." +msgstr "" + +#. Description of a DocType +#: 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 "" + #: www/me.html:66 msgid "Request Account Deletion" msgstr "" @@ -26565,7 +26690,7 @@ msgstr "Restablecer personalizaciones del Tablero" msgid "Reset Fields" msgstr "Reestablecer campos" -#: core/doctype/user/user.js:155 core/doctype/user/user.js:158 +#: core/doctype/user/user.js:165 core/doctype/user/user.js:168 msgid "Reset LDAP Password" msgstr "Restablecer la contraseña LDAP" @@ -26573,11 +26698,11 @@ msgstr "Restablecer la contraseña LDAP" msgid "Reset Layout" msgstr "" -#: core/doctype/user/user.js:206 +#: core/doctype/user/user.js:216 msgid "Reset OTP Secret" msgstr "Restablecer OTP Secret" -#: core/doctype/user/user.js:139 www/login.html:179 www/me.html:35 +#: core/doctype/user/user.js:149 www/login.html:179 www/me.html:35 #: www/me.html:44 www/update-password.html:3 www/update-password.html:9 msgid "Reset Password" msgstr "Restablecer contraseña" @@ -27026,7 +27151,7 @@ msgstr "Permisos de Rol" msgid "Role Permissions Manager" msgstr "Administrar permisos" -#: public/js/frappe/list/list_view.js:1689 +#: public/js/frappe/list/list_view.js:1696 msgctxt "Button in list view menu" msgid "Role Permissions Manager" msgstr "Administrar permisos" @@ -27072,7 +27197,7 @@ msgctxt "DocPerm" msgid "Role and Level" msgstr "Rol y nivel" -#: core/doctype/user/user.py:348 +#: core/doctype/user/user.py:350 msgid "Role has been set as per the user type {0}" msgstr "" @@ -27659,7 +27784,7 @@ msgstr "Sábado" #: public/js/frappe/views/kanban/kanban_view.js:340 #: public/js/frappe/views/reports/query_report.js:1802 #: public/js/frappe/views/reports/report_view.js:1628 -#: public/js/frappe/views/workspace/workspace.js:493 +#: public/js/frappe/views/workspace/workspace.js:498 #: public/js/frappe/widgets/base_widget.js:140 #: public/js/frappe/widgets/quick_list_widget.js:117 #: public/js/print_format_builder/print_format_builder.bundle.js:15 @@ -27673,7 +27798,7 @@ msgctxt "Notification" msgid "Save" msgstr "Guardar" -#: core/doctype/user/user.js:311 +#: core/doctype/user/user.js:321 msgid "Save API Secret: {0}" msgstr "" @@ -27721,7 +27846,7 @@ msgstr "Guardado" #: public/js/frappe/list/list_settings.js:40 #: public/js/frappe/views/kanban/kanban_settings.js:47 -#: public/js/frappe/views/workspace/workspace.js:505 +#: public/js/frappe/views/workspace/workspace.js:510 msgid "Saving" msgstr "Guardando" @@ -27760,7 +27885,7 @@ msgstr "" msgid "Schedule Newsletter" msgstr "" -#: public/js/frappe/views/communication.js:82 +#: public/js/frappe/views/communication.js:85 msgid "Schedule Send At" msgstr "" @@ -27966,6 +28091,11 @@ msgctxt "Server Script" msgid "Script Type" msgstr "Tipo de script" +#. Description of a DocType +#: website/doctype/website_script/website_script.json +msgid "Script to attach to all web pages." +msgstr "" + #. Label of a Card Break in the Build Workspace #: core/workspace/build/build.json msgid "Scripting" @@ -28056,7 +28186,7 @@ msgstr "Buscar en un tipo de documento." #: public/js/frappe/ui/toolbar/navbar.html:29 msgid "Search or type a command ({0})" -msgstr "" +msgstr "Buscar o escribir un comando ({0})" #: templates/includes/search_box.html:8 msgid "Search results for" @@ -28253,10 +28383,10 @@ msgstr "Seleccionar" #: public/js/frappe/data_import/data_exporter.js:148 #: public/js/frappe/form/controls/multicheck.js:166 msgid "Select All" -msgstr "" +msgstr "Seleccionar Todo" -#: public/js/frappe/views/communication.js:162 -#: public/js/frappe/views/communication.js:567 +#: public/js/frappe/views/communication.js:165 +#: public/js/frappe/views/communication.js:578 #: public/js/frappe/views/interaction.js:93 #: public/js/frappe/views/interaction.js:155 msgid "Select Attachments" @@ -28407,7 +28537,7 @@ msgid "Select Page" msgstr "Seleccionar Página" #: printing/page/print_format_builder_beta/print_format_builder_beta.js:68 -#: public/js/frappe/views/communication.js:145 +#: public/js/frappe/views/communication.js:148 msgid "Select Print Format" msgstr "Seleccionar formato de impresión" @@ -28654,7 +28784,7 @@ msgctxt "Print Settings" msgid "Send Print as PDF" msgstr "Enviar Impresión como 'PDF'" -#: public/js/frappe/views/communication.js:135 +#: public/js/frappe/views/communication.js:138 msgid "Send Read Receipt" msgstr "Enviar confirmación de lectura" @@ -28740,7 +28870,7 @@ msgstr "Enviar solicitudes a esta dirección de correo electrónico" msgid "Send login link" msgstr "" -#: public/js/frappe/views/communication.js:129 +#: public/js/frappe/views/communication.js:132 msgid "Send me a copy" msgstr "Enviarme una copia" @@ -29069,7 +29199,7 @@ msgctxt "System Settings" msgid "Session Expiry (idle timeout)" msgstr "Expiración de la sesión (tiempo de inactivad)" -#: core/doctype/system_settings/system_settings.py:111 +#: core/doctype/system_settings/system_settings.py:112 msgid "Session Expiry must be in format {0}" msgstr "El vencimiento de sesión debe estar en formato {0}" @@ -29101,7 +29231,7 @@ msgstr "Establecer filtros dinámicos" #: desk/doctype/dashboard_chart/dashboard_chart.js:381 #: desk/doctype/number_card/number_card.js:277 -#: website/doctype/web_form/web_form.js:259 +#: website/doctype/web_form/web_form.js:269 msgid "Set Filters" msgstr "Establecer filtros" @@ -29161,7 +29291,7 @@ msgctxt "Role Permission for Page and Report" msgid "Set Role For" msgstr "Establecer Rol Para" -#: core/doctype/user/user.js:116 +#: core/doctype/user/user.js:126 #: core/page/permission_manager/permission_manager.js:65 msgid "Set User Permissions" msgstr "Establecer permisos de usuario" @@ -29285,7 +29415,7 @@ msgstr "Configurando su Sistema" #: integrations/workspace/integrations/integrations.json #: public/js/frappe/form/templates/print_layout.html:25 #: public/js/frappe/ui/toolbar/toolbar.js:264 -#: public/js/frappe/views/workspace/workspace.js:521 +#: public/js/frappe/views/workspace/workspace.js:526 msgid "Settings" msgstr "Configuración" @@ -29320,6 +29450,21 @@ msgctxt "Navbar Settings" msgid "Settings Dropdown" msgstr "Menú desplegable de configuración" +#. Description of a DocType +#: website/doctype/contact_us_settings/contact_us_settings.json +msgid "Settings for Contact Us Page" +msgstr "" + +#. Description of a DocType +#: website/doctype/about_us_settings/about_us_settings.json +msgid "Settings for the About Us Page" +msgstr "" + +#. Description of a DocType +#: website/doctype/blog_settings/blog_settings.json +msgid "Settings to control blog categories and interactions like comments and likes" +msgstr "" + #. Label of a Card Break in the Website Workspace #: public/js/frappe/ui/toolbar/search_utils.js:567 #: website/workspace/website/website.json @@ -29688,7 +29833,7 @@ msgid "Show Sidebar" msgstr "Mostrar barra lateral" #: public/js/frappe/list/list_sidebar.html:66 -#: public/js/frappe/list/list_view.js:1605 +#: public/js/frappe/list/list_view.js:1612 msgid "Show Tags" msgstr "Mostrar etiquetas" @@ -29844,7 +29989,7 @@ msgctxt "Email Group" msgid "Sign Up and Confirmation" msgstr "" -#: core/doctype/user/user.py:1010 +#: core/doctype/user/user.py:1012 msgid "Sign Up is disabled" msgstr "El registro está desactivado" @@ -30046,6 +30191,11 @@ msgctxt "Website Slideshow" msgid "Slideshow Name" msgstr "Nombre de presentación" +#. Description of a DocType +#: website/doctype/website_slideshow/website_slideshow.json +msgid "Slideshow like display for the website" +msgstr "" + #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' #: custom/doctype/custom_field/custom_field.json msgctxt "Custom Field" @@ -30256,7 +30406,7 @@ msgstr "" msgid "Special Characters are not allowed" msgstr "Caracteres especiales no están permitidos" -#: model/naming.py:60 +#: model/naming.py:61 msgid "Special Characters except '-', '#', '.', '/', '{{' and '}}' not allowed in naming series {0}" msgstr "Caracteres especiales excepto '-', '#', '.', '/', '{{' and '}}' no permitidos en la serie de nombres {0}" @@ -30266,7 +30416,7 @@ msgctxt "Website Settings" msgid "Splash Image" msgstr "" -#: desk/reportview.py:378 public/js/frappe/web_form/web_form_list.js:175 +#: desk/reportview.py:382 public/js/frappe/web_form/web_form_list.js:175 #: templates/print_formats/standard_macros.html:44 msgid "Sr" msgstr "" @@ -30341,11 +30491,11 @@ msgstr "El formato de impresión estándar no se puede actualizar" msgid "Standard Print Style cannot be changed. Please duplicate to edit." msgstr "El estilo de impresión estándar no se puede cambiar. Duplicar por favor para corregir." -#: desk/reportview.py:329 +#: desk/reportview.py:333 msgid "Standard Reports cannot be deleted" msgstr "" -#: desk/reportview.py:300 +#: desk/reportview.py:304 msgid "Standard Reports cannot be edited" msgstr "" @@ -30355,7 +30505,7 @@ msgctxt "Portal Settings" msgid "Standard Sidebar Menu" msgstr "Menú Lateral Estándar" -#: website/doctype/web_form/web_form.js:30 +#: website/doctype/web_form/web_form.js:40 msgid "Standard Web Forms can not be modified, duplicate the Web Form instead." msgstr "" @@ -30821,7 +30971,7 @@ msgctxt "Website Settings" msgid "Subdomain" msgstr "Sub-dominio" -#: public/js/frappe/views/communication.js:104 +#: public/js/frappe/views/communication.js:107 #: public/js/frappe/views/inbox/inbox_view.js:63 msgid "Subject" msgstr "Asunto" @@ -30917,7 +31067,7 @@ msgstr "" msgid "Submit" msgstr "Validar" -#: public/js/frappe/list/list_view.js:1979 +#: public/js/frappe/list/list_view.js:1986 msgctxt "Button in list view actions menu" msgid "Submit" msgstr "Validar" @@ -31014,7 +31164,7 @@ msgstr "Envíe este documento para completar este paso." msgid "Submit this document to confirm" msgstr "Presentar este documento para confirmar" -#: public/js/frappe/list/list_view.js:1984 +#: public/js/frappe/list/list_view.js:1991 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "¿Presentar {0} documentos?" @@ -31194,7 +31344,7 @@ msgstr "Actualizado exitosamente {0}" msgid "Successfully updated {0} out of {1} records." msgstr "" -#: core/doctype/user/user.py:725 +#: core/doctype/user/user.py:727 msgid "Suggested Username: {0}" msgstr "Nombre de usuario sugerido: {0}" @@ -31771,7 +31921,7 @@ msgstr "Advertencias de plantilla" msgid "Templates" msgstr "" -#: core/doctype/user/user.py:1021 +#: core/doctype/user/user.py:1023 msgid "Temporarily Disabled" msgstr "Desactivado temporalmente" @@ -31859,6 +32009,12 @@ msgstr "Editor de texto" msgid "Thank you" msgstr "Gracias." +#: www/contact.py:37 +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 "" + #: website/doctype/web_form/templates/web_form.html:137 msgid "Thank you for spending your valuable time to fill this form" msgstr "Gracias por tomarse el tiempo para llenar este formulario" @@ -31948,7 +32104,7 @@ msgstr "El comentario no puede estar vacío" #: public/js/frappe/list/list_view.js:629 msgid "The count shown is an estimated count. Click here to see the accurate count." -msgstr "" +msgstr "El recuento mostrado es un recuento estimado. Pulse aquí para ver el recuento exacto." #: public/js/frappe/views/interaction.js:301 msgid "The document could not be correctly assigned" @@ -32004,7 +32160,7 @@ msgstr "" msgid "The link will expire in {0} minutes" msgstr "" -#: www/login.py:175 +#: www/login.py:179 msgid "The link you trying to login is invalid or expired." msgstr "" @@ -32054,11 +32210,11 @@ msgid "The project number obtained from Google Cloud Console under " msgstr "" -#: core/doctype/user/user.py:981 +#: core/doctype/user/user.py:983 msgid "The reset password link has been expired" msgstr "" -#: core/doctype/user/user.py:983 +#: core/doctype/user/user.py:985 msgid "The reset password link has either been used before or is invalid" msgstr "" @@ -32156,8 +32312,8 @@ msgstr "" msgid "There are {0} with the same filters already in the queue:" msgstr "" -#: website/doctype/web_form/web_form.js:71 -#: website/doctype/web_form/web_form.js:307 +#: website/doctype/web_form/web_form.js:81 +#: website/doctype/web_form/web_form.js:317 msgid "There can be only 9 Page Break fields in a Web Form" msgstr "" @@ -32185,7 +32341,7 @@ msgstr "" msgid "There must be atleast one permission rule." msgstr "Debe haber al menos una regla de permiso." -#: core/doctype/user/user.py:533 +#: core/doctype/user/user.py:535 msgid "There should remain at least one System Manager" msgstr "Debe haber al menos un administrador del sistema" @@ -32205,11 +32361,11 @@ msgstr "Hubo errores" msgid "There were errors while creating the document. Please try again." msgstr "Hubo errores al crear el documento. Inténtalo de nuevo." -#: public/js/frappe/views/communication.js:809 +#: public/js/frappe/views/communication.js:820 msgid "There were errors while sending email. Please try again." msgstr "Ha ocurrido un error al enviar el correo electrónico. Por favor, inténtelo de nuevo." -#: model/naming.py:448 +#: model/naming.py:470 msgid "There were some errors setting the name, please contact the administrator" msgstr "Existen algunos errores al configurar el nombre, por favor póngase en contacto con el administrador" @@ -32256,7 +32412,7 @@ msgstr "" msgid "This Kanban Board will be private" msgstr "Este tablero Kanban será privado" -#: __init__.py:1010 +#: __init__.py:1013 msgid "This action is only allowed for {}" msgstr "Esta acción solo está permitida para {}" @@ -32484,7 +32640,7 @@ msgstr "" msgid "This will terminate the job immediately and might be dangerous, are you sure? " msgstr "Esto terminará el trabajo inmediatamente y podría ser peligroso, ¿está seguro? " -#: core/doctype/user/user.py:1241 +#: core/doctype/user/user.py:1243 msgid "Throttled" msgstr "" @@ -32752,9 +32908,9 @@ msgstr "Marca de tiempo" #: core/doctype/doctype/boilerplate/controller_list.html:14 #: core/doctype/doctype/boilerplate/controller_list.html:23 -#: public/js/frappe/views/workspace/workspace.js:605 -#: public/js/frappe/views/workspace/workspace.js:934 -#: public/js/frappe/views/workspace/workspace.js:1181 +#: public/js/frappe/views/workspace/workspace.js:610 +#: public/js/frappe/views/workspace/workspace.js:939 +#: public/js/frappe/views/workspace/workspace.js:1186 msgid "Title" msgstr "Nombre" @@ -32937,7 +33093,7 @@ msgctxt "Auto Email Report" msgid "To Date Field" msgstr "Hasta el campo de fecha" -#: desk/doctype/todo/todo_list.js:12 +#: desk/doctype/todo/todo_list.js:6 msgid "To Do" msgstr "Tareas" @@ -33101,7 +33257,7 @@ msgstr "Alternar Vista de Cuadrícula" msgid "Toggle Sidebar" msgstr "Alternar Barra Lateral" -#: public/js/frappe/list/list_view.js:1720 +#: public/js/frappe/list/list_view.js:1727 msgctxt "Button in list view menu" msgid "Toggle Sidebar" msgstr "Alternar Barra Lateral" @@ -33163,7 +33319,7 @@ msgstr "Demasiadas solicitudes" msgid "Too many changes to database in single action." msgstr "" -#: core/doctype/user/user.py:1022 +#: core/doctype/user/user.py:1024 msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour" msgstr "Hay demasiados usuarios se inscribieron recientemente, por lo que el registro está desactivado. Por favor, intente volver en una hora" @@ -33361,6 +33517,11 @@ msgid "Track if your email has been opened by the recipient.\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 +#: automation/doctype/milestone_tracker/milestone_tracker.json +msgid "Track milestones for any document" +msgstr "" + #: public/js/frappe/utils/utils.js:1757 msgid "Tracking URL generated and copied to clipboard" msgstr "" @@ -33851,7 +34012,7 @@ msgstr "Dejar de seguir" msgid "Unhandled Email" msgstr "Cuenta de Correo Electrónico no Manejado" -#: public/js/frappe/views/workspace/workspace.js:562 +#: public/js/frappe/views/workspace/workspace.js:567 msgid "Unhide Workspace" msgstr "Mostrar Área de Trabajo" @@ -33898,7 +34059,7 @@ msgid "Unlock Reference Document" msgstr "" #: website/doctype/blog_post/blog_post.js:36 -#: website/doctype/web_form/web_form.js:76 +#: website/doctype/web_form/web_form.js:86 msgid "Unpublish" msgstr "" @@ -33921,7 +34082,7 @@ msgstr "" #: public/js/frappe/data_import/data_exporter.js:158 #: public/js/frappe/form/controls/multicheck.js:166 msgid "Unselect All" -msgstr "" +msgstr "Deseleccionar Todo" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' #: core/doctype/comment/comment.json @@ -34002,7 +34163,7 @@ msgstr "Eventos para hoy" #: printing/page/print_format_builder/print_format_builder.js:670 #: printing/page/print_format_builder/print_format_builder.js:757 #: public/js/frappe/form/grid_row.js:403 -#: public/js/frappe/views/workspace/workspace.js:653 +#: public/js/frappe/views/workspace/workspace.js:658 msgid "Update" msgstr "Actualizar" @@ -34018,7 +34179,7 @@ msgctxt "Document Naming Settings" msgid "Update Amendment Naming" msgstr "" -#: public/js/frappe/views/workspace/workspace.js:602 +#: public/js/frappe/views/workspace/workspace.js:607 msgid "Update Details" msgstr "Detalles de actualización" @@ -34280,11 +34441,11 @@ msgctxt "Email Account" msgid "Use different Email ID" msgstr "" -#: model/db_query.py:424 +#: model/db_query.py:423 msgid "Use of function {0} in field is restricted" msgstr "" -#: model/db_query.py:403 +#: model/db_query.py:402 msgid "Use of sub-query or function is restricted" msgstr "El uso de la sub-query o función está restringido" @@ -34580,6 +34741,11 @@ msgctxt "Social Login Key" msgid "User ID Property" msgstr "Propiedad de ID de usuario" +#. Description of a DocType +#: website/doctype/blogger/blogger.json +msgid "User ID of a Blogger" +msgstr "" + #. Label of a Link field in DocType 'Contact' #: contacts/doctype/contact/contact.json msgctxt "Contact" @@ -34629,7 +34795,7 @@ msgstr "Permiso de Usuario" msgid "User Permissions" msgstr "Permisos de Usuario" -#: public/js/frappe/list/list_view.js:1678 +#: public/js/frappe/list/list_view.js:1685 msgctxt "Button in list view menu" msgid "User Permissions" msgstr "Permisos de Usuario" @@ -34764,15 +34930,15 @@ msgstr "" msgid "User with email: {0} does not exist in the system. Please ask 'System Administrator' to create the user for you." msgstr "" -#: core/doctype/user/user.py:538 +#: core/doctype/user/user.py:540 msgid "User {0} cannot be deleted" msgstr "El usuario {0} no se puede eliminar" -#: core/doctype/user/user.py:277 +#: core/doctype/user/user.py:279 msgid "User {0} cannot be disabled" msgstr "El usuario {0} no se puede deshabilitar" -#: core/doctype/user/user.py:607 +#: core/doctype/user/user.py:609 msgid "User {0} cannot be renamed" msgstr "El usuario {0} no puede ser renombrado" @@ -34789,7 +34955,7 @@ msgstr "El usuario {0} no tiene acceso a doctype a través del permiso de rol pa msgid "User {0} has requested for data deletion" msgstr "El usuario {0} ha solicitado la eliminación de datos" -#: core/doctype/user/user.py:1370 +#: core/doctype/user/user.py:1372 msgid "User {0} impersonated as {1}" msgstr "" @@ -34823,7 +34989,7 @@ msgctxt "User Social Login" msgid "Username" msgstr "Nombre de usuario" -#: core/doctype/user/user.py:692 +#: core/doctype/user/user.py:694 msgid "Username {0} already exists" msgstr "Nombre de usuario {0} ya existe" @@ -34904,7 +35070,7 @@ msgstr "Validez" #: public/js/frappe/list/bulk_operations.js:306 #: public/js/frappe/list/bulk_operations.js:368 #: public/js/frappe/list/list_view_permission_restrictions.html:4 -#: website/doctype/web_form/web_form.js:187 +#: website/doctype/web_form/web_form.js:197 msgid "Value" msgstr "Valor" @@ -35138,7 +35304,7 @@ msgstr "Ver Lista" msgid "View Log" msgstr "Ver registro" -#: core/doctype/user/user.js:127 +#: core/doctype/user/user.js:137 #: core/doctype/user_permission/user_permission.js:24 msgid "View Permitted Documents" msgstr "Ver Documentos Permitidos" @@ -35315,6 +35481,10 @@ msgstr "Hemos recibido una solicitud de eliminación de {0} datos asociados con: msgid "We have received a request from you to download your {0} data associated with: {1}" msgstr "Hemos recibido una solicitud suya para descargar sus {0} datos asociados con: {1}" +#: www/contact.py:48 +msgid "We've received your query!" +msgstr "" + #: public/js/frappe/form/controls/password.js:88 msgid "Weak" msgstr "" @@ -35857,11 +36027,11 @@ msgstr "URL de bienvenida" msgid "Welcome Workspace" msgstr "Área de Trabajo de Bienvenida" -#: core/doctype/user/user.py:395 +#: core/doctype/user/user.py:397 msgid "Welcome email sent" msgstr "Correo electrónico de bienvenida enviado" -#: core/doctype/user/user.py:470 +#: core/doctype/user/user.py:472 msgid "Welcome to {0}" msgstr "Bienvenido a {0}" @@ -36031,6 +36201,7 @@ msgid "Workflow Action" msgstr "Acciones de flujos de trabajo" #. Name of a DocType +#. Description of a DocType #: workflow/doctype/workflow_action_master/workflow_action_master.json msgid "Workflow Action Master" msgstr "Flujo de trabajo de Acción Maestro" @@ -36126,6 +36297,11 @@ msgstr "Estado del flujo de trabajo" msgid "Workflow Transition" msgstr "La transición del Flujo de Trabajo" +#. Description of a DocType +#: workflow/doctype/workflow_state/workflow_state.json +msgid "Workflow state represents the current state of a document." +msgstr "" + #. Description of the Onboarding Step 'Setup Approval Workflows' #: custom/onboarding_step/workflows/workflows.json msgid "Workflows allow you to define custom rules for the approval process of a particular document in ERPNext. You can also set complex Workflow Rules and set approval conditions." @@ -36144,6 +36320,12 @@ msgctxt "Module Def" msgid "Workspace" msgstr "Área de Trabajo" +#. Label of a Section Break field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Workspace" +msgstr "Área de Trabajo" + #. Label of a Link in the Build Workspace #: core/workspace/build/build.json msgctxt "Workspace" @@ -36194,15 +36376,15 @@ msgstr "Acceso directo del Espacio del Trabajo" msgid "Workspace not found" msgstr "Área de Trabajo no encontrada" -#: public/js/frappe/views/workspace/workspace.js:1271 +#: public/js/frappe/views/workspace/workspace.js:1276 msgid "Workspace {0} Created Successfully" msgstr "Área de Trabajo {0} creada correctamente" -#: public/js/frappe/views/workspace/workspace.js:900 +#: public/js/frappe/views/workspace/workspace.js:905 msgid "Workspace {0} Deleted Successfully" msgstr "Área de Trabajo {0} eliminado correctamente" -#: public/js/frappe/views/workspace/workspace.js:678 +#: public/js/frappe/views/workspace/workspace.js:683 msgid "Workspace {0} Edited Successfully" msgstr "Área de Trabajo {0} editada correctamente" @@ -36432,7 +36614,7 @@ msgstr "" msgid "You are not allowed to create columns" msgstr "No se le permite crear columnas" -#: core/doctype/report/report.py:94 +#: core/doctype/report/report.py:97 msgid "You are not allowed to delete Standard Report" msgstr "No puede eliminar el informe estándar" @@ -36440,7 +36622,7 @@ msgstr "No puede eliminar el informe estándar" msgid "You are not allowed to delete a standard Website Theme" msgstr "No se le permite eliminar un tema de sitio web estándar" -#: core/doctype/report/report.py:377 +#: core/doctype/report/report.py:383 msgid "You are not allowed to edit the report." msgstr "" @@ -36452,7 +36634,7 @@ msgstr "No está permitido exportar {} doctype" msgid "You are not allowed to print this report" msgstr "Usted no está autorizado a imprimir este informe" -#: public/js/frappe/views/communication.js:753 +#: public/js/frappe/views/communication.js:764 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" @@ -36472,7 +36654,7 @@ msgstr "" msgid "You are not permitted to access this page." msgstr "Usted no está autorizado a acceder a esta página." -#: __init__.py:929 +#: __init__.py:932 msgid "You are not permitted to access this resource." msgstr "" @@ -36525,7 +36707,7 @@ msgstr "" msgid "You can continue with the onboarding after exploring this page" msgstr "" -#: core/doctype/user/user.py:598 +#: core/doctype/user/user.py:600 msgid "You can disable the user instead of deleting it." msgstr "" @@ -36561,6 +36743,13 @@ msgstr "Sólo se pueden cargar hasta 5.000 registros de una sola vez. (Puede ser msgid "You can select one from the following," msgstr "" +#. Description of the 'Rate limit for email link login' (Int) field in DocType +#. 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "You can set a high value here if multiple users will be logging in from the same network." +msgstr "" + #: desk/query_report.py:332 msgid "You can try changing the filters of your report." msgstr "Puede intentar cambiar los filtros de su informe." @@ -37746,7 +37935,7 @@ msgstr "bloquear" msgid "logged in" msgstr "conectado" -#: website/doctype/web_form/web_form.js:352 +#: website/doctype/web_form/web_form.js:362 msgid "login_required" msgstr "" @@ -38770,7 +38959,7 @@ msgctxt "Form timeline" msgid "{0} attached {1}" msgstr "" -#: core/doctype/system_settings/system_settings.py:141 +#: core/doctype/system_settings/system_settings.py:142 msgid "{0} can not be more than {1}" msgstr "{0} no puede ser más de {1}" @@ -38908,7 +39097,7 @@ msgstr "{0} ha sido añadido al grupo de correo electrónico." msgid "{0} has left the conversation in {1} {2}" msgstr "{0} ha dejado la conversación en {1} {2}" -#: __init__.py:2480 +#: __init__.py:2483 msgid "{0} has no versions tracked." msgstr "{0} no tiene versiones rastreadas." @@ -39054,7 +39243,7 @@ msgstr "{0} ahora es el formato de impresión predeterminado para el doctype {1} msgid "{0} is one of {1}" msgstr "{0} es uno de {1}" -#: email/doctype/email_account/email_account.py:277 model/naming.py:201 +#: email/doctype/email_account/email_account.py:277 model/naming.py:202 #: printing/doctype/print_format/print_format.py:90 utils/csvutils.py:131 msgid "{0} is required" msgstr "{0} es requerido" @@ -39067,11 +39256,11 @@ msgstr "" msgid "{0} is within {1}" msgstr "{0} está dentro de {1}" -#: public/js/frappe/list/list_view.js:1595 +#: public/js/frappe/list/list_view.js:1602 msgid "{0} items selected" msgstr "{0} elementos seleccionados" -#: core/doctype/user/user.py:1379 +#: core/doctype/user/user.py:1381 msgid "{0} just impersonated as you. They gave this reason: {1}" msgstr "{0} se hizo pasar por usted. Dieron esta razón: {1}" @@ -39137,11 +39326,11 @@ msgstr "{0} no se permite renombrar" msgid "{0} not found" msgstr "{0} no encontrado" -#: core/doctype/report/report.py:413 public/js/frappe/list/list_view.js:986 +#: core/doctype/report/report.py:419 public/js/frappe/list/list_view.js:987 msgid "{0} of {1}" msgstr "{0} de {1}" -#: public/js/frappe/list/list_view.js:988 +#: public/js/frappe/list/list_view.js:989 msgid "{0} of {1} ({2} rows with children)" msgstr "{0} de {1} ({2} filas con hijos)" @@ -39266,7 +39455,7 @@ msgstr "{0} dejó de compartir este documento con {1}" msgid "{0} updated" msgstr "{0} actualizado" -#: public/js/frappe/form/controls/multiselect_list.js:162 +#: public/js/frappe/form/controls/multiselect_list.js:182 msgid "{0} values selected" msgstr "{0} valores seleccionados" diff --git a/frappe/locale/fa.po b/frappe/locale/fa.po index 970aa690a5..a6e0a57af0 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: 2024-03-17 09:33+0000\n" -"PO-Revision-Date: 2024-03-18 10:48\n" +"POT-Creation-Date: 2024-03-24 09:33+0000\n" +"PO-Revision-Date: 2024-03-26 12:06\n" "Last-Translator: developers@frappe.io\n" "Language-Team: Persian\n" "MIME-Version: 1.0\n" @@ -1231,7 +1231,7 @@ msgstr "اضافه کردن / به روز رسانی" msgid "Add A New Rule" msgstr "یک قانون جدید اضافه کنید" -#: public/js/frappe/views/communication.js:567 +#: public/js/frappe/views/communication.js:578 #: public/js/frappe/views/interaction.js:159 msgid "Add Attachment" msgstr "پیوست را اضافه کنید" @@ -1333,7 +1333,7 @@ msgstr "افزودن پارامترهای پرس و جو" msgid "Add Review" msgstr "افزودن نظر" -#: core/doctype/user/user.py:808 +#: core/doctype/user/user.py:810 msgid "Add Roles" msgstr "اضافه کردن نقش ها" @@ -1341,7 +1341,7 @@ msgstr "اضافه کردن نقش ها" msgid "Add Row" msgstr "ردیف اضافه کنید" -#: public/js/frappe/views/communication.js:118 +#: public/js/frappe/views/communication.js:121 msgid "Add Signature" msgstr "اضافه کردن امضا" @@ -1372,12 +1372,12 @@ msgstr "مشترکین را اضافه کنید" msgid "Add Tags" msgstr "افزودن برچسب" -#: public/js/frappe/list/list_view.js:1897 +#: public/js/frappe/list/list_view.js:1904 msgctxt "Button in list view actions menu" msgid "Add Tags" msgstr "افزودن برچسب" -#: public/js/frappe/views/communication.js:399 +#: public/js/frappe/views/communication.js:410 msgid "Add Template" msgstr "اضافه کردن الگو" @@ -1489,7 +1489,7 @@ msgstr "اضافه شد {0}" msgid "Added {0} ({1})" msgstr "اضافه شده {0} ({1})" -#: core/doctype/user/user.py:305 +#: core/doctype/user/user.py:307 msgid "Adding System Manager to this User as there must be atleast one System Manager" msgstr "افزودن مدیر سیستم به این کاربر زیرا باید حداقل یک مدیر سیستم وجود داشته باشد" @@ -1595,6 +1595,16 @@ msgstr "آدرس ها" msgid "Addresses And Contacts" msgstr "آدرس ها و مخاطبین" +#. Description of a DocType +#: custom/doctype/client_script/client_script.json +msgid "Adds a custom client script to a DocType" +msgstr "" + +#. Description of a DocType +#: custom/doctype/custom_field/custom_field.json +msgid "Adds a custom field to a DocType" +msgstr "" + #: public/js/frappe/ui/toolbar/search_utils.js:552 msgid "Administration" msgstr "مدیریت" @@ -1616,11 +1626,11 @@ msgstr "مدیریت" msgid "Administrator" msgstr "مدیر" -#: core/doctype/user/user.py:1212 +#: core/doctype/user/user.py:1214 msgid "Administrator Logged In" msgstr "مدیر وارد شده است" -#: core/doctype/user/user.py:1206 +#: core/doctype/user/user.py:1208 msgid "Administrator accessed {0} on {1} via IP Address {2}." msgstr "سرپرست از طریق آدرس IP {2} به {0} در {1} دسترسی پیدا کرد." @@ -2202,7 +2212,7 @@ msgstr "ماژول های مجاز" msgid "Allowing DocType, DocType. Be careful!" msgstr "اجازه دادن به DocType، DocType. مراقب باش!" -#: core/doctype/user/user.py:1015 +#: core/doctype/user/user.py:1017 msgid "Already Registered" msgstr "قبلا ثبت شده است" @@ -2454,7 +2464,7 @@ msgstr "کلید مخفی برنامه" msgid "App not found for module: {0}" msgstr "برنامه برای ماژول یافت نشد: {0}" -#: __init__.py:1781 +#: __init__.py:1784 msgid "App {0} is not installed" msgstr "برنامه {0} نصب نشده است" @@ -2533,7 +2543,7 @@ msgctxt "Property Setter" msgid "Applied On" msgstr "اعمال شد" -#: public/js/frappe/list/list_view.js:1882 +#: public/js/frappe/list/list_view.js:1889 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" msgstr "اعمال قانون تکلیف" @@ -2639,7 +2649,7 @@ msgstr "بایگانی شد" msgid "Archived Columns" msgstr "ستون های بایگانی شده" -#: public/js/frappe/list/list_view.js:1861 +#: public/js/frappe/list/list_view.js:1868 msgid "Are you sure you want to clear the assignments?" msgstr "" @@ -2647,7 +2657,7 @@ msgstr "" msgid "Are you sure you want to delete all rows?" msgstr "آیا مطمئن هستید که می خواهید همه ردیف ها را حذف کنید؟" -#: public/js/frappe/views/workspace/workspace.js:891 +#: public/js/frappe/views/workspace/workspace.js:896 msgid "Are you sure you want to delete page {0}?" msgstr "آیا مطمئن هستید که می خواهید صفحه {0} را حذف کنید؟" @@ -2738,7 +2748,7 @@ msgstr "تعیین شرط" msgid "Assign To" msgstr "اختصاص دادن به" -#: public/js/frappe/list/list_view.js:1843 +#: public/js/frappe/list/list_view.js:1850 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "اختصاص دادن به" @@ -2907,7 +2917,7 @@ msgstr "تکالیف" msgid "At least one column is required to show in the grid." msgstr "حداقل یک ستون برای نمایش در شبکه مورد نیاز است." -#: website/doctype/web_form/web_form.js:63 +#: website/doctype/web_form/web_form.js:73 msgid "At least one field is required in Web Form Fields Table" msgstr "" @@ -2943,7 +2953,7 @@ msgctxt "Web Form Field" msgid "Attach" msgstr "ضمیمه کنید" -#: public/js/frappe/views/communication.js:140 +#: public/js/frappe/views/communication.js:143 msgid "Attach Document Print" msgstr "ضمیمه چاپ سند" @@ -3410,6 +3420,11 @@ msgstr "پیوند خودکار را می توان فقط برای یک حساب msgid "Automatic Linking can be activated only if Incoming is enabled." msgstr "پیوند خودکار فقط در صورتی فعال می شود که Incoming فعال باشد." +#. Description of a DocType +#: automation/doctype/assignment_rule/assignment_rule.json +msgid "Automatically Assign Documents to Users" +msgstr "" + #. Label of a Int field in DocType 'Website Settings' #: website/doctype/website_settings/website_settings.json msgctxt "Website Settings" @@ -3556,7 +3571,7 @@ msgctxt "Print Settings" msgid "B9" msgstr "B9" -#: public/js/frappe/views/communication.js:77 +#: public/js/frappe/views/communication.js:79 msgid "BCC" msgstr "" @@ -4399,7 +4414,7 @@ msgstr "" msgid "CANCELLED" msgstr "لغو شد" -#: public/js/frappe/views/communication.js:72 +#: public/js/frappe/views/communication.js:73 msgid "CC" msgstr "" @@ -4634,7 +4649,7 @@ msgstr "نمی توان نام {0} را به {1} تغییر داد زیرا {0} msgid "Cancel" msgstr "لغو کنید" -#: public/js/frappe/list/list_view.js:1952 +#: public/js/frappe/list/list_view.js:1959 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "لغو کنید" @@ -4687,7 +4702,7 @@ msgstr "لغو تمام اسناد" msgid "Cancel Scheduling" msgstr "لغو برنامه ریزی" -#: public/js/frappe/list/list_view.js:1957 +#: public/js/frappe/list/list_view.js:1964 msgctxt "Title of confirmation dialog" msgid "Cancel {0} documents?" msgstr "{0} سند لغو شود؟" @@ -4860,7 +4875,7 @@ msgstr "نمی‌توان اعلان استاندارد را ویرایش کرد msgid "Cannot edit Standard charts" msgstr "نمودارهای استاندارد را نمی توان ویرایش کرد" -#: core/doctype/report/report.py:69 +#: core/doctype/report/report.py:72 msgid "Cannot edit a standard report. Please duplicate and create a new report" msgstr "نمی توان یک گزارش استاندارد را ویرایش کرد. لطفا کپی کنید و یک گزارش جدید ایجاد کنید" @@ -4937,11 +4952,11 @@ msgstr "نمی توان فضای کاری خصوصی سایر کاربران ر msgid "Cannot update {0}" msgstr "نمی توان {0} را به روز کرد" -#: model/db_query.py:1119 +#: model/db_query.py:1103 msgid "Cannot use sub-query in order by" msgstr "نمی توان از پرس و جو فرعی به ترتیب استفاده کرد" -#: model/db_query.py:1137 +#: model/db_query.py:1121 msgid "Cannot use {0} in order/group by" msgstr "نمی توان از {0} به ترتیب/گروه بندی بر اساس استفاده کرد" @@ -5296,7 +5311,7 @@ msgstr "جداول Child به صورت Grid در سایر DocType ها نشان msgid "Choose Existing Card or create New Card" msgstr "کارت موجود را انتخاب کنید یا کارت جدید ایجاد کنید" -#: public/js/frappe/views/workspace/workspace.js:1391 +#: public/js/frappe/views/workspace/workspace.js:1396 msgid "Choose a block or continue typing" msgstr "یک بلوک را انتخاب کنید یا به تایپ کردن ادامه دهید" @@ -5332,15 +5347,15 @@ msgstr "شهر/شهرک" msgid "Clear" msgstr "پاک کردن" -#: public/js/frappe/views/communication.js:404 +#: public/js/frappe/views/communication.js:415 msgid "Clear & Add Template" msgstr "پاک کردن و اضافه کردن الگو" -#: public/js/frappe/views/communication.js:99 +#: public/js/frappe/views/communication.js:102 msgid "Clear & Add template" msgstr "پاک کردن و اضافه کردن الگو" -#: public/js/frappe/list/list_view.js:1858 +#: public/js/frappe/list/list_view.js:1865 msgctxt "Button in list view actions menu" msgid "Clear Assignment" msgstr "" @@ -5367,7 +5382,7 @@ msgstr "پاک کردن گزارشات پس از (روزها)" msgid "Clear User Permissions" msgstr "مجوزهای کاربر را پاک کنید" -#: public/js/frappe/views/communication.js:405 +#: public/js/frappe/views/communication.js:416 msgid "Clear the email message and add the template" msgstr "پیام ایمیل را پاک کنید و الگو را اضافه کنید" @@ -5425,7 +5440,7 @@ msgstr "برای ایجاد Refresh Token روی {0} کلیک کنید." #: desk/doctype/dashboard_chart/dashboard_chart.js:315 #: desk/doctype/number_card/number_card.js:215 #: email/doctype/auto_email_report/auto_email_report.js:96 -#: website/doctype/web_form/web_form.js:226 +#: website/doctype/web_form/web_form.js:236 msgid "Click table to edit" msgstr "برای ویرایش روی جدول کلیک کنید" @@ -5436,7 +5451,7 @@ msgstr "برای تنظیم فیلترهای پویا کلیک کنید" #: desk/doctype/dashboard_chart/dashboard_chart.js:372 #: desk/doctype/number_card/number_card.js:270 -#: website/doctype/web_form/web_form.js:252 +#: website/doctype/web_form/web_form.js:262 msgid "Click to Set Filters" msgstr "برای تنظیم فیلترها کلیک کنید" @@ -6113,7 +6128,7 @@ msgstr "کامل" msgid "Complete By" msgstr "تکمیل توسط" -#: core/doctype/user/user.py:472 templates/emails/new_user.html:10 +#: core/doctype/user/user.py:474 templates/emails/new_user.html:10 msgid "Complete Registration" msgstr "ثبت نام کامل" @@ -6182,7 +6197,7 @@ msgstr "نوشتن ایمیل" #: desk/doctype/dashboard_chart/dashboard_chart.js:439 #: desk/doctype/number_card/number_card.js:205 #: desk/doctype/number_card/number_card.js:333 -#: website/doctype/web_form/web_form.js:187 +#: website/doctype/web_form/web_form.js:197 msgid "Condition" msgstr "وضعیت" @@ -6279,7 +6294,12 @@ msgid "Configure how amended documents will be named.
\n\n" "Default Naming will make the amended document to behave same as new documents." msgstr "" -#: core/doctype/user/user.js:374 public/js/frappe/dom.js:332 +#. Description of a DocType +#: core/doctype/document_naming_settings/document_naming_settings.json +msgid "Configure various aspects of how document naming works like naming series, current counter." +msgstr "" + +#: core/doctype/user/user.js:384 public/js/frappe/dom.js:332 #: www/update-password.html:30 msgid "Confirm" msgstr "تایید" @@ -6294,7 +6314,7 @@ msgstr "تایید" msgid "Confirm Deletion of Account" msgstr "حذف اکانت را تایید کنید" -#: core/doctype/user/user.js:167 +#: core/doctype/user/user.js:177 msgid "Confirm New Password" msgstr "رمز عبور جدید را تأیید کنید" @@ -6451,6 +6471,10 @@ msgstr "تلفن تماس" msgid "Contact Synced with Google Contacts." msgstr "مخاطب با Google Contacts همگام‌سازی شد." +#: www/contact.html:4 +msgid "Contact Us" +msgstr "" + #. Name of a DocType #: website/doctype/contact_us_settings/contact_us_settings.json msgid "Contact Us Settings" @@ -6624,6 +6648,10 @@ msgstr " کنترل می کند که آیا کاربران جدید می توا msgid "Copied to clipboard." msgstr "در کلیپ بورد کپی شد." +#: website/doctype/web_form/web_form.js:29 +msgid "Copy Embed Code" +msgstr "" + #: public/js/frappe/form/templates/timeline_message_box.html:83 msgid "Copy Link" msgstr "لینک را کپی کنید" @@ -6650,7 +6678,7 @@ msgstr "Core DocTypes را نمی توان سفارشی کرد." msgid "Core Modules {0} cannot be searched in Global Search." msgstr "ماژول های اصلی {0} را نمی توان در جستجوی سراسری جستجو کرد." -#: email/smtp.py:77 +#: email/smtp.py:78 msgid "Could not connect to outgoing email server" msgstr "به سرور ایمیل خروجی متصل نشد" @@ -6764,7 +6792,7 @@ msgstr "" #: public/js/frappe/views/file/file_view.js:112 #: public/js/frappe/views/interaction.js:18 #: public/js/frappe/views/reports/query_report.js:1186 -#: public/js/frappe/views/workspace/workspace.js:1223 +#: public/js/frappe/views/workspace/workspace.js:1228 #: workflow/page/workflow_builder/workflow_builder.js:46 msgid "Create" msgstr "ايجاد كردن" @@ -6817,7 +6845,7 @@ msgstr "ایجاد مخاطبین از ایمیل های دریافتی" msgid "Create Custom Fields" msgstr "ایجاد فیلدهای سفارشی" -#: public/js/frappe/views/workspace/workspace.js:931 +#: public/js/frappe/views/workspace/workspace.js:936 msgid "Create Duplicate" msgstr "تکراری ایجاد کنید" @@ -6852,11 +6880,11 @@ msgstr "DocType جدید ایجاد کنید" msgid "Create New Kanban Board" msgstr "صفحه کانبان جدید ایجاد کنید" -#: core/doctype/user/user.js:246 +#: core/doctype/user/user.js:256 msgid "Create User Email" msgstr "ایجاد ایمیل کاربر" -#: public/js/frappe/views/workspace/workspace.js:471 +#: public/js/frappe/views/workspace/workspace.js:476 msgid "Create Workspace" msgstr "ایجاد فضای کاری" @@ -6888,6 +6916,11 @@ msgstr "ایجاد یک {0} جدید" msgid "Create a {0} Account" msgstr "یک حساب {0} ایجاد کنید" +#. Description of a DocType +#: email/doctype/newsletter/newsletter.json +msgid "Create and send emails to a specific group of subscribers periodically." +msgstr "" + #: printing/page/print_format_builder_beta/print_format_builder_beta.js:34 msgid "Create or Edit Print Format" msgstr "ایجاد یا ویرایش فرمت چاپ" @@ -7054,6 +7087,11 @@ msgctxt "System Settings" msgid "Currency Precision" msgstr "دقت ارز" +#. Description of a DocType +#: geo/doctype/currency/currency.json +msgid "Currency list stores the currency value, its symbol and fraction unit" +msgstr "" + #. Option for the 'Address Type' (Select) field in DocType 'Address' #: contacts/doctype/address/address.json msgctxt "Address" @@ -7419,7 +7457,7 @@ msgstr "سفارشی سازی" msgid "Customization onboarding is all done!" msgstr "" -#: public/js/frappe/views/workspace/workspace.js:517 +#: public/js/frappe/views/workspace/workspace.js:522 msgid "Customizations Discarded" msgstr "سفارشی‌سازی‌ها حذف شدند" @@ -7438,7 +7476,7 @@ msgstr "سفارشی سازی برای {0} صادر شده به:
{1}" msgid "Customize" msgstr "شخصی سازی" -#: public/js/frappe/list/list_view.js:1703 +#: public/js/frappe/list/list_view.js:1710 msgctxt "Button in list view menu" msgid "Customize" msgstr "شخصی سازی" @@ -8278,6 +8316,12 @@ msgctxt "DocType" msgid "Default View" msgstr "نمای پیش فرض" +#. Label of a Link field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Default Workspace" +msgstr "" + #: core/doctype/doctype/doctype.py:1325 msgid "Default for 'Check' type of field {0} must be either '0' or '1'" msgstr "پیش‌فرض برای نوع «بررسی» فیلد {0} باید «0» یا «1» باشد." @@ -8317,6 +8361,16 @@ msgstr "پیش فرض ها" msgid "Defaults Updated" msgstr "پیش فرض ها به روز شد" +#. Description of a DocType +#: workflow/doctype/workflow_transition/workflow_transition.json +msgid "Defines actions on states and the next step and allowed roles." +msgstr "" + +#. Description of a DocType +#: 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' #: core/doctype/communication/communication.json msgctxt "Communication" @@ -8328,13 +8382,13 @@ msgstr "با تاخیر" #: public/js/frappe/form/grid.js:63 public/js/frappe/form/toolbar.js:423 #: public/js/frappe/views/reports/report_view.js:1642 #: public/js/frappe/views/treeview.js:313 -#: public/js/frappe/views/workspace/workspace.js:829 +#: public/js/frappe/views/workspace/workspace.js:834 #: templates/discussions/reply_card.html:35 #: templates/discussions/reply_section.html:29 msgid "Delete" msgstr "حذف" -#: public/js/frappe/list/list_view.js:1920 +#: public/js/frappe/list/list_view.js:1927 msgctxt "Button in list view actions menu" msgid "Delete" msgstr "حذف" @@ -8373,7 +8427,7 @@ msgstr "حذف داده ها" msgid "Delete Kanban Board" msgstr "صفحه کانبان را حذف کنید" -#: public/js/frappe/views/workspace/workspace.js:830 +#: public/js/frappe/views/workspace/workspace.js:835 msgid "Delete Workspace" msgstr "فضای کاری را حذف کنید" @@ -8389,12 +8443,12 @@ msgstr "نظر حذف شود؟" msgid "Delete this record to allow sending to this email address" msgstr "این سابقه را حذف کنید تا امکان ارسال به این آدرس ایمیل فراهم شود" -#: public/js/frappe/list/list_view.js:1925 +#: public/js/frappe/list/list_view.js:1932 msgctxt "Title of confirmation dialog" msgid "Delete {0} item permanently?" msgstr "{0} مورد برای همیشه حذف شود؟" -#: public/js/frappe/list/list_view.js:1931 +#: public/js/frappe/list/list_view.js:1938 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "{0} مورد برای همیشه حذف شود؟" @@ -8448,7 +8502,7 @@ msgctxt "Deleted Document" msgid "Deleted Name" msgstr "نام حذف شده" -#: desk/reportview.py:502 +#: desk/reportview.py:506 msgid "Deleting {0}" msgstr "در حال حذف {0}" @@ -8933,7 +8987,7 @@ msgstr "پاسخ خودکار غیرفعال است" #: public/js/frappe/views/communication.js:30 #: public/js/frappe/views/dashboard/dashboard_view.js:70 -#: public/js/frappe/views/workspace/workspace.js:508 +#: public/js/frappe/views/workspace/workspace.js:513 #: public/js/frappe/web_form/web_form.js:187 msgid "Discard" msgstr "دور انداختن" @@ -9233,6 +9287,11 @@ msgstr "DocType را نمی توان ادغام کرد" msgid "DocType can only be renamed by Administrator" msgstr "DocType فقط توسط Administrator قابل تغییر نام است" +#. Description of a DocType +#: core/doctype/doctype/doctype.json +msgid "DocType is a Table / Form in the application." +msgstr "" + #: integrations/doctype/webhook/webhook.py:82 msgid "DocType must be Submittable for the selected Doc Event" msgstr "DocType باید برای رویداد Doc انتخابی قابل ارسال باشد" @@ -9293,7 +9352,7 @@ msgstr "نام Doctype محدود به {0} کاراکتر ({1}) است" msgid "Doctype required" msgstr "Doctype مورد نیاز است" -#: public/js/frappe/views/workspace/workspace.js:1309 +#: public/js/frappe/views/workspace/workspace.js:1314 msgid "Doctype with same route already exist. Please choose different title." msgstr "Doctype با همان مسیر از قبل وجود دارد. لطفا عنوان متفاوتی را انتخاب کنید" @@ -9925,7 +9984,7 @@ msgstr "پیش نویس" #: public/js/frappe/views/workspace/blocks/header.js:46 #: public/js/frappe/views/workspace/blocks/paragraph.js:136 #: public/js/frappe/views/workspace/blocks/spacer.js:44 -#: public/js/frappe/views/workspace/workspace.js:571 +#: public/js/frappe/views/workspace/workspace.js:576 #: public/js/frappe/widgets/base_widget.js:33 msgid "Drag" msgstr "بکشید" @@ -9981,8 +10040,8 @@ msgstr "تاریخ سررسید بر اساس" #: public/js/frappe/form/grid_row_form.js:42 #: public/js/frappe/form/toolbar.js:377 -#: public/js/frappe/views/workspace/workspace.js:814 -#: public/js/frappe/views/workspace/workspace.js:981 +#: public/js/frappe/views/workspace/workspace.js:819 +#: public/js/frappe/views/workspace/workspace.js:986 msgid "Duplicate" msgstr "تکراری" @@ -9998,8 +10057,8 @@ msgstr "نام فیلتر تکراری" msgid "Duplicate Name" msgstr "نام تکراری" -#: public/js/frappe/views/workspace/workspace.js:553 -#: public/js/frappe/views/workspace/workspace.js:815 +#: public/js/frappe/views/workspace/workspace.js:558 +#: public/js/frappe/views/workspace/workspace.js:820 msgid "Duplicate Workspace" msgstr "فضای کاری تکراری" @@ -10007,7 +10066,7 @@ msgstr "فضای کاری تکراری" msgid "Duplicate current row" msgstr "ردیف فعلی تکراری" -#: public/js/frappe/views/workspace/workspace.js:996 +#: public/js/frappe/views/workspace/workspace.js:1001 msgid "Duplicate of {0} named as {1} is created successfully" msgstr "نسخه تکراری {0} با نام {1} با موفقیت ایجاد شد" @@ -10151,8 +10210,8 @@ msgstr "" #: public/js/frappe/form/toolbar.js:672 #: public/js/frappe/views/reports/query_report.js:813 #: public/js/frappe/views/reports/query_report.js:1634 -#: public/js/frappe/views/workspace/workspace.js:454 -#: public/js/frappe/views/workspace/workspace.js:808 +#: public/js/frappe/views/workspace/workspace.js:459 +#: public/js/frappe/views/workspace/workspace.js:813 #: public/js/frappe/widgets/base_widget.js:64 #: public/js/frappe/widgets/chart_widget.js:298 #: public/js/frappe/widgets/number_card_widget.js:331 @@ -10163,7 +10222,7 @@ msgstr "" msgid "Edit" msgstr "ویرایش" -#: public/js/frappe/list/list_view.js:2006 +#: public/js/frappe/list/list_view.js:2013 msgctxt "Button in list view actions menu" msgid "Edit" msgstr "ویرایش" @@ -10199,7 +10258,7 @@ msgstr "HTML سفارشی را ویرایش کنید" msgid "Edit DocType" msgstr "DocType را ویرایش کنید" -#: public/js/frappe/list/list_view.js:1730 +#: public/js/frappe/list/list_view.js:1737 msgctxt "Button in list view menu" msgid "Edit DocType" msgstr "DocType را ویرایش کنید" @@ -10284,7 +10343,7 @@ msgctxt "Website Settings" msgid "Edit Values" msgstr "ویرایش مقادیر" -#: public/js/frappe/views/workspace/workspace.js:809 +#: public/js/frappe/views/workspace/workspace.js:814 msgid "Edit Workspace" msgstr "ویرایش فضای کاری" @@ -10484,11 +10543,11 @@ msgctxt "Email Account" msgid "Email Account Name" msgstr "نام حساب ایمیل" -#: core/doctype/user/user.py:741 +#: core/doctype/user/user.py:743 msgid "Email Account added multiple times" msgstr "حساب ایمیل چندین بار اضافه شده است" -#: email/smtp.py:42 +#: email/smtp.py:43 msgid "Email Account not setup. Please create a new Email Account from Settings > Email Account" msgstr "حساب ایمیل تنظیم نشده است. لطفاً یک حساب ایمیل جدید از تنظیمات > حساب ایمیل ایجاد کنید" @@ -10644,6 +10703,11 @@ msgstr "گیرنده صف ایمیل" msgid "Email Queue flushing aborted due to too many failures." msgstr "فلاشینگ صف ایمیل به دلیل خرابی های زیاد متوقف شد." +#. Description of a DocType +#: email/doctype/email_queue/email_queue.json +msgid "Email Queue records." +msgstr "" + #. Label of a HTML field in DocType 'Email Template' #: email/doctype/email_template/email_template.json msgctxt "Email Template" @@ -10723,7 +10787,7 @@ msgstr "گزینه همگام سازی ایمیل" #. Name of a DocType #: email/doctype/email_template/email_template.json -#: public/js/frappe/views/communication.js:92 +#: public/js/frappe/views/communication.js:95 msgid "Email Template" msgstr "قالب ایمیل" @@ -10764,7 +10828,7 @@ msgstr "ایمیل به عنوان هرزنامه علامت گذاری شده msgid "Email has been moved to trash" msgstr "ایمیل به سطل زباله منتقل شد" -#: public/js/frappe/views/communication.js:788 +#: public/js/frappe/views/communication.js:799 msgid "Email not sent to {0} (unsubscribed / disabled)" msgstr "ایمیل به {0} ارسال نشد (لغو اشتراک / غیرفعال)" @@ -10782,6 +10846,10 @@ msgctxt "Workflow" msgid "Emails will be sent with next possible workflow actions" msgstr "ایمیل‌ها با اقدامات بعدی ممکن در گردش کار ارسال خواهند شد" +#: website/doctype/web_form/web_form.js:34 +msgid "Embed code copied" +msgstr "" + #. Label of a Check field in DocType 'Google Calendar' #: integrations/doctype/google_calendar/google_calendar.json msgctxt "Google Calendar" @@ -11118,6 +11186,11 @@ msgstr "نماهای تقویم و گانت را فعال می کند." 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 +#: integrations/doctype/push_notification_settings/push_notification_settings.json +msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved." +msgstr "" + #. Description of the 'Relay Settings' (Section Break) field in DocType 'Push #. Notification Settings' #: integrations/doctype/push_notification_settings/push_notification_settings.json @@ -11282,7 +11355,7 @@ msgstr "شناسه مشتری و Client Secret را در تنظیمات Google msgid "Enter Code displayed in OTP App." msgstr "کد نمایش داده شده در OTP App را وارد کنید." -#: public/js/frappe/views/communication.js:743 +#: public/js/frappe/views/communication.js:754 msgid "Enter Email Recipient(s)" msgstr "گیرنده(های) ایمیل را وارد کنید" @@ -11754,7 +11827,7 @@ msgstr "زمان انقضای صفحه تصویر کد QR" msgid "Export" msgstr "صادرات" -#: public/js/frappe/list/list_view.js:2028 +#: public/js/frappe/list/list_view.js:2035 msgctxt "Button in list view actions menu" msgid "Export" msgstr "صادرات" @@ -12199,7 +12272,7 @@ msgctxt "Custom Field" msgid "Field Type" msgstr "نوع فیلد" -#: desk/reportview.py:176 +#: desk/reportview.py:182 msgid "Field not permitted in query" msgstr "فیلد در پرس و جو مجاز نیست" @@ -12553,9 +12626,9 @@ msgstr "فایل ها" #: desk/doctype/number_card/number_card.js:205 #: desk/doctype/number_card/number_card.js:333 #: email/doctype/auto_email_report/auto_email_report.js:90 -#: public/js/frappe/list/base_list.js:870 +#: public/js/frappe/list/base_list.js:878 #: public/js/frappe/ui/filters/filter_list.js:134 -#: website/doctype/web_form/web_form.js:187 +#: website/doctype/web_form/web_form.js:197 msgid "Filter" msgstr "فیلتر کنید" @@ -13479,7 +13552,7 @@ msgctxt "System Settings" msgid "Friday" msgstr "جمعه" -#: public/js/frappe/views/communication.js:182 +#: public/js/frappe/views/communication.js:185 #: public/js/frappe/views/inbox/inbox_view.js:70 msgid "From" msgstr "از جانب" @@ -13598,7 +13671,7 @@ msgstr "تابع" msgid "Function Based On" msgstr "عملکرد بر اساس" -#: __init__.py:930 +#: __init__.py:933 msgid "Function {0} is not whitelisted." msgstr "تابع {0} در لیست سفید قرار ندارد." @@ -13667,6 +13740,10 @@ msgctxt "User" msgid "Gender" msgstr "جنسیت" +#: www/contact.html:29 +msgid "General" +msgstr "عمومی" + #. Title of an Onboarding Step #: custom/onboarding_step/report_builder/report_builder.json msgid "Generate Custom Reports" @@ -13723,7 +13800,7 @@ msgctxt "Auto Repeat" msgid "Get Contacts" msgstr "دریافت مخاطبین" -#: website/doctype/web_form/web_form.js:83 +#: website/doctype/web_form/web_form.js:93 msgid "Get Fields" msgstr "فیلدها را دریافت کنید" @@ -14650,7 +14727,7 @@ msgctxt "Form Tour Step" msgid "Hidden Fields" msgstr "فیلدهای پنهان" -#: public/js/frappe/views/workspace/workspace.js:820 +#: public/js/frappe/views/workspace/workspace.js:825 #: public/js/frappe/widgets/base_widget.js:46 #: public/js/frappe/widgets/base_widget.js:176 #: templates/includes/login/login.js:83 @@ -14800,7 +14877,7 @@ msgctxt "Portal Settings" msgid "Hide Standard Menu" msgstr "مخفی کردن منوی استاندارد" -#: public/js/frappe/list/list_view.js:1605 +#: public/js/frappe/list/list_view.js:1612 msgid "Hide Tags" msgstr "پنهان کردن برچسب ها" @@ -14808,7 +14885,7 @@ msgstr "پنهان کردن برچسب ها" msgid "Hide Weekends" msgstr "پنهان کردن تعطیلات آخر هفته" -#: public/js/frappe/views/workspace/workspace.js:821 +#: public/js/frappe/views/workspace/workspace.js:826 msgid "Hide Workspace" msgstr "فضای کاری را مخفی کنید" @@ -14965,7 +15042,7 @@ msgstr "این ارز چگونه باید فرمت شود؟ اگر تنظیم ن msgid "ID" msgstr "شناسه" -#: desk/reportview.py:431 public/js/frappe/views/reports/report_view.js:917 +#: desk/reportview.py:435 public/js/frappe/views/reports/report_view.js:917 msgctxt "Label of name column in report" msgid "ID" msgstr "شناسه" @@ -15017,9 +15094,9 @@ msgctxt "Comment" msgid "IP Address" msgstr "آدرس آی پی" -#: public/js/frappe/views/workspace/workspace.js:638 -#: public/js/frappe/views/workspace/workspace.js:966 -#: public/js/frappe/views/workspace/workspace.js:1211 +#: public/js/frappe/views/workspace/workspace.js:643 +#: public/js/frappe/views/workspace/workspace.js:971 +#: public/js/frappe/views/workspace/workspace.js:1216 msgid "Icon" msgstr "آیکون" @@ -15216,6 +15293,12 @@ msgctxt "Note" 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' +#: core/doctype/user/user.json +msgctxt "User" +msgid "If left empty, the default workspace will be the last visited workspace" +msgstr "" + #. Description of the 'Port' (Data) field in DocType 'Email Domain' #: email/doctype/email_domain/email_domain.json msgctxt "Email Domain" @@ -15402,7 +15485,7 @@ msgstr "رمز دسترسی غیر قانونی لطفا دوباره تلاش msgid "Illegal Document Status for {0}" msgstr "وضعیت سند غیرقانونی برای {0}" -#: model/db_query.py:441 model/db_query.py:444 model/db_query.py:1122 +#: model/db_query.py:440 model/db_query.py:443 model/db_query.py:1106 msgid "Illegal SQL Query" msgstr "Query SQL غیر قانونی" @@ -15517,7 +15600,7 @@ msgstr "تصویر بهینه شده است" msgid "Images" msgstr "تصاویر" -#: core/doctype/user/user.js:346 +#: core/doctype/user/user.js:356 msgid "Impersonate" msgstr "" @@ -15527,7 +15610,7 @@ msgctxt "Activity Log" msgid "Impersonate" msgstr "" -#: core/doctype/user/user.js:373 +#: core/doctype/user/user.js:383 msgid "Impersonate as {0}" msgstr "" @@ -15554,7 +15637,7 @@ msgstr "ضمنی" msgid "Import" msgstr "وارد كردن" -#: public/js/frappe/list/list_view.js:1667 +#: public/js/frappe/list/list_view.js:1674 msgctxt "Button in list view menu" msgid "Import" msgstr "وارد كردن" @@ -15901,7 +15984,7 @@ msgstr "پیاده سازی Virtual Doctype ناقص" msgid "Incomplete login details" msgstr "جزئیات ورود ناقص" -#: email/smtp.py:103 +#: email/smtp.py:104 msgid "Incorrect Configuration" msgstr "پیکربندی نادرست" @@ -15979,9 +16062,9 @@ msgctxt "Workspace" msgid "Indicator Color" msgstr "رنگ نشانگر" -#: public/js/frappe/views/workspace/workspace.js:645 -#: public/js/frappe/views/workspace/workspace.js:973 -#: public/js/frappe/views/workspace/workspace.js:1217 +#: public/js/frappe/views/workspace/workspace.js:650 +#: public/js/frappe/views/workspace/workspace.js:978 +#: public/js/frappe/views/workspace/workspace.js:1222 msgid "Indicator color" msgstr "رنگ نشانگر" @@ -16113,11 +16196,11 @@ msgstr "سطح مجوز ناکافی برای {0}" msgid "Insufficient Permission for {0}" msgstr "مجوز ناکافی برای {0}" -#: desk/reportview.py:335 +#: desk/reportview.py:339 msgid "Insufficient Permissions for deleting Report" msgstr "مجوزهای ناکافی برای حذف گزارش" -#: desk/reportview.py:306 +#: desk/reportview.py:310 msgid "Insufficient Permissions for editing Report" msgstr "مجوزهای ناکافی برای ویرایش گزارش" @@ -16222,6 +16305,11 @@ msgstr "حد واسط" msgid "Internal Server Error" msgstr "خطای سرور داخلی" +#. Description of a DocType +#: core/doctype/docshare/docshare.json +msgid "Internal record of document shares" +msgstr "" + #: desk/page/user_profile/user_profile_sidebar.html:22 msgid "Intro" msgstr "مقدمه" @@ -16302,7 +16390,7 @@ msgstr "قالب CSV نامعتبر است" msgid "Invalid Condition: {}" msgstr "شرایط نامعتبر: {}" -#: email/smtp.py:132 +#: email/smtp.py:134 msgid "Invalid Credentials" msgstr "گواهی نامه نامعتبر" @@ -16354,7 +16442,7 @@ msgstr "ورود نامعتبر دوباره امتحان کنید." msgid "Invalid Mail Server. Please rectify and try again." msgstr "سرور ایمیل نامعتبر است. لطفاً اصلاح کنید و دوباره امتحان کنید." -#: model/naming.py:93 +#: model/naming.py:94 msgid "Invalid Naming Series: {}" msgstr "سری نام‌گذاری نامعتبر: {}" @@ -16366,7 +16454,7 @@ msgstr "عملیات نامعتبر" msgid "Invalid Option" msgstr "گزینه نامعتبر" -#: email/smtp.py:102 +#: email/smtp.py:103 msgid "Invalid Outgoing Mail Server or Port: {0}" msgstr "سرور یا درگاه ایمیل خروجی نامعتبر: {0}" @@ -16378,7 +16466,7 @@ msgstr "فرمت خروجی نامعتبر است" msgid "Invalid Parameters." msgstr "پارامترهای نامعتبر" -#: core/doctype/user/user.py:1227 www/update-password.html:121 +#: core/doctype/user/user.py:1229 www/update-password.html:121 #: www/update-password.html:142 www/update-password.html:144 #: www/update-password.html:245 msgid "Invalid Password" @@ -16417,7 +16505,7 @@ msgstr "نام کاربری یا رمز عبور پشتیبانی نامعتبر msgid "Invalid Webhook Secret" msgstr "راز Webhook نامعتبر است" -#: desk/reportview.py:161 +#: desk/reportview.py:167 msgid "Invalid aggregate function" msgstr "تابع تجمیع نامعتبر است" @@ -16458,11 +16546,11 @@ msgstr "فیلتر نامعتبر: {0}" msgid "Invalid json added in the custom options: {0}" msgstr "json نامعتبر اضافه شده در گزینه های سفارشی: {0}" -#: model/naming.py:444 +#: model/naming.py:466 msgid "Invalid name type (integer) for varchar name column" msgstr "نوع نام نامعتبر (عدد صحیح) برای ستون نام varchar" -#: model/naming.py:54 +#: model/naming.py:55 msgid "Invalid naming series {}: dot (.) missing" msgstr "سری نام‌گذاری نامعتبر {}: نقطه (.) وجود ندارد" @@ -17088,6 +17176,16 @@ msgctxt "Button in kanban view menu" msgid "Kanban Settings" msgstr "تنظیمات کانبان" +#. Description of a DocType +#: core/doctype/activity_log/activity_log.json +msgid "Keep track of all update feeds" +msgstr "" + +#. Description of a DocType +#: core/doctype/communication/communication.json +msgid "Keeps track of all communications" +msgstr "" + #. Label of a Data field in DocType 'DefaultValue' #: core/doctype/defaultvalue/defaultvalue.json msgctxt "DefaultValue" @@ -18318,7 +18416,7 @@ msgctxt "Web Form" msgid "List Setting Message" msgstr "پیام تنظیم لیست" -#: public/js/frappe/list/list_view.js:1747 +#: public/js/frappe/list/list_view.js:1754 msgctxt "Button in list view menu" msgid "List Settings" msgstr "تنظیمات لیست" @@ -18362,6 +18460,11 @@ msgctxt "Web Page" msgid "List as [{\"label\": _(\"Jobs\"), \"route\":\"jobs\"}]" msgstr "فهرست به عنوان [{\"label\": _(\"Jobs\"), \"route\":\"jobs\"}]" +#. Description of a DocType +#: core/doctype/patch_log/patch_log.json +msgid "List of patches executed" +msgstr "" + #: public/js/frappe/ui/toolbar/search_utils.js:542 msgid "Lists" msgstr "لیست ها" @@ -18386,7 +18489,7 @@ msgstr "بارگیری ارتباطات بیشتر" #: core/page/permission_manager/permission_manager.js:165 #: public/js/frappe/form/controls/multicheck.js:13 #: public/js/frappe/form/linked_with.js:13 -#: public/js/frappe/list/base_list.js:482 +#: public/js/frappe/list/base_list.js:490 #: public/js/frappe/list/list_view.js:333 public/js/frappe/ui/listing.html:16 #: public/js/frappe/views/reports/query_report.js:1015 msgid "Loading" @@ -18551,7 +18654,7 @@ msgstr "ورود با {0}" msgid "Login and view in Browser" msgstr "وارد شوید و در مرورگر مشاهده کنید" -#: website/doctype/web_form/web_form.js:357 +#: website/doctype/web_form/web_form.js:367 msgid "Login is required to see web form list view. Enable {0} to see list settings" msgstr "ورود به سیستم برای مشاهده لیست فرم وب مورد نیاز است. برای مشاهده تنظیمات لیست، {0} را فعال کنید" @@ -18615,7 +18718,7 @@ msgctxt "Activity Log" msgid "Logout" msgstr "خروج" -#: core/doctype/user/user.js:173 +#: core/doctype/user/user.js:183 msgid "Logout All Sessions" msgstr "خروج از تمام جلسات" @@ -19169,7 +19272,7 @@ msgstr "ادغام فقط بین گره گروه به گروه یا گره بر #: core/doctype/data_import/data_import.js:489 #: public/js/frappe/ui/messages.js:175 -#: public/js/frappe/views/communication.js:111 www/message.html:3 +#: public/js/frappe/views/communication.js:114 www/message.html:3 #: www/message.html:25 msgid "Message" msgstr "پیام" @@ -19199,7 +19302,7 @@ msgctxt "Communication" msgid "Message" msgstr "پیام" -#: __init__.py:614 public/js/frappe/ui/messages.js:265 +#: __init__.py:617 public/js/frappe/ui/messages.js:265 msgctxt "Default title of the message dialog" msgid "Message" msgstr "پیام" @@ -19289,7 +19392,7 @@ msgctxt "Notification" msgid "Message Type" msgstr "نوع پیام" -#: public/js/frappe/views/communication.js:922 +#: public/js/frappe/views/communication.js:933 msgid "Message clipped" msgstr "پیام بریده شد" @@ -20071,7 +20174,7 @@ msgstr "باید از نوع «پیوست تصویر» باشد" msgid "Must have report permission to access this report." msgstr "برای دسترسی به این گزارش باید مجوز گزارش را داشته باشد." -#: core/doctype/report/report.py:145 +#: core/doctype/report/report.py:148 msgid "Must specify a Query to run" msgstr "برای اجرا باید یک Query مشخص کنید" @@ -20157,7 +20260,7 @@ msgstr "" msgid "Name already taken, please set a new name" msgstr "نام قبلاً گرفته شده است، لطفاً یک نام جدید تنظیم کنید" -#: model/naming.py:458 +#: model/naming.py:480 msgid "Name cannot contain special characters like {0}" msgstr "نام نمی تواند شامل نویسه های خاصی مانند {0} باشد" @@ -20169,7 +20272,7 @@ msgstr "نام نوع سند (DocType) که می خواهید این فیلد ب msgid "Name of the new Print Format" msgstr "نام قالب چاپ جدید" -#: model/naming.py:453 +#: model/naming.py:475 msgid "Name of {0} cannot be {1}" msgstr "نام {0} نمی تواند {1} باشد" @@ -20229,7 +20332,7 @@ msgctxt "Document Naming Settings" msgid "Naming Series" msgstr "نامگذاری سری" -#: model/naming.py:243 +#: model/naming.py:244 msgid "Naming Series mandatory" msgstr "نامگذاری سری الزامی است" @@ -20415,7 +20518,7 @@ msgstr "لینک های جدید" msgid "New Mention on {0}" msgstr "ذکر جدید در {0}" -#: www/contact.py:50 +#: www/contact.py:59 msgid "New Message from Website Contact Page" msgstr "پیام جدید از صفحه تماس وب سایت" @@ -20445,7 +20548,7 @@ msgstr "کارت شماره جدید" msgid "New Onboarding" msgstr "" -#: core/doctype/user/user.js:161 www/update-password.html:19 +#: core/doctype/user/user.js:171 www/update-password.html:19 msgid "New Password" msgstr "رمز عبور جدید" @@ -20475,7 +20578,7 @@ msgstr "ارزش جدید" msgid "New Workflow Name" msgstr "نام گردش کار جدید" -#: public/js/frappe/views/workspace/workspace.js:1178 +#: public/js/frappe/views/workspace/workspace.js:1183 msgid "New Workspace" msgstr "فضای کاری جدید" @@ -20535,7 +20638,7 @@ msgstr "{0} جدید: {1}" msgid "New {} releases for the following apps are available" msgstr "نسخه‌های جدید {} برای برنامه‌های زیر در دسترس هستند" -#: core/doctype/user/user.py:804 +#: core/doctype/user/user.py:806 msgid "Newly created user {0} has no roles enabled." msgstr "کاربر تازه ایجاد شده {0} هیچ نقشی فعال ندارد." @@ -20804,7 +20907,7 @@ msgstr "بدون برچسب" msgid "No Letterhead" msgstr "بدون سربرگ" -#: model/naming.py:435 +#: model/naming.py:457 msgid "No Name Specified for {0}" msgstr "نامی برای {0} مشخص نشده است" @@ -20852,7 +20955,7 @@ msgstr "هیچ نتیجه ای" msgid "No Results found" msgstr "نتیجه ای پیدا نشد" -#: core/doctype/user/user.py:805 +#: core/doctype/user/user.py:807 msgid "No Roles Specified" msgstr "هیچ نقشی مشخص نشده است" @@ -20860,7 +20963,7 @@ msgstr "هیچ نقشی مشخص نشده است" msgid "No Select Field Found" msgstr "فیلد انتخابی یافت نشد" -#: desk/reportview.py:580 +#: desk/reportview.py:584 msgid "No Tags" msgstr "بدون برچسب" @@ -20892,7 +20995,7 @@ msgstr "بدون تغییر در سند" msgid "No changes made because old and new name are the same." msgstr "تغییری ایجاد نشده است زیرا نام قدیم و جدید یکی است." -#: public/js/frappe/views/workspace/workspace.js:1483 +#: public/js/frappe/views/workspace/workspace.js:1488 msgid "No changes made on the page" msgstr "هیچ تغییری در صفحه ایجاد نشده است" @@ -21002,7 +21105,7 @@ msgctxt "SMS Log" msgid "No of Sent SMS" msgstr "شماره پیامک ارسالی" -#: __init__.py:1118 client.py:109 client.py:151 +#: __init__.py:1121 client.py:109 client.py:151 msgid "No permission for {0}" msgstr "بدون مجوز برای {0}" @@ -21011,7 +21114,7 @@ msgctxt "{0} = verb, {1} = object" msgid "No permission to '{0}' {1}" msgstr "بدون مجوز برای \"{0}\" {1}" -#: model/db_query.py:935 +#: model/db_query.py:924 msgid "No permission to read {0}" msgstr "بدون اجازه خواندن {0}" @@ -21039,7 +21142,7 @@ msgstr "هیچ رکوردی صادر نخواهد شد" msgid "No template found at path: {0}" msgstr "هیچ الگوی در مسیر یافت نشد: {0}" -#: public/js/frappe/form/controls/multiselect_list.js:226 +#: public/js/frappe/form/controls/multiselect_list.js:246 msgid "No values to show" msgstr "هیچ مقداری برای نمایش وجود ندارد" @@ -21063,11 +21166,7 @@ msgstr "هیچ {0} با فیلترهای منطبق پیدا نشد. برای د msgid "No {0} mail" msgstr "نامه {0} وجود ندارد" -#: public/js/form_builder/utils.js:117 -msgid "No." -msgstr "شماره" - -#: public/js/frappe/form/grid_row.js:252 +#: public/js/form_builder/utils.js:117 public/js/frappe/form/grid_row.js:252 msgctxt "Title of the 'row number' column" msgid "No." msgstr "شماره" @@ -21113,7 +21212,7 @@ msgctxt "Recorder Query" msgid "Normalized Query" msgstr "پرس و جو عادی شده" -#: core/doctype/user/user.py:1010 templates/includes/login/login.js:258 +#: core/doctype/user/user.py:1012 templates/includes/login/login.js:258 #: utils/oauth.py:265 msgid "Not Allowed" msgstr "مجاز نیست" @@ -21162,10 +21261,10 @@ msgctxt "DocField" msgid "Not Nullable" msgstr "" -#: __init__.py:1014 app.py:353 desk/calendar.py:26 geo/utils.py:97 +#: __init__.py:1017 app.py:353 desk/calendar.py:26 geo/utils.py:97 #: public/js/frappe/web_form/webform_script.js:15 #: website/doctype/web_form/web_form.py:602 -#: website/page_renderers/not_permitted_page.py:20 www/login.py:174 +#: website/page_renderers/not_permitted_page.py:20 www/login.py:178 #: www/qrcode.py:22 www/qrcode.py:25 www/qrcode.py:37 msgid "Not Permitted" msgstr "غیر مجاز" @@ -21222,7 +21321,7 @@ msgstr "تنظیم نشده" msgid "Not a valid Comma Separated Value (CSV File)" msgstr "یک مقدار جدا شده با کاما معتبر نیست (فایل CSV)" -#: core/doctype/user/user.py:232 +#: core/doctype/user/user.py:234 msgid "Not a valid User Image." msgstr "تصویر کاربر معتبری نیست." @@ -21275,7 +21374,7 @@ msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType." msgstr "در حالت توسعه دهنده نیست! در site_config.json تنظیم کنید یا DocType را «Custom» بسازید." #: api/v1.py:88 api/v1.py:93 -#: core/doctype/system_settings/system_settings.py:208 handler.py:109 +#: core/doctype/system_settings/system_settings.py:209 handler.py:109 #: public/js/frappe/request.js:157 public/js/frappe/request.js:167 #: public/js/frappe/request.js:172 #: public/js/frappe/views/kanban/kanban_board.bundle.js:68 @@ -21326,7 +21425,7 @@ msgstr "توجه: به طور پیش فرض ایمیل برای پشتیبان msgid "Note: Changing the Page Name will break previous URL to this page." msgstr "توجه: تغییر نام صفحه URL قبلی را به این صفحه تبدیل می کند." -#: core/doctype/user/user.js:25 +#: core/doctype/user/user.js:35 msgid "Note: Etc timezones have their signs reversed." msgstr "توجه: مناطق زمانی و غیره دارای علائم معکوس هستند." @@ -21344,7 +21443,7 @@ msgctxt "System Settings" msgid "Note: Multiple sessions will be allowed in case of mobile device" msgstr "توجه: جلسات متعدد در مورد دستگاه تلفن همراه مجاز خواهد بود" -#: core/doctype/user/user.js:361 +#: core/doctype/user/user.js:371 msgid "Note: This will be shared with user." msgstr "" @@ -21591,7 +21690,7 @@ msgstr "تعداد پرس و جوها" msgid "Number of attachment fields are more than {}, limit updated to {}." msgstr "تعداد فیلدهای پیوست بیش از {} است، محدودیت به {} به روز شده است." -#: core/doctype/system_settings/system_settings.py:161 +#: core/doctype/system_settings/system_settings.py:162 msgid "Number of backups must be greater than zero." msgstr "تعداد نسخه های پشتیبان باید بیشتر از صفر باشد." @@ -21793,7 +21892,7 @@ msgctxt "Webhook" msgid "On checking this option, URL will be treated like a jinja template string" msgstr "با علامت زدن این گزینه، URL مانند یک رشته الگوی jinja رفتار می شود" -#: public/js/frappe/views/communication.js:932 +#: public/js/frappe/views/communication.js:943 msgid "On {0}, {1} wrote:" msgstr "در {0}، {1} نوشت:" @@ -21860,7 +21959,7 @@ msgstr "رمز ثبت یکبار مصرف (OTP) از {}" msgid "One of" msgstr "یکی از" -#: public/js/frappe/views/workspace/workspace.js:1318 +#: public/js/frappe/views/workspace/workspace.js:1323 msgid "One of the child page with name {0} already exist in {1} Section. Please update the name of the child page first before moving" msgstr "یکی از صفحات فرزند با نام {0} در حال حاضر در بخش {1} وجود دارد. لطفاً قبل از انتقال ابتدا نام صفحه فرزند را به روز کنید" @@ -21876,7 +21975,7 @@ msgstr "فقط مدیر می تواند صف ایمیل را حذف کند" msgid "Only Administrator can edit" msgstr "فقط مدیر می تواند ویرایش کند" -#: core/doctype/report/report.py:72 +#: core/doctype/report/report.py:75 msgid "Only Administrator can save a standard report. Please rename and save." msgstr "فقط مدیر می تواند یک گزارش استاندارد را ذخیره کند. لطفا نام را تغییر دهید و ذخیره کنید." @@ -21904,7 +22003,7 @@ msgstr "فقط سوابق به روز شده در آخرین X ساعت را ا msgid "Only Workspace Manager can edit public workspaces" msgstr "فقط Workspace Manager می تواند فضاهای کاری عمومی را ویرایش کند" -#: public/js/frappe/views/workspace/workspace.js:542 +#: public/js/frappe/views/workspace/workspace.js:547 msgid "Only Workspace Manager can sort or edit this page" msgstr "فقط Workspace Manager می تواند این صفحه را مرتب یا ویرایش کند" @@ -21934,11 +22033,11 @@ msgstr "فقط فیلدهای اجباری برای رکوردهای جدید ض msgid "Only one {0} can be set as primary." msgstr "فقط یک {0} را می توان به عنوان اصلی تنظیم کرد." -#: desk/reportview.py:332 +#: desk/reportview.py:336 msgid "Only reports of type Report Builder can be deleted" msgstr "فقط گزارش هایی از نوع Report Builder قابل حذف هستند" -#: desk/reportview.py:303 +#: desk/reportview.py:307 msgid "Only reports of type Report Builder can be edited" msgstr "فقط گزارش‌هایی از نوع Report Builder قابل ویرایش هستند" @@ -21966,7 +22065,7 @@ msgstr "اوه! مشکلی پیش آمد." msgid "Open" msgstr "باز" -#: desk/doctype/todo/todo_list.js:20 +#: desk/doctype/todo/todo_list.js:14 msgctxt "Access" msgid "Open" msgstr "باز" @@ -22063,7 +22162,7 @@ msgstr "مورد فهرست را باز کنید" msgid "Open your authentication app on your mobile phone." msgstr "برنامه احراز هویت خود را در تلفن همراه خود باز کنید." -#: desk/doctype/todo/todo_list.js:23 +#: desk/doctype/todo/todo_list.js:17 #: public/js/frappe/form/templates/form_links.html:18 #: public/js/frappe/ui/toolbar/search_utils.js:277 #: public/js/frappe/ui/toolbar/search_utils.js:278 @@ -22567,7 +22666,7 @@ msgctxt "Form Tour" msgid "Page Route" msgstr "مسیر صفحه" -#: public/js/frappe/views/workspace/workspace.js:1505 +#: public/js/frappe/views/workspace/workspace.js:1510 msgid "Page Saved Successfully" msgstr "صفحه با موفقیت ذخیره شد" @@ -22608,7 +22707,12 @@ msgstr "ارتفاع و عرض صفحه نمی تواند صفر باشد" msgid "Page not found" msgstr "صفحه یافت نشد" -#: public/js/frappe/views/workspace/workspace.js:1305 +#. Description of a DocType +#: website/doctype/web_page/web_page.json +msgid "Page to show on the website\n" +msgstr "" + +#: public/js/frappe/views/workspace/workspace.js:1310 msgid "Page with title {0} already exist." msgstr "صفحه با عنوان {0} از قبل وجود دارد." @@ -22626,9 +22730,9 @@ msgid "Parameter" msgstr "پارامتر" #: public/js/frappe/model/model.js:132 -#: public/js/frappe/views/workspace/workspace.js:612 -#: public/js/frappe/views/workspace/workspace.js:940 -#: public/js/frappe/views/workspace/workspace.js:1187 +#: public/js/frappe/views/workspace/workspace.js:617 +#: public/js/frappe/views/workspace/workspace.js:945 +#: public/js/frappe/views/workspace/workspace.js:1192 msgid "Parent" msgstr "والدین" @@ -22750,8 +22854,8 @@ msgctxt "Contact" msgid "Passive" msgstr "منفعل" -#: core/doctype/user/user.js:148 core/doctype/user/user.js:195 -#: core/doctype/user/user.js:215 desk/page/setup_wizard/setup_wizard.js:474 +#: core/doctype/user/user.js:158 core/doctype/user/user.js:205 +#: core/doctype/user/user.js:225 desk/page/setup_wizard/setup_wizard.js:474 #: www/login.html:21 msgid "Password" msgstr "کلمه عبور" @@ -22793,11 +22897,11 @@ msgctxt "Web Form Field" msgid "Password" msgstr "کلمه عبور" -#: core/doctype/user/user.py:1073 +#: core/doctype/user/user.py:1075 msgid "Password Email Sent" msgstr "رمز عبور ایمیل ارسال شد" -#: core/doctype/user/user.py:452 +#: core/doctype/user/user.py:454 msgid "Password Reset" msgstr "تنظیم مجدد رمز عبور" @@ -22833,7 +22937,7 @@ msgstr "رمز عبور در حساب ایمیل گم شده است" msgid "Password not found for {0} {1} {2}" msgstr "رمز عبور برای {0} {1} {2} یافت نشد" -#: core/doctype/user/user.py:1072 +#: core/doctype/user/user.py:1074 msgid "Password reset instructions have been sent to your email" msgstr "دستورالعمل های بازنشانی رمز عبور به ایمیل شما ارسال شده است" @@ -22845,7 +22949,7 @@ msgstr "مجموعه رمز عبور" msgid "Password size exceeded the maximum allowed size" msgstr "اندازه رمز عبور از حداکثر اندازه مجاز بیشتر است" -#: core/doctype/user/user.py:868 +#: core/doctype/user/user.py:870 msgid "Password size exceeded the maximum allowed size." msgstr "اندازه رمز عبور از حداکثر اندازه مجاز بیشتر است." @@ -22853,7 +22957,7 @@ msgstr "اندازه رمز عبور از حداکثر اندازه مجاز ب msgid "Passwords do not match" msgstr "رمزهای ورود مطابقت ندارند" -#: core/doctype/user/user.js:181 +#: core/doctype/user/user.js:191 msgid "Passwords do not match!" msgstr "رمزهای ورود مطابقت ندارند!" @@ -23088,7 +23192,7 @@ msgid "Permission Type" msgstr "نوع مجوز" #. Label of a Card Break in the Users Workspace -#: core/doctype/user/user.js:123 core/doctype/user/user.js:132 +#: core/doctype/user/user.js:133 core/doctype/user/user.js:142 #: core/page/permission_manager/permission_manager.js:214 #: core/workspace/users/users.json msgid "Permissions" @@ -23322,7 +23426,7 @@ msgstr "لطفا یک موضوع به ایمیل خود اضافه کنید" msgid "Please add a valid comment." msgstr "لطفا یک نظر معتبر اضافه کنید." -#: core/doctype/user/user.py:1055 +#: core/doctype/user/user.py:1057 msgid "Please ask your administrator to verify your sign-up" msgstr "لطفاً از سرپرست خود بخواهید ثبت نام شما را تأیید کند" @@ -23354,11 +23458,11 @@ msgstr "لطفاً مقادیر فیلتر تنظیم شده برای نمودا msgid "Please check the value of \"Fetch From\" set for field {0}" msgstr "لطفاً مقدار تنظیم شده \"Fetch From\" را برای فیلد {0} بررسی کنید" -#: core/doctype/user/user.py:1053 +#: core/doctype/user/user.py:1055 msgid "Please check your email for verification" msgstr "لطفا ایمیل خود را برای تایید بررسی کنید" -#: email/smtp.py:131 +#: email/smtp.py:133 msgid "Please check your email login credentials." msgstr "لطفا اعتبار ورود ایمیل خود را بررسی کنید." @@ -23406,7 +23510,7 @@ msgstr "لطفا عناوین قالب را تغییر ندهید." msgid "Please duplicate this to make changes" msgstr "لطفاً برای ایجاد تغییرات این را کپی کنید" -#: core/doctype/system_settings/system_settings.py:154 +#: core/doctype/system_settings/system_settings.py:155 msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login." msgstr "لطفاً حداقل یک کلید ورود به سیستم اجتماعی یا LDAP یا ورود با پیوند ایمیل را قبل از غیرفعال کردن ورود مبتنی بر نام کاربری/رمز عبور فعال کنید." @@ -23542,7 +23646,7 @@ msgstr "لطفا ابتدا DocType را انتخاب کنید" msgid "Please select Entity Type first" msgstr "لطفا ابتدا Entity Type را انتخاب کنید" -#: core/doctype/system_settings/system_settings.py:104 +#: core/doctype/system_settings/system_settings.py:105 msgid "Please select Minimum Password Score" msgstr "لطفا حداقل امتیاز رمز عبور را انتخاب کنید" @@ -23570,7 +23674,7 @@ msgstr "لطفاً یک فیلتر تاریخ معتبر انتخاب کنید" msgid "Please select applicable Doctypes" msgstr "لطفاً Doctypes قابل اجرا را انتخاب کنید" -#: model/db_query.py:1134 +#: model/db_query.py:1118 msgid "Please select atleast 1 column from {0} to sort/group" msgstr "لطفاً حداقل 1 ستون از {0} برای مرتب‌سازی/گروه‌بندی انتخاب کنید" @@ -23613,7 +23717,7 @@ msgstr "لطفا فیلترها را تنظیم کنید" msgid "Please set filters value in Report Filter table." msgstr "لطفاً مقدار فیلترها را در جدول گزارش فیلتر تنظیم کنید." -#: model/naming.py:528 +#: model/naming.py:550 msgid "Please set the document name" msgstr "لطفا نام سند را تنظیم کنید" @@ -23625,7 +23729,7 @@ msgstr "لطفاً ابتدا اسناد زیر را در این داشبورد msgid "Please set the series to be used." msgstr "لطفاً سریال مورد استفاده را تنظیم کنید." -#: core/doctype/system_settings/system_settings.py:117 +#: core/doctype/system_settings/system_settings.py:118 msgid "Please setup SMS before setting it as an authentication method, via SMS Settings" msgstr "لطفاً SMS را قبل از تنظیم آن به عنوان یک روش احراز هویت، از طریق تنظیمات پیامک تنظیم کنید" @@ -23637,7 +23741,7 @@ msgstr "لطفا ابتدا یک پیام تنظیم کنید" msgid "Please setup default Email Account from Settings > Email Account" msgstr "لطفاً حساب ایمیل پیش فرض را از تنظیمات > حساب ایمیل تنظیم کنید" -#: core/doctype/user/user.py:403 +#: core/doctype/user/user.py:405 msgid "Please setup default outgoing Email Account from Settings > Email Account" msgstr "لطفاً حساب ایمیل خروجی پیش‌فرض را از تنظیمات > حساب ایمیل تنظیم کنید" @@ -23889,7 +23993,7 @@ msgstr "ارائه گزارش آماده انجام نشد" msgid "Preparing Report" msgstr "تهیه گزارش" -#: public/js/frappe/views/communication.js:400 +#: public/js/frappe/views/communication.js:411 msgid "Prepend the template to the email message" msgstr "الگو را برای پیام ایمیل آماده کنید" @@ -24046,7 +24150,7 @@ msgstr "تلفن اصلی" msgid "Print" msgstr "چاپ" -#: public/js/frappe/list/list_view.js:1912 +#: public/js/frappe/list/list_view.js:1919 msgctxt "Button in list view actions menu" msgid "Print" msgstr "چاپ" @@ -24215,7 +24319,7 @@ msgctxt "DocField" msgid "Print Hide If No Value" msgstr "" -#: public/js/frappe/views/communication.js:153 +#: public/js/frappe/views/communication.js:156 msgid "Print Language" msgstr "زبان چاپ" @@ -24467,6 +24571,11 @@ msgctxt "Module Def" msgid "Property Setter" msgstr "تنظیم کننده اموال" +#. Description of a DocType +#: custom/doctype/property_setter/property_setter.json +msgid "Property Setter overrides a standard DocType or Field property" +msgstr "" + #. Label of a Data field in DocType 'Property Setter' #: custom/doctype/property_setter/property_setter.json msgctxt "Property Setter" @@ -24505,9 +24614,9 @@ msgid "Provider Name" msgstr "نام ارائه دهنده" #: desk/doctype/note/note_list.js:6 public/js/frappe/views/interaction.js:78 -#: public/js/frappe/views/workspace/workspace.js:619 -#: public/js/frappe/views/workspace/workspace.js:947 -#: public/js/frappe/views/workspace/workspace.js:1193 +#: public/js/frappe/views/workspace/workspace.js:624 +#: public/js/frappe/views/workspace/workspace.js:952 +#: public/js/frappe/views/workspace/workspace.js:1198 msgid "Public" msgstr "عمومی" @@ -24530,7 +24639,7 @@ msgid "Public" msgstr "عمومی" #: website/doctype/blog_post/blog_post.js:36 -#: website/doctype/web_form/web_form.js:76 +#: website/doctype/web_form/web_form.js:86 msgid "Publish" msgstr "انتشار" @@ -24974,6 +25083,12 @@ msgctxt "Blog Settings" msgid "Rate Limits" msgstr "محدودیت های نرخ" +#. Label of a Int field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Rate limit for email link login" +msgstr "" + #. Label of a Int field in DocType 'Communication' #: core/doctype/communication/communication.json msgctxt "Communication" @@ -25050,7 +25165,7 @@ msgstr "پاسخ:" #: core/doctype/communication/communication.js:268 #: public/js/frappe/form/footer/form_timeline.js:587 -#: public/js/frappe/views/communication.js:336 +#: public/js/frappe/views/communication.js:347 msgid "Re: {0}" msgstr "پاسخ: {0}" @@ -25852,11 +25967,11 @@ msgid "Refreshing" msgstr "تازه کردن" #: core/doctype/system_settings/system_settings.js:52 -#: core/doctype/user/user.js:340 desk/page/setup_wizard/setup_wizard.js:204 +#: core/doctype/user/user.js:350 desk/page/setup_wizard/setup_wizard.js:204 msgid "Refreshing..." msgstr "تازه کردن..." -#: core/doctype/user/user.py:1017 +#: core/doctype/user/user.py:1019 msgid "Registered but disabled" msgstr "ثبت شده اما غیرفعال است" @@ -26223,7 +26338,7 @@ msgctxt "Onboarding Step" msgid "Report Description" msgstr "شرح گزارش" -#: core/doctype/report/report.py:145 +#: core/doctype/report/report.py:148 msgid "Report Document Error" msgstr "گزارش خطای سند" @@ -26373,7 +26488,7 @@ msgstr "گزارش با بیش از 10 ستون در حالت افقی بهتر msgid "Report {0}" msgstr "گزارش {0}" -#: desk/reportview.py:339 +#: desk/reportview.py:343 msgid "Report {0} deleted" msgstr "گزارش {0} حذف شد" @@ -26381,7 +26496,7 @@ msgstr "گزارش {0} حذف شد" msgid "Report {0} is disabled" msgstr "گزارش {0} غیرفعال است" -#: desk/reportview.py:316 +#: desk/reportview.py:320 msgid "Report {0} saved" msgstr "گزارش {0} ذخیره شد" @@ -26407,6 +26522,16 @@ msgstr "گزارش ها و کارشناسی ارشد" msgid "Reports already in Queue" msgstr "گزارش‌ها از قبل در صف هستند" +#. Description of a DocType +#: core/doctype/user/user.json +msgid "Represents a User in the system." +msgstr "" + +#. Description of a DocType +#: 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 "" + #: www/me.html:66 msgid "Request Account Deletion" msgstr "درخواست حذف اکانت" @@ -26543,7 +26668,7 @@ msgstr "بازنشانی سفارشی سازی داشبورد" msgid "Reset Fields" msgstr "بازنشانی فیلدها" -#: core/doctype/user/user.js:155 core/doctype/user/user.js:158 +#: core/doctype/user/user.js:165 core/doctype/user/user.js:168 msgid "Reset LDAP Password" msgstr "رمز عبور LDAP را بازنشانی کنید" @@ -26551,11 +26676,11 @@ msgstr "رمز عبور LDAP را بازنشانی کنید" msgid "Reset Layout" msgstr "تنظیم مجدد طرح" -#: core/doctype/user/user.js:206 +#: core/doctype/user/user.js:216 msgid "Reset OTP Secret" msgstr "بازنشانی OTP Secret" -#: core/doctype/user/user.js:139 www/login.html:179 www/me.html:35 +#: core/doctype/user/user.js:149 www/login.html:179 www/me.html:35 #: www/me.html:44 www/update-password.html:3 www/update-password.html:9 msgid "Reset Password" msgstr "بازنشانی رمز عبور" @@ -27004,7 +27129,7 @@ msgstr "مجوزهای نقش" msgid "Role Permissions Manager" msgstr "مدیر مجوزهای نقش" -#: public/js/frappe/list/list_view.js:1689 +#: public/js/frappe/list/list_view.js:1696 msgctxt "Button in list view menu" msgid "Role Permissions Manager" msgstr "مدیر مجوزهای نقش" @@ -27050,7 +27175,7 @@ msgctxt "DocPerm" msgid "Role and Level" msgstr "نقش و سطح" -#: core/doctype/user/user.py:348 +#: core/doctype/user/user.py:350 msgid "Role has been set as per the user type {0}" msgstr "نقش بر اساس نوع کاربری {0} تنظیم شده است" @@ -27637,7 +27762,7 @@ msgstr "شنبه" #: public/js/frappe/views/kanban/kanban_view.js:340 #: public/js/frappe/views/reports/query_report.js:1802 #: public/js/frappe/views/reports/report_view.js:1628 -#: public/js/frappe/views/workspace/workspace.js:493 +#: public/js/frappe/views/workspace/workspace.js:498 #: public/js/frappe/widgets/base_widget.js:140 #: public/js/frappe/widgets/quick_list_widget.js:117 #: public/js/print_format_builder/print_format_builder.bundle.js:15 @@ -27651,7 +27776,7 @@ msgctxt "Notification" msgid "Save" msgstr "ذخیره" -#: core/doctype/user/user.js:311 +#: core/doctype/user/user.js:321 msgid "Save API Secret: {0}" msgstr "Save Secret API: {0}" @@ -27699,7 +27824,7 @@ msgstr "ذخیره" #: public/js/frappe/list/list_settings.js:40 #: public/js/frappe/views/kanban/kanban_settings.js:47 -#: public/js/frappe/views/workspace/workspace.js:505 +#: public/js/frappe/views/workspace/workspace.js:510 msgid "Saving" msgstr "ذخیره در" @@ -27738,7 +27863,7 @@ msgstr "برنامه" msgid "Schedule Newsletter" msgstr "زمانبندی خبرنامه" -#: public/js/frappe/views/communication.js:82 +#: public/js/frappe/views/communication.js:85 msgid "Schedule Send At" msgstr "زمانبندی ارسال در" @@ -27944,6 +28069,11 @@ msgctxt "Server Script" msgid "Script Type" msgstr "نوع اسکریپت" +#. Description of a DocType +#: website/doctype/website_script/website_script.json +msgid "Script to attach to all web pages." +msgstr "" + #. Label of a Card Break in the Build Workspace #: core/workspace/build/build.json msgid "Scripting" @@ -28233,8 +28363,8 @@ msgstr "انتخاب کنید" msgid "Select All" msgstr "انتخاب همه" -#: public/js/frappe/views/communication.js:162 -#: public/js/frappe/views/communication.js:567 +#: public/js/frappe/views/communication.js:165 +#: public/js/frappe/views/communication.js:578 #: public/js/frappe/views/interaction.js:93 #: public/js/frappe/views/interaction.js:155 msgid "Select Attachments" @@ -28385,7 +28515,7 @@ msgid "Select Page" msgstr "Page را انتخاب کنید" #: printing/page/print_format_builder_beta/print_format_builder_beta.js:68 -#: public/js/frappe/views/communication.js:145 +#: public/js/frappe/views/communication.js:148 msgid "Select Print Format" msgstr "Print Format را انتخاب کنید" @@ -28632,7 +28762,7 @@ msgctxt "Print Settings" msgid "Send Print as PDF" msgstr "ارسال چاپ به صورت PDF" -#: public/js/frappe/views/communication.js:135 +#: public/js/frappe/views/communication.js:138 msgid "Send Read Receipt" msgstr "ارسال رسید خواندن" @@ -28718,7 +28848,7 @@ msgstr "سوالات خود را به این آدرس ایمیل ارسال کن msgid "Send login link" msgstr "ارسال لینک ورود" -#: public/js/frappe/views/communication.js:129 +#: public/js/frappe/views/communication.js:132 msgid "Send me a copy" msgstr "یک کپی برای من بفرست" @@ -29047,7 +29177,7 @@ msgctxt "System Settings" msgid "Session Expiry (idle timeout)" msgstr "انقضای جلسه (تایم بیکار)" -#: core/doctype/system_settings/system_settings.py:111 +#: core/doctype/system_settings/system_settings.py:112 msgid "Session Expiry must be in format {0}" msgstr "انقضای جلسه باید در قالب {0} باشد" @@ -29079,7 +29209,7 @@ msgstr "فیلترهای پویا را تنظیم کنید" #: desk/doctype/dashboard_chart/dashboard_chart.js:381 #: desk/doctype/number_card/number_card.js:277 -#: website/doctype/web_form/web_form.js:259 +#: website/doctype/web_form/web_form.js:269 msgid "Set Filters" msgstr "فیلترها را تنظیم کنید" @@ -29139,7 +29269,7 @@ msgctxt "Role Permission for Page and Report" msgid "Set Role For" msgstr "تنظیم نقش برای" -#: core/doctype/user/user.js:116 +#: core/doctype/user/user.js:126 #: core/page/permission_manager/permission_manager.js:65 msgid "Set User Permissions" msgstr "مجوزهای کاربر را تنظیم کنید" @@ -29263,7 +29393,7 @@ msgstr "راه اندازی سیستم شما" #: integrations/workspace/integrations/integrations.json #: public/js/frappe/form/templates/print_layout.html:25 #: public/js/frappe/ui/toolbar/toolbar.js:264 -#: public/js/frappe/views/workspace/workspace.js:521 +#: public/js/frappe/views/workspace/workspace.js:526 msgid "Settings" msgstr "تنظیمات" @@ -29298,6 +29428,21 @@ msgctxt "Navbar Settings" msgid "Settings Dropdown" msgstr "کشویی تنظیمات" +#. Description of a DocType +#: website/doctype/contact_us_settings/contact_us_settings.json +msgid "Settings for Contact Us Page" +msgstr "" + +#. Description of a DocType +#: website/doctype/about_us_settings/about_us_settings.json +msgid "Settings for the About Us Page" +msgstr "" + +#. Description of a DocType +#: website/doctype/blog_settings/blog_settings.json +msgid "Settings to control blog categories and interactions like comments and likes" +msgstr "" + #. Label of a Card Break in the Website Workspace #: public/js/frappe/ui/toolbar/search_utils.js:567 #: website/workspace/website/website.json @@ -29666,7 +29811,7 @@ msgid "Show Sidebar" msgstr "نمایش نوار کناری" #: public/js/frappe/list/list_sidebar.html:66 -#: public/js/frappe/list/list_view.js:1605 +#: public/js/frappe/list/list_view.js:1612 msgid "Show Tags" msgstr "نمایش برچسب ها" @@ -29822,7 +29967,7 @@ msgctxt "Email Group" msgid "Sign Up and Confirmation" msgstr "ثبت نام و تایید" -#: core/doctype/user/user.py:1010 +#: core/doctype/user/user.py:1012 msgid "Sign Up is disabled" msgstr "ثبت نام غیرفعال است" @@ -30024,6 +30169,11 @@ msgctxt "Website Slideshow" msgid "Slideshow Name" msgstr "نام نمایش اسلاید" +#. Description of a DocType +#: website/doctype/website_slideshow/website_slideshow.json +msgid "Slideshow like display for the website" +msgstr "" + #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' #: custom/doctype/custom_field/custom_field.json msgctxt "Custom Field" @@ -30234,7 +30384,7 @@ msgstr "" msgid "Special Characters are not allowed" msgstr "کاراکترهای خاص مجاز نیستند" -#: model/naming.py:60 +#: model/naming.py:61 msgid "Special Characters except '-', '#', '.', '/', '{{' and '}}' not allowed in naming series {0}" msgstr "نویسه‌های ویژه به جز «-»، «#»، «.»، «/»، «{{» و «}}» در نام‌گذاری سری {0} مجاز نیستند" @@ -30244,7 +30394,7 @@ msgctxt "Website Settings" msgid "Splash Image" msgstr "تصویر اسپلش" -#: desk/reportview.py:378 public/js/frappe/web_form/web_form_list.js:175 +#: desk/reportview.py:382 public/js/frappe/web_form/web_form_list.js:175 #: templates/print_formats/standard_macros.html:44 msgid "Sr" msgstr "پدر" @@ -30319,11 +30469,11 @@ msgstr "قالب استاندارد چاپ را نمی توان به روز کر msgid "Standard Print Style cannot be changed. Please duplicate to edit." msgstr "سبک چاپ استاندارد قابل تغییر نیست. لطفا برای ویرایش کپی کنید" -#: desk/reportview.py:329 +#: desk/reportview.py:333 msgid "Standard Reports cannot be deleted" msgstr "گزارش های استاندارد را نمی توان حذف کرد" -#: desk/reportview.py:300 +#: desk/reportview.py:304 msgid "Standard Reports cannot be edited" msgstr "گزارش های استاندارد قابل ویرایش نیستند" @@ -30333,7 +30483,7 @@ msgctxt "Portal Settings" msgid "Standard Sidebar Menu" msgstr "منوی نوار کناری استاندارد" -#: website/doctype/web_form/web_form.js:30 +#: website/doctype/web_form/web_form.js:40 msgid "Standard Web Forms can not be modified, duplicate the Web Form instead." msgstr "" @@ -30799,7 +30949,7 @@ msgctxt "Website Settings" msgid "Subdomain" msgstr "زیر دامنه" -#: public/js/frappe/views/communication.js:104 +#: public/js/frappe/views/communication.js:107 #: public/js/frappe/views/inbox/inbox_view.js:63 msgid "Subject" msgstr "موضوع" @@ -30895,7 +31045,7 @@ msgstr "صف ارسال" msgid "Submit" msgstr "ارسال" -#: public/js/frappe/list/list_view.js:1979 +#: public/js/frappe/list/list_view.js:1986 msgctxt "Button in list view actions menu" msgid "Submit" msgstr "ارسال" @@ -30992,7 +31142,7 @@ msgstr "برای تکمیل این مرحله این سند را ارسال کن msgid "Submit this document to confirm" msgstr "برای تایید این سند را ارسال کنید" -#: public/js/frappe/list/list_view.js:1984 +#: public/js/frappe/list/list_view.js:1991 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "{0} سند ارسال شود؟" @@ -31172,7 +31322,7 @@ msgstr "با موفقیت به روز شد {0}" msgid "Successfully updated {0} out of {1} records." msgstr "{0} رکورد از {1} رکورد با موفقیت به روز شد." -#: core/doctype/user/user.py:725 +#: core/doctype/user/user.py:727 msgid "Suggested Username: {0}" msgstr "نام کاربری پیشنهادی: {0}" @@ -31749,7 +31899,7 @@ msgstr "هشدارهای الگو" msgid "Templates" msgstr "قالب ها" -#: core/doctype/user/user.py:1021 +#: core/doctype/user/user.py:1023 msgid "Temporarily Disabled" msgstr "موقتا غیر فعال می باشد" @@ -31837,6 +31987,12 @@ msgstr "ویرایشگر متن" msgid "Thank you" msgstr "متشکرم" +#: www/contact.py:37 +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 "" + #: website/doctype/web_form/templates/web_form.html:137 msgid "Thank you for spending your valuable time to fill this form" msgstr "از اینکه وقت ارزشمند خود را برای پر کردن این فرم صرف کردید سپاسگزاریم" @@ -31982,7 +32138,7 @@ msgstr "محدودیت برای نوع کاربری {0} در فایل پیکرب msgid "The link will expire in {0} minutes" msgstr "پیوند تا {0} دقیقه دیگر منقضی می‌شود" -#: www/login.py:175 +#: www/login.py:179 msgid "The link you trying to login is invalid or expired." msgstr "پیوندی که می‌خواهید وارد شوید نامعتبر است یا منقضی شده است." @@ -32032,11 +32188,11 @@ msgid "The project number obtained from Google Cloud Console under
" msgstr "" -#: core/doctype/user/user.py:981 +#: core/doctype/user/user.py:983 msgid "The reset password link has been expired" msgstr "پیوند بازنشانی رمز عبور منقضی شده است" -#: core/doctype/user/user.py:983 +#: core/doctype/user/user.py:985 msgid "The reset password link has either been used before or is invalid" msgstr "پیوند بازنشانی رمز عبور یا قبلا استفاده شده است یا نامعتبر است" @@ -32134,8 +32290,8 @@ msgstr "هیچ {0} برای این {1} وجود ندارد، چرا یکی را msgid "There are {0} with the same filters already in the queue:" msgstr "" -#: website/doctype/web_form/web_form.js:71 -#: website/doctype/web_form/web_form.js:307 +#: website/doctype/web_form/web_form.js:81 +#: website/doctype/web_form/web_form.js:317 msgid "There can be only 9 Page Break fields in a Web Form" msgstr "در یک فرم وب فقط 9 فیلد شکستگی صفحه وجود دارد" @@ -32163,7 +32319,7 @@ msgstr "" msgid "There must be atleast one permission rule." msgstr "حداقل یک قانون مجوز باید وجود داشته باشد." -#: core/doctype/user/user.py:533 +#: core/doctype/user/user.py:535 msgid "There should remain at least one System Manager" msgstr "باید حداقل یک مدیر سیستم باقی بماند" @@ -32183,11 +32339,11 @@ msgstr "خطاهایی وجود داشت" msgid "There were errors while creating the document. Please try again." msgstr "هنگام ایجاد سند خطاهایی وجود داشت. لطفا دوباره تلاش کنید." -#: public/js/frappe/views/communication.js:809 +#: public/js/frappe/views/communication.js:820 msgid "There were errors while sending email. Please try again." msgstr "هنگام ارسال ایمیل خطاهایی وجود داشت. لطفا دوباره تلاش کنید." -#: model/naming.py:448 +#: model/naming.py:470 msgid "There were some errors setting the name, please contact the administrator" msgstr "برخی از خطاها در تنظیم نام وجود دارد، لطفاً با سرپرست تماس بگیرید" @@ -32234,7 +32390,7 @@ msgstr "این Doctype حاوی فیلدهای مکان نیست" msgid "This Kanban Board will be private" msgstr "این هیئت کانبان خصوصی خواهد بود" -#: __init__.py:1010 +#: __init__.py:1013 msgid "This action is only allowed for {}" msgstr "این عمل فقط برای {} مجاز است" @@ -32462,7 +32618,7 @@ msgstr "با این کار این تور بازنشانی می شود و به ه msgid "This will terminate the job immediately and might be dangerous, are you sure? " msgstr " این کار بلافاصله کار را خاتمه می دهد و ممکن است خطرناک باشد، مطمئن هستید؟" -#: core/doctype/user/user.py:1241 +#: core/doctype/user/user.py:1243 msgid "Throttled" msgstr "گاز گرفت" @@ -32730,9 +32886,9 @@ msgstr "مهر زمان" #: core/doctype/doctype/boilerplate/controller_list.html:14 #: core/doctype/doctype/boilerplate/controller_list.html:23 -#: public/js/frappe/views/workspace/workspace.js:605 -#: public/js/frappe/views/workspace/workspace.js:934 -#: public/js/frappe/views/workspace/workspace.js:1181 +#: public/js/frappe/views/workspace/workspace.js:610 +#: public/js/frappe/views/workspace/workspace.js:939 +#: public/js/frappe/views/workspace/workspace.js:1186 msgid "Title" msgstr "عنوان" @@ -32915,7 +33071,7 @@ msgctxt "Auto Email Report" msgid "To Date Field" msgstr "فیلد به تاریخ" -#: desk/doctype/todo/todo_list.js:12 +#: desk/doctype/todo/todo_list.js:6 msgid "To Do" msgstr "انجام دادن" @@ -33079,7 +33235,7 @@ msgstr "نمای شبکه ای را تغییر دهید" msgid "Toggle Sidebar" msgstr "نوار کناری را تغییر دهید" -#: public/js/frappe/list/list_view.js:1720 +#: public/js/frappe/list/list_view.js:1727 msgctxt "Button in list view menu" msgid "Toggle Sidebar" msgstr "نوار کناری را تغییر دهید" @@ -33141,7 +33297,7 @@ msgstr "درخواست های خیلی زیاد" msgid "Too many changes to database in single action." msgstr "تغییرات بسیار زیادی در پایگاه داده در یک اقدام واحد." -#: core/doctype/user/user.py:1022 +#: core/doctype/user/user.py:1024 msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour" msgstr "کاربران زیادی اخیرا ثبت نام کرده اند، بنابراین ثبت نام غیرفعال است. لطفا یک ساعت دیگر دوباره امتحان کنید" @@ -33339,6 +33495,11 @@ msgid "Track if your email has been opened by the recipient.\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 +#: automation/doctype/milestone_tracker/milestone_tracker.json +msgid "Track milestones for any document" +msgstr "" + #: public/js/frappe/utils/utils.js:1757 msgid "Tracking URL generated and copied to clipboard" msgstr "URL ردیابی تولید و در کلیپ بورد کپی شد" @@ -33829,7 +33990,7 @@ msgstr "لغو دنبال کردن" msgid "Unhandled Email" msgstr "ایمیل کنترل نشده" -#: public/js/frappe/views/workspace/workspace.js:562 +#: public/js/frappe/views/workspace/workspace.js:567 msgid "Unhide Workspace" msgstr "نمایش فضای کاری" @@ -33876,7 +34037,7 @@ msgid "Unlock Reference Document" msgstr "باز کردن قفل سند مرجع" #: website/doctype/blog_post/blog_post.js:36 -#: website/doctype/web_form/web_form.js:76 +#: website/doctype/web_form/web_form.js:86 msgid "Unpublish" msgstr "لغو انتشار" @@ -33980,7 +34141,7 @@ msgstr "رویدادهای آینده برای امروز" #: printing/page/print_format_builder/print_format_builder.js:670 #: printing/page/print_format_builder/print_format_builder.js:757 #: public/js/frappe/form/grid_row.js:403 -#: public/js/frappe/views/workspace/workspace.js:653 +#: public/js/frappe/views/workspace/workspace.js:658 msgid "Update" msgstr "به روز رسانی" @@ -33996,7 +34157,7 @@ msgctxt "Document Naming Settings" msgid "Update Amendment Naming" msgstr "به روز رسانی اصلاحیه نامگذاری" -#: public/js/frappe/views/workspace/workspace.js:602 +#: public/js/frappe/views/workspace/workspace.js:607 msgid "Update Details" msgstr "به روز رسانی جزئیات" @@ -34258,11 +34419,11 @@ msgctxt "Email Account" msgid "Use different Email ID" msgstr "از شناسه ایمیل متفاوت استفاده کنید" -#: model/db_query.py:424 +#: model/db_query.py:423 msgid "Use of function {0} in field is restricted" msgstr "استفاده از تابع {0} در فیلد محدود شده است" -#: model/db_query.py:403 +#: model/db_query.py:402 msgid "Use of sub-query or function is restricted" msgstr "استفاده از زیرپرس و جو یا تابع محدود شده است" @@ -34558,6 +34719,11 @@ msgctxt "Social Login Key" msgid "User ID Property" msgstr "ویژگی User ID" +#. Description of a DocType +#: website/doctype/blogger/blogger.json +msgid "User ID of a Blogger" +msgstr "" + #. Label of a Link field in DocType 'Contact' #: contacts/doctype/contact/contact.json msgctxt "Contact" @@ -34607,7 +34773,7 @@ msgstr "مجوز کاربر" msgid "User Permissions" msgstr "مجوزهای کاربر" -#: public/js/frappe/list/list_view.js:1678 +#: public/js/frappe/list/list_view.js:1685 msgctxt "Button in list view menu" msgid "User Permissions" msgstr "مجوزهای کاربر" @@ -34742,15 +34908,15 @@ msgstr "کاربری با آدرس ایمیل {0} وجود ندارد" msgid "User with email: {0} does not exist in the system. Please ask 'System Administrator' to create the user for you." msgstr "کاربر با ایمیل: {0} در سیستم وجود ندارد. لطفاً از \"System Administrator\" بخواهید که کاربر را برای شما ایجاد کند." -#: core/doctype/user/user.py:538 +#: core/doctype/user/user.py:540 msgid "User {0} cannot be deleted" msgstr "کاربر {0} قابل حذف نیست" -#: core/doctype/user/user.py:277 +#: core/doctype/user/user.py:279 msgid "User {0} cannot be disabled" msgstr "کاربر {0} را نمی توان غیرفعال کرد" -#: core/doctype/user/user.py:607 +#: core/doctype/user/user.py:609 msgid "User {0} cannot be renamed" msgstr "کاربر {0} را نمی توان تغییر نام داد" @@ -34767,7 +34933,7 @@ msgstr "کاربر {0} دسترسی doctype از طریق مجوز نقش برا msgid "User {0} has requested for data deletion" msgstr "کاربر {0} درخواست حذف داده ها را داده است" -#: core/doctype/user/user.py:1370 +#: core/doctype/user/user.py:1372 msgid "User {0} impersonated as {1}" msgstr "" @@ -34801,7 +34967,7 @@ msgctxt "User Social Login" msgid "Username" msgstr "نام کاربری" -#: core/doctype/user/user.py:692 +#: core/doctype/user/user.py:694 msgid "Username {0} already exists" msgstr "نام کاربری {0} از قبل وجود دارد" @@ -34882,7 +35048,7 @@ msgstr "اعتبار" #: public/js/frappe/list/bulk_operations.js:306 #: public/js/frappe/list/bulk_operations.js:368 #: public/js/frappe/list/list_view_permission_restrictions.html:4 -#: website/doctype/web_form/web_form.js:187 +#: website/doctype/web_form/web_form.js:197 msgid "Value" msgstr "ارزش" @@ -35116,7 +35282,7 @@ msgstr "مشاهده لیست" msgid "View Log" msgstr "مشاهده گزارش" -#: core/doctype/user/user.js:127 +#: core/doctype/user/user.js:137 #: core/doctype/user_permission/user_permission.js:24 msgid "View Permitted Documents" msgstr "مشاهده اسناد مجاز" @@ -35293,6 +35459,10 @@ msgstr "ما درخواستی برای حذف {0} داده های مرتبط ب msgid "We have received a request from you to download your {0} data associated with: {1}" msgstr "ما درخواستی از شما دریافت کرده‌ایم برای دانلود داده‌های {0} مرتبط با: {1}" +#: www/contact.py:48 +msgid "We've received your query!" +msgstr "" + #: public/js/frappe/form/controls/password.js:88 msgid "Weak" msgstr "ضعیف" @@ -35835,11 +36005,11 @@ msgstr "URL خوش آمدید" msgid "Welcome Workspace" msgstr "فضای کاری خوش آمدید" -#: core/doctype/user/user.py:395 +#: core/doctype/user/user.py:397 msgid "Welcome email sent" msgstr "ایمیل خوش آمدگویی ارسال شد" -#: core/doctype/user/user.py:470 +#: core/doctype/user/user.py:472 msgid "Welcome to {0}" msgstr "به {0} خوش آمدید" @@ -36009,6 +36179,7 @@ msgid "Workflow Action" msgstr "عمل گردش کار" #. Name of a DocType +#. Description of a DocType #: workflow/doctype/workflow_action_master/workflow_action_master.json msgid "Workflow Action Master" msgstr "استاد اکشن گردش کار" @@ -36104,6 +36275,11 @@ msgstr "وضعیت گردش کار" msgid "Workflow Transition" msgstr "انتقال گردش کار" +#. Description of a DocType +#: workflow/doctype/workflow_state/workflow_state.json +msgid "Workflow state represents the current state of a document." +msgstr "" + #. Description of the Onboarding Step 'Setup Approval Workflows' #: custom/onboarding_step/workflows/workflows.json msgid "Workflows allow you to define custom rules for the approval process of a particular document in ERPNext. You can also set complex Workflow Rules and set approval conditions." @@ -36122,6 +36298,12 @@ msgctxt "Module Def" msgid "Workspace" msgstr "فضای کار" +#. Label of a Section Break field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Workspace" +msgstr "فضای کار" + #. Label of a Link in the Build Workspace #: core/workspace/build/build.json msgctxt "Workspace" @@ -36172,15 +36354,15 @@ msgstr "میانبر فضای کاری" msgid "Workspace not found" msgstr "فضای کاری پیدا نشد" -#: public/js/frappe/views/workspace/workspace.js:1271 +#: public/js/frappe/views/workspace/workspace.js:1276 msgid "Workspace {0} Created Successfully" msgstr "فضای کاری {0} با موفقیت ایجاد شد" -#: public/js/frappe/views/workspace/workspace.js:900 +#: public/js/frappe/views/workspace/workspace.js:905 msgid "Workspace {0} Deleted Successfully" msgstr "فضای کاری {0} با موفقیت حذف شد" -#: public/js/frappe/views/workspace/workspace.js:678 +#: public/js/frappe/views/workspace/workspace.js:683 msgid "Workspace {0} Edited Successfully" msgstr "Workspace {0} با موفقیت ویرایش شد" @@ -36410,7 +36592,7 @@ msgstr "شما مجاز به دسترسی به این رکورد {0} نیستی msgid "You are not allowed to create columns" msgstr "شما مجاز به ایجاد ستون نیستید" -#: core/doctype/report/report.py:94 +#: core/doctype/report/report.py:97 msgid "You are not allowed to delete Standard Report" msgstr "شما مجاز به حذف گزارش استاندارد نیستید" @@ -36418,7 +36600,7 @@ msgstr "شما مجاز به حذف گزارش استاندارد نیستید" msgid "You are not allowed to delete a standard Website Theme" msgstr "شما مجاز به حذف تم استاندارد وب سایت نیستید" -#: core/doctype/report/report.py:377 +#: core/doctype/report/report.py:383 msgid "You are not allowed to edit the report." msgstr "شما مجاز به ویرایش گزارش نیستید." @@ -36430,7 +36612,7 @@ msgstr "شما مجاز به صادرات {} doctype نیستید" msgid "You are not allowed to print this report" msgstr "شما مجاز به چاپ این گزارش نیستید" -#: public/js/frappe/views/communication.js:753 +#: public/js/frappe/views/communication.js:764 msgid "You are not allowed to send emails related to this document" msgstr "شما مجاز به ارسال ایمیل های مرتبط با این سند نیستید" @@ -36450,7 +36632,7 @@ msgstr "بدون ورود به سیستم اجازه دسترسی به این ص msgid "You are not permitted to access this page." msgstr "شما اجازه دسترسی به این صفحه را ندارید." -#: __init__.py:929 +#: __init__.py:932 msgid "You are not permitted to access this resource." msgstr "شما مجاز به دسترسی به این منبع نیستید." @@ -36503,7 +36685,7 @@ msgstr "می توانید خط مشی حفظ را از {0} تغییر دهید." msgid "You can continue with the onboarding after exploring this page" msgstr "پس از کاوش در این صفحه می‌توانید به نصب ادامه دهید" -#: core/doctype/user/user.py:598 +#: core/doctype/user/user.py:600 msgid "You can disable the user instead of deleting it." msgstr "" @@ -36539,6 +36721,13 @@ msgstr "شما فقط می توانید حداکثر 5000 رکورد را در msgid "You can select one from the following," msgstr "می توانید یکی از موارد زیر را انتخاب کنید" +#. Description of the 'Rate limit for email link login' (Int) field in DocType +#. 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "You can set a high value here if multiple users will be logging in from the same network." +msgstr "" + #: desk/query_report.py:332 msgid "You can try changing the filters of your report." msgstr "می توانید فیلترهای گزارش خود را تغییر دهید." @@ -37724,7 +37913,7 @@ msgstr "قفل کردن" msgid "logged in" msgstr "وارد شده" -#: website/doctype/web_form/web_form.js:352 +#: website/doctype/web_form/web_form.js:362 msgid "login_required" msgstr "login_required" @@ -38748,7 +38937,7 @@ msgctxt "Form timeline" msgid "{0} attached {1}" msgstr "{0} پیوست {1}" -#: core/doctype/system_settings/system_settings.py:141 +#: core/doctype/system_settings/system_settings.py:142 msgid "{0} can not be more than {1}" msgstr "{0} نمی تواند بیشتر از {1} باشد" @@ -38886,7 +39075,7 @@ msgstr "{0} با موفقیت به گروه ایمیل اضافه شد." msgid "{0} has left the conversation in {1} {2}" msgstr "{0} مکالمه را در {1} {2} ترک کرده است" -#: __init__.py:2480 +#: __init__.py:2483 msgid "{0} has no versions tracked." msgstr "{0} هیچ نسخه ای ردیابی نشده است." @@ -39032,7 +39221,7 @@ msgstr "{0} اکنون قالب چاپ پیش‌فرض برای {1} doctype اس msgid "{0} is one of {1}" msgstr "{0} یکی از {1} است" -#: email/doctype/email_account/email_account.py:277 model/naming.py:201 +#: email/doctype/email_account/email_account.py:277 model/naming.py:202 #: printing/doctype/print_format/print_format.py:90 utils/csvutils.py:131 msgid "{0} is required" msgstr "{0} مورد نیاز است" @@ -39045,11 +39234,11 @@ msgstr "{0} تنظیم شده است" msgid "{0} is within {1}" msgstr "{0} در محدوده {1} است" -#: public/js/frappe/list/list_view.js:1595 +#: public/js/frappe/list/list_view.js:1602 msgid "{0} items selected" msgstr "{0} مورد انتخاب شد" -#: core/doctype/user/user.py:1379 +#: core/doctype/user/user.py:1381 msgid "{0} just impersonated as you. They gave this reason: {1}" msgstr "{0} به عنوان شما جعل شده است. این دلیل را آوردند: {1}" @@ -39115,11 +39304,11 @@ msgstr "{0} مجاز به تغییر نام نیست" msgid "{0} not found" msgstr "{0} یافت نشد" -#: core/doctype/report/report.py:413 public/js/frappe/list/list_view.js:986 +#: core/doctype/report/report.py:419 public/js/frappe/list/list_view.js:987 msgid "{0} of {1}" msgstr "{0} از {1}" -#: public/js/frappe/list/list_view.js:988 +#: public/js/frappe/list/list_view.js:989 msgid "{0} of {1} ({2} rows with children)" msgstr "{0} از {1} ({2} ردیف با کودکان)" @@ -39244,7 +39433,7 @@ msgstr "{0} لغو اشتراک‌گذاری این سند با {1}" msgid "{0} updated" msgstr "{0} به روز شد" -#: public/js/frappe/form/controls/multiselect_list.js:162 +#: public/js/frappe/form/controls/multiselect_list.js:182 msgid "{0} values selected" msgstr "{0} مقدار انتخاب شد" diff --git a/frappe/locale/fr.po b/frappe/locale/fr.po index fa012d2543..dc81cf5196 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: 2024-03-17 09:33+0000\n" -"PO-Revision-Date: 2024-03-18 10:48\n" +"POT-Creation-Date: 2024-03-24 09:33+0000\n" +"PO-Revision-Date: 2024-03-26 12:06\n" "Last-Translator: developers@frappe.io\n" "Language-Team: French\n" "MIME-Version: 1.0\n" @@ -1231,7 +1231,7 @@ msgstr "Ajouter / Mettre à jour" msgid "Add A New Rule" msgstr "Ajouter une nouvelle règle" -#: public/js/frappe/views/communication.js:567 +#: public/js/frappe/views/communication.js:578 #: public/js/frappe/views/interaction.js:159 msgid "Add Attachment" msgstr "Ajouter une pièce jointe" @@ -1333,7 +1333,7 @@ msgstr "" msgid "Add Review" msgstr "Ajouter un commentaire" -#: core/doctype/user/user.py:808 +#: core/doctype/user/user.py:810 msgid "Add Roles" msgstr "" @@ -1341,7 +1341,7 @@ msgstr "" msgid "Add Row" msgstr "" -#: public/js/frappe/views/communication.js:118 +#: public/js/frappe/views/communication.js:121 msgid "Add Signature" msgstr "Ajouter une Signature" @@ -1372,12 +1372,12 @@ msgstr "Ajouter des Abonnés" msgid "Add Tags" msgstr "" -#: public/js/frappe/list/list_view.js:1897 +#: public/js/frappe/list/list_view.js:1904 msgctxt "Button in list view actions menu" msgid "Add Tags" msgstr "" -#: public/js/frappe/views/communication.js:399 +#: public/js/frappe/views/communication.js:410 msgid "Add Template" msgstr "" @@ -1489,7 +1489,7 @@ msgstr "Ajouté {0}" msgid "Added {0} ({1})" msgstr "Ajouté {0} ({1})" -#: core/doctype/user/user.py:305 +#: core/doctype/user/user.py:307 msgid "Adding System Manager to this User as there must be atleast one System Manager" msgstr "Ajout du rôle Responsable Système pour cet utilisateur car il doit y avoir au moins un utilisateur avec le rôle Responsable Système" @@ -1595,6 +1595,16 @@ msgstr "Adresses" msgid "Addresses And Contacts" msgstr "Adresses Et Contacts" +#. Description of a DocType +#: custom/doctype/client_script/client_script.json +msgid "Adds a custom client script to a DocType" +msgstr "" + +#. Description of a DocType +#: custom/doctype/custom_field/custom_field.json +msgid "Adds a custom field to a DocType" +msgstr "" + #: public/js/frappe/ui/toolbar/search_utils.js:552 msgid "Administration" msgstr "Administration" @@ -1616,11 +1626,11 @@ msgstr "Administration" msgid "Administrator" msgstr "Administrateur" -#: core/doctype/user/user.py:1212 +#: core/doctype/user/user.py:1214 msgid "Administrator Logged In" msgstr "Administrateur Connecté" -#: core/doctype/user/user.py:1206 +#: core/doctype/user/user.py:1208 msgid "Administrator accessed {0} on {1} via IP Address {2}." msgstr "L'administrateur a accedé à {0} sur {1} avec l'Adresse IP {2}." @@ -2202,7 +2212,7 @@ msgstr "" msgid "Allowing DocType, DocType. Be careful!" msgstr "Autorisation de DocType, DocType. Soyez prudent !" -#: core/doctype/user/user.py:1015 +#: core/doctype/user/user.py:1017 msgid "Already Registered" msgstr "Déjà Inscrit" @@ -2454,7 +2464,7 @@ msgstr "Clé Secrète de l'App" msgid "App not found for module: {0}" msgstr "Application introuvable pour le module : {0}" -#: __init__.py:1781 +#: __init__.py:1784 msgid "App {0} is not installed" msgstr "App {0} n'est pas installée" @@ -2533,7 +2543,7 @@ msgctxt "Property Setter" msgid "Applied On" msgstr "Appliqué sur" -#: public/js/frappe/list/list_view.js:1882 +#: public/js/frappe/list/list_view.js:1889 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" msgstr "Appliquer la règle d'assignation" @@ -2639,7 +2649,7 @@ msgstr "Archivé" msgid "Archived Columns" msgstr "Colonnes Archivées" -#: public/js/frappe/list/list_view.js:1861 +#: public/js/frappe/list/list_view.js:1868 msgid "Are you sure you want to clear the assignments?" msgstr "" @@ -2647,7 +2657,7 @@ msgstr "" msgid "Are you sure you want to delete all rows?" msgstr "Voulez-vous vraiment supprimer toutes les lignes?" -#: public/js/frappe/views/workspace/workspace.js:891 +#: public/js/frappe/views/workspace/workspace.js:896 msgid "Are you sure you want to delete page {0}?" msgstr "" @@ -2738,7 +2748,7 @@ msgstr "Attribuer une condition" msgid "Assign To" msgstr "Attribuer À" -#: public/js/frappe/list/list_view.js:1843 +#: public/js/frappe/list/list_view.js:1850 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "Attribuer À" @@ -2907,7 +2917,7 @@ msgstr "Affectations" 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." -#: website/doctype/web_form/web_form.js:63 +#: website/doctype/web_form/web_form.js:73 msgid "At least one field is required in Web Form Fields Table" msgstr "" @@ -2943,7 +2953,7 @@ msgctxt "Web Form Field" msgid "Attach" msgstr "Attacher" -#: public/js/frappe/views/communication.js:140 +#: public/js/frappe/views/communication.js:143 msgid "Attach Document Print" msgstr "Joindre l'Impression de Document" @@ -3410,6 +3420,11 @@ msgstr "La liaison automatique ne peut être activée que pour un seul compte de msgid "Automatic Linking can be activated only if Incoming is enabled." msgstr "La liaison automatique ne peut être activée que si l'option Entrant est activée." +#. Description of a DocType +#: automation/doctype/assignment_rule/assignment_rule.json +msgid "Automatically Assign Documents to Users" +msgstr "" + #. Label of a Int field in DocType 'Website Settings' #: website/doctype/website_settings/website_settings.json msgctxt "Website Settings" @@ -3556,7 +3571,7 @@ msgctxt "Print Settings" msgid "B9" msgstr "" -#: public/js/frappe/views/communication.js:77 +#: public/js/frappe/views/communication.js:79 msgid "BCC" msgstr "" @@ -4399,7 +4414,7 @@ msgstr "" msgid "CANCELLED" msgstr "ANNULÉ" -#: public/js/frappe/views/communication.js:72 +#: public/js/frappe/views/communication.js:73 msgid "CC" msgstr "" @@ -4634,7 +4649,7 @@ msgstr "" msgid "Cancel" msgstr "Annuler" -#: public/js/frappe/list/list_view.js:1952 +#: public/js/frappe/list/list_view.js:1959 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "Annuler" @@ -4687,7 +4702,7 @@ msgstr "Annuler tous les documents" msgid "Cancel Scheduling" msgstr "" -#: public/js/frappe/list/list_view.js:1957 +#: public/js/frappe/list/list_view.js:1964 msgctxt "Title of confirmation dialog" msgid "Cancel {0} documents?" msgstr "Annuler les documents {0}?" @@ -4860,7 +4875,7 @@ msgstr "Impossible de modifier une notification standard. Pour l'éditer, veuill msgid "Cannot edit Standard charts" msgstr "" -#: core/doctype/report/report.py:69 +#: core/doctype/report/report.py:72 msgid "Cannot edit a standard report. Please duplicate and create a new report" msgstr "Modification du rapport standard impossible. Veuillez le dupliquer et créer un nouveau rapport" @@ -4937,11 +4952,11 @@ msgstr "" msgid "Cannot update {0}" msgstr "Impossible de mettre à jour {0}" -#: model/db_query.py:1119 +#: model/db_query.py:1103 msgid "Cannot use sub-query in order by" msgstr "Impossible d'utiliser la sous-requête dans l'ordre demandé" -#: model/db_query.py:1137 +#: model/db_query.py:1121 msgid "Cannot use {0} in order/group by" msgstr "" @@ -5296,7 +5311,7 @@ msgstr "Les tables enfants sont affichées sous forme de grille dans d'autre msgid "Choose Existing Card or create New Card" msgstr "Choisissez une carte existante ou créez une nouvelle carte" -#: public/js/frappe/views/workspace/workspace.js:1391 +#: public/js/frappe/views/workspace/workspace.js:1396 msgid "Choose a block or continue typing" msgstr "" @@ -5332,15 +5347,15 @@ msgstr "Ville" msgid "Clear" msgstr "Nettoyer" -#: public/js/frappe/views/communication.js:404 +#: public/js/frappe/views/communication.js:415 msgid "Clear & Add Template" msgstr "" -#: public/js/frappe/views/communication.js:99 +#: public/js/frappe/views/communication.js:102 msgid "Clear & Add template" msgstr "" -#: public/js/frappe/list/list_view.js:1858 +#: public/js/frappe/list/list_view.js:1865 msgctxt "Button in list view actions menu" msgid "Clear Assignment" msgstr "" @@ -5367,7 +5382,7 @@ msgstr "" msgid "Clear User Permissions" msgstr "Effacer les autorisations utilisateur" -#: public/js/frappe/views/communication.js:405 +#: public/js/frappe/views/communication.js:416 msgid "Clear the email message and add the template" msgstr "" @@ -5425,7 +5440,7 @@ msgstr "Cliquez sur {0} pour générer le jeton d'actualisation." #: desk/doctype/dashboard_chart/dashboard_chart.js:315 #: desk/doctype/number_card/number_card.js:215 #: email/doctype/auto_email_report/auto_email_report.js:96 -#: website/doctype/web_form/web_form.js:226 +#: website/doctype/web_form/web_form.js:236 msgid "Click table to edit" msgstr "Cliquez sur la table pour modifier" @@ -5436,7 +5451,7 @@ msgstr "" #: desk/doctype/dashboard_chart/dashboard_chart.js:372 #: desk/doctype/number_card/number_card.js:270 -#: website/doctype/web_form/web_form.js:252 +#: website/doctype/web_form/web_form.js:262 msgid "Click to Set Filters" msgstr "" @@ -6113,7 +6128,7 @@ msgstr "Terminé" msgid "Complete By" msgstr "Terminé par" -#: core/doctype/user/user.py:472 templates/emails/new_user.html:10 +#: core/doctype/user/user.py:474 templates/emails/new_user.html:10 msgid "Complete Registration" msgstr "Terminer l'Inscription" @@ -6182,7 +6197,7 @@ msgstr "Écrire un Email" #: desk/doctype/dashboard_chart/dashboard_chart.js:439 #: desk/doctype/number_card/number_card.js:205 #: desk/doctype/number_card/number_card.js:333 -#: website/doctype/web_form/web_form.js:187 +#: website/doctype/web_form/web_form.js:197 msgid "Condition" msgstr "Conditions" @@ -6279,7 +6294,12 @@ msgid "Configure how amended documents will be named.
\n\n" "Default Naming will make the amended document to behave same as new documents." msgstr "" -#: core/doctype/user/user.js:374 public/js/frappe/dom.js:332 +#. Description of a DocType +#: core/doctype/document_naming_settings/document_naming_settings.json +msgid "Configure various aspects of how document naming works like naming series, current counter." +msgstr "" + +#: core/doctype/user/user.js:384 public/js/frappe/dom.js:332 #: www/update-password.html:30 msgid "Confirm" msgstr "Confirmer" @@ -6294,7 +6314,7 @@ msgstr "Confirmer" msgid "Confirm Deletion of Account" msgstr "" -#: core/doctype/user/user.js:167 +#: core/doctype/user/user.js:177 msgid "Confirm New Password" msgstr "Confirmer le nouveau mot de passe" @@ -6451,6 +6471,10 @@ msgstr "Numéro du contact" msgid "Contact Synced with Google Contacts." msgstr "Contact synchronisé avec Google Contacts." +#: www/contact.html:4 +msgid "Contact Us" +msgstr "" + #. Name of a DocType #: website/doctype/contact_us_settings/contact_us_settings.json msgid "Contact Us Settings" @@ -6624,6 +6648,10 @@ msgstr "" msgid "Copied to clipboard." msgstr "Copié dans le presse-papier." +#: website/doctype/web_form/web_form.js:29 +msgid "Copy Embed Code" +msgstr "" + #: public/js/frappe/form/templates/timeline_message_box.html:83 msgid "Copy Link" msgstr "" @@ -6650,7 +6678,7 @@ msgstr "Les DocTypes de base ne peuvent pas être personnalisés." msgid "Core Modules {0} cannot be searched in Global Search." msgstr "Les modules de base {0} ne peuvent pas être recherchés dans la recherche globale." -#: email/smtp.py:77 +#: email/smtp.py:78 msgid "Could not connect to outgoing email server" msgstr "Impossible de se connecter au serveur de messagerie sortant" @@ -6764,7 +6792,7 @@ msgstr "" #: public/js/frappe/views/file/file_view.js:112 #: public/js/frappe/views/interaction.js:18 #: public/js/frappe/views/reports/query_report.js:1186 -#: public/js/frappe/views/workspace/workspace.js:1223 +#: public/js/frappe/views/workspace/workspace.js:1228 #: workflow/page/workflow_builder/workflow_builder.js:46 msgid "Create" msgstr "Créer" @@ -6817,7 +6845,7 @@ msgstr "Créer des contacts à partir des e-mails entrants" msgid "Create Custom Fields" msgstr "" -#: public/js/frappe/views/workspace/workspace.js:931 +#: public/js/frappe/views/workspace/workspace.js:936 msgid "Create Duplicate" msgstr "" @@ -6852,11 +6880,11 @@ msgstr "" msgid "Create New Kanban Board" msgstr "" -#: core/doctype/user/user.js:246 +#: core/doctype/user/user.js:256 msgid "Create User Email" msgstr "Créer un Email Utilisateur" -#: public/js/frappe/views/workspace/workspace.js:471 +#: public/js/frappe/views/workspace/workspace.js:476 msgid "Create Workspace" msgstr "Créer un espace de travail" @@ -6888,6 +6916,11 @@ msgstr "Créer un(e) nouveau(elle) {0}" msgid "Create a {0} Account" msgstr "" +#. Description of a DocType +#: email/doctype/newsletter/newsletter.json +msgid "Create and send emails to a specific group of subscribers periodically." +msgstr "" + #: printing/page/print_format_builder_beta/print_format_builder_beta.js:34 msgid "Create or Edit Print Format" msgstr "" @@ -7054,6 +7087,11 @@ msgctxt "System Settings" msgid "Currency Precision" msgstr "Précision de la Devise" +#. Description of a DocType +#: geo/doctype/currency/currency.json +msgid "Currency list stores the currency value, its symbol and fraction unit" +msgstr "" + #. Option for the 'Address Type' (Select) field in DocType 'Address' #: contacts/doctype/address/address.json msgctxt "Address" @@ -7419,7 +7457,7 @@ msgstr "Personnalisation" msgid "Customization onboarding is all done!" msgstr "" -#: public/js/frappe/views/workspace/workspace.js:517 +#: public/js/frappe/views/workspace/workspace.js:522 msgid "Customizations Discarded" msgstr "" @@ -7438,7 +7476,7 @@ msgstr "Personnalisations pour {0} exportées vers:
{1}" msgid "Customize" msgstr "Personnaliser" -#: public/js/frappe/list/list_view.js:1703 +#: public/js/frappe/list/list_view.js:1710 msgctxt "Button in list view menu" msgid "Customize" msgstr "Personnaliser" @@ -8278,6 +8316,12 @@ msgctxt "DocType" msgid "Default View" msgstr "" +#. Label of a Link field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Default Workspace" +msgstr "" + #: core/doctype/doctype/doctype.py:1325 msgid "Default for 'Check' type of field {0} must be either '0' or '1'" msgstr "La valeur par défaut pour le type de champ "Vérifier" {0} doit être "0" ou "1"" @@ -8317,6 +8361,16 @@ msgstr "Valeurs Par Défaut" msgid "Defaults Updated" msgstr "" +#. Description of a DocType +#: workflow/doctype/workflow_transition/workflow_transition.json +msgid "Defines actions on states and the next step and allowed roles." +msgstr "" + +#. Description of a DocType +#: 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' #: core/doctype/communication/communication.json msgctxt "Communication" @@ -8328,13 +8382,13 @@ msgstr "Différé" #: public/js/frappe/form/grid.js:63 public/js/frappe/form/toolbar.js:423 #: public/js/frappe/views/reports/report_view.js:1642 #: public/js/frappe/views/treeview.js:313 -#: public/js/frappe/views/workspace/workspace.js:829 +#: public/js/frappe/views/workspace/workspace.js:834 #: templates/discussions/reply_card.html:35 #: templates/discussions/reply_section.html:29 msgid "Delete" msgstr "Supprimer" -#: public/js/frappe/list/list_view.js:1920 +#: public/js/frappe/list/list_view.js:1927 msgctxt "Button in list view actions menu" msgid "Delete" msgstr "Supprimer" @@ -8373,7 +8427,7 @@ msgstr "Suprimmer les données" msgid "Delete Kanban Board" msgstr "" -#: public/js/frappe/views/workspace/workspace.js:830 +#: public/js/frappe/views/workspace/workspace.js:835 msgid "Delete Workspace" msgstr "" @@ -8389,12 +8443,12 @@ msgstr "Supprimer le commentaire ?" msgid "Delete this record to allow sending to this email address" msgstr "Supprimer cet enregistrement pour permettre l'envoi à cette adresse Email" -#: public/js/frappe/list/list_view.js:1925 +#: public/js/frappe/list/list_view.js:1932 msgctxt "Title of confirmation dialog" msgid "Delete {0} item permanently?" msgstr "" -#: public/js/frappe/list/list_view.js:1931 +#: public/js/frappe/list/list_view.js:1938 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "Supprimer {0} éléments de façon permanente?" @@ -8448,7 +8502,7 @@ msgctxt "Deleted Document" msgid "Deleted Name" msgstr "Nom Supprimé" -#: desk/reportview.py:502 +#: desk/reportview.py:506 msgid "Deleting {0}" msgstr "Suppression de {0}" @@ -8933,7 +8987,7 @@ msgstr "Réponse automatique désactivée" #: public/js/frappe/views/communication.js:30 #: public/js/frappe/views/dashboard/dashboard_view.js:70 -#: public/js/frappe/views/workspace/workspace.js:508 +#: public/js/frappe/views/workspace/workspace.js:513 #: public/js/frappe/web_form/web_form.js:187 msgid "Discard" msgstr "Ignorer" @@ -9233,6 +9287,11 @@ msgstr "DocType ne peut pas être fusionné" msgid "DocType can only be renamed by Administrator" msgstr "DocType ne peut être renommé que par l'Administrateur" +#. Description of a DocType +#: core/doctype/doctype/doctype.json +msgid "DocType is a Table / Form in the application." +msgstr "" + #: integrations/doctype/webhook/webhook.py:82 msgid "DocType must be Submittable for the selected Doc Event" msgstr "Le DocType doit être validable pour l'événement Doc sélectionné" @@ -9293,7 +9352,7 @@ msgstr "" msgid "Doctype required" msgstr "Doctype requis" -#: public/js/frappe/views/workspace/workspace.js:1309 +#: public/js/frappe/views/workspace/workspace.js:1314 msgid "Doctype with same route already exist. Please choose different title." msgstr "" @@ -9925,7 +9984,7 @@ msgstr "Brouillon" #: public/js/frappe/views/workspace/blocks/header.js:46 #: public/js/frappe/views/workspace/blocks/paragraph.js:136 #: public/js/frappe/views/workspace/blocks/spacer.js:44 -#: public/js/frappe/views/workspace/workspace.js:571 +#: public/js/frappe/views/workspace/workspace.js:576 #: public/js/frappe/widgets/base_widget.js:33 msgid "Drag" msgstr "" @@ -9981,8 +10040,8 @@ msgstr "Date d'échéance basée sur" #: public/js/frappe/form/grid_row_form.js:42 #: public/js/frappe/form/toolbar.js:377 -#: public/js/frappe/views/workspace/workspace.js:814 -#: public/js/frappe/views/workspace/workspace.js:981 +#: public/js/frappe/views/workspace/workspace.js:819 +#: public/js/frappe/views/workspace/workspace.js:986 msgid "Duplicate" msgstr "Dupliquer" @@ -9998,8 +10057,8 @@ msgstr "Nom du filtre en double" msgid "Duplicate Name" msgstr "Nom en double" -#: public/js/frappe/views/workspace/workspace.js:553 -#: public/js/frappe/views/workspace/workspace.js:815 +#: public/js/frappe/views/workspace/workspace.js:558 +#: public/js/frappe/views/workspace/workspace.js:820 msgid "Duplicate Workspace" msgstr "" @@ -10007,7 +10066,7 @@ msgstr "" msgid "Duplicate current row" msgstr "" -#: public/js/frappe/views/workspace/workspace.js:996 +#: public/js/frappe/views/workspace/workspace.js:1001 msgid "Duplicate of {0} named as {1} is created successfully" msgstr "" @@ -10151,8 +10210,8 @@ msgstr "" #: public/js/frappe/form/toolbar.js:672 #: public/js/frappe/views/reports/query_report.js:813 #: public/js/frappe/views/reports/query_report.js:1634 -#: public/js/frappe/views/workspace/workspace.js:454 -#: public/js/frappe/views/workspace/workspace.js:808 +#: public/js/frappe/views/workspace/workspace.js:459 +#: public/js/frappe/views/workspace/workspace.js:813 #: public/js/frappe/widgets/base_widget.js:64 #: public/js/frappe/widgets/chart_widget.js:298 #: public/js/frappe/widgets/number_card_widget.js:331 @@ -10163,7 +10222,7 @@ msgstr "" msgid "Edit" msgstr "modifier" -#: public/js/frappe/list/list_view.js:2006 +#: public/js/frappe/list/list_view.js:2013 msgctxt "Button in list view actions menu" msgid "Edit" msgstr "modifier" @@ -10199,7 +10258,7 @@ msgstr "Modifier HTML Personnalisé" msgid "Edit DocType" msgstr "Modifier le DocType" -#: public/js/frappe/list/list_view.js:1730 +#: public/js/frappe/list/list_view.js:1737 msgctxt "Button in list view menu" msgid "Edit DocType" msgstr "Modifier le DocType" @@ -10284,7 +10343,7 @@ msgctxt "Website Settings" msgid "Edit Values" msgstr "Modifier les valeurs" -#: public/js/frappe/views/workspace/workspace.js:809 +#: public/js/frappe/views/workspace/workspace.js:814 msgid "Edit Workspace" msgstr "" @@ -10484,11 +10543,11 @@ msgctxt "Email Account" msgid "Email Account Name" msgstr "Nom du Compte Email" -#: core/doctype/user/user.py:741 +#: core/doctype/user/user.py:743 msgid "Email Account added multiple times" msgstr "Compte Email ajouté plusieurs fois" -#: email/smtp.py:42 +#: email/smtp.py:43 msgid "Email Account not setup. Please create a new Email Account from Settings > Email Account" msgstr "" @@ -10644,6 +10703,11 @@ msgstr "Destinataire de la Liste d'Attente d'Emails" msgid "Email Queue flushing aborted due to too many failures." msgstr "" +#. Description of a DocType +#: email/doctype/email_queue/email_queue.json +msgid "Email Queue records." +msgstr "" + #. Label of a HTML field in DocType 'Email Template' #: email/doctype/email_template/email_template.json msgctxt "Email Template" @@ -10723,7 +10787,7 @@ msgstr "Option de Synchronisation d'Email" #. Name of a DocType #: email/doctype/email_template/email_template.json -#: public/js/frappe/views/communication.js:92 +#: public/js/frappe/views/communication.js:95 msgid "Email Template" msgstr "Modèle d'email" @@ -10764,7 +10828,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" -#: public/js/frappe/views/communication.js:788 +#: public/js/frappe/views/communication.js:799 msgid "Email not sent to {0} (unsubscribed / disabled)" msgstr "Email pas envoyé à {0} (désabonné / désactivé)" @@ -10782,6 +10846,10 @@ msgctxt "Workflow" msgid "Emails will be sent with next possible workflow actions" msgstr "Les e-mails seront envoyés lors des actions de workflow" +#: website/doctype/web_form/web_form.js:34 +msgid "Embed code copied" +msgstr "" + #. Label of a Check field in DocType 'Google Calendar' #: integrations/doctype/google_calendar/google_calendar.json msgctxt "Google Calendar" @@ -11118,6 +11186,11 @@ msgstr "" 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 +#: integrations/doctype/push_notification_settings/push_notification_settings.json +msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved." +msgstr "" + #. Description of the 'Relay Settings' (Section Break) field in DocType 'Push #. Notification Settings' #: integrations/doctype/push_notification_settings/push_notification_settings.json @@ -11282,7 +11355,7 @@ msgstr "Entrez l'ID et le secret du client dans les paramètres Google." msgid "Enter Code displayed in OTP App." msgstr "" -#: public/js/frappe/views/communication.js:743 +#: public/js/frappe/views/communication.js:754 msgid "Enter Email Recipient(s)" msgstr "Entrez Email du(des) Destinataire(s)" @@ -11754,7 +11827,7 @@ msgstr "Heure d'expiration de l'image du QR Code" msgid "Export" msgstr "Exporter" -#: public/js/frappe/list/list_view.js:2028 +#: public/js/frappe/list/list_view.js:2035 msgctxt "Button in list view actions menu" msgid "Export" msgstr "Exporter" @@ -12199,7 +12272,7 @@ msgctxt "Custom Field" msgid "Field Type" msgstr "Type de Champ" -#: desk/reportview.py:176 +#: desk/reportview.py:182 msgid "Field not permitted in query" msgstr "" @@ -12553,9 +12626,9 @@ msgstr "Fichiers" #: desk/doctype/number_card/number_card.js:205 #: desk/doctype/number_card/number_card.js:333 #: email/doctype/auto_email_report/auto_email_report.js:90 -#: public/js/frappe/list/base_list.js:870 +#: public/js/frappe/list/base_list.js:878 #: public/js/frappe/ui/filters/filter_list.js:134 -#: website/doctype/web_form/web_form.js:187 +#: website/doctype/web_form/web_form.js:197 msgid "Filter" msgstr "Filtre" @@ -13479,7 +13552,7 @@ msgctxt "System Settings" msgid "Friday" msgstr "Vendredi" -#: public/js/frappe/views/communication.js:182 +#: public/js/frappe/views/communication.js:185 #: public/js/frappe/views/inbox/inbox_view.js:70 msgid "From" msgstr "À partir de" @@ -13598,7 +13671,7 @@ msgstr "Une fonction" msgid "Function Based On" msgstr "Fonction basée sur" -#: __init__.py:930 +#: __init__.py:933 msgid "Function {0} is not whitelisted." msgstr "" @@ -13667,6 +13740,10 @@ msgctxt "User" msgid "Gender" msgstr "Sexe" +#: www/contact.html:29 +msgid "General" +msgstr "Général" + #. Title of an Onboarding Step #: custom/onboarding_step/report_builder/report_builder.json msgid "Generate Custom Reports" @@ -13723,7 +13800,7 @@ msgctxt "Auto Repeat" msgid "Get Contacts" msgstr "Obtenir les contacts" -#: website/doctype/web_form/web_form.js:83 +#: website/doctype/web_form/web_form.js:93 msgid "Get Fields" msgstr "Obtenir des champs" @@ -14650,7 +14727,7 @@ msgctxt "Form Tour Step" msgid "Hidden Fields" msgstr "" -#: public/js/frappe/views/workspace/workspace.js:820 +#: public/js/frappe/views/workspace/workspace.js:825 #: public/js/frappe/widgets/base_widget.js:46 #: public/js/frappe/widgets/base_widget.js:176 #: templates/includes/login/login.js:83 @@ -14800,7 +14877,7 @@ msgctxt "Portal Settings" msgid "Hide Standard Menu" msgstr "Masquer le Menu Standard" -#: public/js/frappe/list/list_view.js:1605 +#: public/js/frappe/list/list_view.js:1612 msgid "Hide Tags" msgstr "" @@ -14808,7 +14885,7 @@ msgstr "" msgid "Hide Weekends" msgstr "Masquer les week-ends" -#: public/js/frappe/views/workspace/workspace.js:821 +#: public/js/frappe/views/workspace/workspace.js:826 msgid "Hide Workspace" msgstr "" @@ -14965,7 +15042,7 @@ msgstr "Comment cette devise doit-elle être formatée ? Si ce n’est pas défi msgid "ID" msgstr "" -#: desk/reportview.py:431 public/js/frappe/views/reports/report_view.js:917 +#: desk/reportview.py:435 public/js/frappe/views/reports/report_view.js:917 msgctxt "Label of name column in report" msgid "ID" msgstr "" @@ -15017,9 +15094,9 @@ msgctxt "Comment" msgid "IP Address" msgstr "Adresse IP" -#: public/js/frappe/views/workspace/workspace.js:638 -#: public/js/frappe/views/workspace/workspace.js:966 -#: public/js/frappe/views/workspace/workspace.js:1211 +#: public/js/frappe/views/workspace/workspace.js:643 +#: public/js/frappe/views/workspace/workspace.js:971 +#: public/js/frappe/views/workspace/workspace.js:1216 msgid "Icon" msgstr "Icône" @@ -15216,6 +15293,12 @@ msgctxt "Note" msgid "If enabled, users will be notified every time they login. If not enabled, users will only be notified once." msgstr "Si activé, les utilisateurs seront informés chaque fois qu'ils se connectent. Si ce n'est pas activé, les utilisateurs ne seront informés qu'une seule fois." +#. Description of the 'Default Workspace' (Link) field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "If left empty, the default workspace will be the last visited workspace" +msgstr "" + #. Description of the 'Port' (Data) field in DocType 'Email Domain' #: email/doctype/email_domain/email_domain.json msgctxt "Email Domain" @@ -15402,7 +15485,7 @@ msgstr "Jeton d'Accès Invalide. Veuillez réessayer" msgid "Illegal Document Status for {0}" msgstr "Statut de document non autorisé pour {0}" -#: model/db_query.py:441 model/db_query.py:444 model/db_query.py:1122 +#: model/db_query.py:440 model/db_query.py:443 model/db_query.py:1106 msgid "Illegal SQL Query" msgstr "Requête SQL illégale" @@ -15517,7 +15600,7 @@ msgstr "" msgid "Images" msgstr "" -#: core/doctype/user/user.js:346 +#: core/doctype/user/user.js:356 msgid "Impersonate" msgstr "" @@ -15527,7 +15610,7 @@ msgctxt "Activity Log" msgid "Impersonate" msgstr "" -#: core/doctype/user/user.js:373 +#: core/doctype/user/user.js:383 msgid "Impersonate as {0}" msgstr "" @@ -15554,7 +15637,7 @@ msgstr "Implicite" msgid "Import" msgstr "Importer" -#: public/js/frappe/list/list_view.js:1667 +#: public/js/frappe/list/list_view.js:1674 msgctxt "Button in list view menu" msgid "Import" msgstr "Importer" @@ -15901,7 +15984,7 @@ msgstr "" msgid "Incomplete login details" msgstr "Détails de connexion incomplets" -#: email/smtp.py:103 +#: email/smtp.py:104 msgid "Incorrect Configuration" msgstr "Configuration incorrecte" @@ -15979,9 +16062,9 @@ msgctxt "Workspace" msgid "Indicator Color" msgstr "" -#: public/js/frappe/views/workspace/workspace.js:645 -#: public/js/frappe/views/workspace/workspace.js:973 -#: public/js/frappe/views/workspace/workspace.js:1217 +#: public/js/frappe/views/workspace/workspace.js:650 +#: public/js/frappe/views/workspace/workspace.js:978 +#: public/js/frappe/views/workspace/workspace.js:1222 msgid "Indicator color" msgstr "" @@ -16113,11 +16196,11 @@ msgstr "" msgid "Insufficient Permission for {0}" msgstr "Autorisation Insuffisante Pour {0}" -#: desk/reportview.py:335 +#: desk/reportview.py:339 msgid "Insufficient Permissions for deleting Report" msgstr "" -#: desk/reportview.py:306 +#: desk/reportview.py:310 msgid "Insufficient Permissions for editing Report" msgstr "" @@ -16222,6 +16305,11 @@ msgstr "Intermédiaire" msgid "Internal Server Error" msgstr "Erreur Interne du Serveur" +#. Description of a DocType +#: core/doctype/docshare/docshare.json +msgid "Internal record of document shares" +msgstr "" + #: desk/page/user_profile/user_profile_sidebar.html:22 msgid "Intro" msgstr "" @@ -16302,7 +16390,7 @@ msgstr "Format CSV Invalide" msgid "Invalid Condition: {}" msgstr "" -#: email/smtp.py:132 +#: email/smtp.py:134 msgid "Invalid Credentials" msgstr "Les informations d'identification invalides" @@ -16354,7 +16442,7 @@ msgstr "" msgid "Invalid Mail Server. Please rectify and try again." msgstr "Serveur Mail Invalide. Veuillez corriger et réesayer" -#: model/naming.py:93 +#: model/naming.py:94 msgid "Invalid Naming Series: {}" msgstr "" @@ -16366,7 +16454,7 @@ msgstr "" msgid "Invalid Option" msgstr "Option invalide" -#: email/smtp.py:102 +#: email/smtp.py:103 msgid "Invalid Outgoing Mail Server or Port: {0}" msgstr "" @@ -16378,7 +16466,7 @@ msgstr "Format de Sortie Invalide" msgid "Invalid Parameters." msgstr "" -#: core/doctype/user/user.py:1227 www/update-password.html:121 +#: core/doctype/user/user.py:1229 www/update-password.html:121 #: www/update-password.html:142 www/update-password.html:144 #: www/update-password.html:245 msgid "Invalid Password" @@ -16417,7 +16505,7 @@ msgstr "Nom d'Utilisateur ou Mot de Passe Invalide. Veuillez corriger et réessa msgid "Invalid Webhook Secret" msgstr "" -#: desk/reportview.py:161 +#: desk/reportview.py:167 msgid "Invalid aggregate function" msgstr "" @@ -16458,11 +16546,11 @@ msgstr "Filtre non valide: {0}" msgid "Invalid json added in the custom options: {0}" msgstr "Json non valide ajouté dans les options personnalisées: {0}" -#: model/naming.py:444 +#: model/naming.py:466 msgid "Invalid name type (integer) for varchar name column" msgstr "" -#: model/naming.py:54 +#: model/naming.py:55 msgid "Invalid naming series {}: dot (.) missing" msgstr "" @@ -17088,6 +17176,16 @@ msgctxt "Button in kanban view menu" msgid "Kanban Settings" msgstr "" +#. Description of a DocType +#: core/doctype/activity_log/activity_log.json +msgid "Keep track of all update feeds" +msgstr "" + +#. Description of a DocType +#: core/doctype/communication/communication.json +msgid "Keeps track of all communications" +msgstr "" + #. Label of a Data field in DocType 'DefaultValue' #: core/doctype/defaultvalue/defaultvalue.json msgctxt "DefaultValue" @@ -18318,7 +18416,7 @@ msgctxt "Web Form" msgid "List Setting Message" msgstr "" -#: public/js/frappe/list/list_view.js:1747 +#: public/js/frappe/list/list_view.js:1754 msgctxt "Button in list view menu" msgid "List Settings" msgstr "Paramètres de liste" @@ -18362,6 +18460,11 @@ msgctxt "Web Page" msgid "List as [{\"label\": _(\"Jobs\"), \"route\":\"jobs\"}]" msgstr "Liste comme [{ \"label\": _ ( \"Jobs\"), \"route\": \"emplois\"}]" +#. Description of a DocType +#: core/doctype/patch_log/patch_log.json +msgid "List of patches executed" +msgstr "" + #: public/js/frappe/ui/toolbar/search_utils.js:542 msgid "Lists" msgstr "" @@ -18386,7 +18489,7 @@ msgstr "" #: core/page/permission_manager/permission_manager.js:165 #: public/js/frappe/form/controls/multicheck.js:13 #: public/js/frappe/form/linked_with.js:13 -#: public/js/frappe/list/base_list.js:482 +#: public/js/frappe/list/base_list.js:490 #: public/js/frappe/list/list_view.js:333 public/js/frappe/ui/listing.html:16 #: public/js/frappe/views/reports/query_report.js:1015 msgid "Loading" @@ -18551,7 +18654,7 @@ msgstr "" msgid "Login and view in Browser" msgstr "Connectez-vous et affichez la page dans le navigateur" -#: website/doctype/web_form/web_form.js:357 +#: website/doctype/web_form/web_form.js:367 msgid "Login is required to see web form list view. Enable {0} to see list settings" msgstr "" @@ -18615,7 +18718,7 @@ msgctxt "Activity Log" msgid "Logout" msgstr "Déconnecté" -#: core/doctype/user/user.js:173 +#: core/doctype/user/user.js:183 msgid "Logout All Sessions" msgstr "Déconnecter toutes les sessions" @@ -19168,7 +19271,7 @@ msgstr "La combinaison n'est possible que de Groupe à Groupe ou Nœud-Feuille #: core/doctype/data_import/data_import.js:489 #: public/js/frappe/ui/messages.js:175 -#: public/js/frappe/views/communication.js:111 www/message.html:3 +#: public/js/frappe/views/communication.js:114 www/message.html:3 #: www/message.html:25 msgid "Message" msgstr "" @@ -19198,7 +19301,7 @@ msgctxt "Communication" msgid "Message" msgstr "" -#: __init__.py:614 public/js/frappe/ui/messages.js:265 +#: __init__.py:617 public/js/frappe/ui/messages.js:265 msgctxt "Default title of the message dialog" msgid "Message" msgstr "" @@ -19288,7 +19391,7 @@ msgctxt "Notification" msgid "Message Type" msgstr "" -#: public/js/frappe/views/communication.js:922 +#: public/js/frappe/views/communication.js:933 msgid "Message clipped" msgstr "Message coupé" @@ -20070,7 +20173,7 @@ msgstr "Doit être de type \"Joindre l'Image\"" msgid "Must have report permission to access this report." msgstr "Doit avoir l'autorisation d'accéder aux rapport dont celui-ci." -#: core/doctype/report/report.py:145 +#: core/doctype/report/report.py:148 msgid "Must specify a Query to run" msgstr "Vous devez spécifier une Requête à exécuter" @@ -20156,7 +20259,7 @@ msgstr "" msgid "Name already taken, please set a new name" msgstr "" -#: model/naming.py:458 +#: model/naming.py:480 msgid "Name cannot contain special characters like {0}" msgstr "Le Nom ne peut contenir des caractères spéciaux tels que {0}" @@ -20168,7 +20271,7 @@ msgstr "Nom du Type de Document (DocType) auquel vous souhaitez que ce champ soi msgid "Name of the new Print Format" msgstr "Nom du nouveau Format d'Impression" -#: model/naming.py:453 +#: model/naming.py:475 msgid "Name of {0} cannot be {1}" msgstr "Nom de {0} ne peut pas être {1}" @@ -20228,7 +20331,7 @@ msgctxt "Document Naming Settings" msgid "Naming Series" msgstr "Masque de numérotation" -#: model/naming.py:243 +#: model/naming.py:244 msgid "Naming Series mandatory" msgstr "Masque de numérotation obligatoire" @@ -20414,7 +20517,7 @@ msgstr "" msgid "New Mention on {0}" msgstr "Nouvelle mention sur {0}" -#: www/contact.py:50 +#: www/contact.py:59 msgid "New Message from Website Contact Page" msgstr "Nouveau Message depuis la Page Contact du Site Web" @@ -20444,7 +20547,7 @@ msgstr "" msgid "New Onboarding" msgstr "" -#: core/doctype/user/user.js:161 www/update-password.html:19 +#: core/doctype/user/user.js:171 www/update-password.html:19 msgid "New Password" msgstr "Nouveau Mot de Passe" @@ -20474,7 +20577,7 @@ msgstr "" msgid "New Workflow Name" msgstr "" -#: public/js/frappe/views/workspace/workspace.js:1178 +#: public/js/frappe/views/workspace/workspace.js:1183 msgid "New Workspace" msgstr "" @@ -20534,7 +20637,7 @@ msgstr "Nouveau {0}: {1}" msgid "New {} releases for the following apps are available" msgstr "De nouvelles {} versions pour les applications suivantes sont disponibles" -#: core/doctype/user/user.py:804 +#: core/doctype/user/user.py:806 msgid "Newly created user {0} has no roles enabled." msgstr "" @@ -20803,7 +20906,7 @@ msgstr "" msgid "No Letterhead" msgstr "" -#: model/naming.py:435 +#: model/naming.py:457 msgid "No Name Specified for {0}" msgstr "Aucun nom spécifié pour {0}" @@ -20851,7 +20954,7 @@ msgstr "Aucun résultat" msgid "No Results found" msgstr "Aucun résultat trouvs" -#: core/doctype/user/user.py:805 +#: core/doctype/user/user.py:807 msgid "No Roles Specified" msgstr "" @@ -20859,7 +20962,7 @@ msgstr "" msgid "No Select Field Found" msgstr "" -#: desk/reportview.py:580 +#: desk/reportview.py:584 msgid "No Tags" msgstr "Aucune balise" @@ -20891,7 +20994,7 @@ msgstr "Aucun changement dans le document" msgid "No changes made because old and new name are the same." msgstr "" -#: public/js/frappe/views/workspace/workspace.js:1483 +#: public/js/frappe/views/workspace/workspace.js:1488 msgid "No changes made on the page" msgstr "" @@ -21001,7 +21104,7 @@ msgctxt "SMS Log" msgid "No of Sent SMS" msgstr "" -#: __init__.py:1118 client.py:109 client.py:151 +#: __init__.py:1121 client.py:109 client.py:151 msgid "No permission for {0}" msgstr "Pas d'autorisation pour {0}" @@ -21010,7 +21113,7 @@ msgctxt "{0} = verb, {1} = object" msgid "No permission to '{0}' {1}" msgstr "Pas d'autorisation pour '{0}' {1}" -#: model/db_query.py:935 +#: model/db_query.py:924 msgid "No permission to read {0}" msgstr "Pas d'autorisation pour lire {0}" @@ -21038,7 +21141,7 @@ msgstr "Aucun enregistrement ne sera exporté" msgid "No template found at path: {0}" msgstr "Aucun modèle trouvé au chemin: {0}" -#: public/js/frappe/form/controls/multiselect_list.js:226 +#: public/js/frappe/form/controls/multiselect_list.js:246 msgid "No values to show" msgstr "" @@ -21062,11 +21165,7 @@ msgstr "" msgid "No {0} mail" msgstr "Pas de courrier {0}" -#: public/js/form_builder/utils.js:117 -msgid "No." -msgstr "" - -#: public/js/frappe/form/grid_row.js:252 +#: public/js/form_builder/utils.js:117 public/js/frappe/form/grid_row.js:252 msgctxt "Title of the 'row number' column" msgid "No." msgstr "" @@ -21112,7 +21211,7 @@ msgctxt "Recorder Query" msgid "Normalized Query" msgstr "" -#: core/doctype/user/user.py:1010 templates/includes/login/login.js:258 +#: core/doctype/user/user.py:1012 templates/includes/login/login.js:258 #: utils/oauth.py:265 msgid "Not Allowed" msgstr "Non Autorisé" @@ -21161,10 +21260,10 @@ msgctxt "DocField" msgid "Not Nullable" msgstr "" -#: __init__.py:1014 app.py:353 desk/calendar.py:26 geo/utils.py:97 +#: __init__.py:1017 app.py:353 desk/calendar.py:26 geo/utils.py:97 #: public/js/frappe/web_form/webform_script.js:15 #: website/doctype/web_form/web_form.py:602 -#: website/page_renderers/not_permitted_page.py:20 www/login.py:174 +#: website/page_renderers/not_permitted_page.py:20 www/login.py:178 #: www/qrcode.py:22 www/qrcode.py:25 www/qrcode.py:37 msgid "Not Permitted" msgstr "Non Autorisé" @@ -21221,7 +21320,7 @@ msgstr "Non Défini" msgid "Not a valid Comma Separated Value (CSV File)" msgstr "Valeurs Séparées par des Virgules non valides (Fichier CSV)" -#: core/doctype/user/user.py:232 +#: core/doctype/user/user.py:234 msgid "Not a valid User Image." msgstr "Image utilisateur non valide." @@ -21274,7 +21373,7 @@ 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'." #: api/v1.py:88 api/v1.py:93 -#: core/doctype/system_settings/system_settings.py:208 handler.py:109 +#: core/doctype/system_settings/system_settings.py:209 handler.py:109 #: public/js/frappe/request.js:157 public/js/frappe/request.js:167 #: public/js/frappe/request.js:172 #: public/js/frappe/views/kanban/kanban_board.bundle.js:68 @@ -21325,7 +21424,7 @@ msgstr "Remarque: par défaut, les e-mails pour les sauvegardes ayant échoué s msgid "Note: Changing the Page Name will break previous URL to this page." msgstr "Remarque : Changer le Nom de la Page va détruire le précédent lien URL vers cette page." -#: core/doctype/user/user.js:25 +#: core/doctype/user/user.js:35 msgid "Note: Etc timezones have their signs reversed." msgstr "" @@ -21343,7 +21442,7 @@ msgctxt "System Settings" msgid "Note: Multiple sessions will be allowed in case of mobile device" msgstr "Remarque : Plusieurs sessions seront autorisées en cas d'appareil mobile" -#: core/doctype/user/user.js:361 +#: core/doctype/user/user.js:371 msgid "Note: This will be shared with user." msgstr "" @@ -21590,7 +21689,7 @@ msgstr "" msgid "Number of attachment fields are more than {}, limit updated to {}." msgstr "" -#: core/doctype/system_settings/system_settings.py:161 +#: core/doctype/system_settings/system_settings.py:162 msgid "Number of backups must be greater than zero." msgstr "" @@ -21792,7 +21891,7 @@ msgctxt "Webhook" msgid "On checking this option, URL will be treated like a jinja template string" msgstr "" -#: public/js/frappe/views/communication.js:932 +#: public/js/frappe/views/communication.js:943 msgid "On {0}, {1} wrote:" msgstr "" @@ -21859,7 +21958,7 @@ msgstr "Code de Mot de Passe Unique (OTP) à partir de {}" msgid "One of" msgstr "Un des" -#: public/js/frappe/views/workspace/workspace.js:1318 +#: public/js/frappe/views/workspace/workspace.js:1323 msgid "One of the child page with name {0} already exist in {1} Section. Please update the name of the child page first before moving" msgstr "" @@ -21875,7 +21974,7 @@ msgstr "Seul l'Administrateur peut supprimer la File d'Attente d' Emails" msgid "Only Administrator can edit" msgstr "Seul l'Administrateur peut modifier" -#: core/doctype/report/report.py:72 +#: core/doctype/report/report.py:75 msgid "Only Administrator can save a standard report. Please rename and save." msgstr "Seul l'Administrateur peut enregistrer un rapport standard. Merci de renommer et sauvegarder." @@ -21903,7 +22002,7 @@ msgstr "Envoyer Uniquement les Enregistrements Mis à Jour au cours des X Derni msgid "Only Workspace Manager can edit public workspaces" msgstr "" -#: public/js/frappe/views/workspace/workspace.js:542 +#: public/js/frappe/views/workspace/workspace.js:547 msgid "Only Workspace Manager can sort or edit this page" msgstr "" @@ -21933,11 +22032,11 @@ msgstr "Seuls les champs obligatoires sont nécessaires pour les nouveaux enregi msgid "Only one {0} can be set as primary." msgstr "Un seul {0} peut être défini comme primaire." -#: desk/reportview.py:332 +#: desk/reportview.py:336 msgid "Only reports of type Report Builder can be deleted" msgstr "" -#: desk/reportview.py:303 +#: desk/reportview.py:307 msgid "Only reports of type Report Builder can be edited" msgstr "" @@ -21965,7 +22064,7 @@ msgstr "" msgid "Open" msgstr "Ouvert" -#: desk/doctype/todo/todo_list.js:20 +#: desk/doctype/todo/todo_list.js:14 msgctxt "Access" msgid "Open" msgstr "Ouvert" @@ -22062,7 +22161,7 @@ msgstr "Ouvrir un élément de la liste" msgid "Open your authentication app on your mobile phone." msgstr "Ouvrez votre application d'authentification sur votre téléphone portable." -#: desk/doctype/todo/todo_list.js:23 +#: desk/doctype/todo/todo_list.js:17 #: public/js/frappe/form/templates/form_links.html:18 #: public/js/frappe/ui/toolbar/search_utils.js:277 #: public/js/frappe/ui/toolbar/search_utils.js:278 @@ -22566,7 +22665,7 @@ msgctxt "Form Tour" msgid "Page Route" msgstr "" -#: public/js/frappe/views/workspace/workspace.js:1505 +#: public/js/frappe/views/workspace/workspace.js:1510 msgid "Page Saved Successfully" msgstr "" @@ -22607,7 +22706,12 @@ msgstr "" msgid "Page not found" msgstr "Page non trouvée" -#: public/js/frappe/views/workspace/workspace.js:1305 +#. Description of a DocType +#: website/doctype/web_page/web_page.json +msgid "Page to show on the website\n" +msgstr "" + +#: public/js/frappe/views/workspace/workspace.js:1310 msgid "Page with title {0} already exist." msgstr "" @@ -22625,9 +22729,9 @@ msgid "Parameter" msgstr "Paramètre" #: public/js/frappe/model/model.js:132 -#: public/js/frappe/views/workspace/workspace.js:612 -#: public/js/frappe/views/workspace/workspace.js:940 -#: public/js/frappe/views/workspace/workspace.js:1187 +#: public/js/frappe/views/workspace/workspace.js:617 +#: public/js/frappe/views/workspace/workspace.js:945 +#: public/js/frappe/views/workspace/workspace.js:1192 msgid "Parent" msgstr "" @@ -22749,8 +22853,8 @@ msgctxt "Contact" msgid "Passive" msgstr "Passif" -#: core/doctype/user/user.js:148 core/doctype/user/user.js:195 -#: core/doctype/user/user.js:215 desk/page/setup_wizard/setup_wizard.js:474 +#: core/doctype/user/user.js:158 core/doctype/user/user.js:205 +#: core/doctype/user/user.js:225 desk/page/setup_wizard/setup_wizard.js:474 #: www/login.html:21 msgid "Password" msgstr "Mot de Passe" @@ -22792,11 +22896,11 @@ msgctxt "Web Form Field" msgid "Password" msgstr "Mot de Passe" -#: core/doctype/user/user.py:1073 +#: core/doctype/user/user.py:1075 msgid "Password Email Sent" msgstr "" -#: core/doctype/user/user.py:452 +#: core/doctype/user/user.py:454 msgid "Password Reset" msgstr "Réinitialisation du Mot de Passe" @@ -22832,7 +22936,7 @@ msgstr "" msgid "Password not found for {0} {1} {2}" msgstr "" -#: core/doctype/user/user.py:1072 +#: core/doctype/user/user.py:1074 msgid "Password reset instructions have been sent to your email" msgstr "Les Instructions de réinitialisation du mot de passe ont été envoyés à votre adresse Email" @@ -22844,7 +22948,7 @@ msgstr "" msgid "Password size exceeded the maximum allowed size" msgstr "" -#: core/doctype/user/user.py:868 +#: core/doctype/user/user.py:870 msgid "Password size exceeded the maximum allowed size." msgstr "" @@ -22852,7 +22956,7 @@ msgstr "" msgid "Passwords do not match" msgstr "" -#: core/doctype/user/user.js:181 +#: core/doctype/user/user.js:191 msgid "Passwords do not match!" msgstr "Les mots de passe ne correspondent pas!" @@ -23087,7 +23191,7 @@ msgid "Permission Type" msgstr "" #. Label of a Card Break in the Users Workspace -#: core/doctype/user/user.js:123 core/doctype/user/user.js:132 +#: core/doctype/user/user.js:133 core/doctype/user/user.js:142 #: core/page/permission_manager/permission_manager.js:214 #: core/workspace/users/users.json msgid "Permissions" @@ -23321,7 +23425,7 @@ msgstr "S'il vous plaît ajouter un sujet à votre email" msgid "Please add a valid comment." msgstr "Veuillez ajouter un commentaire valide." -#: core/doctype/user/user.py:1055 +#: core/doctype/user/user.py:1057 msgid "Please ask your administrator to verify your sign-up" msgstr "Veuillez demander à votre administrateur de vérifier votre inscription" @@ -23353,11 +23457,11 @@ msgstr "Veuillez vérifier les valeurs de filtre définies pour le tableau de bo msgid "Please check the value of \"Fetch From\" set for field {0}" msgstr "Veuillez vérifier la valeur de "Extraire depuis" définie pour le champ {0}" -#: core/doctype/user/user.py:1053 +#: core/doctype/user/user.py:1055 msgid "Please check your email for verification" msgstr "Veuillez vérifier votre email pour validation" -#: email/smtp.py:131 +#: email/smtp.py:133 msgid "Please check your email login credentials." msgstr "" @@ -23405,7 +23509,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" -#: core/doctype/system_settings/system_settings.py:154 +#: core/doctype/system_settings/system_settings.py:155 msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login." msgstr "" @@ -23541,7 +23645,7 @@ msgstr "Veuillez d’abord sélectionner un DocType" msgid "Please select Entity Type first" msgstr "Veuillez d'abord sélectionner le type d'entité" -#: core/doctype/system_settings/system_settings.py:104 +#: core/doctype/system_settings/system_settings.py:105 msgid "Please select Minimum Password Score" msgstr "Veuillez sélectionner le Score Minimum du Mot de Passe" @@ -23569,7 +23673,7 @@ msgstr "Veuillez sélectionner un filtre de date valide" msgid "Please select applicable Doctypes" msgstr "Veuillez sélectionner les types de docteurs applicables" -#: model/db_query.py:1134 +#: model/db_query.py:1118 msgid "Please select atleast 1 column from {0} to sort/group" msgstr "Veuillez sélectionner au moins 1 colonne de {0} pour trier / grouper" @@ -23612,7 +23716,7 @@ msgstr "Veuillez définir des filtres" msgid "Please set filters value in Report Filter table." msgstr "Veuillez définir la valeur des filtres dans le Tableau des Filtres de Rapport." -#: model/naming.py:528 +#: model/naming.py:550 msgid "Please set the document name" msgstr "" @@ -23624,7 +23728,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." -#: core/doctype/system_settings/system_settings.py:117 +#: core/doctype/system_settings/system_settings.py:118 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" @@ -23636,7 +23740,7 @@ msgstr "Veuillez d'abord configurer un message" msgid "Please setup default Email Account from Settings > Email Account" msgstr "" -#: core/doctype/user/user.py:403 +#: core/doctype/user/user.py:405 msgid "Please setup default outgoing Email Account from Settings > Email Account" msgstr "" @@ -23888,7 +23992,7 @@ msgstr "" msgid "Preparing Report" msgstr "Rapport de préparation" -#: public/js/frappe/views/communication.js:400 +#: public/js/frappe/views/communication.js:411 msgid "Prepend the template to the email message" msgstr "" @@ -24045,7 +24149,7 @@ msgstr "" msgid "Print" msgstr "Impression" -#: public/js/frappe/list/list_view.js:1912 +#: public/js/frappe/list/list_view.js:1919 msgctxt "Button in list view actions menu" msgid "Print" msgstr "Impression" @@ -24214,7 +24318,7 @@ msgctxt "DocField" msgid "Print Hide If No Value" msgstr "Cacher à l’Impression si Aucune Valeur" -#: public/js/frappe/views/communication.js:153 +#: public/js/frappe/views/communication.js:156 msgid "Print Language" msgstr "Langue d’Impression" @@ -24466,6 +24570,11 @@ msgctxt "Module Def" msgid "Property Setter" msgstr "Initialisateur de Propriété" +#. Description of a DocType +#: custom/doctype/property_setter/property_setter.json +msgid "Property Setter overrides a standard DocType or Field property" +msgstr "" + #. Label of a Data field in DocType 'Property Setter' #: custom/doctype/property_setter/property_setter.json msgctxt "Property Setter" @@ -24504,9 +24613,9 @@ msgid "Provider Name" msgstr "Nom du fournisseur" #: desk/doctype/note/note_list.js:6 public/js/frappe/views/interaction.js:78 -#: public/js/frappe/views/workspace/workspace.js:619 -#: public/js/frappe/views/workspace/workspace.js:947 -#: public/js/frappe/views/workspace/workspace.js:1193 +#: public/js/frappe/views/workspace/workspace.js:624 +#: public/js/frappe/views/workspace/workspace.js:952 +#: public/js/frappe/views/workspace/workspace.js:1198 msgid "Public" msgstr "" @@ -24529,7 +24638,7 @@ msgid "Public" msgstr "" #: website/doctype/blog_post/blog_post.js:36 -#: website/doctype/web_form/web_form.js:76 +#: website/doctype/web_form/web_form.js:86 msgid "Publish" msgstr "Publier" @@ -24973,6 +25082,12 @@ msgctxt "Blog Settings" msgid "Rate Limits" msgstr "" +#. Label of a Int field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Rate limit for email link login" +msgstr "" + #. Label of a Int field in DocType 'Communication' #: core/doctype/communication/communication.json msgctxt "Communication" @@ -25049,7 +25164,7 @@ msgstr "" #: core/doctype/communication/communication.js:268 #: public/js/frappe/form/footer/form_timeline.js:587 -#: public/js/frappe/views/communication.js:336 +#: public/js/frappe/views/communication.js:347 msgid "Re: {0}" msgstr "" @@ -25851,11 +25966,11 @@ msgid "Refreshing" msgstr "" #: core/doctype/system_settings/system_settings.js:52 -#: core/doctype/user/user.js:340 desk/page/setup_wizard/setup_wizard.js:204 +#: core/doctype/user/user.js:350 desk/page/setup_wizard/setup_wizard.js:204 msgid "Refreshing..." msgstr "Actualisation..." -#: core/doctype/user/user.py:1017 +#: core/doctype/user/user.py:1019 msgid "Registered but disabled" msgstr "Enregistré mais Désactivé" @@ -26222,7 +26337,7 @@ msgctxt "Onboarding Step" msgid "Report Description" msgstr "Description du rapport" -#: core/doctype/report/report.py:145 +#: core/doctype/report/report.py:148 msgid "Report Document Error" msgstr "Signaler une erreur de document" @@ -26372,7 +26487,7 @@ msgstr "Le rapport avec plus de 10 colonnes a une meilleure apparence en mode Pa msgid "Report {0}" msgstr "Rapport {0}" -#: desk/reportview.py:339 +#: desk/reportview.py:343 msgid "Report {0} deleted" msgstr "" @@ -26380,7 +26495,7 @@ msgstr "" msgid "Report {0} is disabled" msgstr "Rapport {0} est désactivé" -#: desk/reportview.py:316 +#: desk/reportview.py:320 msgid "Report {0} saved" msgstr "" @@ -26406,6 +26521,16 @@ msgstr "Ecrans principaux et Rapports" msgid "Reports already in Queue" msgstr "Rapports déjà en file d'attente" +#. Description of a DocType +#: core/doctype/user/user.json +msgid "Represents a User in the system." +msgstr "" + +#. Description of a DocType +#: 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 "" + #: www/me.html:66 msgid "Request Account Deletion" msgstr "" @@ -26542,7 +26667,7 @@ msgstr "" msgid "Reset Fields" msgstr "Réinitialisation des champs" -#: core/doctype/user/user.js:155 core/doctype/user/user.js:158 +#: core/doctype/user/user.js:165 core/doctype/user/user.js:168 msgid "Reset LDAP Password" msgstr "Réinitialiser le mot de passe LDAP" @@ -26550,11 +26675,11 @@ msgstr "Réinitialiser le mot de passe LDAP" msgid "Reset Layout" msgstr "" -#: core/doctype/user/user.js:206 +#: core/doctype/user/user.js:216 msgid "Reset OTP Secret" msgstr "Réinitialiser le Secret OTP" -#: core/doctype/user/user.js:139 www/login.html:179 www/me.html:35 +#: core/doctype/user/user.js:149 www/login.html:179 www/me.html:35 #: www/me.html:44 www/update-password.html:3 www/update-password.html:9 msgid "Reset Password" msgstr "Réinitialiser Mot de Passe" @@ -27003,7 +27128,7 @@ msgstr "Autorisations du Rôle" msgid "Role Permissions Manager" msgstr "Gestionnaire d’Autorisations du Rôle" -#: public/js/frappe/list/list_view.js:1689 +#: public/js/frappe/list/list_view.js:1696 msgctxt "Button in list view menu" msgid "Role Permissions Manager" msgstr "Gestionnaire d’Autorisations du Rôle" @@ -27049,7 +27174,7 @@ msgctxt "DocPerm" msgid "Role and Level" msgstr "Rôle et Niveau" -#: core/doctype/user/user.py:348 +#: core/doctype/user/user.py:350 msgid "Role has been set as per the user type {0}" msgstr "" @@ -27636,7 +27761,7 @@ msgstr "Samedi" #: public/js/frappe/views/kanban/kanban_view.js:340 #: public/js/frappe/views/reports/query_report.js:1802 #: public/js/frappe/views/reports/report_view.js:1628 -#: public/js/frappe/views/workspace/workspace.js:493 +#: public/js/frappe/views/workspace/workspace.js:498 #: public/js/frappe/widgets/base_widget.js:140 #: public/js/frappe/widgets/quick_list_widget.js:117 #: public/js/print_format_builder/print_format_builder.bundle.js:15 @@ -27650,7 +27775,7 @@ msgctxt "Notification" msgid "Save" msgstr "Sauvegarder" -#: core/doctype/user/user.js:311 +#: core/doctype/user/user.js:321 msgid "Save API Secret: {0}" msgstr "" @@ -27698,7 +27823,7 @@ msgstr "Enregistré" #: public/js/frappe/list/list_settings.js:40 #: public/js/frappe/views/kanban/kanban_settings.js:47 -#: public/js/frappe/views/workspace/workspace.js:505 +#: public/js/frappe/views/workspace/workspace.js:510 msgid "Saving" msgstr "En Cours d'Enregistrement" @@ -27737,7 +27862,7 @@ msgstr "" msgid "Schedule Newsletter" msgstr "" -#: public/js/frappe/views/communication.js:82 +#: public/js/frappe/views/communication.js:85 msgid "Schedule Send At" msgstr "" @@ -27943,6 +28068,11 @@ msgctxt "Server Script" msgid "Script Type" msgstr "Type de Script" +#. Description of a DocType +#: website/doctype/website_script/website_script.json +msgid "Script to attach to all web pages." +msgstr "" + #. Label of a Card Break in the Build Workspace #: core/workspace/build/build.json msgid "Scripting" @@ -28232,8 +28362,8 @@ msgstr "Sélectionner" msgid "Select All" msgstr "" -#: public/js/frappe/views/communication.js:162 -#: public/js/frappe/views/communication.js:567 +#: public/js/frappe/views/communication.js:165 +#: public/js/frappe/views/communication.js:578 #: public/js/frappe/views/interaction.js:93 #: public/js/frappe/views/interaction.js:155 msgid "Select Attachments" @@ -28384,7 +28514,7 @@ msgid "Select Page" msgstr "" #: printing/page/print_format_builder_beta/print_format_builder_beta.js:68 -#: public/js/frappe/views/communication.js:145 +#: public/js/frappe/views/communication.js:148 msgid "Select Print Format" msgstr "Sélectionner le Format d'Impression" @@ -28631,7 +28761,7 @@ msgctxt "Print Settings" msgid "Send Print as PDF" msgstr "Envoyer Imprimer en PDF" -#: public/js/frappe/views/communication.js:135 +#: public/js/frappe/views/communication.js:138 msgid "Send Read Receipt" msgstr "Envoyer Accusé de Réception" @@ -28717,7 +28847,7 @@ msgstr "Envoyer une demande à cette adresse courriel" msgid "Send login link" msgstr "" -#: public/js/frappe/views/communication.js:129 +#: public/js/frappe/views/communication.js:132 msgid "Send me a copy" msgstr "M'Envoyer Une Copie" @@ -29046,7 +29176,7 @@ msgctxt "System Settings" msgid "Session Expiry (idle timeout)" msgstr "" -#: core/doctype/system_settings/system_settings.py:111 +#: core/doctype/system_settings/system_settings.py:112 msgid "Session Expiry must be in format {0}" msgstr "Expiration de Session doit être au format {0}" @@ -29078,7 +29208,7 @@ msgstr "Définir des filtres dynamiques" #: desk/doctype/dashboard_chart/dashboard_chart.js:381 #: desk/doctype/number_card/number_card.js:277 -#: website/doctype/web_form/web_form.js:259 +#: website/doctype/web_form/web_form.js:269 msgid "Set Filters" msgstr "Définir les filtres" @@ -29138,7 +29268,7 @@ msgctxt "Role Permission for Page and Report" msgid "Set Role For" msgstr "Définir le Rôle Pour" -#: core/doctype/user/user.js:116 +#: core/doctype/user/user.js:126 #: core/page/permission_manager/permission_manager.js:65 msgid "Set User Permissions" msgstr "Définir les Autorisations des Utilisateurs" @@ -29262,7 +29392,7 @@ msgstr "Configuration de votre système" #: integrations/workspace/integrations/integrations.json #: public/js/frappe/form/templates/print_layout.html:25 #: public/js/frappe/ui/toolbar/toolbar.js:264 -#: public/js/frappe/views/workspace/workspace.js:521 +#: public/js/frappe/views/workspace/workspace.js:526 msgid "Settings" msgstr "Paramètres" @@ -29297,6 +29427,21 @@ msgctxt "Navbar Settings" msgid "Settings Dropdown" msgstr "Liste déroulante des paramètres" +#. Description of a DocType +#: website/doctype/contact_us_settings/contact_us_settings.json +msgid "Settings for Contact Us Page" +msgstr "" + +#. Description of a DocType +#: website/doctype/about_us_settings/about_us_settings.json +msgid "Settings for the About Us Page" +msgstr "" + +#. Description of a DocType +#: website/doctype/blog_settings/blog_settings.json +msgid "Settings to control blog categories and interactions like comments and likes" +msgstr "" + #. Label of a Card Break in the Website Workspace #: public/js/frappe/ui/toolbar/search_utils.js:567 #: website/workspace/website/website.json @@ -29665,7 +29810,7 @@ msgid "Show Sidebar" msgstr "Afficher la Barre Latérale" #: public/js/frappe/list/list_sidebar.html:66 -#: public/js/frappe/list/list_view.js:1605 +#: public/js/frappe/list/list_view.js:1612 msgid "Show Tags" msgstr "Voir les étiquettes" @@ -29821,7 +29966,7 @@ msgctxt "Email Group" msgid "Sign Up and Confirmation" msgstr "" -#: core/doctype/user/user.py:1010 +#: core/doctype/user/user.py:1012 msgid "Sign Up is disabled" msgstr "L'inscription est désactivée" @@ -30023,6 +30168,11 @@ msgctxt "Website Slideshow" msgid "Slideshow Name" msgstr "Nom du Diaporama" +#. Description of a DocType +#: website/doctype/website_slideshow/website_slideshow.json +msgid "Slideshow like display for the website" +msgstr "" + #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' #: custom/doctype/custom_field/custom_field.json msgctxt "Custom Field" @@ -30233,7 +30383,7 @@ msgstr "" msgid "Special Characters are not allowed" msgstr "Les Caractères Spéciaux ne sont pas autorisés" -#: model/naming.py:60 +#: model/naming.py:61 msgid "Special Characters except '-', '#', '.', '/', '{{' and '}}' not allowed in naming series {0}" msgstr "Caractères spéciaux sauf "-", "#", ".", "/", "{{" Et "}}" non autorisés dans les masques de numérotation {0}" @@ -30243,7 +30393,7 @@ msgctxt "Website Settings" msgid "Splash Image" msgstr "" -#: desk/reportview.py:378 public/js/frappe/web_form/web_form_list.js:175 +#: desk/reportview.py:382 public/js/frappe/web_form/web_form_list.js:175 #: templates/print_formats/standard_macros.html:44 msgid "Sr" msgstr "" @@ -30318,11 +30468,11 @@ msgstr "Le Format d'Impression Standard ne peut pas être mis à jour" msgid "Standard Print Style cannot be changed. Please duplicate to edit." msgstr "Le style d'impression standard ne peut pas être modifié. Veuillez le copier pour le modifier." -#: desk/reportview.py:329 +#: desk/reportview.py:333 msgid "Standard Reports cannot be deleted" msgstr "" -#: desk/reportview.py:300 +#: desk/reportview.py:304 msgid "Standard Reports cannot be edited" msgstr "" @@ -30332,7 +30482,7 @@ msgctxt "Portal Settings" msgid "Standard Sidebar Menu" msgstr "Menu Standard de la Barre Latérale" -#: website/doctype/web_form/web_form.js:30 +#: website/doctype/web_form/web_form.js:40 msgid "Standard Web Forms can not be modified, duplicate the Web Form instead." msgstr "" @@ -30798,7 +30948,7 @@ msgctxt "Website Settings" msgid "Subdomain" msgstr "Sous-domaine" -#: public/js/frappe/views/communication.js:104 +#: public/js/frappe/views/communication.js:107 #: public/js/frappe/views/inbox/inbox_view.js:63 msgid "Subject" msgstr "Sujet" @@ -30894,7 +31044,7 @@ msgstr "" msgid "Submit" msgstr "Valider" -#: public/js/frappe/list/list_view.js:1979 +#: public/js/frappe/list/list_view.js:1986 msgctxt "Button in list view actions menu" msgid "Submit" msgstr "Valider" @@ -30991,7 +31141,7 @@ msgstr "Validez ce document pour terminer cette étape." msgid "Submit this document to confirm" msgstr "Valider ce document pour confirmer" -#: public/js/frappe/list/list_view.js:1984 +#: public/js/frappe/list/list_view.js:1991 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "Valider {0} documents ?" @@ -31171,7 +31321,7 @@ msgstr "" msgid "Successfully updated {0} out of {1} records." msgstr "" -#: core/doctype/user/user.py:725 +#: core/doctype/user/user.py:727 msgid "Suggested Username: {0}" msgstr "Nom d'Utilisateur Suggérée : {0}" @@ -31748,7 +31898,7 @@ msgstr "Avertissements de modèles" msgid "Templates" msgstr "" -#: core/doctype/user/user.py:1021 +#: core/doctype/user/user.py:1023 msgid "Temporarily Disabled" msgstr "Temporairement désactivé" @@ -31836,6 +31986,12 @@ msgstr "Éditeur de Texte" msgid "Thank you" msgstr "Merci" +#: www/contact.py:37 +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 "" + #: website/doctype/web_form/templates/web_form.html:137 msgid "Thank you for spending your valuable time to fill this form" msgstr "Merci d'avoir consacré votre temps précieux à remplir ce formulaire" @@ -31981,7 +32137,7 @@ msgstr "" msgid "The link will expire in {0} minutes" msgstr "" -#: www/login.py:175 +#: www/login.py:179 msgid "The link you trying to login is invalid or expired." msgstr "" @@ -32031,11 +32187,11 @@ msgid "The project number obtained from Google Cloud Console under
" msgstr "" -#: core/doctype/user/user.py:981 +#: core/doctype/user/user.py:983 msgid "The reset password link has been expired" msgstr "" -#: core/doctype/user/user.py:983 +#: core/doctype/user/user.py:985 msgid "The reset password link has either been used before or is invalid" msgstr "" @@ -32133,8 +32289,8 @@ msgstr "" msgid "There are {0} with the same filters already in the queue:" msgstr "" -#: website/doctype/web_form/web_form.js:71 -#: website/doctype/web_form/web_form.js:307 +#: website/doctype/web_form/web_form.js:81 +#: website/doctype/web_form/web_form.js:317 msgid "There can be only 9 Page Break fields in a Web Form" msgstr "" @@ -32162,7 +32318,7 @@ msgstr "" msgid "There must be atleast one permission rule." msgstr "Il doit y avoir au moins une règle d'autorisation." -#: core/doctype/user/user.py:533 +#: core/doctype/user/user.py:535 msgid "There should remain at least one System Manager" msgstr "Il doit rester au moins un Responsable Système" @@ -32182,11 +32338,11 @@ msgstr "Il y a eu des erreurs" msgid "There were errors while creating the document. Please try again." msgstr "Il y avait des erreurs lors de la création du document. Veuillez réessayer." -#: public/js/frappe/views/communication.js:809 +#: public/js/frappe/views/communication.js:820 msgid "There were errors while sending email. Please try again." msgstr "Il y a eu des erreurs lors de l'envoi d’emails. Veuillez essayer à nouveau." -#: model/naming.py:448 +#: model/naming.py:470 msgid "There were some errors setting the name, please contact the administrator" msgstr "Il y a eu des erreurs lors de la configuration du nom, veuillez contacter l'administrateur" @@ -32233,7 +32389,7 @@ msgstr "" msgid "This Kanban Board will be private" msgstr "Ce Tableau Kanban sera privé" -#: __init__.py:1010 +#: __init__.py:1013 msgid "This action is only allowed for {}" msgstr "Cette action n'est autorisée que pour {}" @@ -32461,7 +32617,7 @@ msgstr "" msgid "This will terminate the job immediately and might be dangerous, are you sure? " msgstr "" -#: core/doctype/user/user.py:1241 +#: core/doctype/user/user.py:1243 msgid "Throttled" msgstr "Étranglé" @@ -32729,9 +32885,9 @@ msgstr "Horodatage" #: core/doctype/doctype/boilerplate/controller_list.html:14 #: core/doctype/doctype/boilerplate/controller_list.html:23 -#: public/js/frappe/views/workspace/workspace.js:605 -#: public/js/frappe/views/workspace/workspace.js:934 -#: public/js/frappe/views/workspace/workspace.js:1181 +#: public/js/frappe/views/workspace/workspace.js:610 +#: public/js/frappe/views/workspace/workspace.js:939 +#: public/js/frappe/views/workspace/workspace.js:1186 msgid "Title" msgstr "Titre" @@ -32914,7 +33070,7 @@ msgctxt "Auto Email Report" msgid "To Date Field" msgstr "Champ Date" -#: desk/doctype/todo/todo_list.js:12 +#: desk/doctype/todo/todo_list.js:6 msgid "To Do" msgstr "Tâche à Faire" @@ -33078,7 +33234,7 @@ msgstr "Afficher/Cacher la vue en grille" msgid "Toggle Sidebar" msgstr "Afficher/Cacher la barre latérale" -#: public/js/frappe/list/list_view.js:1720 +#: public/js/frappe/list/list_view.js:1727 msgctxt "Button in list view menu" msgid "Toggle Sidebar" msgstr "Afficher/Cacher la barre latérale" @@ -33140,7 +33296,7 @@ msgstr "Trop de demandes" msgid "Too many changes to database in single action." msgstr "" -#: core/doctype/user/user.py:1022 +#: core/doctype/user/user.py:1024 msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour" msgstr "Trop d'utilisateurs se sont inscrits récemment, du coup l’inscription est désactivée. Veuillez essayer à nouveau dans une heure" @@ -33338,6 +33494,11 @@ msgid "Track if your email has been opened by the recipient.\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 +#: automation/doctype/milestone_tracker/milestone_tracker.json +msgid "Track milestones for any document" +msgstr "" + #: public/js/frappe/utils/utils.js:1757 msgid "Tracking URL generated and copied to clipboard" msgstr "" @@ -33828,7 +33989,7 @@ msgstr "Se désabonner" msgid "Unhandled Email" msgstr "Email Non Géré" -#: public/js/frappe/views/workspace/workspace.js:562 +#: public/js/frappe/views/workspace/workspace.js:567 msgid "Unhide Workspace" msgstr "" @@ -33875,7 +34036,7 @@ msgid "Unlock Reference Document" msgstr "" #: website/doctype/blog_post/blog_post.js:36 -#: website/doctype/web_form/web_form.js:76 +#: website/doctype/web_form/web_form.js:86 msgid "Unpublish" msgstr "" @@ -33979,7 +34140,7 @@ msgstr "Événements À Venir Aujourd'hui" #: printing/page/print_format_builder/print_format_builder.js:670 #: printing/page/print_format_builder/print_format_builder.js:757 #: public/js/frappe/form/grid_row.js:403 -#: public/js/frappe/views/workspace/workspace.js:653 +#: public/js/frappe/views/workspace/workspace.js:658 msgid "Update" msgstr "Mettre à Jour" @@ -33995,7 +34156,7 @@ msgctxt "Document Naming Settings" msgid "Update Amendment Naming" msgstr "" -#: public/js/frappe/views/workspace/workspace.js:602 +#: public/js/frappe/views/workspace/workspace.js:607 msgid "Update Details" msgstr "Détails de mise à jour" @@ -34257,11 +34418,11 @@ msgctxt "Email Account" msgid "Use different Email ID" msgstr "Utiliser une authentification email différente" -#: model/db_query.py:424 +#: model/db_query.py:423 msgid "Use of function {0} in field is restricted" msgstr "" -#: model/db_query.py:403 +#: model/db_query.py:402 msgid "Use of sub-query or function is restricted" msgstr "L'utilisation de la sous-requête ou de la fonction est restreinte" @@ -34557,6 +34718,11 @@ msgctxt "Social Login Key" msgid "User ID Property" msgstr "Propriété ID utilisateur" +#. Description of a DocType +#: website/doctype/blogger/blogger.json +msgid "User ID of a Blogger" +msgstr "" + #. Label of a Link field in DocType 'Contact' #: contacts/doctype/contact/contact.json msgctxt "Contact" @@ -34606,7 +34772,7 @@ msgstr "Autorisation de l'Utilisateur" msgid "User Permissions" msgstr "Autorisations des Utilisateurs" -#: public/js/frappe/list/list_view.js:1678 +#: public/js/frappe/list/list_view.js:1685 msgctxt "Button in list view menu" msgid "User Permissions" msgstr "Autorisations des Utilisateurs" @@ -34741,15 +34907,15 @@ msgstr "" msgid "User with email: {0} does not exist in the system. Please ask 'System Administrator' to create the user for you." msgstr "" -#: core/doctype/user/user.py:538 +#: core/doctype/user/user.py:540 msgid "User {0} cannot be deleted" msgstr "Utilisateur {0} ne peut pas être supprimé" -#: core/doctype/user/user.py:277 +#: core/doctype/user/user.py:279 msgid "User {0} cannot be disabled" msgstr "Utilisateur {0} ne peut pas être désactivé" -#: core/doctype/user/user.py:607 +#: core/doctype/user/user.py:609 msgid "User {0} cannot be renamed" msgstr "Utilisateur {0} ne peut pas être renommé" @@ -34766,7 +34932,7 @@ msgstr "L'utilisateur {0} n'a pas d'accès au type de document via l msgid "User {0} has requested for data deletion" msgstr "L'utilisateur {0} a demandé la suppression des données." -#: core/doctype/user/user.py:1370 +#: core/doctype/user/user.py:1372 msgid "User {0} impersonated as {1}" msgstr "" @@ -34800,7 +34966,7 @@ msgctxt "User Social Login" msgid "Username" msgstr "Nom d'Utilisateur" -#: core/doctype/user/user.py:692 +#: core/doctype/user/user.py:694 msgid "Username {0} already exists" msgstr "Nom d'Utilisateur {0} existe déjà" @@ -34881,7 +35047,7 @@ msgstr "Validité" #: public/js/frappe/list/bulk_operations.js:306 #: public/js/frappe/list/bulk_operations.js:368 #: public/js/frappe/list/list_view_permission_restrictions.html:4 -#: website/doctype/web_form/web_form.js:187 +#: website/doctype/web_form/web_form.js:197 msgid "Value" msgstr "Valeur" @@ -35115,7 +35281,7 @@ msgstr "Voir La Liste" msgid "View Log" msgstr "Voir le journal" -#: core/doctype/user/user.js:127 +#: core/doctype/user/user.js:137 #: core/doctype/user_permission/user_permission.js:24 msgid "View Permitted Documents" msgstr "Afficher les Documents Autorisés" @@ -35292,6 +35458,10 @@ msgstr "Nous avons reçu une demande de suppression de {0} données associées msgid "We have received a request from you to download your {0} data associated with: {1}" msgstr "Nous avons reçu une demande de votre part pour télécharger vos données {0} associées à: {1}." +#: www/contact.py:48 +msgid "We've received your query!" +msgstr "" + #: public/js/frappe/form/controls/password.js:88 msgid "Weak" msgstr "" @@ -35834,11 +36004,11 @@ msgstr "" msgid "Welcome Workspace" msgstr "" -#: core/doctype/user/user.py:395 +#: core/doctype/user/user.py:397 msgid "Welcome email sent" msgstr "Email de bienvenue envoyé" -#: core/doctype/user/user.py:470 +#: core/doctype/user/user.py:472 msgid "Welcome to {0}" msgstr "Bienvenue sur {0}" @@ -36008,6 +36178,7 @@ msgid "Workflow Action" msgstr "Action du Flux de Travail" #. Name of a DocType +#. Description of a DocType #: workflow/doctype/workflow_action_master/workflow_action_master.json msgid "Workflow Action Master" msgstr "Actions de Base du Flux de Travail" @@ -36103,6 +36274,11 @@ msgstr "Statut du workflow" msgid "Workflow Transition" msgstr "Transition du Flux de Travail" +#. Description of a DocType +#: workflow/doctype/workflow_state/workflow_state.json +msgid "Workflow state represents the current state of a document." +msgstr "" + #. Description of the Onboarding Step 'Setup Approval Workflows' #: custom/onboarding_step/workflows/workflows.json msgid "Workflows allow you to define custom rules for the approval process of a particular document in ERPNext. You can also set complex Workflow Rules and set approval conditions." @@ -36121,6 +36297,12 @@ msgctxt "Module Def" msgid "Workspace" msgstr "" +#. Label of a Section Break field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Workspace" +msgstr "" + #. Label of a Link in the Build Workspace #: core/workspace/build/build.json msgctxt "Workspace" @@ -36171,15 +36353,15 @@ msgstr "" msgid "Workspace not found" msgstr "" -#: public/js/frappe/views/workspace/workspace.js:1271 +#: public/js/frappe/views/workspace/workspace.js:1276 msgid "Workspace {0} Created Successfully" msgstr "" -#: public/js/frappe/views/workspace/workspace.js:900 +#: public/js/frappe/views/workspace/workspace.js:905 msgid "Workspace {0} Deleted Successfully" msgstr "" -#: public/js/frappe/views/workspace/workspace.js:678 +#: public/js/frappe/views/workspace/workspace.js:683 msgid "Workspace {0} Edited Successfully" msgstr "" @@ -36409,7 +36591,7 @@ msgstr "" msgid "You are not allowed to create columns" msgstr "Vous n'êtes pas autorisé à créer des colonnes" -#: core/doctype/report/report.py:94 +#: core/doctype/report/report.py:97 msgid "You are not allowed to delete Standard Report" msgstr "Vous n'êtes pas autorisé à supprimer le rapport standard" @@ -36417,7 +36599,7 @@ msgstr "Vous n'êtes pas autorisé à supprimer le rapport standard" msgid "You are not allowed to delete a standard Website Theme" msgstr "Vous n'êtes pas autorisé à supprimer un Thème standard du Site Web" -#: core/doctype/report/report.py:377 +#: core/doctype/report/report.py:383 msgid "You are not allowed to edit the report." msgstr "" @@ -36429,7 +36611,7 @@ msgstr "Vous n'êtes pas autorisé à exporter {} doctype" msgid "You are not allowed to print this report" msgstr "Vous n'êtes pas autorisé à imprimer ce rapport" -#: public/js/frappe/views/communication.js:753 +#: public/js/frappe/views/communication.js:764 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" @@ -36449,7 +36631,7 @@ msgstr "" msgid "You are not permitted to access this page." msgstr "Vous n'êtes pas autorisé à accéder à cette page." -#: __init__.py:929 +#: __init__.py:932 msgid "You are not permitted to access this resource." msgstr "" @@ -36502,7 +36684,7 @@ msgstr "" msgid "You can continue with the onboarding after exploring this page" msgstr "" -#: core/doctype/user/user.py:598 +#: core/doctype/user/user.py:600 msgid "You can disable the user instead of deleting it." msgstr "" @@ -36538,6 +36720,13 @@ msgstr "Vous pouvez seulement charger jusqu'à 5000 enregistrement en une seule msgid "You can select one from the following," msgstr "" +#. Description of the 'Rate limit for email link login' (Int) field in DocType +#. 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "You can set a high value here if multiple users will be logging in from the same network." +msgstr "" + #: desk/query_report.py:332 msgid "You can try changing the filters of your report." msgstr "Vous pouvez essayer de modifier les filtres de votre rapport." @@ -37723,7 +37912,7 @@ msgstr "verrouiller" msgid "logged in" msgstr "connecté" -#: website/doctype/web_form/web_form.js:352 +#: website/doctype/web_form/web_form.js:362 msgid "login_required" msgstr "" @@ -38747,7 +38936,7 @@ msgctxt "Form timeline" msgid "{0} attached {1}" msgstr "" -#: core/doctype/system_settings/system_settings.py:141 +#: core/doctype/system_settings/system_settings.py:142 msgid "{0} can not be more than {1}" msgstr "" @@ -38885,7 +39074,7 @@ msgstr "{0} a été ajouté avec succès au Groupe d’Email." msgid "{0} has left the conversation in {1} {2}" msgstr "{0} a quitté la conversation dans {1} {2}" -#: __init__.py:2480 +#: __init__.py:2483 msgid "{0} has no versions tracked." msgstr "{0} n'a aucune version suivie." @@ -39031,7 +39220,7 @@ msgstr "{0} est maintenant le format d'impression par défaut pour le type de do msgid "{0} is one of {1}" msgstr "" -#: email/doctype/email_account/email_account.py:277 model/naming.py:201 +#: email/doctype/email_account/email_account.py:277 model/naming.py:202 #: printing/doctype/print_format/print_format.py:90 utils/csvutils.py:131 msgid "{0} is required" msgstr "{0} est nécessaire" @@ -39044,11 +39233,11 @@ msgstr "" msgid "{0} is within {1}" msgstr "" -#: public/js/frappe/list/list_view.js:1595 +#: public/js/frappe/list/list_view.js:1602 msgid "{0} items selected" msgstr "{0} articles sélectionnés" -#: core/doctype/user/user.py:1379 +#: core/doctype/user/user.py:1381 msgid "{0} just impersonated as you. They gave this reason: {1}" msgstr "" @@ -39114,11 +39303,11 @@ msgstr "{0} ne peut pas être renommé" msgid "{0} not found" msgstr "{0} introuvable" -#: core/doctype/report/report.py:413 public/js/frappe/list/list_view.js:986 +#: core/doctype/report/report.py:419 public/js/frappe/list/list_view.js:987 msgid "{0} of {1}" msgstr "{0} sur {1}" -#: public/js/frappe/list/list_view.js:988 +#: public/js/frappe/list/list_view.js:989 msgid "{0} of {1} ({2} rows with children)" msgstr "{0} sur {1} ({2} lignes avec des enfants)" @@ -39243,7 +39432,7 @@ msgstr "{0} ne partage plus ce document avec {1}" msgid "{0} updated" msgstr "{0} mis(e) à jour" -#: public/js/frappe/form/controls/multiselect_list.js:162 +#: public/js/frappe/form/controls/multiselect_list.js:182 msgid "{0} values selected" msgstr "{0} valeurs sélectionnées" diff --git a/frappe/locale/main.pot b/frappe/locale/main.pot index ea127cd699..ab828de4b9 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: 2024-03-17 09:33+0000\n" -"PO-Revision-Date: 2024-03-17 09:33+0000\n" +"POT-Creation-Date: 2024-03-24 09:33+0000\n" +"PO-Revision-Date: 2024-03-24 09:33+0000\n" "Last-Translator: developers@frappe.io\n" "Language-Team: developers@frappe.io\n" "MIME-Version: 1.0\n" @@ -1268,7 +1268,7 @@ msgstr "" msgid "Add A New Rule" msgstr "" -#: public/js/frappe/views/communication.js:567 +#: public/js/frappe/views/communication.js:578 #: public/js/frappe/views/interaction.js:159 msgid "Add Attachment" msgstr "" @@ -1370,7 +1370,7 @@ msgstr "" msgid "Add Review" msgstr "" -#: core/doctype/user/user.py:808 +#: core/doctype/user/user.py:810 msgid "Add Roles" msgstr "" @@ -1378,7 +1378,7 @@ msgstr "" msgid "Add Row" msgstr "" -#: public/js/frappe/views/communication.js:118 +#: public/js/frappe/views/communication.js:121 msgid "Add Signature" msgstr "" @@ -1409,12 +1409,12 @@ msgstr "" msgid "Add Tags" msgstr "" -#: public/js/frappe/list/list_view.js:1897 +#: public/js/frappe/list/list_view.js:1904 msgctxt "Button in list view actions menu" msgid "Add Tags" msgstr "" -#: public/js/frappe/views/communication.js:399 +#: public/js/frappe/views/communication.js:410 msgid "Add Template" msgstr "" @@ -1526,7 +1526,7 @@ msgstr "" msgid "Added {0} ({1})" msgstr "" -#: core/doctype/user/user.py:305 +#: core/doctype/user/user.py:307 msgid "Adding System Manager to this User as there must be atleast one System Manager" msgstr "" @@ -1632,6 +1632,16 @@ msgstr "" msgid "Addresses And Contacts" msgstr "" +#. Description of a DocType +#: custom/doctype/client_script/client_script.json +msgid "Adds a custom client script to a DocType" +msgstr "" + +#. Description of a DocType +#: custom/doctype/custom_field/custom_field.json +msgid "Adds a custom field to a DocType" +msgstr "" + #: public/js/frappe/ui/toolbar/search_utils.js:552 msgid "Administration" msgstr "" @@ -1653,11 +1663,11 @@ msgstr "" msgid "Administrator" msgstr "" -#: core/doctype/user/user.py:1212 +#: core/doctype/user/user.py:1214 msgid "Administrator Logged In" msgstr "" -#: core/doctype/user/user.py:1206 +#: core/doctype/user/user.py:1208 msgid "Administrator accessed {0} on {1} via IP Address {2}." msgstr "" @@ -2239,7 +2249,7 @@ msgstr "" msgid "Allowing DocType, DocType. Be careful!" msgstr "" -#: core/doctype/user/user.py:1015 +#: core/doctype/user/user.py:1017 msgid "Already Registered" msgstr "" @@ -2491,7 +2501,7 @@ msgstr "" msgid "App not found for module: {0}" msgstr "" -#: __init__.py:1781 +#: __init__.py:1784 msgid "App {0} is not installed" msgstr "" @@ -2570,7 +2580,7 @@ msgctxt "Property Setter" msgid "Applied On" msgstr "" -#: public/js/frappe/list/list_view.js:1882 +#: public/js/frappe/list/list_view.js:1889 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" msgstr "" @@ -2676,7 +2686,7 @@ msgstr "" msgid "Archived Columns" msgstr "" -#: public/js/frappe/list/list_view.js:1861 +#: public/js/frappe/list/list_view.js:1868 msgid "Are you sure you want to clear the assignments?" msgstr "" @@ -2684,7 +2694,7 @@ msgstr "" msgid "Are you sure you want to delete all rows?" msgstr "" -#: public/js/frappe/views/workspace/workspace.js:891 +#: public/js/frappe/views/workspace/workspace.js:896 msgid "Are you sure you want to delete page {0}?" msgstr "" @@ -2775,7 +2785,7 @@ msgstr "" msgid "Assign To" msgstr "" -#: public/js/frappe/list/list_view.js:1843 +#: public/js/frappe/list/list_view.js:1850 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "" @@ -2944,7 +2954,7 @@ msgstr "" msgid "At least one column is required to show in the grid." msgstr "" -#: website/doctype/web_form/web_form.js:63 +#: website/doctype/web_form/web_form.js:73 msgid "At least one field is required in Web Form Fields Table" msgstr "" @@ -2980,7 +2990,7 @@ msgctxt "Web Form Field" msgid "Attach" msgstr "" -#: public/js/frappe/views/communication.js:140 +#: public/js/frappe/views/communication.js:143 msgid "Attach Document Print" msgstr "" @@ -3447,6 +3457,11 @@ msgstr "" msgid "Automatic Linking can be activated only if Incoming is enabled." msgstr "" +#. Description of a DocType +#: automation/doctype/assignment_rule/assignment_rule.json +msgid "Automatically Assign Documents to Users" +msgstr "" + #. Label of a Int field in DocType 'Website Settings' #: website/doctype/website_settings/website_settings.json msgctxt "Website Settings" @@ -3593,7 +3608,7 @@ msgctxt "Print Settings" msgid "B9" msgstr "" -#: public/js/frappe/views/communication.js:77 +#: public/js/frappe/views/communication.js:79 msgid "BCC" msgstr "" @@ -4437,7 +4452,7 @@ msgstr "" msgid "CANCELLED" msgstr "" -#: public/js/frappe/views/communication.js:72 +#: public/js/frappe/views/communication.js:73 msgid "CC" msgstr "" @@ -4672,7 +4687,7 @@ msgstr "" msgid "Cancel" msgstr "" -#: public/js/frappe/list/list_view.js:1952 +#: public/js/frappe/list/list_view.js:1959 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "" @@ -4725,7 +4740,7 @@ msgstr "" msgid "Cancel Scheduling" msgstr "" -#: public/js/frappe/list/list_view.js:1957 +#: public/js/frappe/list/list_view.js:1964 msgctxt "Title of confirmation dialog" msgid "Cancel {0} documents?" msgstr "" @@ -4898,7 +4913,7 @@ msgstr "" msgid "Cannot edit Standard charts" msgstr "" -#: core/doctype/report/report.py:69 +#: core/doctype/report/report.py:72 msgid "Cannot edit a standard report. Please duplicate and create a new report" msgstr "" @@ -4975,11 +4990,11 @@ msgstr "" msgid "Cannot update {0}" msgstr "" -#: model/db_query.py:1119 +#: model/db_query.py:1103 msgid "Cannot use sub-query in order by" msgstr "" -#: model/db_query.py:1137 +#: model/db_query.py:1121 msgid "Cannot use {0} in order/group by" msgstr "" @@ -5336,7 +5351,7 @@ msgstr "" msgid "Choose Existing Card or create New Card" msgstr "" -#: public/js/frappe/views/workspace/workspace.js:1391 +#: public/js/frappe/views/workspace/workspace.js:1396 msgid "Choose a block or continue typing" msgstr "" @@ -5372,15 +5387,15 @@ msgstr "" msgid "Clear" msgstr "" -#: public/js/frappe/views/communication.js:404 +#: public/js/frappe/views/communication.js:415 msgid "Clear & Add Template" msgstr "" -#: public/js/frappe/views/communication.js:99 +#: public/js/frappe/views/communication.js:102 msgid "Clear & Add template" msgstr "" -#: public/js/frappe/list/list_view.js:1858 +#: public/js/frappe/list/list_view.js:1865 msgctxt "Button in list view actions menu" msgid "Clear Assignment" msgstr "" @@ -5407,7 +5422,7 @@ msgstr "" msgid "Clear User Permissions" msgstr "" -#: public/js/frappe/views/communication.js:405 +#: public/js/frappe/views/communication.js:416 msgid "Clear the email message and add the template" msgstr "" @@ -5465,7 +5480,7 @@ msgstr "" #: desk/doctype/dashboard_chart/dashboard_chart.js:315 #: desk/doctype/number_card/number_card.js:215 #: email/doctype/auto_email_report/auto_email_report.js:96 -#: website/doctype/web_form/web_form.js:226 +#: website/doctype/web_form/web_form.js:236 msgid "Click table to edit" msgstr "" @@ -5476,7 +5491,7 @@ msgstr "" #: desk/doctype/dashboard_chart/dashboard_chart.js:372 #: desk/doctype/number_card/number_card.js:270 -#: website/doctype/web_form/web_form.js:252 +#: website/doctype/web_form/web_form.js:262 msgid "Click to Set Filters" msgstr "" @@ -6153,7 +6168,7 @@ msgstr "" msgid "Complete By" msgstr "" -#: core/doctype/user/user.py:472 templates/emails/new_user.html:10 +#: core/doctype/user/user.py:474 templates/emails/new_user.html:10 msgid "Complete Registration" msgstr "" @@ -6222,7 +6237,7 @@ msgstr "" #: desk/doctype/dashboard_chart/dashboard_chart.js:439 #: desk/doctype/number_card/number_card.js:205 #: desk/doctype/number_card/number_card.js:333 -#: website/doctype/web_form/web_form.js:187 +#: website/doctype/web_form/web_form.js:197 msgid "Condition" msgstr "" @@ -6322,7 +6337,12 @@ msgid "" "Default Naming will make the amended document to behave same as new documents." msgstr "" -#: core/doctype/user/user.js:374 public/js/frappe/dom.js:332 +#. Description of a DocType +#: core/doctype/document_naming_settings/document_naming_settings.json +msgid "Configure various aspects of how document naming works like naming series, current counter." +msgstr "" + +#: core/doctype/user/user.js:384 public/js/frappe/dom.js:332 #: www/update-password.html:30 msgid "Confirm" msgstr "" @@ -6337,7 +6357,7 @@ msgstr "" msgid "Confirm Deletion of Account" msgstr "" -#: core/doctype/user/user.js:167 +#: core/doctype/user/user.js:177 msgid "Confirm New Password" msgstr "" @@ -6494,6 +6514,10 @@ msgstr "" msgid "Contact Synced with Google Contacts." msgstr "" +#: www/contact.html:4 +msgid "Contact Us" +msgstr "" + #. Name of a DocType #: website/doctype/contact_us_settings/contact_us_settings.json msgid "Contact Us Settings" @@ -6667,6 +6691,10 @@ msgstr "" msgid "Copied to clipboard." msgstr "" +#: website/doctype/web_form/web_form.js:29 +msgid "Copy Embed Code" +msgstr "" + #: public/js/frappe/form/templates/timeline_message_box.html:83 msgid "Copy Link" msgstr "" @@ -6693,7 +6721,7 @@ msgstr "" msgid "Core Modules {0} cannot be searched in Global Search." msgstr "" -#: email/smtp.py:77 +#: email/smtp.py:78 msgid "Could not connect to outgoing email server" msgstr "" @@ -6807,7 +6835,7 @@ msgstr "" #: public/js/frappe/views/file/file_view.js:112 #: public/js/frappe/views/interaction.js:18 #: public/js/frappe/views/reports/query_report.js:1186 -#: public/js/frappe/views/workspace/workspace.js:1223 +#: public/js/frappe/views/workspace/workspace.js:1228 #: workflow/page/workflow_builder/workflow_builder.js:46 msgid "Create" msgstr "" @@ -6860,7 +6888,7 @@ msgstr "" msgid "Create Custom Fields" msgstr "" -#: public/js/frappe/views/workspace/workspace.js:931 +#: public/js/frappe/views/workspace/workspace.js:936 msgid "Create Duplicate" msgstr "" @@ -6895,11 +6923,11 @@ msgstr "" msgid "Create New Kanban Board" msgstr "" -#: core/doctype/user/user.js:246 +#: core/doctype/user/user.js:256 msgid "Create User Email" msgstr "" -#: public/js/frappe/views/workspace/workspace.js:471 +#: public/js/frappe/views/workspace/workspace.js:476 msgid "Create Workspace" msgstr "" @@ -6931,6 +6959,11 @@ msgstr "" msgid "Create a {0} Account" msgstr "" +#. Description of a DocType +#: email/doctype/newsletter/newsletter.json +msgid "Create and send emails to a specific group of subscribers periodically." +msgstr "" + #: printing/page/print_format_builder_beta/print_format_builder_beta.js:34 msgid "Create or Edit Print Format" msgstr "" @@ -7097,6 +7130,11 @@ msgctxt "System Settings" msgid "Currency Precision" msgstr "" +#. Description of a DocType +#: geo/doctype/currency/currency.json +msgid "Currency list stores the currency value, its symbol and fraction unit" +msgstr "" + #. Option for the 'Address Type' (Select) field in DocType 'Address' #: contacts/doctype/address/address.json msgctxt "Address" @@ -7462,7 +7500,7 @@ msgstr "" msgid "Customization onboarding is all done!" msgstr "" -#: public/js/frappe/views/workspace/workspace.js:517 +#: public/js/frappe/views/workspace/workspace.js:522 msgid "Customizations Discarded" msgstr "" @@ -7481,7 +7519,7 @@ msgstr "" msgid "Customize" msgstr "" -#: public/js/frappe/list/list_view.js:1703 +#: public/js/frappe/list/list_view.js:1710 msgctxt "Button in list view menu" msgid "Customize" msgstr "" @@ -8321,6 +8359,12 @@ msgctxt "DocType" msgid "Default View" msgstr "" +#. Label of a Link field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Default Workspace" +msgstr "" + #: core/doctype/doctype/doctype.py:1325 msgid "Default for 'Check' type of field {0} must be either '0' or '1'" msgstr "" @@ -8360,6 +8404,16 @@ msgstr "" msgid "Defaults Updated" msgstr "" +#. Description of a DocType +#: workflow/doctype/workflow_transition/workflow_transition.json +msgid "Defines actions on states and the next step and allowed roles." +msgstr "" + +#. Description of a DocType +#: 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' #: core/doctype/communication/communication.json msgctxt "Communication" @@ -8371,13 +8425,13 @@ msgstr "" #: public/js/frappe/form/grid.js:63 public/js/frappe/form/toolbar.js:423 #: public/js/frappe/views/reports/report_view.js:1642 #: public/js/frappe/views/treeview.js:313 -#: public/js/frappe/views/workspace/workspace.js:829 +#: public/js/frappe/views/workspace/workspace.js:834 #: templates/discussions/reply_card.html:35 #: templates/discussions/reply_section.html:29 msgid "Delete" msgstr "" -#: public/js/frappe/list/list_view.js:1920 +#: public/js/frappe/list/list_view.js:1927 msgctxt "Button in list view actions menu" msgid "Delete" msgstr "" @@ -8416,7 +8470,7 @@ msgstr "" msgid "Delete Kanban Board" msgstr "" -#: public/js/frappe/views/workspace/workspace.js:830 +#: public/js/frappe/views/workspace/workspace.js:835 msgid "Delete Workspace" msgstr "" @@ -8432,12 +8486,12 @@ msgstr "" msgid "Delete this record to allow sending to this email address" msgstr "" -#: public/js/frappe/list/list_view.js:1925 +#: public/js/frappe/list/list_view.js:1932 msgctxt "Title of confirmation dialog" msgid "Delete {0} item permanently?" msgstr "" -#: public/js/frappe/list/list_view.js:1931 +#: public/js/frappe/list/list_view.js:1938 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "" @@ -8491,7 +8545,7 @@ msgctxt "Deleted Document" msgid "Deleted Name" msgstr "" -#: desk/reportview.py:502 +#: desk/reportview.py:506 msgid "Deleting {0}" msgstr "" @@ -8976,7 +9030,7 @@ msgstr "" #: public/js/frappe/views/communication.js:30 #: public/js/frappe/views/dashboard/dashboard_view.js:70 -#: public/js/frappe/views/workspace/workspace.js:508 +#: public/js/frappe/views/workspace/workspace.js:513 #: public/js/frappe/web_form/web_form.js:187 msgid "Discard" msgstr "" @@ -9277,6 +9331,11 @@ msgstr "" msgid "DocType can only be renamed by Administrator" msgstr "" +#. Description of a DocType +#: core/doctype/doctype/doctype.json +msgid "DocType is a Table / Form in the application." +msgstr "" + #: integrations/doctype/webhook/webhook.py:82 msgid "DocType must be Submittable for the selected Doc Event" msgstr "" @@ -9337,7 +9396,7 @@ msgstr "" msgid "Doctype required" msgstr "" -#: public/js/frappe/views/workspace/workspace.js:1309 +#: public/js/frappe/views/workspace/workspace.js:1314 msgid "Doctype with same route already exist. Please choose different title." msgstr "" @@ -9969,7 +10028,7 @@ msgstr "" #: public/js/frappe/views/workspace/blocks/header.js:46 #: public/js/frappe/views/workspace/blocks/paragraph.js:136 #: public/js/frappe/views/workspace/blocks/spacer.js:44 -#: public/js/frappe/views/workspace/workspace.js:571 +#: public/js/frappe/views/workspace/workspace.js:576 #: public/js/frappe/widgets/base_widget.js:33 msgid "Drag" msgstr "" @@ -10025,8 +10084,8 @@ msgstr "" #: public/js/frappe/form/grid_row_form.js:42 #: public/js/frappe/form/toolbar.js:377 -#: public/js/frappe/views/workspace/workspace.js:814 -#: public/js/frappe/views/workspace/workspace.js:981 +#: public/js/frappe/views/workspace/workspace.js:819 +#: public/js/frappe/views/workspace/workspace.js:986 msgid "Duplicate" msgstr "" @@ -10042,8 +10101,8 @@ msgstr "" msgid "Duplicate Name" msgstr "" -#: public/js/frappe/views/workspace/workspace.js:553 -#: public/js/frappe/views/workspace/workspace.js:815 +#: public/js/frappe/views/workspace/workspace.js:558 +#: public/js/frappe/views/workspace/workspace.js:820 msgid "Duplicate Workspace" msgstr "" @@ -10051,7 +10110,7 @@ msgstr "" msgid "Duplicate current row" msgstr "" -#: public/js/frappe/views/workspace/workspace.js:996 +#: public/js/frappe/views/workspace/workspace.js:1001 msgid "Duplicate of {0} named as {1} is created successfully" msgstr "" @@ -10195,8 +10254,8 @@ msgstr "" #: public/js/frappe/form/toolbar.js:672 #: public/js/frappe/views/reports/query_report.js:813 #: public/js/frappe/views/reports/query_report.js:1634 -#: public/js/frappe/views/workspace/workspace.js:454 -#: public/js/frappe/views/workspace/workspace.js:808 +#: public/js/frappe/views/workspace/workspace.js:459 +#: public/js/frappe/views/workspace/workspace.js:813 #: public/js/frappe/widgets/base_widget.js:64 #: public/js/frappe/widgets/chart_widget.js:298 #: public/js/frappe/widgets/number_card_widget.js:331 @@ -10207,7 +10266,7 @@ msgstr "" msgid "Edit" msgstr "" -#: public/js/frappe/list/list_view.js:2006 +#: public/js/frappe/list/list_view.js:2013 msgctxt "Button in list view actions menu" msgid "Edit" msgstr "" @@ -10243,7 +10302,7 @@ msgstr "" msgid "Edit DocType" msgstr "" -#: public/js/frappe/list/list_view.js:1730 +#: public/js/frappe/list/list_view.js:1737 msgctxt "Button in list view menu" msgid "Edit DocType" msgstr "" @@ -10328,7 +10387,7 @@ msgctxt "Website Settings" msgid "Edit Values" msgstr "" -#: public/js/frappe/views/workspace/workspace.js:809 +#: public/js/frappe/views/workspace/workspace.js:814 msgid "Edit Workspace" msgstr "" @@ -10528,11 +10587,11 @@ msgctxt "Email Account" msgid "Email Account Name" msgstr "" -#: core/doctype/user/user.py:741 +#: core/doctype/user/user.py:743 msgid "Email Account added multiple times" msgstr "" -#: email/smtp.py:42 +#: email/smtp.py:43 msgid "Email Account not setup. Please create a new Email Account from Settings > Email Account" msgstr "" @@ -10688,6 +10747,11 @@ msgstr "" msgid "Email Queue flushing aborted due to too many failures." msgstr "" +#. Description of a DocType +#: email/doctype/email_queue/email_queue.json +msgid "Email Queue records." +msgstr "" + #. Label of a HTML field in DocType 'Email Template' #: email/doctype/email_template/email_template.json msgctxt "Email Template" @@ -10767,7 +10831,7 @@ msgstr "" #. Name of a DocType #: email/doctype/email_template/email_template.json -#: public/js/frappe/views/communication.js:92 +#: public/js/frappe/views/communication.js:95 msgid "Email Template" msgstr "" @@ -10808,7 +10872,7 @@ msgstr "" msgid "Email has been moved to trash" msgstr "" -#: public/js/frappe/views/communication.js:788 +#: public/js/frappe/views/communication.js:799 msgid "Email not sent to {0} (unsubscribed / disabled)" msgstr "" @@ -10826,6 +10890,10 @@ msgctxt "Workflow" msgid "Emails will be sent with next possible workflow actions" msgstr "" +#: website/doctype/web_form/web_form.js:34 +msgid "Embed code copied" +msgstr "" + #. Label of a Check field in DocType 'Google Calendar' #: integrations/doctype/google_calendar/google_calendar.json msgctxt "Google Calendar" @@ -11163,6 +11231,11 @@ msgstr "" 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 +#: integrations/doctype/push_notification_settings/push_notification_settings.json +msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved." +msgstr "" + #. Description of the 'Relay Settings' (Section Break) field in DocType 'Push #. Notification Settings' #: integrations/doctype/push_notification_settings/push_notification_settings.json @@ -11327,7 +11400,7 @@ msgstr "" msgid "Enter Code displayed in OTP App." msgstr "" -#: public/js/frappe/views/communication.js:743 +#: public/js/frappe/views/communication.js:754 msgid "Enter Email Recipient(s)" msgstr "" @@ -11801,7 +11874,7 @@ msgstr "" msgid "Export" msgstr "" -#: public/js/frappe/list/list_view.js:2028 +#: public/js/frappe/list/list_view.js:2035 msgctxt "Button in list view actions menu" msgid "Export" msgstr "" @@ -12246,7 +12319,7 @@ msgctxt "Custom Field" msgid "Field Type" msgstr "" -#: desk/reportview.py:176 +#: desk/reportview.py:182 msgid "Field not permitted in query" msgstr "" @@ -12600,9 +12673,9 @@ msgstr "" #: desk/doctype/number_card/number_card.js:205 #: desk/doctype/number_card/number_card.js:333 #: email/doctype/auto_email_report/auto_email_report.js:90 -#: public/js/frappe/list/base_list.js:870 +#: public/js/frappe/list/base_list.js:878 #: public/js/frappe/ui/filters/filter_list.js:134 -#: website/doctype/web_form/web_form.js:187 +#: website/doctype/web_form/web_form.js:197 msgid "Filter" msgstr "" @@ -13528,7 +13601,7 @@ msgctxt "System Settings" msgid "Friday" msgstr "" -#: public/js/frappe/views/communication.js:182 +#: public/js/frappe/views/communication.js:185 #: public/js/frappe/views/inbox/inbox_view.js:70 msgid "From" msgstr "" @@ -13647,7 +13720,7 @@ msgstr "" msgid "Function Based On" msgstr "" -#: __init__.py:930 +#: __init__.py:933 msgid "Function {0} is not whitelisted." msgstr "" @@ -13716,6 +13789,10 @@ msgctxt "User" msgid "Gender" msgstr "" +#: www/contact.html:29 +msgid "General" +msgstr "" + #. Title of an Onboarding Step #: custom/onboarding_step/report_builder/report_builder.json msgid "Generate Custom Reports" @@ -13772,7 +13849,7 @@ msgctxt "Auto Repeat" msgid "Get Contacts" msgstr "" -#: website/doctype/web_form/web_form.js:83 +#: website/doctype/web_form/web_form.js:93 msgid "Get Fields" msgstr "" @@ -14699,7 +14776,7 @@ msgctxt "Form Tour Step" msgid "Hidden Fields" msgstr "" -#: public/js/frappe/views/workspace/workspace.js:820 +#: public/js/frappe/views/workspace/workspace.js:825 #: public/js/frappe/widgets/base_widget.js:46 #: public/js/frappe/widgets/base_widget.js:176 #: templates/includes/login/login.js:83 @@ -14849,7 +14926,7 @@ msgctxt "Portal Settings" msgid "Hide Standard Menu" msgstr "" -#: public/js/frappe/list/list_view.js:1605 +#: public/js/frappe/list/list_view.js:1612 msgid "Hide Tags" msgstr "" @@ -14857,7 +14934,7 @@ msgstr "" msgid "Hide Weekends" msgstr "" -#: public/js/frappe/views/workspace/workspace.js:821 +#: public/js/frappe/views/workspace/workspace.js:826 msgid "Hide Workspace" msgstr "" @@ -15014,7 +15091,7 @@ msgstr "" msgid "ID" msgstr "" -#: desk/reportview.py:431 public/js/frappe/views/reports/report_view.js:917 +#: desk/reportview.py:435 public/js/frappe/views/reports/report_view.js:917 msgctxt "Label of name column in report" msgid "ID" msgstr "" @@ -15066,9 +15143,9 @@ msgctxt "Comment" msgid "IP Address" msgstr "" -#: public/js/frappe/views/workspace/workspace.js:638 -#: public/js/frappe/views/workspace/workspace.js:966 -#: public/js/frappe/views/workspace/workspace.js:1211 +#: public/js/frappe/views/workspace/workspace.js:643 +#: public/js/frappe/views/workspace/workspace.js:971 +#: public/js/frappe/views/workspace/workspace.js:1216 msgid "Icon" msgstr "" @@ -15265,6 +15342,12 @@ msgctxt "Note" 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' +#: core/doctype/user/user.json +msgctxt "User" +msgid "If left empty, the default workspace will be the last visited workspace" +msgstr "" + #. Description of the 'Port' (Data) field in DocType 'Email Domain' #: email/doctype/email_domain/email_domain.json msgctxt "Email Domain" @@ -15451,7 +15534,7 @@ msgstr "" msgid "Illegal Document Status for {0}" msgstr "" -#: model/db_query.py:441 model/db_query.py:444 model/db_query.py:1122 +#: model/db_query.py:440 model/db_query.py:443 model/db_query.py:1106 msgid "Illegal SQL Query" msgstr "" @@ -15566,7 +15649,7 @@ msgstr "" msgid "Images" msgstr "" -#: core/doctype/user/user.js:346 +#: core/doctype/user/user.js:356 msgid "Impersonate" msgstr "" @@ -15576,7 +15659,7 @@ msgctxt "Activity Log" msgid "Impersonate" msgstr "" -#: core/doctype/user/user.js:373 +#: core/doctype/user/user.js:383 msgid "Impersonate as {0}" msgstr "" @@ -15603,7 +15686,7 @@ msgstr "" msgid "Import" msgstr "" -#: public/js/frappe/list/list_view.js:1667 +#: public/js/frappe/list/list_view.js:1674 msgctxt "Button in list view menu" msgid "Import" msgstr "" @@ -15950,7 +16033,7 @@ msgstr "" msgid "Incomplete login details" msgstr "" -#: email/smtp.py:103 +#: email/smtp.py:104 msgid "Incorrect Configuration" msgstr "" @@ -16028,9 +16111,9 @@ msgctxt "Workspace" msgid "Indicator Color" msgstr "" -#: public/js/frappe/views/workspace/workspace.js:645 -#: public/js/frappe/views/workspace/workspace.js:973 -#: public/js/frappe/views/workspace/workspace.js:1217 +#: public/js/frappe/views/workspace/workspace.js:650 +#: public/js/frappe/views/workspace/workspace.js:978 +#: public/js/frappe/views/workspace/workspace.js:1222 msgid "Indicator color" msgstr "" @@ -16162,11 +16245,11 @@ msgstr "" msgid "Insufficient Permission for {0}" msgstr "" -#: desk/reportview.py:335 +#: desk/reportview.py:339 msgid "Insufficient Permissions for deleting Report" msgstr "" -#: desk/reportview.py:306 +#: desk/reportview.py:310 msgid "Insufficient Permissions for editing Report" msgstr "" @@ -16271,6 +16354,11 @@ msgstr "" msgid "Internal Server Error" msgstr "" +#. Description of a DocType +#: core/doctype/docshare/docshare.json +msgid "Internal record of document shares" +msgstr "" + #: desk/page/user_profile/user_profile_sidebar.html:22 msgid "Intro" msgstr "" @@ -16351,7 +16439,7 @@ msgstr "" msgid "Invalid Condition: {}" msgstr "" -#: email/smtp.py:132 +#: email/smtp.py:134 msgid "Invalid Credentials" msgstr "" @@ -16403,7 +16491,7 @@ msgstr "" msgid "Invalid Mail Server. Please rectify and try again." msgstr "" -#: model/naming.py:93 +#: model/naming.py:94 msgid "Invalid Naming Series: {}" msgstr "" @@ -16415,7 +16503,7 @@ msgstr "" msgid "Invalid Option" msgstr "" -#: email/smtp.py:102 +#: email/smtp.py:103 msgid "Invalid Outgoing Mail Server or Port: {0}" msgstr "" @@ -16427,7 +16515,7 @@ msgstr "" msgid "Invalid Parameters." msgstr "" -#: core/doctype/user/user.py:1227 www/update-password.html:121 +#: core/doctype/user/user.py:1229 www/update-password.html:121 #: www/update-password.html:142 www/update-password.html:144 #: www/update-password.html:245 msgid "Invalid Password" @@ -16466,7 +16554,7 @@ msgstr "" msgid "Invalid Webhook Secret" msgstr "" -#: desk/reportview.py:161 +#: desk/reportview.py:167 msgid "Invalid aggregate function" msgstr "" @@ -16507,11 +16595,11 @@ msgstr "" msgid "Invalid json added in the custom options: {0}" msgstr "" -#: model/naming.py:444 +#: model/naming.py:466 msgid "Invalid name type (integer) for varchar name column" msgstr "" -#: model/naming.py:54 +#: model/naming.py:55 msgid "Invalid naming series {}: dot (.) missing" msgstr "" @@ -17137,6 +17225,16 @@ msgctxt "Button in kanban view menu" msgid "Kanban Settings" msgstr "" +#. Description of a DocType +#: core/doctype/activity_log/activity_log.json +msgid "Keep track of all update feeds" +msgstr "" + +#. Description of a DocType +#: core/doctype/communication/communication.json +msgid "Keeps track of all communications" +msgstr "" + #. Label of a Data field in DocType 'DefaultValue' #: core/doctype/defaultvalue/defaultvalue.json msgctxt "DefaultValue" @@ -18367,7 +18465,7 @@ msgctxt "Web Form" msgid "List Setting Message" msgstr "" -#: public/js/frappe/list/list_view.js:1747 +#: public/js/frappe/list/list_view.js:1754 msgctxt "Button in list view menu" msgid "List Settings" msgstr "" @@ -18411,6 +18509,11 @@ msgctxt "Web Page" msgid "List as [{\"label\": _(\"Jobs\"), \"route\":\"jobs\"}]" msgstr "" +#. Description of a DocType +#: core/doctype/patch_log/patch_log.json +msgid "List of patches executed" +msgstr "" + #: public/js/frappe/ui/toolbar/search_utils.js:542 msgid "Lists" msgstr "" @@ -18435,7 +18538,7 @@ msgstr "" #: core/page/permission_manager/permission_manager.js:165 #: public/js/frappe/form/controls/multicheck.js:13 #: public/js/frappe/form/linked_with.js:13 -#: public/js/frappe/list/base_list.js:482 +#: public/js/frappe/list/base_list.js:490 #: public/js/frappe/list/list_view.js:333 public/js/frappe/ui/listing.html:16 #: public/js/frappe/views/reports/query_report.js:1015 msgid "Loading" @@ -18600,7 +18703,7 @@ msgstr "" msgid "Login and view in Browser" msgstr "" -#: website/doctype/web_form/web_form.js:357 +#: website/doctype/web_form/web_form.js:367 msgid "Login is required to see web form list view. Enable {0} to see list settings" msgstr "" @@ -18664,7 +18767,7 @@ msgctxt "Activity Log" msgid "Logout" msgstr "" -#: core/doctype/user/user.js:173 +#: core/doctype/user/user.js:183 msgid "Logout All Sessions" msgstr "" @@ -19218,7 +19321,7 @@ msgstr "" #: core/doctype/data_import/data_import.js:489 #: public/js/frappe/ui/messages.js:175 -#: public/js/frappe/views/communication.js:111 www/message.html:3 +#: public/js/frappe/views/communication.js:114 www/message.html:3 #: www/message.html:25 msgid "Message" msgstr "" @@ -19248,7 +19351,7 @@ msgctxt "Communication" msgid "Message" msgstr "" -#: __init__.py:614 public/js/frappe/ui/messages.js:265 +#: __init__.py:617 public/js/frappe/ui/messages.js:265 msgctxt "Default title of the message dialog" msgid "Message" msgstr "" @@ -19338,7 +19441,7 @@ msgctxt "Notification" msgid "Message Type" msgstr "" -#: public/js/frappe/views/communication.js:922 +#: public/js/frappe/views/communication.js:933 msgid "Message clipped" msgstr "" @@ -20120,7 +20223,7 @@ msgstr "" msgid "Must have report permission to access this report." msgstr "" -#: core/doctype/report/report.py:145 +#: core/doctype/report/report.py:148 msgid "Must specify a Query to run" msgstr "" @@ -20206,7 +20309,7 @@ msgstr "" msgid "Name already taken, please set a new name" msgstr "" -#: model/naming.py:458 +#: model/naming.py:480 msgid "Name cannot contain special characters like {0}" msgstr "" @@ -20218,7 +20321,7 @@ msgstr "" msgid "Name of the new Print Format" msgstr "" -#: model/naming.py:453 +#: model/naming.py:475 msgid "Name of {0} cannot be {1}" msgstr "" @@ -20280,7 +20383,7 @@ msgctxt "Document Naming Settings" msgid "Naming Series" msgstr "" -#: model/naming.py:243 +#: model/naming.py:244 msgid "Naming Series mandatory" msgstr "" @@ -20466,7 +20569,7 @@ msgstr "" msgid "New Mention on {0}" msgstr "" -#: www/contact.py:50 +#: www/contact.py:59 msgid "New Message from Website Contact Page" msgstr "" @@ -20496,7 +20599,7 @@ msgstr "" msgid "New Onboarding" msgstr "" -#: core/doctype/user/user.js:161 www/update-password.html:19 +#: core/doctype/user/user.js:171 www/update-password.html:19 msgid "New Password" msgstr "" @@ -20526,7 +20629,7 @@ msgstr "" msgid "New Workflow Name" msgstr "" -#: public/js/frappe/views/workspace/workspace.js:1178 +#: public/js/frappe/views/workspace/workspace.js:1183 msgid "New Workspace" msgstr "" @@ -20586,7 +20689,7 @@ msgstr "" msgid "New {} releases for the following apps are available" msgstr "" -#: core/doctype/user/user.py:804 +#: core/doctype/user/user.py:806 msgid "Newly created user {0} has no roles enabled." msgstr "" @@ -20855,7 +20958,7 @@ msgstr "" msgid "No Letterhead" msgstr "" -#: model/naming.py:435 +#: model/naming.py:457 msgid "No Name Specified for {0}" msgstr "" @@ -20903,7 +21006,7 @@ msgstr "" msgid "No Results found" msgstr "" -#: core/doctype/user/user.py:805 +#: core/doctype/user/user.py:807 msgid "No Roles Specified" msgstr "" @@ -20911,7 +21014,7 @@ msgstr "" msgid "No Select Field Found" msgstr "" -#: desk/reportview.py:580 +#: desk/reportview.py:584 msgid "No Tags" msgstr "" @@ -20943,7 +21046,7 @@ msgstr "" msgid "No changes made because old and new name are the same." msgstr "" -#: public/js/frappe/views/workspace/workspace.js:1483 +#: public/js/frappe/views/workspace/workspace.js:1488 msgid "No changes made on the page" msgstr "" @@ -21053,7 +21156,7 @@ msgctxt "SMS Log" msgid "No of Sent SMS" msgstr "" -#: __init__.py:1118 client.py:109 client.py:151 +#: __init__.py:1121 client.py:109 client.py:151 msgid "No permission for {0}" msgstr "" @@ -21062,7 +21165,7 @@ msgctxt "{0} = verb, {1} = object" msgid "No permission to '{0}' {1}" msgstr "" -#: model/db_query.py:935 +#: model/db_query.py:924 msgid "No permission to read {0}" msgstr "" @@ -21090,7 +21193,7 @@ msgstr "" msgid "No template found at path: {0}" msgstr "" -#: public/js/frappe/form/controls/multiselect_list.js:226 +#: public/js/frappe/form/controls/multiselect_list.js:246 msgid "No values to show" msgstr "" @@ -21114,11 +21217,7 @@ msgstr "" msgid "No {0} mail" msgstr "" -#: public/js/form_builder/utils.js:117 -msgid "No." -msgstr "" - -#: public/js/frappe/form/grid_row.js:252 +#: public/js/form_builder/utils.js:117 public/js/frappe/form/grid_row.js:252 msgctxt "Title of the 'row number' column" msgid "No." msgstr "" @@ -21164,7 +21263,7 @@ msgctxt "Recorder Query" msgid "Normalized Query" msgstr "" -#: core/doctype/user/user.py:1010 templates/includes/login/login.js:258 +#: core/doctype/user/user.py:1012 templates/includes/login/login.js:258 #: utils/oauth.py:265 msgid "Not Allowed" msgstr "" @@ -21213,10 +21312,10 @@ msgctxt "DocField" msgid "Not Nullable" msgstr "" -#: __init__.py:1014 app.py:353 desk/calendar.py:26 geo/utils.py:97 +#: __init__.py:1017 app.py:353 desk/calendar.py:26 geo/utils.py:97 #: public/js/frappe/web_form/webform_script.js:15 #: website/doctype/web_form/web_form.py:602 -#: website/page_renderers/not_permitted_page.py:20 www/login.py:174 +#: website/page_renderers/not_permitted_page.py:20 www/login.py:178 #: www/qrcode.py:22 www/qrcode.py:25 www/qrcode.py:37 msgid "Not Permitted" msgstr "" @@ -21273,7 +21372,7 @@ msgstr "" msgid "Not a valid Comma Separated Value (CSV File)" msgstr "" -#: core/doctype/user/user.py:232 +#: core/doctype/user/user.py:234 msgid "Not a valid User Image." msgstr "" @@ -21326,7 +21425,7 @@ msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType." msgstr "" #: api/v1.py:88 api/v1.py:93 -#: core/doctype/system_settings/system_settings.py:208 handler.py:109 +#: core/doctype/system_settings/system_settings.py:209 handler.py:109 #: public/js/frappe/request.js:157 public/js/frappe/request.js:167 #: public/js/frappe/request.js:172 #: public/js/frappe/views/kanban/kanban_board.bundle.js:68 @@ -21377,7 +21476,7 @@ msgstr "" msgid "Note: Changing the Page Name will break previous URL to this page." msgstr "" -#: core/doctype/user/user.js:25 +#: core/doctype/user/user.js:35 msgid "Note: Etc timezones have their signs reversed." msgstr "" @@ -21395,7 +21494,7 @@ msgctxt "System Settings" msgid "Note: Multiple sessions will be allowed in case of mobile device" msgstr "" -#: core/doctype/user/user.js:361 +#: core/doctype/user/user.js:371 msgid "Note: This will be shared with user." msgstr "" @@ -21642,7 +21741,7 @@ msgstr "" msgid "Number of attachment fields are more than {}, limit updated to {}." msgstr "" -#: core/doctype/system_settings/system_settings.py:161 +#: core/doctype/system_settings/system_settings.py:162 msgid "Number of backups must be greater than zero." msgstr "" @@ -21844,7 +21943,7 @@ msgctxt "Webhook" msgid "On checking this option, URL will be treated like a jinja template string" msgstr "" -#: public/js/frappe/views/communication.js:932 +#: public/js/frappe/views/communication.js:943 msgid "On {0}, {1} wrote:" msgstr "" @@ -21911,7 +22010,7 @@ msgstr "" msgid "One of" msgstr "" -#: public/js/frappe/views/workspace/workspace.js:1318 +#: public/js/frappe/views/workspace/workspace.js:1323 msgid "One of the child page with name {0} already exist in {1} Section. Please update the name of the child page first before moving" msgstr "" @@ -21927,7 +22026,7 @@ msgstr "" msgid "Only Administrator can edit" msgstr "" -#: core/doctype/report/report.py:72 +#: core/doctype/report/report.py:75 msgid "Only Administrator can save a standard report. Please rename and save." msgstr "" @@ -21955,7 +22054,7 @@ msgstr "" msgid "Only Workspace Manager can edit public workspaces" msgstr "" -#: public/js/frappe/views/workspace/workspace.js:542 +#: public/js/frappe/views/workspace/workspace.js:547 msgid "Only Workspace Manager can sort or edit this page" msgstr "" @@ -21985,11 +22084,11 @@ msgstr "" msgid "Only one {0} can be set as primary." msgstr "" -#: desk/reportview.py:332 +#: desk/reportview.py:336 msgid "Only reports of type Report Builder can be deleted" msgstr "" -#: desk/reportview.py:303 +#: desk/reportview.py:307 msgid "Only reports of type Report Builder can be edited" msgstr "" @@ -22017,7 +22116,7 @@ msgstr "" msgid "Open" msgstr "" -#: desk/doctype/todo/todo_list.js:20 +#: desk/doctype/todo/todo_list.js:14 msgctxt "Access" msgid "Open" msgstr "" @@ -22114,7 +22213,7 @@ msgstr "" msgid "Open your authentication app on your mobile phone." msgstr "" -#: desk/doctype/todo/todo_list.js:23 +#: desk/doctype/todo/todo_list.js:17 #: public/js/frappe/form/templates/form_links.html:18 #: public/js/frappe/ui/toolbar/search_utils.js:277 #: public/js/frappe/ui/toolbar/search_utils.js:278 @@ -22618,7 +22717,7 @@ msgctxt "Form Tour" msgid "Page Route" msgstr "" -#: public/js/frappe/views/workspace/workspace.js:1505 +#: public/js/frappe/views/workspace/workspace.js:1510 msgid "Page Saved Successfully" msgstr "" @@ -22659,7 +22758,12 @@ msgstr "" msgid "Page not found" msgstr "" -#: public/js/frappe/views/workspace/workspace.js:1305 +#. Description of a DocType +#: website/doctype/web_page/web_page.json +msgid "Page to show on the website\n" +msgstr "" + +#: public/js/frappe/views/workspace/workspace.js:1310 msgid "Page with title {0} already exist." msgstr "" @@ -22677,9 +22781,9 @@ msgid "Parameter" msgstr "" #: public/js/frappe/model/model.js:132 -#: public/js/frappe/views/workspace/workspace.js:612 -#: public/js/frappe/views/workspace/workspace.js:940 -#: public/js/frappe/views/workspace/workspace.js:1187 +#: public/js/frappe/views/workspace/workspace.js:617 +#: public/js/frappe/views/workspace/workspace.js:945 +#: public/js/frappe/views/workspace/workspace.js:1192 msgid "Parent" msgstr "" @@ -22801,8 +22905,8 @@ msgctxt "Contact" msgid "Passive" msgstr "" -#: core/doctype/user/user.js:148 core/doctype/user/user.js:195 -#: core/doctype/user/user.js:215 desk/page/setup_wizard/setup_wizard.js:474 +#: core/doctype/user/user.js:158 core/doctype/user/user.js:205 +#: core/doctype/user/user.js:225 desk/page/setup_wizard/setup_wizard.js:474 #: www/login.html:21 msgid "Password" msgstr "" @@ -22844,11 +22948,11 @@ msgctxt "Web Form Field" msgid "Password" msgstr "" -#: core/doctype/user/user.py:1073 +#: core/doctype/user/user.py:1075 msgid "Password Email Sent" msgstr "" -#: core/doctype/user/user.py:452 +#: core/doctype/user/user.py:454 msgid "Password Reset" msgstr "" @@ -22884,7 +22988,7 @@ msgstr "" msgid "Password not found for {0} {1} {2}" msgstr "" -#: core/doctype/user/user.py:1072 +#: core/doctype/user/user.py:1074 msgid "Password reset instructions have been sent to your email" msgstr "" @@ -22896,7 +23000,7 @@ msgstr "" msgid "Password size exceeded the maximum allowed size" msgstr "" -#: core/doctype/user/user.py:868 +#: core/doctype/user/user.py:870 msgid "Password size exceeded the maximum allowed size." msgstr "" @@ -22904,7 +23008,7 @@ msgstr "" msgid "Passwords do not match" msgstr "" -#: core/doctype/user/user.js:181 +#: core/doctype/user/user.js:191 msgid "Passwords do not match!" msgstr "" @@ -23139,7 +23243,7 @@ msgid "Permission Type" msgstr "" #. Label of a Card Break in the Users Workspace -#: core/doctype/user/user.js:123 core/doctype/user/user.js:132 +#: core/doctype/user/user.js:133 core/doctype/user/user.js:142 #: core/page/permission_manager/permission_manager.js:214 #: core/workspace/users/users.json msgid "Permissions" @@ -23373,7 +23477,7 @@ msgstr "" msgid "Please add a valid comment." msgstr "" -#: core/doctype/user/user.py:1055 +#: core/doctype/user/user.py:1057 msgid "Please ask your administrator to verify your sign-up" msgstr "" @@ -23405,11 +23509,11 @@ msgstr "" msgid "Please check the value of \"Fetch From\" set for field {0}" msgstr "" -#: core/doctype/user/user.py:1053 +#: core/doctype/user/user.py:1055 msgid "Please check your email for verification" msgstr "" -#: email/smtp.py:131 +#: email/smtp.py:133 msgid "Please check your email login credentials." msgstr "" @@ -23457,7 +23561,7 @@ msgstr "" msgid "Please duplicate this to make changes" msgstr "" -#: core/doctype/system_settings/system_settings.py:154 +#: core/doctype/system_settings/system_settings.py:155 msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login." msgstr "" @@ -23593,7 +23697,7 @@ msgstr "" msgid "Please select Entity Type first" msgstr "" -#: core/doctype/system_settings/system_settings.py:104 +#: core/doctype/system_settings/system_settings.py:105 msgid "Please select Minimum Password Score" msgstr "" @@ -23621,7 +23725,7 @@ msgstr "" msgid "Please select applicable Doctypes" msgstr "" -#: model/db_query.py:1134 +#: model/db_query.py:1118 msgid "Please select atleast 1 column from {0} to sort/group" msgstr "" @@ -23664,7 +23768,7 @@ msgstr "" msgid "Please set filters value in Report Filter table." msgstr "" -#: model/naming.py:528 +#: model/naming.py:550 msgid "Please set the document name" msgstr "" @@ -23676,7 +23780,7 @@ msgstr "" msgid "Please set the series to be used." msgstr "" -#: core/doctype/system_settings/system_settings.py:117 +#: core/doctype/system_settings/system_settings.py:118 msgid "Please setup SMS before setting it as an authentication method, via SMS Settings" msgstr "" @@ -23688,7 +23792,7 @@ msgstr "" msgid "Please setup default Email Account from Settings > Email Account" msgstr "" -#: core/doctype/user/user.py:403 +#: core/doctype/user/user.py:405 msgid "Please setup default outgoing Email Account from Settings > Email Account" msgstr "" @@ -23940,7 +24044,7 @@ msgstr "" msgid "Preparing Report" msgstr "" -#: public/js/frappe/views/communication.js:400 +#: public/js/frappe/views/communication.js:411 msgid "Prepend the template to the email message" msgstr "" @@ -24097,7 +24201,7 @@ msgstr "" msgid "Print" msgstr "" -#: public/js/frappe/list/list_view.js:1912 +#: public/js/frappe/list/list_view.js:1919 msgctxt "Button in list view actions menu" msgid "Print" msgstr "" @@ -24266,7 +24370,7 @@ msgctxt "DocField" msgid "Print Hide If No Value" msgstr "" -#: public/js/frappe/views/communication.js:153 +#: public/js/frappe/views/communication.js:156 msgid "Print Language" msgstr "" @@ -24518,6 +24622,11 @@ msgctxt "Module Def" msgid "Property Setter" msgstr "" +#. Description of a DocType +#: custom/doctype/property_setter/property_setter.json +msgid "Property Setter overrides a standard DocType or Field property" +msgstr "" + #. Label of a Data field in DocType 'Property Setter' #: custom/doctype/property_setter/property_setter.json msgctxt "Property Setter" @@ -24556,9 +24665,9 @@ msgid "Provider Name" msgstr "" #: desk/doctype/note/note_list.js:6 public/js/frappe/views/interaction.js:78 -#: public/js/frappe/views/workspace/workspace.js:619 -#: public/js/frappe/views/workspace/workspace.js:947 -#: public/js/frappe/views/workspace/workspace.js:1193 +#: public/js/frappe/views/workspace/workspace.js:624 +#: public/js/frappe/views/workspace/workspace.js:952 +#: public/js/frappe/views/workspace/workspace.js:1198 msgid "Public" msgstr "" @@ -24581,7 +24690,7 @@ msgid "Public" msgstr "" #: website/doctype/blog_post/blog_post.js:36 -#: website/doctype/web_form/web_form.js:76 +#: website/doctype/web_form/web_form.js:86 msgid "Publish" msgstr "" @@ -25025,6 +25134,12 @@ msgctxt "Blog Settings" msgid "Rate Limits" msgstr "" +#. Label of a Int field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Rate limit for email link login" +msgstr "" + #. Label of a Int field in DocType 'Communication' #: core/doctype/communication/communication.json msgctxt "Communication" @@ -25101,7 +25216,7 @@ msgstr "" #: core/doctype/communication/communication.js:268 #: public/js/frappe/form/footer/form_timeline.js:587 -#: public/js/frappe/views/communication.js:336 +#: public/js/frappe/views/communication.js:347 msgid "Re: {0}" msgstr "" @@ -25903,11 +26018,11 @@ msgid "Refreshing" msgstr "" #: core/doctype/system_settings/system_settings.js:52 -#: core/doctype/user/user.js:340 desk/page/setup_wizard/setup_wizard.js:204 +#: core/doctype/user/user.js:350 desk/page/setup_wizard/setup_wizard.js:204 msgid "Refreshing..." msgstr "" -#: core/doctype/user/user.py:1017 +#: core/doctype/user/user.py:1019 msgid "Registered but disabled" msgstr "" @@ -26274,7 +26389,7 @@ msgctxt "Onboarding Step" msgid "Report Description" msgstr "" -#: core/doctype/report/report.py:145 +#: core/doctype/report/report.py:148 msgid "Report Document Error" msgstr "" @@ -26424,7 +26539,7 @@ msgstr "" msgid "Report {0}" msgstr "" -#: desk/reportview.py:339 +#: desk/reportview.py:343 msgid "Report {0} deleted" msgstr "" @@ -26432,7 +26547,7 @@ msgstr "" msgid "Report {0} is disabled" msgstr "" -#: desk/reportview.py:316 +#: desk/reportview.py:320 msgid "Report {0} saved" msgstr "" @@ -26458,6 +26573,16 @@ msgstr "" msgid "Reports already in Queue" msgstr "" +#. Description of a DocType +#: core/doctype/user/user.json +msgid "Represents a User in the system." +msgstr "" + +#. Description of a DocType +#: 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 "" + #: www/me.html:66 msgid "Request Account Deletion" msgstr "" @@ -26594,7 +26719,7 @@ msgstr "" msgid "Reset Fields" msgstr "" -#: core/doctype/user/user.js:155 core/doctype/user/user.js:158 +#: core/doctype/user/user.js:165 core/doctype/user/user.js:168 msgid "Reset LDAP Password" msgstr "" @@ -26602,11 +26727,11 @@ msgstr "" msgid "Reset Layout" msgstr "" -#: core/doctype/user/user.js:206 +#: core/doctype/user/user.js:216 msgid "Reset OTP Secret" msgstr "" -#: core/doctype/user/user.js:139 www/login.html:179 www/me.html:35 +#: core/doctype/user/user.js:149 www/login.html:179 www/me.html:35 #: www/me.html:44 www/update-password.html:3 www/update-password.html:9 msgid "Reset Password" msgstr "" @@ -27055,7 +27180,7 @@ msgstr "" msgid "Role Permissions Manager" msgstr "" -#: public/js/frappe/list/list_view.js:1689 +#: public/js/frappe/list/list_view.js:1696 msgctxt "Button in list view menu" msgid "Role Permissions Manager" msgstr "" @@ -27101,7 +27226,7 @@ msgctxt "DocPerm" msgid "Role and Level" msgstr "" -#: core/doctype/user/user.py:348 +#: core/doctype/user/user.py:350 msgid "Role has been set as per the user type {0}" msgstr "" @@ -27688,7 +27813,7 @@ msgstr "" #: public/js/frappe/views/kanban/kanban_view.js:340 #: public/js/frappe/views/reports/query_report.js:1802 #: public/js/frappe/views/reports/report_view.js:1628 -#: public/js/frappe/views/workspace/workspace.js:493 +#: public/js/frappe/views/workspace/workspace.js:498 #: public/js/frappe/widgets/base_widget.js:140 #: public/js/frappe/widgets/quick_list_widget.js:117 #: public/js/print_format_builder/print_format_builder.bundle.js:15 @@ -27702,7 +27827,7 @@ msgctxt "Notification" msgid "Save" msgstr "" -#: core/doctype/user/user.js:311 +#: core/doctype/user/user.js:321 msgid "Save API Secret: {0}" msgstr "" @@ -27750,7 +27875,7 @@ msgstr "" #: public/js/frappe/list/list_settings.js:40 #: public/js/frappe/views/kanban/kanban_settings.js:47 -#: public/js/frappe/views/workspace/workspace.js:505 +#: public/js/frappe/views/workspace/workspace.js:510 msgid "Saving" msgstr "" @@ -27789,7 +27914,7 @@ msgstr "" msgid "Schedule Newsletter" msgstr "" -#: public/js/frappe/views/communication.js:82 +#: public/js/frappe/views/communication.js:85 msgid "Schedule Send At" msgstr "" @@ -27995,6 +28120,11 @@ msgctxt "Server Script" msgid "Script Type" msgstr "" +#. Description of a DocType +#: website/doctype/website_script/website_script.json +msgid "Script to attach to all web pages." +msgstr "" + #. Label of a Card Break in the Build Workspace #: core/workspace/build/build.json msgid "Scripting" @@ -28284,8 +28414,8 @@ msgstr "" msgid "Select All" msgstr "" -#: public/js/frappe/views/communication.js:162 -#: public/js/frappe/views/communication.js:567 +#: public/js/frappe/views/communication.js:165 +#: public/js/frappe/views/communication.js:578 #: public/js/frappe/views/interaction.js:93 #: public/js/frappe/views/interaction.js:155 msgid "Select Attachments" @@ -28436,7 +28566,7 @@ msgid "Select Page" msgstr "" #: printing/page/print_format_builder_beta/print_format_builder_beta.js:68 -#: public/js/frappe/views/communication.js:145 +#: public/js/frappe/views/communication.js:148 msgid "Select Print Format" msgstr "" @@ -28683,7 +28813,7 @@ msgctxt "Print Settings" msgid "Send Print as PDF" msgstr "" -#: public/js/frappe/views/communication.js:135 +#: public/js/frappe/views/communication.js:138 msgid "Send Read Receipt" msgstr "" @@ -28769,7 +28899,7 @@ msgstr "" msgid "Send login link" msgstr "" -#: public/js/frappe/views/communication.js:129 +#: public/js/frappe/views/communication.js:132 msgid "Send me a copy" msgstr "" @@ -29098,7 +29228,7 @@ msgctxt "System Settings" msgid "Session Expiry (idle timeout)" msgstr "" -#: core/doctype/system_settings/system_settings.py:111 +#: core/doctype/system_settings/system_settings.py:112 msgid "Session Expiry must be in format {0}" msgstr "" @@ -29130,7 +29260,7 @@ msgstr "" #: desk/doctype/dashboard_chart/dashboard_chart.js:381 #: desk/doctype/number_card/number_card.js:277 -#: website/doctype/web_form/web_form.js:259 +#: website/doctype/web_form/web_form.js:269 msgid "Set Filters" msgstr "" @@ -29190,7 +29320,7 @@ msgctxt "Role Permission for Page and Report" msgid "Set Role For" msgstr "" -#: core/doctype/user/user.js:116 +#: core/doctype/user/user.js:126 #: core/page/permission_manager/permission_manager.js:65 msgid "Set User Permissions" msgstr "" @@ -29317,7 +29447,7 @@ msgstr "" #: integrations/workspace/integrations/integrations.json #: public/js/frappe/form/templates/print_layout.html:25 #: public/js/frappe/ui/toolbar/toolbar.js:264 -#: public/js/frappe/views/workspace/workspace.js:521 +#: public/js/frappe/views/workspace/workspace.js:526 msgid "Settings" msgstr "" @@ -29352,6 +29482,21 @@ msgctxt "Navbar Settings" msgid "Settings Dropdown" msgstr "" +#. Description of a DocType +#: website/doctype/contact_us_settings/contact_us_settings.json +msgid "Settings for Contact Us Page" +msgstr "" + +#. Description of a DocType +#: website/doctype/about_us_settings/about_us_settings.json +msgid "Settings for the About Us Page" +msgstr "" + +#. Description of a DocType +#: website/doctype/blog_settings/blog_settings.json +msgid "Settings to control blog categories and interactions like comments and likes" +msgstr "" + #. Label of a Card Break in the Website Workspace #: public/js/frappe/ui/toolbar/search_utils.js:567 #: website/workspace/website/website.json @@ -29720,7 +29865,7 @@ msgid "Show Sidebar" msgstr "" #: public/js/frappe/list/list_sidebar.html:66 -#: public/js/frappe/list/list_view.js:1605 +#: public/js/frappe/list/list_view.js:1612 msgid "Show Tags" msgstr "" @@ -29876,7 +30021,7 @@ msgctxt "Email Group" msgid "Sign Up and Confirmation" msgstr "" -#: core/doctype/user/user.py:1010 +#: core/doctype/user/user.py:1012 msgid "Sign Up is disabled" msgstr "" @@ -30078,6 +30223,11 @@ msgctxt "Website Slideshow" msgid "Slideshow Name" msgstr "" +#. Description of a DocType +#: website/doctype/website_slideshow/website_slideshow.json +msgid "Slideshow like display for the website" +msgstr "" + #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' #: custom/doctype/custom_field/custom_field.json msgctxt "Custom Field" @@ -30288,7 +30438,7 @@ msgstr "" msgid "Special Characters are not allowed" msgstr "" -#: model/naming.py:60 +#: model/naming.py:61 msgid "Special Characters except '-', '#', '.', '/', '{{' and '}}' not allowed in naming series {0}" msgstr "" @@ -30298,7 +30448,7 @@ msgctxt "Website Settings" msgid "Splash Image" msgstr "" -#: desk/reportview.py:378 public/js/frappe/web_form/web_form_list.js:175 +#: desk/reportview.py:382 public/js/frappe/web_form/web_form_list.js:175 #: templates/print_formats/standard_macros.html:44 msgid "Sr" msgstr "" @@ -30373,11 +30523,11 @@ msgstr "" msgid "Standard Print Style cannot be changed. Please duplicate to edit." msgstr "" -#: desk/reportview.py:329 +#: desk/reportview.py:333 msgid "Standard Reports cannot be deleted" msgstr "" -#: desk/reportview.py:300 +#: desk/reportview.py:304 msgid "Standard Reports cannot be edited" msgstr "" @@ -30387,7 +30537,7 @@ msgctxt "Portal Settings" msgid "Standard Sidebar Menu" msgstr "" -#: website/doctype/web_form/web_form.js:30 +#: website/doctype/web_form/web_form.js:40 msgid "Standard Web Forms can not be modified, duplicate the Web Form instead." msgstr "" @@ -30853,7 +31003,7 @@ msgctxt "Website Settings" msgid "Subdomain" msgstr "" -#: public/js/frappe/views/communication.js:104 +#: public/js/frappe/views/communication.js:107 #: public/js/frappe/views/inbox/inbox_view.js:63 msgid "Subject" msgstr "" @@ -30949,7 +31099,7 @@ msgstr "" msgid "Submit" msgstr "" -#: public/js/frappe/list/list_view.js:1979 +#: public/js/frappe/list/list_view.js:1986 msgctxt "Button in list view actions menu" msgid "Submit" msgstr "" @@ -31046,7 +31196,7 @@ msgstr "" msgid "Submit this document to confirm" msgstr "" -#: public/js/frappe/list/list_view.js:1984 +#: public/js/frappe/list/list_view.js:1991 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "" @@ -31226,7 +31376,7 @@ msgstr "" msgid "Successfully updated {0} out of {1} records." msgstr "" -#: core/doctype/user/user.py:725 +#: core/doctype/user/user.py:727 msgid "Suggested Username: {0}" msgstr "" @@ -31803,7 +31953,7 @@ msgstr "" msgid "Templates" msgstr "" -#: core/doctype/user/user.py:1021 +#: core/doctype/user/user.py:1023 msgid "Temporarily Disabled" msgstr "" @@ -31891,6 +32041,16 @@ msgstr "" msgid "Thank you" msgstr "" +#: www/contact.py:37 +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 "" + #: website/doctype/web_form/templates/web_form.html:137 msgid "Thank you for spending your valuable time to fill this form" msgstr "" @@ -32038,7 +32198,7 @@ msgstr "" msgid "The link will expire in {0} minutes" msgstr "" -#: www/login.py:175 +#: www/login.py:179 msgid "The link you trying to login is invalid or expired." msgstr "" @@ -32089,11 +32249,11 @@ msgid "" "" msgstr "" -#: core/doctype/user/user.py:981 +#: core/doctype/user/user.py:983 msgid "The reset password link has been expired" msgstr "" -#: core/doctype/user/user.py:983 +#: core/doctype/user/user.py:985 msgid "The reset password link has either been used before or is invalid" msgstr "" @@ -32191,8 +32351,8 @@ msgstr "" msgid "There are {0} with the same filters already in the queue:" msgstr "" -#: website/doctype/web_form/web_form.js:71 -#: website/doctype/web_form/web_form.js:307 +#: website/doctype/web_form/web_form.js:81 +#: website/doctype/web_form/web_form.js:317 msgid "There can be only 9 Page Break fields in a Web Form" msgstr "" @@ -32220,7 +32380,7 @@ msgstr "" msgid "There must be atleast one permission rule." msgstr "" -#: core/doctype/user/user.py:533 +#: core/doctype/user/user.py:535 msgid "There should remain at least one System Manager" msgstr "" @@ -32240,11 +32400,11 @@ msgstr "" msgid "There were errors while creating the document. Please try again." msgstr "" -#: public/js/frappe/views/communication.js:809 +#: public/js/frappe/views/communication.js:820 msgid "There were errors while sending email. Please try again." msgstr "" -#: model/naming.py:448 +#: model/naming.py:470 msgid "There were some errors setting the name, please contact the administrator" msgstr "" @@ -32291,7 +32451,7 @@ msgstr "" msgid "This Kanban Board will be private" msgstr "" -#: __init__.py:1010 +#: __init__.py:1013 msgid "This action is only allowed for {}" msgstr "" @@ -32521,7 +32681,7 @@ msgstr "" msgid "This will terminate the job immediately and might be dangerous, are you sure? " msgstr "" -#: core/doctype/user/user.py:1241 +#: core/doctype/user/user.py:1243 msgid "Throttled" msgstr "" @@ -32789,9 +32949,9 @@ msgstr "" #: core/doctype/doctype/boilerplate/controller_list.html:14 #: core/doctype/doctype/boilerplate/controller_list.html:23 -#: public/js/frappe/views/workspace/workspace.js:605 -#: public/js/frappe/views/workspace/workspace.js:934 -#: public/js/frappe/views/workspace/workspace.js:1181 +#: public/js/frappe/views/workspace/workspace.js:610 +#: public/js/frappe/views/workspace/workspace.js:939 +#: public/js/frappe/views/workspace/workspace.js:1186 msgid "Title" msgstr "" @@ -32974,7 +33134,7 @@ msgctxt "Auto Email Report" msgid "To Date Field" msgstr "" -#: desk/doctype/todo/todo_list.js:12 +#: desk/doctype/todo/todo_list.js:6 msgid "To Do" msgstr "" @@ -33144,7 +33304,7 @@ msgstr "" msgid "Toggle Sidebar" msgstr "" -#: public/js/frappe/list/list_view.js:1720 +#: public/js/frappe/list/list_view.js:1727 msgctxt "Button in list view menu" msgid "Toggle Sidebar" msgstr "" @@ -33206,7 +33366,7 @@ msgstr "" msgid "Too many changes to database in single action." msgstr "" -#: core/doctype/user/user.py:1022 +#: core/doctype/user/user.py:1024 msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour" msgstr "" @@ -33405,6 +33565,11 @@ msgid "" "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 +#: automation/doctype/milestone_tracker/milestone_tracker.json +msgid "Track milestones for any document" +msgstr "" + #: public/js/frappe/utils/utils.js:1757 msgid "Tracking URL generated and copied to clipboard" msgstr "" @@ -33896,7 +34061,7 @@ msgstr "" msgid "Unhandled Email" msgstr "" -#: public/js/frappe/views/workspace/workspace.js:562 +#: public/js/frappe/views/workspace/workspace.js:567 msgid "Unhide Workspace" msgstr "" @@ -33943,7 +34108,7 @@ msgid "Unlock Reference Document" msgstr "" #: website/doctype/blog_post/blog_post.js:36 -#: website/doctype/web_form/web_form.js:76 +#: website/doctype/web_form/web_form.js:86 msgid "Unpublish" msgstr "" @@ -34047,7 +34212,7 @@ msgstr "" #: printing/page/print_format_builder/print_format_builder.js:670 #: printing/page/print_format_builder/print_format_builder.js:757 #: public/js/frappe/form/grid_row.js:403 -#: public/js/frappe/views/workspace/workspace.js:653 +#: public/js/frappe/views/workspace/workspace.js:658 msgid "Update" msgstr "" @@ -34063,7 +34228,7 @@ msgctxt "Document Naming Settings" msgid "Update Amendment Naming" msgstr "" -#: public/js/frappe/views/workspace/workspace.js:602 +#: public/js/frappe/views/workspace/workspace.js:607 msgid "Update Details" msgstr "" @@ -34325,11 +34490,11 @@ msgctxt "Email Account" msgid "Use different Email ID" msgstr "" -#: model/db_query.py:424 +#: model/db_query.py:423 msgid "Use of function {0} in field is restricted" msgstr "" -#: model/db_query.py:403 +#: model/db_query.py:402 msgid "Use of sub-query or function is restricted" msgstr "" @@ -34625,6 +34790,11 @@ msgctxt "Social Login Key" msgid "User ID Property" msgstr "" +#. Description of a DocType +#: website/doctype/blogger/blogger.json +msgid "User ID of a Blogger" +msgstr "" + #. Label of a Link field in DocType 'Contact' #: contacts/doctype/contact/contact.json msgctxt "Contact" @@ -34674,7 +34844,7 @@ msgstr "" msgid "User Permissions" msgstr "" -#: public/js/frappe/list/list_view.js:1678 +#: public/js/frappe/list/list_view.js:1685 msgctxt "Button in list view menu" msgid "User Permissions" msgstr "" @@ -34809,15 +34979,15 @@ msgstr "" msgid "User with email: {0} does not exist in the system. Please ask 'System Administrator' to create the user for you." msgstr "" -#: core/doctype/user/user.py:538 +#: core/doctype/user/user.py:540 msgid "User {0} cannot be deleted" msgstr "" -#: core/doctype/user/user.py:277 +#: core/doctype/user/user.py:279 msgid "User {0} cannot be disabled" msgstr "" -#: core/doctype/user/user.py:607 +#: core/doctype/user/user.py:609 msgid "User {0} cannot be renamed" msgstr "" @@ -34834,7 +35004,7 @@ msgstr "" msgid "User {0} has requested for data deletion" msgstr "" -#: core/doctype/user/user.py:1370 +#: core/doctype/user/user.py:1372 msgid "User {0} impersonated as {1}" msgstr "" @@ -34868,7 +35038,7 @@ msgctxt "User Social Login" msgid "Username" msgstr "" -#: core/doctype/user/user.py:692 +#: core/doctype/user/user.py:694 msgid "Username {0} already exists" msgstr "" @@ -34949,7 +35119,7 @@ msgstr "" #: public/js/frappe/list/bulk_operations.js:306 #: public/js/frappe/list/bulk_operations.js:368 #: public/js/frappe/list/list_view_permission_restrictions.html:4 -#: website/doctype/web_form/web_form.js:187 +#: website/doctype/web_form/web_form.js:197 msgid "Value" msgstr "" @@ -35183,7 +35353,7 @@ msgstr "" msgid "View Log" msgstr "" -#: core/doctype/user/user.js:127 +#: core/doctype/user/user.js:137 #: core/doctype/user_permission/user_permission.js:24 msgid "View Permitted Documents" msgstr "" @@ -35360,6 +35530,10 @@ msgstr "" msgid "We have received a request from you to download your {0} data associated with: {1}" msgstr "" +#: www/contact.py:48 +msgid "We've received your query!" +msgstr "" + #: public/js/frappe/form/controls/password.js:88 msgid "Weak" msgstr "" @@ -35902,11 +36076,11 @@ msgstr "" msgid "Welcome Workspace" msgstr "" -#: core/doctype/user/user.py:395 +#: core/doctype/user/user.py:397 msgid "Welcome email sent" msgstr "" -#: core/doctype/user/user.py:470 +#: core/doctype/user/user.py:472 msgid "Welcome to {0}" msgstr "" @@ -36076,6 +36250,7 @@ msgid "Workflow Action" msgstr "" #. Name of a DocType +#. Description of a DocType #: workflow/doctype/workflow_action_master/workflow_action_master.json msgid "Workflow Action Master" msgstr "" @@ -36171,6 +36346,11 @@ msgstr "" msgid "Workflow Transition" msgstr "" +#. Description of a DocType +#: workflow/doctype/workflow_state/workflow_state.json +msgid "Workflow state represents the current state of a document." +msgstr "" + #. Description of the Onboarding Step 'Setup Approval Workflows' #: custom/onboarding_step/workflows/workflows.json msgid "Workflows allow you to define custom rules for the approval process of a particular document in ERPNext. You can also set complex Workflow Rules and set approval conditions." @@ -36189,6 +36369,12 @@ msgctxt "Module Def" msgid "Workspace" msgstr "" +#. Label of a Section Break field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Workspace" +msgstr "" + #. Label of a Link in the Build Workspace #: core/workspace/build/build.json msgctxt "Workspace" @@ -36239,15 +36425,15 @@ msgstr "" msgid "Workspace not found" msgstr "" -#: public/js/frappe/views/workspace/workspace.js:1271 +#: public/js/frappe/views/workspace/workspace.js:1276 msgid "Workspace {0} Created Successfully" msgstr "" -#: public/js/frappe/views/workspace/workspace.js:900 +#: public/js/frappe/views/workspace/workspace.js:905 msgid "Workspace {0} Deleted Successfully" msgstr "" -#: public/js/frappe/views/workspace/workspace.js:678 +#: public/js/frappe/views/workspace/workspace.js:683 msgid "Workspace {0} Edited Successfully" msgstr "" @@ -36477,7 +36663,7 @@ msgstr "" msgid "You are not allowed to create columns" msgstr "" -#: core/doctype/report/report.py:94 +#: core/doctype/report/report.py:97 msgid "You are not allowed to delete Standard Report" msgstr "" @@ -36485,7 +36671,7 @@ msgstr "" msgid "You are not allowed to delete a standard Website Theme" msgstr "" -#: core/doctype/report/report.py:377 +#: core/doctype/report/report.py:383 msgid "You are not allowed to edit the report." msgstr "" @@ -36497,7 +36683,7 @@ msgstr "" msgid "You are not allowed to print this report" msgstr "" -#: public/js/frappe/views/communication.js:753 +#: public/js/frappe/views/communication.js:764 msgid "You are not allowed to send emails related to this document" msgstr "" @@ -36517,7 +36703,7 @@ msgstr "" msgid "You are not permitted to access this page." msgstr "" -#: __init__.py:929 +#: __init__.py:932 msgid "You are not permitted to access this resource." msgstr "" @@ -36570,7 +36756,7 @@ msgstr "" msgid "You can continue with the onboarding after exploring this page" msgstr "" -#: core/doctype/user/user.py:598 +#: core/doctype/user/user.py:600 msgid "You can disable the user instead of deleting it." msgstr "" @@ -36606,6 +36792,13 @@ msgstr "" msgid "You can select one from the following," msgstr "" +#. Description of the 'Rate limit for email link login' (Int) field in DocType +#. 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "You can set a high value here if multiple users will be logging in from the same network." +msgstr "" + #: desk/query_report.py:332 msgid "You can try changing the filters of your report." msgstr "" @@ -37791,7 +37984,7 @@ msgstr "" msgid "logged in" msgstr "" -#: website/doctype/web_form/web_form.js:352 +#: website/doctype/web_form/web_form.js:362 msgid "login_required" msgstr "" @@ -38815,7 +39008,7 @@ msgctxt "Form timeline" msgid "{0} attached {1}" msgstr "" -#: core/doctype/system_settings/system_settings.py:141 +#: core/doctype/system_settings/system_settings.py:142 msgid "{0} can not be more than {1}" msgstr "" @@ -38953,7 +39146,7 @@ msgstr "" msgid "{0} has left the conversation in {1} {2}" msgstr "" -#: __init__.py:2480 +#: __init__.py:2483 msgid "{0} has no versions tracked." msgstr "" @@ -39099,7 +39292,7 @@ msgstr "" msgid "{0} is one of {1}" msgstr "" -#: email/doctype/email_account/email_account.py:277 model/naming.py:201 +#: email/doctype/email_account/email_account.py:277 model/naming.py:202 #: printing/doctype/print_format/print_format.py:90 utils/csvutils.py:131 msgid "{0} is required" msgstr "" @@ -39112,11 +39305,11 @@ msgstr "" msgid "{0} is within {1}" msgstr "" -#: public/js/frappe/list/list_view.js:1595 +#: public/js/frappe/list/list_view.js:1602 msgid "{0} items selected" msgstr "" -#: core/doctype/user/user.py:1379 +#: core/doctype/user/user.py:1381 msgid "{0} just impersonated as you. They gave this reason: {1}" msgstr "" @@ -39183,11 +39376,11 @@ msgstr "" msgid "{0} not found" msgstr "" -#: core/doctype/report/report.py:413 public/js/frappe/list/list_view.js:986 +#: core/doctype/report/report.py:419 public/js/frappe/list/list_view.js:987 msgid "{0} of {1}" msgstr "" -#: public/js/frappe/list/list_view.js:988 +#: public/js/frappe/list/list_view.js:989 msgid "{0} of {1} ({2} rows with children)" msgstr "" @@ -39312,7 +39505,7 @@ msgstr "" msgid "{0} updated" msgstr "" -#: public/js/frappe/form/controls/multiselect_list.js:162 +#: public/js/frappe/form/controls/multiselect_list.js:182 msgid "{0} values selected" msgstr "" diff --git a/frappe/model/db_query.py b/frappe/model/db_query.py index f1a36d79b2..54c3afd403 100644 --- a/frappe/model/db_query.py +++ b/frappe/model/db_query.py @@ -7,6 +7,7 @@ import datetime import json import re from collections import Counter +from collections.abc import Sequence import frappe import frappe.defaults @@ -133,6 +134,8 @@ class DatabaseQuery: limit_page_length = page_length if limit: limit_page_length = limit + if as_list and not isinstance(self.fields, (Sequence | str)) and len(self.fields) > 1: + frappe.throw(_("Fields must be a list or tuple when as_list is enabled")) self.filters = filters or [] self.or_filters = or_filters or [] @@ -1073,27 +1076,22 @@ class DatabaseQuery: if self.doctype_meta.sort_field and "," in self.doctype_meta.sort_field: # multiple sort given in doctype definition # Example: - # `idx desc, modified desc` + # `idx desc, creation desc` # will covert to - # `tabItem`.`idx` desc, `tabItem`.`modified` desc + # `tabItem`.`idx` desc, `tabItem`.`creation` desc args.order_by = ", ".join( f"`tab{self.doctype}`.`{f_split[0].strip()}` {f_split[1].strip()}" for f in self.doctype_meta.sort_field.split(",") if (f_split := f.split(maxsplit=2)) ) else: - sort_field = self.doctype_meta.sort_field or "modified" + sort_field = self.doctype_meta.sort_field or "creation" sort_order = (self.doctype_meta.sort_field and self.doctype_meta.sort_order) or "desc" if self.order_by: args.order_by = ( - f"`tab{self.doctype}`.`{sort_field or 'modified'}` {sort_order or 'desc'}" + f"`tab{self.doctype}`.`{sort_field or 'creation'}` {sort_order or 'desc'}" ) - # draft docs always on top - if hasattr(self.doctype_meta, "is_submittable") and self.doctype_meta.is_submittable: - if self.order_by: - args.order_by = f"`tab{self.doctype}`.docstatus asc, {args.order_by}" - def validate_order_by_and_group_by(self, parameters: str): """Check order by, group by so that atleast one column is selected and does not have subquery""" if not parameters: @@ -1208,9 +1206,9 @@ def get_order_by(doctype, meta): if meta.sort_field and "," in meta.sort_field: # multiple sort given in doctype definition # Example: - # `idx desc, modified desc` + # `idx desc, creation desc` # will covert to - # `tabItem`.`idx` desc, `tabItem`.`modified` desc + # `tabItem`.`idx` desc, `tabItem`.`creation` desc order_by = ", ".join( f"`tab{doctype}`.`{f_split[0].strip()}` {f_split[1].strip()}" for f in meta.sort_field.split(",") @@ -1218,13 +1216,9 @@ def get_order_by(doctype, meta): ) else: - sort_field = meta.sort_field or "modified" + sort_field = meta.sort_field or "creation" sort_order = (meta.sort_field and meta.sort_order) or "desc" - order_by = f"`tab{doctype}`.`{sort_field or 'modified'}` {sort_order or 'desc'}" - - # draft docs always on top - if meta.is_submittable: - order_by = f"`tab{doctype}`.docstatus asc, {order_by}" + order_by = f"`tab{doctype}`.`{sort_field}` {sort_order}" return order_by diff --git a/frappe/model/delete_doc.py b/frappe/model/delete_doc.py index e64c50af91..3d83af16b7 100644 --- a/frappe/model/delete_doc.py +++ b/frappe/model/delete_doc.py @@ -338,7 +338,7 @@ def check_if_doc_is_dynamically_linked(doc, method="Delete"): df["table"] = ", `parent`, `parenttype`, `idx`" if meta.istable else "" for refdoc in frappe.db.sql( """select `name`, `docstatus` {table} from `tab{parent}` where - {options}=%s and {fieldname}=%s""".format(**df), + `{options}`=%s and `{fieldname}`=%s""".format(**df), (doc.doctype, doc.name), as_dict=True, ): diff --git a/frappe/model/document.py b/frappe/model/document.py index e3b96c6745..c0a6047f98 100644 --- a/frappe/model/document.py +++ b/frappe/model/document.py @@ -202,9 +202,11 @@ class Document(BaseDocument): if hasattr(self, "__setup__"): self.__setup__() + return self + def reload(self): """Reload document from database""" - self.load_from_db() + return self.load_from_db() def get_latest(self): if not getattr(self, "_doc_before_save", None): @@ -1305,7 +1307,11 @@ class Document(BaseDocument): def runner(self, method, *args, **kwargs): add_to_return_value(self, fn(self, *args, **kwargs)) for f in hooks: - add_to_return_value(self, f(self, method, *args, **kwargs)) + try: + frappe.db._disable_transaction_control += 1 + add_to_return_value(self, f(self, method, *args, **kwargs)) + finally: + frappe.db._disable_transaction_control -= 1 return self.__dict__.pop("_return_value", None) diff --git a/frappe/model/dynamic_links.py b/frappe/model/dynamic_links.py index e4b86ac145..ccd6baacc3 100644 --- a/frappe/model/dynamic_links.py +++ b/frappe/model/dynamic_links.py @@ -43,7 +43,7 @@ def get_dynamic_link_map(for_delete=False): else: try: links = frappe.db.sql_list( - """select distinct {options} from `tab{parent}`""".format(**df) + """select distinct `{options}` from `tab{parent}`""".format(**df) ) for doctype in links: dynamic_link_map.setdefault(doctype, []).append(df) diff --git a/frappe/model/naming.py b/frappe/model/naming.py index 7dabb3d80d..ddbea52c1d 100644 --- a/frappe/model/naming.py +++ b/frappe/model/naming.py @@ -4,10 +4,12 @@ import base64 import datetime import re -import struct import time from collections.abc import Callable from typing import TYPE_CHECKING, Optional +from uuid import UUID + +import uuid_utils import frappe from frappe import _ @@ -39,6 +41,10 @@ class InvalidNamingSeriesError(frappe.ValidationError): pass +class InvalidUUIDValue(frappe.ValidationError): + pass + + class NamingSeries: __slots__ = ("series",) @@ -142,13 +148,25 @@ def set_new_name(doc): meta = frappe.get_meta(doc.doctype) autoname = meta.autoname or "" - if autoname.lower() != "prompt" and not frappe.flags.in_import: + if autoname.lower() not in ("prompt", "uuid") and not frappe.flags.in_import: doc.name = None if is_autoincremented(doc.doctype, meta): doc.name = frappe.db.get_next_sequence_val(doc.doctype) return + if meta.autoname == "UUID": + if not doc.name: + doc.name = str(uuid_utils.uuid7()) + elif isinstance(doc.name, UUID | uuid_utils.UUID): + doc.name = str(doc.name) + elif isinstance(doc.name, str): # validate + try: + UUID(doc.name) + except ValueError: + frappe.throw(_("Invalid value specified for UUID: {}").format(doc.name), InvalidUUIDValue) + return + if getattr(doc, "amended_from", None): _set_amended_name(doc) if doc.name: @@ -179,10 +197,7 @@ def is_autoincremented(doctype: str, meta: Optional["Meta"] = None) -> bool: if not meta: meta = frappe.get_meta(doctype) - if not getattr(meta, "issingle", False) and meta.autoname == "autoincrement": - return True - - return False + return not getattr(meta, "issingle", False) and meta.autoname == "autoincrement" def set_name_from_naming_options(autoname, doc): diff --git a/frappe/model/utils/__init__.py b/frappe/model/utils/__init__.py index 7d8a389ec9..1527ed6429 100644 --- a/frappe/model/utils/__init__.py +++ b/frappe/model/utils/__init__.py @@ -128,9 +128,11 @@ def get_fetch_values(doctype, fieldname, value): @site_cache() def is_virtual_doctype(doctype: str): - if frappe.db.has_column("DocType", "is_virtual"): - return frappe.db.get_value("DocType", doctype, "is_virtual") - return False + if frappe.flags.in_install or frappe.flags.in_migrate: + if frappe.db.has_column("DocType", "is_virtual"): + return frappe.db.get_value("DocType", doctype, "is_virtual") + else: + return getattr(frappe.get_meta(doctype), "is_virtual", False) @site_cache() @@ -140,4 +142,7 @@ def is_single_doctype(doctype: str) -> bool: if doctype in DOCTYPES_FOR_DOCTYPE: return False - return frappe.db.get_value("DocType", doctype, "issingle") + if frappe.flags.in_install or frappe.flags.in_migrate: + return frappe.db.get_value("DocType", doctype, "issingle") + else: + return getattr(frappe.get_meta(doctype), "issingle", False) diff --git a/frappe/patches.txt b/frappe/patches.txt index 36dc85102b..5b99aa226c 100644 --- a/frappe/patches.txt +++ b/frappe/patches.txt @@ -43,7 +43,6 @@ execute:frappe.db.sql("delete from tabSessions where user is null") execute:frappe.delete_doc("DocType", "Backup Manager") execute:frappe.permissions.reset_perms("Web Page") execute:frappe.db.sql("delete from `tabWeb Page` where ifnull(template_path, '')!=''") -execute:frappe.core.doctype.language.language.update_language_names() # 2017-04-12 execute:frappe.db.set_value("Print Settings", "Print Settings", "add_draft_heading", 1) execute:frappe.db.set_default('language', '') execute:frappe.db.sql("update tabCommunication set communication_date = creation where time(communication_date) = 0") @@ -236,3 +235,4 @@ frappe.patches.v15_0.sanitize_workspace_titles frappe.patches.v15_0.migrate_role_profile_to_table_multi_select frappe.patches.v15_0.migrate_session_data frappe.custom.doctype.property_setter.patches.remove_invalid_fetch_from_expressions +frappe.patches.v16_0.switch_default_sort_order diff --git a/frappe/patches/v11_0/migrate_report_settings_for_new_listview.py b/frappe/patches/v11_0/migrate_report_settings_for_new_listview.py index c867502fde..83c6ac0d55 100644 --- a/frappe/patches/v11_0/migrate_report_settings_for_new_listview.py +++ b/frappe/patches/v11_0/migrate_report_settings_for_new_listview.py @@ -25,7 +25,7 @@ def execute(): settings.pop("columns", None) # sort_by + order_by -> order_by - settings.order_by = (settings.sort_by or "modified") + " " + (settings.order_by or "desc") + settings.order_by = (settings.sort_by or "creation") + " " + (settings.order_by or "desc") # add_total_row -> add_totals_row settings.add_totals_row = settings.add_total_row diff --git a/frappe/patches/v16_0/switch_default_sort_order.py b/frappe/patches/v16_0/switch_default_sort_order.py new file mode 100644 index 0000000000..a374fbcec0 --- /dev/null +++ b/frappe/patches/v16_0/switch_default_sort_order.py @@ -0,0 +1,62 @@ +import json + +import click + +import frappe +from frappe.model.utils.user_settings import sync_user_settings +from frappe.patches.v14_0.drop_unused_indexes import drop_index_if_exists + + +def execute(): + if frappe.db.db_type == "postgres": + return + + db_tables = frappe.db.get_tables(cached=False) + + doctypes = frappe.get_all( + "DocType", + {"is_virtual": 0, "istable": 0}, + pluck="name", + ) + + for doctype in doctypes: + table = f"tab{doctype}" + if table not in db_tables: + continue + frappe.db.add_index(doctype, ["creation"], index_name="creation") + click.echo(f"✓ created creation index from {table}") + + # TODO: We might have to re-run this in future after all doctypes have migrated + if frappe.db.get_value("DocType", doctype, "sort_field") != "modified": + drop_index_if_exists(table, "modified") + + update_sort_order_in_user_settings() + + +def update_sort_order_in_user_settings(): + frappe.db.auto_commit_on_many_writes = True + sync_user_settings() + + user_settings = frappe.db.sql("select user, doctype, data from `__UserSettings`", as_dict=1) + + for setting in user_settings: + doctype = setting.get("doctype") + doctype_sort_order = frappe.db.get_value("DocType", doctype, "sort_field") or "creation" + data = setting.data + if not data or not doctype: + continue + + data = json.loads(data) + for view in ["List", "Gantt", "Kanban", "Calendar", "Image", "Inbox", "Report"]: + view_settings = data.get(view) + if ( + view_settings + and (current_sort_by := view_settings.get("sort_by")) + and current_sort_by == "modified" + and doctype_sort_order != "modified" + ): + view_settings["sort_by"] = "creation" + frappe.db.sql( + "update __UserSettings set data=%s where doctype=%s and user=%s", + (json.dumps(data), setting.doctype, setting.user), + ) diff --git a/frappe/printing/doctype/letter_head/letter_head.json b/frappe/printing/doctype/letter_head/letter_head.json index 4ffca134f2..ebbf3879f7 100644 --- a/frappe/printing/doctype/letter_head/letter_head.json +++ b/frappe/printing/doctype/letter_head/letter_head.json @@ -199,7 +199,7 @@ "idx": 1, "links": [], "max_attachments": 3, - "modified": "2023-12-21 16:19:37.525003", + "modified": "2024-03-23 16:03:28.922006", "modified_by": "Administrator", "module": "Printing", "name": "Letter Head", @@ -222,7 +222,7 @@ "role": "Desk User" } ], - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [], "track_changes": 1 diff --git a/frappe/printing/doctype/network_printer_settings/network_printer_settings.json b/frappe/printing/doctype/network_printer_settings/network_printer_settings.json index 019d4ccd0c..87cdc1c2bf 100644 --- a/frappe/printing/doctype/network_printer_settings/network_printer_settings.json +++ b/frappe/printing/doctype/network_printer_settings/network_printer_settings.json @@ -41,7 +41,7 @@ ], "index_web_pages_for_search": 1, "links": [], - "modified": "2023-08-28 22:25:22.236295", + "modified": "2024-03-23 16:03:30.772015", "modified_by": "Administrator", "module": "Printing", "name": "Network Printer Settings", @@ -70,7 +70,7 @@ "share": 1 } ], - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [], "track_changes": 1 diff --git a/frappe/printing/doctype/print_format/print_format.json b/frappe/printing/doctype/print_format/print_format.json index a58694f46d..a9a24d5d48 100644 --- a/frappe/printing/doctype/print_format/print_format.json +++ b/frappe/printing/doctype/print_format/print_format.json @@ -260,7 +260,7 @@ "icon": "fa fa-print", "idx": 1, "links": [], - "modified": "2023-12-12 19:59:37.133301", + "modified": "2024-03-23 16:03:34.964767", "modified_by": "Administrator", "module": "Printing", "name": "Print Format", @@ -283,7 +283,7 @@ "select": 1 } ], - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [], "track_changes": 1 diff --git a/frappe/printing/doctype/print_format_field_template/print_format_field_template.json b/frappe/printing/doctype/print_format_field_template/print_format_field_template.json index 3b79aae7e8..8748f97755 100644 --- a/frappe/printing/doctype/print_format_field_template/print_format_field_template.json +++ b/frappe/printing/doctype/print_format_field_template/print_format_field_template.json @@ -75,7 +75,7 @@ ], "index_web_pages_for_search": 1, "links": [], - "modified": "2021-10-19 17:47:59.577949", + "modified": "2024-03-23 16:03:35.138827", "modified_by": "Administrator", "module": "Printing", "name": "Print Format Field Template", @@ -95,7 +95,8 @@ "write": 1 } ], - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", + "states": [], "track_changes": 1 } \ No newline at end of file diff --git a/frappe/printing/doctype/print_heading/print_heading.json b/frappe/printing/doctype/print_heading/print_heading.json index 9951b533cb..360aeaa071 100644 --- a/frappe/printing/doctype/print_heading/print_heading.json +++ b/frappe/printing/doctype/print_heading/print_heading.json @@ -1,143 +1,67 @@ { - "allow_copy": 0, - "allow_guest_to_view": 0, + "actions": [], "allow_import": 1, "allow_rename": 1, "autoname": "field:print_heading", - "beta": 0, "creation": "2013-01-10 16:34:24", - "custom": 0, - "docstatus": 0, "doctype": "DocType", "document_type": "Setup", - "editable_grid": 0, + "engine": "InnoDB", + "field_order": [ + "print_heading", + "description" + ], "fields": [ { - "allow_bulk_edit": 0, "allow_on_submit": 1, - "bold": 0, - "collapsible": 0, - "columns": 0, "fieldname": "print_heading", "fieldtype": "Data", - "hidden": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, "in_filter": 1, - "in_global_search": 0, "in_list_view": 1, - "in_standard_filter": 0, "label": "Print Heading", - "length": 0, - "no_copy": 0, "oldfieldname": "print_heading", "oldfieldtype": "Data", - "permlevel": 0, - "print_hide": 0, - "print_hide_if_no_value": 0, - "read_only": 0, - "remember_last_selected_value": 0, - "report_hide": 0, "reqd": 1, - "search_index": 0, - "set_only_once": 0, - "unique": 0 + "unique": 1 }, { - "allow_bulk_edit": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "columns": 0, "fieldname": "description", "fieldtype": "Small Text", - "hidden": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, "in_list_view": 1, - "in_standard_filter": 0, "label": "Description", - "length": 0, - "no_copy": 0, "oldfieldname": "description", "oldfieldtype": "Small Text", - "permlevel": 0, - "print_hide": 0, - "print_hide_if_no_value": 0, - "read_only": 0, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "unique": 0, "width": "300px" } ], - "has_web_view": 0, - "hide_heading": 0, - "hide_toolbar": 0, "icon": "fa fa-font", "idx": 1, - "image_view": 0, - "in_create": 0, - "is_submittable": 0, - "issingle": 0, - "istable": 0, - "max_attachments": 0, - "modified": "2017-05-03 05:59:09.131569", + "links": [], + "modified": "2024-03-23 16:03:35.269553", "modified_by": "Administrator", "module": "Printing", "name": "Print Heading", "owner": "Administrator", "permissions": [ { - "amend": 0, - "apply_user_permissions": 0, - "cancel": 0, "create": 1, "delete": 1, "email": 1, - "export": 0, - "if_owner": 0, - "import": 0, - "permlevel": 0, "print": 1, "read": 1, "report": 1, "role": "System Manager", "share": 1, - "submit": 0, "write": 1 }, { - "amend": 0, - "apply_user_permissions": 0, - "cancel": 0, - "create": 0, - "delete": 0, - "email": 0, - "export": 0, - "if_owner": 0, - "import": 0, - "permlevel": 0, - "print": 0, "read": 1, - "report": 0, - "role": "All", - "share": 0, - "submit": 0, - "write": 0 + "role": "All" } ], "quick_entry": 1, - "read_only": 0, - "read_only_onload": 0, "search_fields": "print_heading", - "show_name_in_global_search": 0, + "sort_field": "creation", "sort_order": "DESC", - "track_changes": 0, - "track_seen": 0 -} + "states": [] +} \ No newline at end of file diff --git a/frappe/printing/doctype/print_settings/print_settings.json b/frappe/printing/doctype/print_settings/print_settings.json index a67440b54e..2a05fcbcd5 100644 --- a/frappe/printing/doctype/print_settings/print_settings.json +++ b/frappe/printing/doctype/print_settings/print_settings.json @@ -176,7 +176,7 @@ "index_web_pages_for_search": 1, "issingle": 1, "links": [], - "modified": "2023-05-30 14:55:25.740691", + "modified": "2024-03-23 16:03:35.392721", "modified_by": "Administrator", "module": "Printing", "name": "Print Settings", @@ -191,7 +191,7 @@ } ], "quick_entry": 1, - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [], "track_changes": 1 diff --git a/frappe/printing/doctype/print_style/print_style.json b/frappe/printing/doctype/print_style/print_style.json index 1d3c9a6189..0cc34dd86e 100644 --- a/frappe/printing/doctype/print_style/print_style.json +++ b/frappe/printing/doctype/print_style/print_style.json @@ -49,7 +49,7 @@ ], "image_field": "preview", "links": [], - "modified": "2022-08-03 12:20:51.295775", + "modified": "2024-03-23 16:03:35.511731", "modified_by": "Administrator", "module": "Printing", "name": "Print Style", @@ -68,7 +68,7 @@ "write": 1 } ], - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [], "track_changes": 1 diff --git a/frappe/public/js/form_builder/components/Field.vue b/frappe/public/js/form_builder/components/Field.vue index 6dd5e6b5ed..80c8ba5d8d 100644 --- a/frappe/public/js/form_builder/components/Field.vue +++ b/frappe/public/js/form_builder/components/Field.vue @@ -92,11 +92,12 @@ function make_dialog(frm) { filter.pop(); // filter_group component requires options and frm.set_query requires fieldname so storing both - filter[0] = { fieldname, field_option }; + filter[0] = field_option; return filter; }); props.field.df.link_filters = JSON.stringify(filters); + store.form.selected_field = props.field.df; frm.dialog.hide(); }, primary_action_label: __("Apply"), @@ -133,11 +134,6 @@ function make_dialog(frm) { } }); } - - // Setting selected field in store because when we click on the dialog the selected field is set to null - frm.dialog.$wrapper.on("click", () => { - store.form.selected_field = props.field.df; - }); } function make_filter_area(frm, doctype) { @@ -151,10 +147,6 @@ function make_filter_area(frm, doctype) { function add_existing_filter(frm, df) { if (df.link_filters) { let filters = JSON.parse(df.link_filters); - filters.map((filter) => { - // filter_group component requires options and frm.set_query requires fieldname - filter[0] = filter[0].field_option; - }); if (filters) { frm.filter_group.add_filters_to_filter_group(filters); } diff --git a/frappe/public/js/frappe/doctype/index.js b/frappe/public/js/frappe/doctype/index.js index 5b072d6bfa..4d8e437c1b 100644 --- a/frappe/public/js/frappe/doctype/index.js +++ b/frappe/public/js/frappe/doctype/index.js @@ -78,6 +78,7 @@ frappe.model.DocTypeController = class DocTypeController extends frappe.ui.form. Expression: "format:", "Expression (sld style)": "", Random: "hash", + UUID: "UUID", "By script": "", }; this.frm.set_value( diff --git a/frappe/public/js/frappe/form/controls/link.js b/frappe/public/js/frappe/form/controls/link.js index 51eb63e88d..7cae8684e8 100644 --- a/frappe/public/js/frappe/form/controls/link.js +++ b/frappe/public/js/frappe/form/controls/link.js @@ -509,6 +509,12 @@ frappe.ui.form.ControlLink = class ControlLink extends frappe.ui.form.ControlDat }); return obj; }; + + // apply link field filters + if (this.df.link_filters && !!this.df.link_filters.length) { + this.apply_link_field_filters(); + } + if (this.get_query || this.df.get_query) { var get_query = this.get_query || this.df.get_query; if ($.isPlainObject(get_query)) { @@ -571,6 +577,38 @@ frappe.ui.form.ControlLink = class ControlLink extends frappe.ui.form.ControlDat $.extend(args.filters, this.df.filters); } } + + apply_link_field_filters() { + let link_filters = JSON.parse(this.df.link_filters); + let filters = this.parse_filters(link_filters); + // take filters from the link field and add to the query + this.get_query = function () { + return { + filters, + }; + }; + } + + parse_filters(link_filters) { + let filters = {}; + link_filters.forEach((filter) => { + let [_, fieldname, operator, value] = filter; + value = String(value).replace(/%/g, ""); + if (value.startsWith("eval:")) { + // get the value to calculate + value = value.split("eval:")[1]; + let context = { + doc: this.doc, + parent: this.doc.parenttype ? this.frm.doc : null, + frappe, + }; + value = frappe.utils.eval(value, context); + } + filters[fieldname] = [operator, value]; + }); + return filters; + } + validate(value) { // validate the value just entered if (this._validated || this.df.options == "[Select]" || this.df.ignore_link_validation) { diff --git a/frappe/public/js/frappe/form/footer/version_timeline_content_builder.js b/frappe/public/js/frappe/form/footer/version_timeline_content_builder.js index 3302e4d250..03936d9a1f 100644 --- a/frappe/public/js/frappe/form/footer/version_timeline_content_builder.js +++ b/frappe/public/js/frappe/form/footer/version_timeline_content_builder.js @@ -283,6 +283,7 @@ function format_content_for_timeline(content) { // limits content to 40 characters // escapes HTML // and makes it bold + content = frappe.utils.html2text(content); content = frappe.ellipsis(content, 40) || '""'; content = frappe.utils.escape_html(content); return content.bold(); diff --git a/frappe/public/js/frappe/form/form.js b/frappe/public/js/frappe/form/form.js index 69a7c6e366..b17c84df3d 100644 --- a/frappe/public/js/frappe/form/form.js +++ b/frappe/public/js/frappe/form/form.js @@ -107,7 +107,6 @@ frappe.ui.form.Form = class FrappeForm { // 2 column layout this.setup_std_layout(); - this.setup_filters(); // client script must be called after "setup" - there are no fields_dict attached to the frm otherwise this.script_manager = new frappe.ui.form.ScriptManager({ @@ -273,41 +272,6 @@ frappe.ui.form.Form = class FrappeForm { }); } - setup_filters() { - let fields_with_filters = frappe - .get_meta(this.doctype) - .fields.filter((field) => field.link_filters) - .map((field) => JSON.parse(field.link_filters)); - if (fields_with_filters.length === 0) return; - fields_with_filters = this.parse_filters(fields_with_filters); - for (let link_field in fields_with_filters) { - const filters = fields_with_filters[link_field]; - this.set_query(link_field, () => filters); - } - } - - parse_filters(data) { - const parsed_data = {}; - - for (const d of data) { - for (const condition of d) { - let [doctype, field, operator, value] = condition; - doctype = doctype.fieldname; - if (!parsed_data[doctype]) { - parsed_data[doctype] = { - filters: {}, - }; - } - - if (!parsed_data[doctype].filters[field]) { - parsed_data[doctype].filters[field] = [operator, value]; - } - } - } - - return parsed_data; - } - watch_model_updates() { // watch model updates var me = this; diff --git a/frappe/public/js/frappe/list/base_list.js b/frappe/public/js/frappe/list/base_list.js index c2c965c2f8..fde374ad16 100644 --- a/frappe/public/js/frappe/list/base_list.js +++ b/frappe/public/js/frappe/list/base_list.js @@ -54,7 +54,7 @@ frappe.views.BaseList = class BaseList { this.fields = []; this.filters = []; - this.sort_by = this.meta.sort_field || "modified"; + this.sort_by = this.meta.sort_field || "creation"; this.sort_order = this.meta.sort_order || "desc"; // Setup buttons @@ -462,15 +462,22 @@ frappe.views.BaseList = class BaseList { } get_args() { + let filters = this.get_filters_for_args(); + let group_by = this.get_group_by(); + let group_by_required = + Array.isArray(filters) && + filters.some((filter) => { + return filter[0] !== this.doctype; + }); return { doctype: this.doctype, fields: this.get_fields(), - filters: this.get_filters_for_args(), + filters, order_by: this.sort_selector && this.sort_selector.get_sql_string(), start: this.start, page_length: this.page_length, view: this.view, - group_by: this.get_group_by(), + group_by: group_by_required ? group_by : null, }; } diff --git a/frappe/public/js/frappe/list/list_sidebar.js b/frappe/public/js/frappe/list/list_sidebar.js index 41f8ca6c2d..9a79d37cbd 100644 --- a/frappe/public/js/frappe/list/list_sidebar.js +++ b/frappe/public/js/frappe/list/list_sidebar.js @@ -39,7 +39,9 @@ frappe.views.ListSidebar = class ListSidebar { }); } - this.add_insights_banner(); + if (frappe.user.has_role("System Manager")) { + this.add_insights_banner(); + } } setup_views() { @@ -268,9 +270,9 @@ frappe.views.ListSidebar = class ListSidebar { this.insights_banner.remove(); } - const message = "Get more insights with"; + const message = __("Get more insights with"); const link = "https://frappe.io/s/insights"; - const cta = "Frappe Insights"; + const cta = __("Frappe Insights"); this.insights_banner = $(`
diff --git a/frappe/public/js/frappe/list/list_view.js b/frappe/public/js/frappe/list/list_view.js index a5cb38696b..1c8ebefe3b 100644 --- a/frappe/public/js/frappe/list/list_view.js +++ b/frappe/public/js/frappe/list/list_view.js @@ -29,6 +29,7 @@ frappe.views.ListView = class ListView extends frappe.views.BaseList { 2000 ); this.count_upper_bound = 1001; + this._element_factory = new ElementFactory(this.doctype); } has_permissions() { @@ -84,7 +85,7 @@ frappe.views.ListView = class ListView extends frappe.views.BaseList { this.view = "List"; // initialize with saved order by - this.sort_by = this.view_user_settings.sort_by || this.sort_by || "modified"; + this.sort_by = this.view_user_settings.sort_by || this.sort_by || "creation"; this.sort_order = this.view_user_settings.sort_order || this.sort_order || "desc"; // build menu items @@ -740,6 +741,7 @@ frappe.views.ListView = class ListView extends frappe.views.BaseList { ${right}
+
`; } @@ -757,7 +759,7 @@ frappe.views.ListView = class ListView extends frappe.views.BaseList { if (col.type === "Tag") { const tags_display_class = !this.tags_shown ? "hide" : ""; let tags_html = doc._user_tags - ? this.get_tags_html(doc._user_tags, 2) + ? this.get_tags_html(doc._user_tags, 2, true) : '
-
'; return ` ${modified} - ${comment_count ? $(comment_count).prop("outerHTML") : ""} + ${comment_count || ""} ${comment_count ? '·' : ""}